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.
 
 
 

56073 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. }
  2107. //species
  2108. function getSpeciesInfo(speciesList) {
  2109. let result = new Set();
  2110. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2111. result.add(entry)
  2112. });
  2113. return Array.from(result);
  2114. };
  2115. function getSpeciesInfoHelper(species) {
  2116. if (!speciesData[species]) {
  2117. console.warn(species + " doesn't exist");
  2118. return [];
  2119. }
  2120. if (speciesData[species].parents) {
  2121. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2122. } else {
  2123. return [species];
  2124. }
  2125. }
  2126. characterMakers.push(() => makeCharacter(
  2127. {
  2128. name: "Fen",
  2129. species: ["crux"],
  2130. description: {
  2131. title: "Bio",
  2132. text: "Very furry. Sheds on everything."
  2133. },
  2134. tags: [
  2135. "anthro",
  2136. "goo"
  2137. ]
  2138. },
  2139. {
  2140. front: {
  2141. height: math.unit(12, "feet"),
  2142. weight: math.unit(2400, "lb"),
  2143. preyCapacity: math.unit(1, "people"),
  2144. name: "Front",
  2145. image: {
  2146. source: "./media/characters/fen/front.svg",
  2147. extra: 1804/1562,
  2148. bottom: 205/2009
  2149. },
  2150. extraAttributes: {
  2151. pawSize: {
  2152. name: "Paw Size",
  2153. power: 2,
  2154. type: "area",
  2155. base: math.unit(0.35, "m^2")
  2156. }
  2157. }
  2158. },
  2159. diving: {
  2160. height: math.unit(4.9, "meters"),
  2161. weight: math.unit(2400, "lb"),
  2162. name: "Diving",
  2163. image: {
  2164. source: "./media/characters/fen/diving.svg"
  2165. }
  2166. },
  2167. sleeby: {
  2168. height: math.unit(3.45, "meters"),
  2169. weight: math.unit(2400, "lb"),
  2170. name: "Sleeby",
  2171. image: {
  2172. source: "./media/characters/fen/sleeby.svg"
  2173. }
  2174. },
  2175. goo: {
  2176. height: math.unit(12, "feet"),
  2177. weight: math.unit(3600, "lb"),
  2178. volume: math.unit(1000, "liters"),
  2179. preyCapacity: math.unit(6, "people"),
  2180. name: "Goo",
  2181. image: {
  2182. source: "./media/characters/fen/goo.svg",
  2183. extra: 1307/1071,
  2184. bottom: 134/1441
  2185. }
  2186. },
  2187. gooNsfw: {
  2188. height: math.unit(12, "feet"),
  2189. weight: math.unit(3750, "lb"),
  2190. volume: math.unit(1000, "liters"),
  2191. preyCapacity: math.unit(6, "people"),
  2192. name: "Goo (NSFW)",
  2193. image: {
  2194. source: "./media/characters/fen/goo-nsfw.svg",
  2195. extra: 1875/1734,
  2196. bottom: 122/1997
  2197. }
  2198. },
  2199. maw: {
  2200. height: math.unit(5.03, "feet"),
  2201. name: "Maw",
  2202. image: {
  2203. source: "./media/characters/fen/maw.svg"
  2204. }
  2205. },
  2206. gooCeiling: {
  2207. height: math.unit(6.6, "feet"),
  2208. weight: math.unit(3000, "lb"),
  2209. volume: math.unit(1000, "liters"),
  2210. preyCapacity: math.unit(6, "people"),
  2211. name: "Goo (Ceiling)",
  2212. image: {
  2213. source: "./media/characters/fen/goo-ceiling.svg"
  2214. }
  2215. },
  2216. paw: {
  2217. height: math.unit(3.77, "feet"),
  2218. name: "Paw",
  2219. image: {
  2220. source: "./media/characters/fen/paw.svg"
  2221. },
  2222. extraAttributes: {
  2223. "toeSize": {
  2224. name: "Toe Size",
  2225. power: 2,
  2226. type: "area",
  2227. base: math.unit(0.02875, "m^2")
  2228. },
  2229. "pawSize": {
  2230. name: "Paw Size",
  2231. power: 2,
  2232. type: "area",
  2233. base: math.unit(0.378, "m^2")
  2234. },
  2235. }
  2236. },
  2237. tail: {
  2238. height: math.unit(12.1, "feet"),
  2239. name: "Tail",
  2240. image: {
  2241. source: "./media/characters/fen/tail.svg"
  2242. }
  2243. },
  2244. tailFull: {
  2245. height: math.unit(12.1, "feet"),
  2246. name: "Full Tail",
  2247. image: {
  2248. source: "./media/characters/fen/tail-full.svg"
  2249. }
  2250. },
  2251. back: {
  2252. height: math.unit(12, "feet"),
  2253. weight: math.unit(2400, "lb"),
  2254. name: "Back",
  2255. image: {
  2256. source: "./media/characters/fen/back.svg",
  2257. },
  2258. info: {
  2259. description: {
  2260. mode: "append",
  2261. text: "\n\nHe is not currently looking at you."
  2262. }
  2263. }
  2264. },
  2265. full: {
  2266. height: math.unit(1.85, "meter"),
  2267. weight: math.unit(3200, "lb"),
  2268. name: "Full",
  2269. image: {
  2270. source: "./media/characters/fen/full.svg",
  2271. extra: 1133/859,
  2272. bottom: 145/1278
  2273. },
  2274. info: {
  2275. description: {
  2276. mode: "append",
  2277. text: "\n\nMunch."
  2278. }
  2279. }
  2280. },
  2281. gooLounging: {
  2282. height: math.unit(4.53, "feet"),
  2283. weight: math.unit(3000, "lb"),
  2284. preyCapacity: math.unit(6, "people"),
  2285. name: "Goo (Lounging)",
  2286. image: {
  2287. source: "./media/characters/fen/goo-lounging.svg",
  2288. bottom: 116 / 613
  2289. }
  2290. },
  2291. lounging: {
  2292. height: math.unit(10.52, "feet"),
  2293. weight: math.unit(2400, "lb"),
  2294. name: "Lounging",
  2295. image: {
  2296. source: "./media/characters/fen/lounging.svg"
  2297. }
  2298. },
  2299. },
  2300. [
  2301. {
  2302. name: "Small",
  2303. height: math.unit(2.2428, "meter")
  2304. },
  2305. {
  2306. name: "Normal",
  2307. height: math.unit(12, "feet"),
  2308. default: true,
  2309. },
  2310. {
  2311. name: "Big",
  2312. height: math.unit(20, "feet")
  2313. },
  2314. {
  2315. name: "Minimacro",
  2316. height: math.unit(40, "feet"),
  2317. info: {
  2318. description: {
  2319. mode: "append",
  2320. text: "\n\nTOO DAMN BIG"
  2321. }
  2322. }
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(100, "feet"),
  2327. info: {
  2328. description: {
  2329. mode: "append",
  2330. text: "\n\nTOO DAMN BIG"
  2331. }
  2332. }
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(2, "miles")
  2337. },
  2338. {
  2339. name: "Gigamacro",
  2340. height: math.unit(10, "earths")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(183, "cm"),
  2349. weight: math.unit(80, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/sofia-fluttertail/front.svg",
  2353. bottom: 0.01,
  2354. extra: 2154 / 2081
  2355. }
  2356. },
  2357. frontAlt: {
  2358. height: math.unit(183, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Front (alt)",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(183, "cm"),
  2367. weight: math.unit(80, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/sofia-fluttertail/back.svg"
  2371. }
  2372. },
  2373. kneeling: {
  2374. height: math.unit(125, "cm"),
  2375. weight: math.unit(80, "kg"),
  2376. name: "Kneeling",
  2377. image: {
  2378. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2379. extra: 1033 / 977,
  2380. bottom: 23.7 / 1057
  2381. }
  2382. },
  2383. maw: {
  2384. height: math.unit(183 / 5, "cm"),
  2385. name: "Maw",
  2386. image: {
  2387. source: "./media/characters/sofia-fluttertail/maw.svg"
  2388. }
  2389. },
  2390. mawcloseup: {
  2391. height: math.unit(183 / 5 * 0.41, "cm"),
  2392. name: "Maw (Closeup)",
  2393. image: {
  2394. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2395. }
  2396. },
  2397. paws: {
  2398. height: math.unit(1.17, "feet"),
  2399. name: "Paws",
  2400. image: {
  2401. source: "./media/characters/sofia-fluttertail/paws.svg",
  2402. extra: 851 / 851,
  2403. bottom: 17 / 868
  2404. }
  2405. },
  2406. },
  2407. [
  2408. {
  2409. name: "Normal",
  2410. height: math.unit(1.83, "meter")
  2411. },
  2412. {
  2413. name: "Size Thief",
  2414. height: math.unit(18, "feet")
  2415. },
  2416. {
  2417. name: "50 Foot Collie",
  2418. height: math.unit(50, "feet")
  2419. },
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(96, "feet"),
  2423. default: true
  2424. },
  2425. {
  2426. name: "Megamerger",
  2427. height: math.unit(650, "feet")
  2428. },
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2433. {
  2434. front: {
  2435. height: math.unit(7, "feet"),
  2436. weight: math.unit(100, "kg"),
  2437. name: "Front",
  2438. image: {
  2439. source: "./media/characters/march/front.svg",
  2440. extra: 1992/1851,
  2441. bottom: 39/2031
  2442. }
  2443. },
  2444. foot: {
  2445. height: math.unit(0.9, "feet"),
  2446. name: "Foot",
  2447. image: {
  2448. source: "./media/characters/march/foot.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(7.9, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(220, "meters")
  2460. },
  2461. {
  2462. name: "Megamacro",
  2463. height: math.unit(2.98, "km"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Gigamacro",
  2468. height: math.unit(15963, "km")
  2469. },
  2470. {
  2471. name: "Teramacro",
  2472. height: math.unit(2980000000, "km")
  2473. },
  2474. {
  2475. name: "Examacro",
  2476. height: math.unit(250, "parsecs")
  2477. },
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(6, "feet"),
  2485. weight: math.unit(60, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/noir/front.svg",
  2489. extra: 1,
  2490. bottom: 0.032
  2491. }
  2492. },
  2493. },
  2494. [
  2495. {
  2496. name: "Normal",
  2497. height: math.unit(6.6, "feet")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(500, "feet")
  2502. },
  2503. {
  2504. name: "Megamacro",
  2505. height: math.unit(2.5, "km"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Gigamacro",
  2510. height: math.unit(22500, "km")
  2511. },
  2512. {
  2513. name: "Teramacro",
  2514. height: math.unit(2500000000, "km")
  2515. },
  2516. {
  2517. name: "Examacro",
  2518. height: math.unit(200, "parsecs")
  2519. },
  2520. ]
  2521. ))
  2522. characterMakers.push(() => makeCharacter(
  2523. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2524. {
  2525. front: {
  2526. height: math.unit(7, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/okuri/front.svg",
  2531. extra: 739/665,
  2532. bottom: 39/778
  2533. }
  2534. },
  2535. back: {
  2536. height: math.unit(7, "feet"),
  2537. weight: math.unit(100, "kg"),
  2538. name: "Back",
  2539. image: {
  2540. source: "./media/characters/okuri/back.svg",
  2541. extra: 734/653,
  2542. bottom: 13/747
  2543. }
  2544. },
  2545. sitting: {
  2546. height: math.unit(2.95, "feet"),
  2547. weight: math.unit(100, "kg"),
  2548. name: "Sitting",
  2549. image: {
  2550. source: "./media/characters/okuri/sitting.svg",
  2551. extra: 370/318,
  2552. bottom: 99/469
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Smallest",
  2559. height: math.unit(5 + 2/12, "feet")
  2560. },
  2561. {
  2562. name: "Smaller",
  2563. height: math.unit(300, "feet")
  2564. },
  2565. {
  2566. name: "Small",
  2567. height: math.unit(1000, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(1, "mile")
  2572. },
  2573. {
  2574. name: "Mega Macro (Small)",
  2575. height: math.unit(20, "km")
  2576. },
  2577. {
  2578. name: "Mega Macro (Large)",
  2579. height: math.unit(600, "km")
  2580. },
  2581. {
  2582. name: "Giga Macro",
  2583. height: math.unit(10000, "km")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(577560, "km"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Large",
  2592. height: math.unit(4, "galaxies")
  2593. },
  2594. {
  2595. name: "Largest",
  2596. height: math.unit(15, "multiverses")
  2597. },
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2602. {
  2603. front: {
  2604. height: math.unit(7, "feet"),
  2605. weight: math.unit(100, "kg"),
  2606. name: "Front",
  2607. image: {
  2608. source: "./media/characters/manny/front.svg",
  2609. extra: 1,
  2610. bottom: 0.06
  2611. }
  2612. },
  2613. back: {
  2614. height: math.unit(7, "feet"),
  2615. weight: math.unit(100, "kg"),
  2616. name: "Back",
  2617. image: {
  2618. source: "./media/characters/manny/back.svg",
  2619. extra: 1,
  2620. bottom: 0.014
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Normal",
  2627. height: math.unit(7, "feet"),
  2628. },
  2629. {
  2630. name: "Macro",
  2631. height: math.unit(78, "feet"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Macro+",
  2636. height: math.unit(300, "meters")
  2637. },
  2638. {
  2639. name: "Macro++",
  2640. height: math.unit(2400, "meters")
  2641. },
  2642. {
  2643. name: "Megamacro",
  2644. height: math.unit(5167, "meters")
  2645. },
  2646. {
  2647. name: "Gigamacro",
  2648. height: math.unit(41769, "miles")
  2649. },
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/adake/front-1.svg"
  2661. }
  2662. },
  2663. frontAlt: {
  2664. height: math.unit(7, "feet"),
  2665. weight: math.unit(100, "kg"),
  2666. name: "Front (Alt)",
  2667. image: {
  2668. source: "./media/characters/adake/front-2.svg",
  2669. extra: 1,
  2670. bottom: 0.01
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(7, "feet"),
  2675. weight: math.unit(100, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/adake/back.svg",
  2679. }
  2680. },
  2681. kneel: {
  2682. height: math.unit(5.385, "feet"),
  2683. weight: math.unit(100, "kg"),
  2684. name: "Kneeling",
  2685. image: {
  2686. source: "./media/characters/adake/kneel.svg",
  2687. bottom: 0.052
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Normal",
  2694. height: math.unit(7, "feet"),
  2695. },
  2696. {
  2697. name: "Macro",
  2698. height: math.unit(78, "feet"),
  2699. default: true
  2700. },
  2701. {
  2702. name: "Macro+",
  2703. height: math.unit(300, "meters")
  2704. },
  2705. {
  2706. name: "Macro++",
  2707. height: math.unit(2400, "meters")
  2708. },
  2709. {
  2710. name: "Megamacro",
  2711. height: math.unit(5167, "meters")
  2712. },
  2713. {
  2714. name: "Gigamacro",
  2715. height: math.unit(41769, "miles")
  2716. },
  2717. ]
  2718. ))
  2719. characterMakers.push(() => makeCharacter(
  2720. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2721. {
  2722. front: {
  2723. height: math.unit(1.65, "meters"),
  2724. weight: math.unit(50, "kg"),
  2725. name: "Front",
  2726. image: {
  2727. source: "./media/characters/elijah/front.svg",
  2728. extra: 858 / 830,
  2729. bottom: 95.5 / 953.8559
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(1.65, "meters"),
  2734. weight: math.unit(50, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/elijah/back.svg",
  2738. extra: 895 / 850,
  2739. bottom: 5.3 / 897.956
  2740. }
  2741. },
  2742. frontNsfw: {
  2743. height: math.unit(1.65, "meters"),
  2744. weight: math.unit(50, "kg"),
  2745. name: "Front (NSFW)",
  2746. image: {
  2747. source: "./media/characters/elijah/front-nsfw.svg",
  2748. extra: 858 / 830,
  2749. bottom: 95.5 / 953.8559
  2750. }
  2751. },
  2752. backNsfw: {
  2753. height: math.unit(1.65, "meters"),
  2754. weight: math.unit(50, "kg"),
  2755. name: "Back (NSFW)",
  2756. image: {
  2757. source: "./media/characters/elijah/back-nsfw.svg",
  2758. extra: 895 / 850,
  2759. bottom: 5.3 / 897.956
  2760. }
  2761. },
  2762. dick: {
  2763. height: math.unit(1, "feet"),
  2764. name: "Dick",
  2765. image: {
  2766. source: "./media/characters/elijah/dick.svg"
  2767. }
  2768. },
  2769. beakOpen: {
  2770. height: math.unit(1.25, "feet"),
  2771. name: "Beak (Open)",
  2772. image: {
  2773. source: "./media/characters/elijah/beak-open.svg"
  2774. }
  2775. },
  2776. beakShut: {
  2777. height: math.unit(1.25, "feet"),
  2778. name: "Beak (Shut)",
  2779. image: {
  2780. source: "./media/characters/elijah/beak-shut.svg"
  2781. }
  2782. },
  2783. footFlexing: {
  2784. height: math.unit(1.61, "feet"),
  2785. name: "Foot (Flexing)",
  2786. image: {
  2787. source: "./media/characters/elijah/foot-flexing.svg"
  2788. }
  2789. },
  2790. footStepping: {
  2791. height: math.unit(1.44, "feet"),
  2792. name: "Foot (Stepping)",
  2793. image: {
  2794. source: "./media/characters/elijah/foot-stepping.svg"
  2795. }
  2796. },
  2797. plantigradeLeg: {
  2798. height: math.unit(2.34, "feet"),
  2799. name: "Plantigrade Leg",
  2800. image: {
  2801. source: "./media/characters/elijah/plantigrade-leg.svg"
  2802. }
  2803. },
  2804. plantigradeFootLeft: {
  2805. height: math.unit(0.9, "feet"),
  2806. name: "Plantigrade Foot (Left)",
  2807. image: {
  2808. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2809. }
  2810. },
  2811. plantigradeFootRight: {
  2812. height: math.unit(0.9, "feet"),
  2813. name: "Plantigrade Foot (Right)",
  2814. image: {
  2815. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(1.65, "meters")
  2823. },
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(55, "meters"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(105, "meters")
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(7 + 2/12, "feet"),
  2840. weight: math.unit(320, "kg"),
  2841. preyCapacity: math.unit(0.276549935, "people"),
  2842. name: "Front",
  2843. image: {
  2844. source: "./media/characters/rai/front.svg",
  2845. extra: 1802/1696,
  2846. bottom: 68/1870
  2847. },
  2848. form: "anthro",
  2849. default: true
  2850. },
  2851. frontDressed: {
  2852. height: math.unit(7 + 2/12, "feet"),
  2853. weight: math.unit(320, "kg"),
  2854. preyCapacity: math.unit(0.276549935, "people"),
  2855. name: "Front (Dressed)",
  2856. image: {
  2857. source: "./media/characters/rai/front-dressed.svg",
  2858. extra: 1802/1696,
  2859. bottom: 68/1870
  2860. },
  2861. form: "anthro"
  2862. },
  2863. side: {
  2864. height: math.unit(7 + 2/12, "feet"),
  2865. weight: math.unit(320, "kg"),
  2866. preyCapacity: math.unit(0.276549935, "people"),
  2867. name: "Side",
  2868. image: {
  2869. source: "./media/characters/rai/side.svg",
  2870. extra: 1789/1710,
  2871. bottom: 115/1904
  2872. },
  2873. form: "anthro"
  2874. },
  2875. back: {
  2876. height: math.unit(7 + 2/12, "feet"),
  2877. weight: math.unit(320, "kg"),
  2878. preyCapacity: math.unit(0.276549935, "people"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/rai/back.svg",
  2882. extra: 1770/1707,
  2883. bottom: 28/1798
  2884. },
  2885. form: "anthro"
  2886. },
  2887. feral: {
  2888. height: math.unit(9.5, "feet"),
  2889. weight: math.unit(640, "kg"),
  2890. preyCapacity: math.unit(4, "people"),
  2891. name: "Feral",
  2892. image: {
  2893. source: "./media/characters/rai/feral.svg",
  2894. extra: 945/553,
  2895. bottom: 176/1121
  2896. },
  2897. form: "feral",
  2898. default: true
  2899. },
  2900. dragon: {
  2901. height: math.unit(23, "feet"),
  2902. weight: math.unit(50000, "lb"),
  2903. name: "Dragon",
  2904. image: {
  2905. source: "./media/characters/rai/dragon.svg",
  2906. extra: 2498 / 2030,
  2907. bottom: 85.2 / 2584
  2908. },
  2909. form: "dragon",
  2910. default: true
  2911. },
  2912. maw: {
  2913. height: math.unit(1.69, "feet"),
  2914. name: "Maw",
  2915. image: {
  2916. source: "./media/characters/rai/maw.svg"
  2917. },
  2918. form: "anthro"
  2919. },
  2920. },
  2921. [
  2922. {
  2923. name: "Normal",
  2924. height: math.unit(7 + 2/12, "feet"),
  2925. form: "anthro"
  2926. },
  2927. {
  2928. name: "Big",
  2929. height: math.unit(11, "feet"),
  2930. form: "anthro"
  2931. },
  2932. {
  2933. name: "Minimacro",
  2934. height: math.unit(77, "feet"),
  2935. form: "anthro"
  2936. },
  2937. {
  2938. name: "Macro",
  2939. height: math.unit(302, "feet"),
  2940. default: true,
  2941. form: "anthro"
  2942. },
  2943. {
  2944. name: "Normal",
  2945. height: math.unit(9.5, "feet"),
  2946. form: "feral",
  2947. default: true
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(23, "feet"),
  2952. form: "dragon",
  2953. default: true
  2954. }
  2955. ],
  2956. {
  2957. "anthro": {
  2958. name: "Anthro",
  2959. default: true
  2960. },
  2961. "feral": {
  2962. name: "Feral",
  2963. },
  2964. "dragon": {
  2965. name: "Dragon",
  2966. },
  2967. }
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2971. {
  2972. frontDressed: {
  2973. height: math.unit(216, "feet"),
  2974. weight: math.unit(7000000, "lb"),
  2975. preyCapacity: math.unit(1321, "people"),
  2976. name: "Front (Dressed)",
  2977. image: {
  2978. source: "./media/characters/jazzy/front-dressed.svg",
  2979. extra: 2738 / 2651,
  2980. bottom: 41.8 / 2786
  2981. }
  2982. },
  2983. backDressed: {
  2984. height: math.unit(216, "feet"),
  2985. weight: math.unit(7000000, "lb"),
  2986. preyCapacity: math.unit(1321, "people"),
  2987. name: "Back (Dressed)",
  2988. image: {
  2989. source: "./media/characters/jazzy/back-dressed.svg",
  2990. extra: 2775 / 2673,
  2991. bottom: 36.8 / 2817
  2992. }
  2993. },
  2994. front: {
  2995. height: math.unit(216, "feet"),
  2996. weight: math.unit(7000000, "lb"),
  2997. preyCapacity: math.unit(1321, "people"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/jazzy/front.svg",
  3001. extra: 2738 / 2651,
  3002. bottom: 41.8 / 2786
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(216, "feet"),
  3007. weight: math.unit(7000000, "lb"),
  3008. preyCapacity: math.unit(1321, "people"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/jazzy/back.svg",
  3012. extra: 2775 / 2673,
  3013. bottom: 36.8 / 2817
  3014. }
  3015. },
  3016. maw: {
  3017. height: math.unit(20, "feet"),
  3018. name: "Maw",
  3019. image: {
  3020. source: "./media/characters/jazzy/maw.svg"
  3021. }
  3022. },
  3023. paws: {
  3024. height: math.unit(27.5, "feet"),
  3025. name: "Paws",
  3026. image: {
  3027. source: "./media/characters/jazzy/paws.svg"
  3028. }
  3029. },
  3030. eye: {
  3031. height: math.unit(4.4, "feet"),
  3032. name: "Eye",
  3033. image: {
  3034. source: "./media/characters/jazzy/eye.svg"
  3035. }
  3036. },
  3037. droneOffense: {
  3038. height: math.unit(9.5, "inches"),
  3039. name: "Drone (Offense)",
  3040. image: {
  3041. source: "./media/characters/jazzy/drone-offense.svg"
  3042. }
  3043. },
  3044. droneRecon: {
  3045. height: math.unit(9.5, "inches"),
  3046. name: "Drone (Recon)",
  3047. image: {
  3048. source: "./media/characters/jazzy/drone-recon.svg"
  3049. }
  3050. },
  3051. droneDefense: {
  3052. height: math.unit(9.5, "inches"),
  3053. name: "Drone (Defense)",
  3054. image: {
  3055. source: "./media/characters/jazzy/drone-defense.svg"
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(216, "feet"),
  3063. default: true
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(9 + 6/12, "feet"),
  3072. weight: math.unit(700, "lb"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/flamm/front.svg",
  3076. extra: 1751/1632,
  3077. bottom: 46/1797
  3078. }
  3079. },
  3080. buff: {
  3081. height: math.unit(9 + 6/12, "feet"),
  3082. weight: math.unit(950, "lb"),
  3083. name: "Buff",
  3084. image: {
  3085. source: "./media/characters/flamm/buff.svg",
  3086. extra: 3018/2874,
  3087. bottom: 221/3239
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(9.5, "feet")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(200, "feet"),
  3099. default: true
  3100. },
  3101. ]
  3102. ))
  3103. characterMakers.push(() => makeCharacter(
  3104. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3105. {
  3106. front: {
  3107. height: math.unit(5 + 3/12, "feet"),
  3108. weight: math.unit(60, "kg"),
  3109. name: "Front",
  3110. image: {
  3111. source: "./media/characters/zephiro/front.svg",
  3112. extra: 1873/1761,
  3113. bottom: 147/2020
  3114. }
  3115. },
  3116. side: {
  3117. height: math.unit(5 + 3/12, "feet"),
  3118. weight: math.unit(60, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/zephiro/side.svg",
  3122. extra: 1929/1827,
  3123. bottom: 65/1994
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(5 + 3/12, "feet"),
  3128. weight: math.unit(60, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/zephiro/back.svg",
  3132. extra: 1926/1816,
  3133. bottom: 41/1967
  3134. }
  3135. },
  3136. hand: {
  3137. height: math.unit(0.68, "feet"),
  3138. name: "Hand",
  3139. image: {
  3140. source: "./media/characters/zephiro/hand.svg"
  3141. }
  3142. },
  3143. paw: {
  3144. height: math.unit(1, "feet"),
  3145. name: "Paw",
  3146. image: {
  3147. source: "./media/characters/zephiro/paw.svg"
  3148. }
  3149. },
  3150. beans: {
  3151. height: math.unit(0.93, "feet"),
  3152. name: "Beans",
  3153. image: {
  3154. source: "./media/characters/zephiro/beans.svg"
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Micro",
  3161. height: math.unit(3, "inches")
  3162. },
  3163. {
  3164. name: "Normal",
  3165. height: math.unit(5 + 3 / 12, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(118, "feet")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(5, "feet"),
  3179. weight: math.unit(90, "kg"),
  3180. preyCapacity: math.unit(14, "people"),
  3181. name: "Front",
  3182. image: {
  3183. source: "./media/characters/fory/front.svg",
  3184. extra: 2862 / 2674,
  3185. bottom: 180 / 3043.8
  3186. },
  3187. form: "weaselbun",
  3188. default: true,
  3189. extraAttributes: {
  3190. "pawSize": {
  3191. name: "Paw Size",
  3192. power: 2,
  3193. type: "area",
  3194. base: math.unit(0.1596, "m^2")
  3195. },
  3196. "pawLength": {
  3197. name: "Paw Length",
  3198. power: 1,
  3199. type: "length",
  3200. base: math.unit(0.7, "m")
  3201. }
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(5, "feet"),
  3206. weight: math.unit(90, "kg"),
  3207. preyCapacity: math.unit(14, "people"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/fory/back.svg",
  3211. extra: 1790/1672,
  3212. bottom: 84/1874
  3213. },
  3214. form: "weaselbun",
  3215. extraAttributes: {
  3216. "pawSize": {
  3217. name: "Paw Size",
  3218. power: 2,
  3219. type: "area",
  3220. base: math.unit(0.1596, "m^2")
  3221. },
  3222. "pawLength": {
  3223. name: "Paw Length",
  3224. power: 1,
  3225. type: "length",
  3226. base: math.unit(0.7, "m")
  3227. }
  3228. }
  3229. },
  3230. paw: {
  3231. height: math.unit(2.14, "feet"),
  3232. name: "Paw",
  3233. image: {
  3234. source: "./media/characters/fory/paw.svg"
  3235. },
  3236. form: "weaselbun",
  3237. extraAttributes: {
  3238. "pawSize": {
  3239. name: "Paw Size",
  3240. power: 2,
  3241. type: "area",
  3242. base: math.unit(0.1596, "m^2")
  3243. },
  3244. "pawLength": {
  3245. name: "Paw Length",
  3246. power: 1,
  3247. type: "length",
  3248. base: math.unit(0.48, "m")
  3249. }
  3250. }
  3251. },
  3252. bunBack: {
  3253. height: math.unit(3, "feet"),
  3254. weight: math.unit(20, "kg"),
  3255. preyCapacity: math.unit(3, "people"),
  3256. name: "Back",
  3257. image: {
  3258. source: "./media/characters/fory/bun-back.svg",
  3259. extra: 1749/1564,
  3260. bottom: 246/1995
  3261. },
  3262. form: "bun",
  3263. default: true,
  3264. extraAttributes: {
  3265. "pawSize": {
  3266. name: "Paw Size",
  3267. power: 2,
  3268. type: "area",
  3269. base: math.unit(0.072, "m^2")
  3270. },
  3271. "pawLength": {
  3272. name: "Paw Length",
  3273. power: 1,
  3274. type: "length",
  3275. base: math.unit(0.45, "m")
  3276. }
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5, "feet"),
  3284. form: "weaselbun"
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(50, "feet"),
  3289. default: true,
  3290. form: "weaselbun"
  3291. },
  3292. {
  3293. name: "Megamacro",
  3294. height: math.unit(10, "miles"),
  3295. form: "weaselbun"
  3296. },
  3297. {
  3298. name: "Gigamacro",
  3299. height: math.unit(5, "earths"),
  3300. form: "weaselbun"
  3301. },
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(3, "feet"),
  3305. default: true,
  3306. form: "bun"
  3307. },
  3308. {
  3309. name: "Fun-Size",
  3310. height: math.unit(12, "feet"),
  3311. form: "bun"
  3312. },
  3313. {
  3314. name: "Macro",
  3315. height: math.unit(100, "feet"),
  3316. form: "bun"
  3317. },
  3318. {
  3319. name: "Planetary",
  3320. height: math.unit(3, "earths"),
  3321. form: "bun"
  3322. },
  3323. ],
  3324. {
  3325. "weaselbun": {
  3326. name: "Weaselbun",
  3327. default: true
  3328. },
  3329. "bun": {
  3330. name: "Bun",
  3331. },
  3332. }
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3336. {
  3337. front: {
  3338. height: math.unit(7, "feet"),
  3339. weight: math.unit(90, "kg"),
  3340. name: "Front",
  3341. image: {
  3342. source: "./media/characters/kurrikage/front.svg",
  3343. extra: 1845/1733,
  3344. bottom: 119/1964
  3345. }
  3346. },
  3347. back: {
  3348. height: math.unit(7, "feet"),
  3349. weight: math.unit(90, "kg"),
  3350. name: "Back",
  3351. image: {
  3352. source: "./media/characters/kurrikage/back.svg",
  3353. extra: 1790/1677,
  3354. bottom: 61/1851
  3355. }
  3356. },
  3357. dressed: {
  3358. height: math.unit(7, "feet"),
  3359. weight: math.unit(90, "kg"),
  3360. name: "Dressed",
  3361. image: {
  3362. source: "./media/characters/kurrikage/dressed.svg",
  3363. extra: 1845/1733,
  3364. bottom: 119/1964
  3365. }
  3366. },
  3367. foot: {
  3368. height: math.unit(1.5, "feet"),
  3369. name: "Foot",
  3370. image: {
  3371. source: "./media/characters/kurrikage/foot.svg"
  3372. }
  3373. },
  3374. staff: {
  3375. height: math.unit(6.7, "feet"),
  3376. name: "Staff",
  3377. image: {
  3378. source: "./media/characters/kurrikage/staff.svg"
  3379. }
  3380. },
  3381. peek: {
  3382. height: math.unit(1.05, "feet"),
  3383. name: "Peeking",
  3384. image: {
  3385. source: "./media/characters/kurrikage/peek.svg",
  3386. bottom: 0.08
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Big",
  3398. height: math.unit(20, "feet")
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(500, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(20, "miles")
  3407. },
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(6, "feet"),
  3415. weight: math.unit(75, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/shingo/front.svg",
  3419. extra: 1900/1825,
  3420. bottom: 82/1982
  3421. }
  3422. },
  3423. side: {
  3424. height: math.unit(6, "feet"),
  3425. weight: math.unit(75, "kg"),
  3426. name: "Side",
  3427. image: {
  3428. source: "./media/characters/shingo/side.svg",
  3429. extra: 1930/1865,
  3430. bottom: 16/1946
  3431. }
  3432. },
  3433. back: {
  3434. height: math.unit(6, "feet"),
  3435. weight: math.unit(75, "kg"),
  3436. name: "Back",
  3437. image: {
  3438. source: "./media/characters/shingo/back.svg",
  3439. extra: 1922/1852,
  3440. bottom: 16/1938
  3441. }
  3442. },
  3443. frontDressed: {
  3444. height: math.unit(6, "feet"),
  3445. weight: math.unit(150, "lb"),
  3446. name: "Front-dressed",
  3447. image: {
  3448. source: "./media/characters/shingo/front-dressed.svg",
  3449. extra: 1900/1825,
  3450. bottom: 82/1982
  3451. }
  3452. },
  3453. paw: {
  3454. height: math.unit(1.29, "feet"),
  3455. name: "Paw",
  3456. image: {
  3457. source: "./media/characters/shingo/paw.svg"
  3458. }
  3459. },
  3460. hand: {
  3461. height: math.unit(1.07, "feet"),
  3462. name: "Hand",
  3463. image: {
  3464. source: "./media/characters/shingo/hand.svg"
  3465. }
  3466. },
  3467. frontAlt: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(75, "kg"),
  3470. name: "Front (Alt)",
  3471. image: {
  3472. source: "./media/characters/shingo/front-alt.svg",
  3473. extra: 3511 / 3338,
  3474. bottom: 0.005
  3475. }
  3476. },
  3477. frontAlt2: {
  3478. height: math.unit(6, "feet"),
  3479. weight: math.unit(75, "kg"),
  3480. name: "Front (Alt 2)",
  3481. image: {
  3482. source: "./media/characters/shingo/front-alt-2.svg",
  3483. extra: 706/681,
  3484. bottom: 11/717
  3485. }
  3486. },
  3487. pawAlt: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw (Alt)",
  3490. image: {
  3491. source: "./media/characters/shingo/paw-alt.svg"
  3492. }
  3493. },
  3494. },
  3495. [
  3496. {
  3497. name: "Micro",
  3498. height: math.unit(4, "inches")
  3499. },
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(6, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(108, "feet")
  3508. },
  3509. {
  3510. name: "Macro+",
  3511. height: math.unit(1500, "feet")
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3517. {
  3518. side: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(75, "kg"),
  3521. name: "Side",
  3522. image: {
  3523. source: "./media/characters/aigey/side.svg"
  3524. }
  3525. },
  3526. },
  3527. [
  3528. {
  3529. name: "Macro",
  3530. height: math.unit(200, "feet"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Megamacro",
  3535. height: math.unit(100, "miles")
  3536. },
  3537. ]
  3538. )
  3539. )
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(5 + 5 / 12, "feet"),
  3545. weight: math.unit(75, "kg"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/natasha/front.svg",
  3549. extra: 859 / 824,
  3550. bottom: 23 / 879.6
  3551. }
  3552. },
  3553. frontNsfw: {
  3554. height: math.unit(5 + 5 / 12, "feet"),
  3555. weight: math.unit(75, "kg"),
  3556. name: "Front (NSFW)",
  3557. image: {
  3558. source: "./media/characters/natasha/front-nsfw.svg",
  3559. extra: 859 / 824,
  3560. bottom: 23 / 879.6
  3561. }
  3562. },
  3563. frontErect: {
  3564. height: math.unit(5 + 5 / 12, "feet"),
  3565. weight: math.unit(75, "kg"),
  3566. name: "Front (Erect)",
  3567. image: {
  3568. source: "./media/characters/natasha/front-erect.svg",
  3569. extra: 859 / 824,
  3570. bottom: 23 / 879.6
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(5 + 5 / 12, "feet"),
  3575. weight: math.unit(75, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/natasha/back.svg",
  3579. extra: 887.9 / 852.6,
  3580. bottom: 9.7 / 896.4
  3581. }
  3582. },
  3583. backAlt: {
  3584. height: math.unit(5 + 5 / 12, "feet"),
  3585. weight: math.unit(75, "kg"),
  3586. name: "Back (Alt)",
  3587. image: {
  3588. source: "./media/characters/natasha/back-alt.svg",
  3589. extra: 1236.7 / 1192,
  3590. bottom: 22.3 / 1258.2
  3591. }
  3592. },
  3593. dick: {
  3594. height: math.unit(1.772, "feet"),
  3595. name: "Dick",
  3596. image: {
  3597. source: "./media/characters/natasha/dick.svg"
  3598. }
  3599. },
  3600. paw: {
  3601. height: math.unit(0.250, "meters"),
  3602. name: "Paw",
  3603. image: {
  3604. source: "./media/characters/natasha/paw.svg"
  3605. },
  3606. extraAttributes: {
  3607. "toeSize": {
  3608. name: "Toe Size",
  3609. power: 2,
  3610. type: "area",
  3611. base: math.unit(0.0024, "m^2")
  3612. },
  3613. "padSize": {
  3614. name: "Pad Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.00889, "m^2")
  3618. },
  3619. "pawSize": {
  3620. name: "Paw Size",
  3621. power: 2,
  3622. type: "area",
  3623. base: math.unit(0.023667, "m^2")
  3624. },
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Shortstack",
  3631. height: math.unit(3, "feet"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(5 + 5 / 12, "feet")
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(12, "feet")
  3641. },
  3642. {
  3643. name: "Macro",
  3644. height: math.unit(100, "feet")
  3645. },
  3646. {
  3647. name: "Macro+",
  3648. height: math.unit(260, "feet")
  3649. },
  3650. {
  3651. name: "Macro++",
  3652. height: math.unit(1, "mile")
  3653. },
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(75, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/malik/front.svg",
  3665. extra: 1750/1561,
  3666. bottom: 80/1830
  3667. },
  3668. extraAttributes: {
  3669. "toeSize": {
  3670. name: "Toe Size",
  3671. power: 2,
  3672. type: "area",
  3673. base: math.unit(0.0159, "m^2")
  3674. },
  3675. "pawSize": {
  3676. name: "Paw Size",
  3677. power: 2,
  3678. type: "area",
  3679. base: math.unit(0.09834, "m^2")
  3680. },
  3681. }
  3682. },
  3683. side: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Side",
  3687. image: {
  3688. source: "./media/characters/malik/side.svg",
  3689. extra: 1802/1685,
  3690. bottom: 42/1844
  3691. },
  3692. extraAttributes: {
  3693. "toeSize": {
  3694. name: "Toe Size",
  3695. power: 2,
  3696. type: "area",
  3697. base: math.unit(0.0159, "m^2")
  3698. },
  3699. "pawSize": {
  3700. name: "Paw Size",
  3701. power: 2,
  3702. type: "area",
  3703. base: math.unit(0.09834, "m^2")
  3704. },
  3705. }
  3706. },
  3707. back: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(75, "kg"),
  3710. name: "Back",
  3711. image: {
  3712. source: "./media/characters/malik/back.svg",
  3713. extra: 1803/1607,
  3714. bottom: 33/1836
  3715. },
  3716. extraAttributes: {
  3717. "toeSize": {
  3718. name: "Toe Size",
  3719. power: 2,
  3720. type: "area",
  3721. base: math.unit(0.0159, "m^2")
  3722. },
  3723. "pawSize": {
  3724. name: "Paw Size",
  3725. power: 2,
  3726. type: "area",
  3727. base: math.unit(0.09834, "m^2")
  3728. },
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(156, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Macro+",
  3740. height: math.unit(1188, "feet")
  3741. },
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/sefer/front.svg",
  3753. extra: 848 / 659,
  3754. bottom: 28.3 / 876.442
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/sefer/back.svg",
  3763. extra: 864 / 695,
  3764. bottom: 10 / 871
  3765. }
  3766. },
  3767. frontDressed: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Dressed",
  3771. image: {
  3772. source: "./media/characters/sefer/dressed.svg",
  3773. extra: 839 / 653,
  3774. bottom: 37.6 / 878
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(6, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Big",
  3786. height: math.unit(8, "meters")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3792. {
  3793. body: {
  3794. height: math.unit(2.2428, "meter"),
  3795. weight: math.unit(124.738, "kg"),
  3796. name: "Body",
  3797. image: {
  3798. extra: 1225 / 1050,
  3799. source: "./media/characters/north/front.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Micro",
  3806. height: math.unit(4, "inches")
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(63, "meters")
  3811. },
  3812. {
  3813. name: "Megamacro",
  3814. height: math.unit(101, "miles"),
  3815. default: true
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3821. {
  3822. angled: {
  3823. height: math.unit(4, "meter"),
  3824. weight: math.unit(150, "kg"),
  3825. name: "Angled",
  3826. image: {
  3827. source: "./media/characters/talan/angled-sfw.svg",
  3828. bottom: 29 / 3734
  3829. }
  3830. },
  3831. angledNsfw: {
  3832. height: math.unit(4, "meter"),
  3833. weight: math.unit(150, "kg"),
  3834. name: "Angled (NSFW)",
  3835. image: {
  3836. source: "./media/characters/talan/angled-nsfw.svg",
  3837. bottom: 29 / 3734
  3838. }
  3839. },
  3840. frontNsfw: {
  3841. height: math.unit(4, "meter"),
  3842. weight: math.unit(150, "kg"),
  3843. name: "Front (NSFW)",
  3844. image: {
  3845. source: "./media/characters/talan/front-nsfw.svg",
  3846. bottom: 29 / 3734
  3847. }
  3848. },
  3849. sideNsfw: {
  3850. height: math.unit(4, "meter"),
  3851. weight: math.unit(150, "kg"),
  3852. name: "Side (NSFW)",
  3853. image: {
  3854. source: "./media/characters/talan/side-nsfw.svg",
  3855. bottom: 29 / 3734
  3856. }
  3857. },
  3858. back: {
  3859. height: math.unit(4, "meter"),
  3860. weight: math.unit(150, "kg"),
  3861. name: "Back",
  3862. image: {
  3863. source: "./media/characters/talan/back.svg"
  3864. }
  3865. },
  3866. dickBottom: {
  3867. height: math.unit(0.621, "meter"),
  3868. name: "Dick (Bottom)",
  3869. image: {
  3870. source: "./media/characters/talan/dick-bottom.svg"
  3871. }
  3872. },
  3873. dickTop: {
  3874. height: math.unit(0.621, "meter"),
  3875. name: "Dick (Top)",
  3876. image: {
  3877. source: "./media/characters/talan/dick-top.svg"
  3878. }
  3879. },
  3880. dickSide: {
  3881. height: math.unit(0.305, "meter"),
  3882. name: "Dick (Side)",
  3883. image: {
  3884. source: "./media/characters/talan/dick-side.svg"
  3885. }
  3886. },
  3887. dickFront: {
  3888. height: math.unit(0.305, "meter"),
  3889. name: "Dick (Front)",
  3890. image: {
  3891. source: "./media/characters/talan/dick-front.svg"
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(4, "meters")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(100, "meters")
  3903. },
  3904. {
  3905. name: "Megamacro",
  3906. height: math.unit(2, "miles"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(5000, "miles")
  3912. },
  3913. {
  3914. name: "Teramacro",
  3915. height: math.unit(100, "parsecs")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(90, "kg"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/gael'rathus/front.svg"
  3928. }
  3929. },
  3930. frontAlt: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(90, "kg"),
  3933. name: "Front (alt)",
  3934. image: {
  3935. source: "./media/characters/gael'rathus/front-alt.svg"
  3936. }
  3937. },
  3938. frontAlt2: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(90, "kg"),
  3941. name: "Front (alt 2)",
  3942. image: {
  3943. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(9, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Large",
  3955. height: math.unit(25, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(0.25, "miles")
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(10, "miles")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3969. {
  3970. side: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(140, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/sosha/side.svg",
  3976. extra: 1170/1006,
  3977. bottom: 94/1264
  3978. }
  3979. },
  3980. maw: {
  3981. height: math.unit(2.87, "feet"),
  3982. name: "Maw",
  3983. image: {
  3984. source: "./media/characters/sosha/maw.svg",
  3985. extra: 966/865,
  3986. bottom: 0/966
  3987. }
  3988. },
  3989. cooch: {
  3990. height: math.unit(5.6, "feet"),
  3991. name: "Cooch",
  3992. image: {
  3993. source: "./media/characters/sosha/cooch.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(12, "feet"),
  4001. default: true
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4007. {
  4008. side: {
  4009. height: math.unit(5 + 5 / 12, "feet"),
  4010. weight: math.unit(170, "kg"),
  4011. name: "Side",
  4012. image: {
  4013. source: "./media/characters/runnola/side.svg",
  4014. extra: 741 / 448,
  4015. bottom: 0.05
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Small",
  4022. height: math.unit(3, "feet")
  4023. },
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(5 + 5 / 12, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Big",
  4031. height: math.unit(10, "feet")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(50, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/kurribird/front.svg",
  4044. bottom: 0.015
  4045. }
  4046. },
  4047. frontAlt: {
  4048. height: math.unit(1.5, "meter"),
  4049. weight: math.unit(50, "kg"),
  4050. name: "Front (Alt)",
  4051. image: {
  4052. source: "./media/characters/kurribird/front-alt.svg",
  4053. extra: 1.45
  4054. }
  4055. },
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(7, "feet")
  4061. },
  4062. {
  4063. name: "Big",
  4064. height: math.unit(12, "feet"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Macro",
  4069. height: math.unit(1500, "feet")
  4070. },
  4071. {
  4072. name: "Megamacro",
  4073. height: math.unit(2, "miles")
  4074. }
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(2, "meter"),
  4082. weight: math.unit(80, "kg"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/elbial/front.svg",
  4086. extra: 1643 / 1556,
  4087. bottom: 60.2 / 1696
  4088. }
  4089. },
  4090. side: {
  4091. height: math.unit(2, "meter"),
  4092. weight: math.unit(80, "kg"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/elbial/side.svg",
  4096. extra: 1601/1528,
  4097. bottom: 97/1698
  4098. }
  4099. },
  4100. back: {
  4101. height: math.unit(2, "meter"),
  4102. weight: math.unit(80, "kg"),
  4103. name: "Back",
  4104. image: {
  4105. source: "./media/characters/elbial/back.svg",
  4106. extra: 1653/1569,
  4107. bottom: 20/1673
  4108. }
  4109. },
  4110. frontDressed: {
  4111. height: math.unit(2, "meter"),
  4112. weight: math.unit(80, "kg"),
  4113. name: "Front (Dressed)",
  4114. image: {
  4115. source: "./media/characters/elbial/front-dressed.svg",
  4116. extra: 1638/1569,
  4117. bottom: 70/1708
  4118. }
  4119. },
  4120. genitals: {
  4121. height: math.unit(2 / 3.367, "meter"),
  4122. name: "Genitals",
  4123. image: {
  4124. source: "./media/characters/elbial/genitals.svg"
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Large",
  4131. height: math.unit(100, "feet")
  4132. },
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(500, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Megamacro",
  4140. height: math.unit(10, "miles")
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(25000, "miles")
  4145. },
  4146. {
  4147. name: "Full-Size",
  4148. height: math.unit(8000000, "gigaparsecs")
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(2, "meter"),
  4157. weight: math.unit(60, "kg"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/noah/front.svg"
  4161. }
  4162. },
  4163. talons: {
  4164. height: math.unit(0.315, "meter"),
  4165. name: "Talons",
  4166. image: {
  4167. source: "./media/characters/noah/talons.svg"
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Large",
  4174. height: math.unit(50, "feet")
  4175. },
  4176. {
  4177. name: "Macro",
  4178. height: math.unit(750, "feet"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Megamacro",
  4183. height: math.unit(50, "miles")
  4184. },
  4185. {
  4186. name: "Gigamacro",
  4187. height: math.unit(100000, "miles")
  4188. },
  4189. {
  4190. name: "Full-Size",
  4191. height: math.unit(3000000000, "miles")
  4192. }
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4197. {
  4198. front: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(80, "kg"),
  4201. name: "Front",
  4202. image: {
  4203. source: "./media/characters/natalya/front.svg"
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(80, "kg"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/natalya/back.svg"
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(150, "feet"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(5, "miles")
  4224. },
  4225. {
  4226. name: "Full-Size",
  4227. height: math.unit(600, "kiloparsecs")
  4228. }
  4229. ]
  4230. ))
  4231. characterMakers.push(() => makeCharacter(
  4232. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4233. {
  4234. front: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(50, "kg"),
  4237. name: "Front",
  4238. image: {
  4239. source: "./media/characters/erestrebah/front.svg",
  4240. extra: 1262/1162,
  4241. bottom: 96/1358
  4242. }
  4243. },
  4244. back: {
  4245. height: math.unit(2, "meter"),
  4246. weight: math.unit(50, "kg"),
  4247. name: "Back",
  4248. image: {
  4249. source: "./media/characters/erestrebah/back.svg",
  4250. extra: 1257/1139,
  4251. bottom: 13/1270
  4252. }
  4253. },
  4254. wing: {
  4255. height: math.unit(2, "meter"),
  4256. weight: math.unit(50, "kg"),
  4257. name: "Wing",
  4258. image: {
  4259. source: "./media/characters/erestrebah/wing.svg",
  4260. extra: 1262/1162,
  4261. bottom: 96/1358
  4262. }
  4263. },
  4264. mouth: {
  4265. height: math.unit(0.39, "feet"),
  4266. name: "Mouth",
  4267. image: {
  4268. source: "./media/characters/erestrebah/mouth.svg"
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(10, "feet")
  4276. },
  4277. {
  4278. name: "Large",
  4279. height: math.unit(50, "feet"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(300, "feet")
  4285. },
  4286. {
  4287. name: "Macro+",
  4288. height: math.unit(750, "feet")
  4289. },
  4290. {
  4291. name: "Megamacro",
  4292. height: math.unit(3, "miles")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(2, "meter"),
  4301. weight: math.unit(80, "kg"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/jennifer/front.svg",
  4305. bottom: 0.11,
  4306. extra: 1.16
  4307. }
  4308. },
  4309. frontAlt: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(80, "kg"),
  4312. name: "Front (Alt)",
  4313. image: {
  4314. source: "./media/characters/jennifer/front-alt.svg"
  4315. }
  4316. }
  4317. },
  4318. [
  4319. {
  4320. name: "Canon Height",
  4321. height: math.unit(120, "feet"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Macro+",
  4326. height: math.unit(300, "feet")
  4327. },
  4328. {
  4329. name: "Megamacro",
  4330. height: math.unit(20000, "feet")
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(2, "meter"),
  4339. weight: math.unit(50, "kg"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/kalista/front.svg",
  4343. extra: 1314/1145,
  4344. bottom: 101/1415
  4345. }
  4346. },
  4347. back: {
  4348. height: math.unit(2, "meter"),
  4349. weight: math.unit(50, "kg"),
  4350. name: "Back",
  4351. image: {
  4352. source: "./media/characters/kalista/back.svg",
  4353. extra: 1366 / 1156,
  4354. bottom: 33.9 / 1362.78
  4355. }
  4356. }
  4357. },
  4358. [
  4359. {
  4360. name: "Uncomfortably Small",
  4361. height: math.unit(10, "feet")
  4362. },
  4363. {
  4364. name: "Small",
  4365. height: math.unit(30, "feet")
  4366. },
  4367. {
  4368. name: "Macro",
  4369. height: math.unit(100, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Macro+",
  4374. height: math.unit(2000, "feet")
  4375. },
  4376. {
  4377. name: "True Form",
  4378. height: math.unit(8924, "miles")
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(2, "meter"),
  4387. weight: math.unit(120, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/ggv/front.svg"
  4391. }
  4392. },
  4393. side: {
  4394. height: math.unit(2, "meter"),
  4395. weight: math.unit(120, "kg"),
  4396. name: "Side",
  4397. image: {
  4398. source: "./media/characters/ggv/side.svg"
  4399. }
  4400. }
  4401. },
  4402. [
  4403. {
  4404. name: "Extremely Puny",
  4405. height: math.unit(9 + 5 / 12, "feet")
  4406. },
  4407. {
  4408. name: "Horribly Small",
  4409. height: math.unit(47.7, "miles"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Reasonably Sized",
  4414. height: math.unit(25000, "parsecs")
  4415. },
  4416. {
  4417. name: "Slightly Uncompressed",
  4418. height: math.unit(7.77e31, "parsecs")
  4419. },
  4420. {
  4421. name: "Omniversal",
  4422. height: math.unit(1e300, "meters")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4428. {
  4429. front: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(75, "lb"),
  4432. name: "Front",
  4433. image: {
  4434. source: "./media/characters/napalm/front.svg"
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(2, "meter"),
  4439. weight: math.unit(75, "lb"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/napalm/back.svg"
  4443. }
  4444. }
  4445. },
  4446. [
  4447. {
  4448. name: "Standard",
  4449. height: math.unit(55, "feet"),
  4450. default: true
  4451. }
  4452. ]
  4453. ))
  4454. characterMakers.push(() => makeCharacter(
  4455. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4456. {
  4457. front: {
  4458. height: math.unit(7 + 5 / 6, "feet"),
  4459. weight: math.unit(325, "lb"),
  4460. name: "Front",
  4461. image: {
  4462. source: "./media/characters/asana/front.svg",
  4463. extra: 1133 / 1060,
  4464. bottom: 15.2 / 1148.6
  4465. }
  4466. },
  4467. back: {
  4468. height: math.unit(7 + 5 / 6, "feet"),
  4469. weight: math.unit(325, "lb"),
  4470. name: "Back",
  4471. image: {
  4472. source: "./media/characters/asana/back.svg",
  4473. extra: 1114 / 1043,
  4474. bottom: 5 / 1120
  4475. }
  4476. },
  4477. dressedDark: {
  4478. height: math.unit(7 + 5 / 6, "feet"),
  4479. weight: math.unit(325, "lb"),
  4480. name: "Dressed (Dark)",
  4481. image: {
  4482. source: "./media/characters/asana/dressed-dark.svg",
  4483. extra: 1133 / 1060,
  4484. bottom: 15.2 / 1148.6
  4485. }
  4486. },
  4487. dressedLight: {
  4488. height: math.unit(7 + 5 / 6, "feet"),
  4489. weight: math.unit(325, "lb"),
  4490. name: "Dressed (Light)",
  4491. image: {
  4492. source: "./media/characters/asana/dressed-light.svg",
  4493. extra: 1133 / 1060,
  4494. bottom: 15.2 / 1148.6
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Standard",
  4501. height: math.unit(7 + 5 / 6, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Large",
  4506. height: math.unit(10, "meters")
  4507. },
  4508. {
  4509. name: "Macro",
  4510. height: math.unit(2500, "meters")
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(5e6, "meters")
  4515. },
  4516. {
  4517. name: "Examacro",
  4518. height: math.unit(5e12, "lightyears")
  4519. },
  4520. {
  4521. name: "Max Size",
  4522. height: math.unit(1e31, "lightyears")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(60, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/ebony/front.svg",
  4535. bottom: 0.03,
  4536. extra: 1045 / 810 + 0.03
  4537. }
  4538. },
  4539. side: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(60, "kg"),
  4542. name: "Side",
  4543. image: {
  4544. source: "./media/characters/ebony/side.svg",
  4545. bottom: 0.03,
  4546. extra: 1045 / 810 + 0.03
  4547. }
  4548. },
  4549. back: {
  4550. height: math.unit(2, "meter"),
  4551. weight: math.unit(60, "kg"),
  4552. name: "Back",
  4553. image: {
  4554. source: "./media/characters/ebony/back.svg",
  4555. bottom: 0.01,
  4556. extra: 1045 / 810 + 0.01
  4557. }
  4558. },
  4559. },
  4560. [
  4561. // TODO check why I did this lol
  4562. {
  4563. name: "Standard",
  4564. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Macro",
  4569. height: math.unit(200, "feet")
  4570. },
  4571. {
  4572. name: "Gigamacro",
  4573. height: math.unit(13000, "km")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(175, "lb"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/mountain/front.svg",
  4586. extra: 972 / 955,
  4587. bottom: 64 / 1036.6
  4588. }
  4589. },
  4590. back: {
  4591. height: math.unit(6, "feet"),
  4592. weight: math.unit(175, "lb"),
  4593. name: "Back",
  4594. image: {
  4595. source: "./media/characters/mountain/back.svg",
  4596. extra: 970 / 950,
  4597. bottom: 28.25 / 999
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Large",
  4604. height: math.unit(20, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(300, "meters")
  4609. },
  4610. {
  4611. name: "Gigamacro",
  4612. height: math.unit(10000, "km"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Examacro",
  4617. height: math.unit(10e9, "lightyears")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(8, "feet"),
  4626. weight: math.unit(500, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/rick/front.svg"
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Normal",
  4636. height: math.unit(8, "feet"),
  4637. default: true
  4638. },
  4639. {
  4640. name: "Macro",
  4641. height: math.unit(5, "km")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(8, "feet"),
  4650. weight: math.unit(120, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/ona/front.svg"
  4654. }
  4655. },
  4656. frontAlt: {
  4657. height: math.unit(8, "feet"),
  4658. weight: math.unit(120, "lb"),
  4659. name: "Front (Alt)",
  4660. image: {
  4661. source: "./media/characters/ona/front-alt.svg"
  4662. }
  4663. },
  4664. back: {
  4665. height: math.unit(8, "feet"),
  4666. weight: math.unit(120, "lb"),
  4667. name: "Back",
  4668. image: {
  4669. source: "./media/characters/ona/back.svg"
  4670. }
  4671. },
  4672. foot: {
  4673. height: math.unit(1.1, "feet"),
  4674. name: "Foot",
  4675. image: {
  4676. source: "./media/characters/ona/foot.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Megamacro",
  4683. height: math.unit(70, "km"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Gigamacro",
  4688. height: math.unit(681818, "miles")
  4689. },
  4690. {
  4691. name: "Examacro",
  4692. height: math.unit(3800000, "lightyears")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(12, "feet"),
  4701. weight: math.unit(3000, "lb"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/mech/front.svg",
  4705. extra: 2900 / 2770,
  4706. bottom: 110 / 3010
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(12, "feet"),
  4711. weight: math.unit(3000, "lb"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/mech/back.svg",
  4715. extra: 3011 / 2890,
  4716. bottom: 94 / 3105
  4717. }
  4718. },
  4719. maw: {
  4720. height: math.unit(3.07, "feet"),
  4721. name: "Maw",
  4722. image: {
  4723. source: "./media/characters/mech/maw.svg"
  4724. }
  4725. },
  4726. head: {
  4727. height: math.unit(3.07, "feet"),
  4728. name: "Head",
  4729. image: {
  4730. source: "./media/characters/mech/head.svg"
  4731. }
  4732. },
  4733. dick: {
  4734. height: math.unit(1.43, "feet"),
  4735. name: "Dick",
  4736. image: {
  4737. source: "./media/characters/mech/dick.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(12, "feet")
  4745. },
  4746. {
  4747. name: "Macro",
  4748. height: math.unit(300, "feet"),
  4749. default: true
  4750. },
  4751. {
  4752. name: "Macro+",
  4753. height: math.unit(1500, "feet")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(1.3, "meter"),
  4762. weight: math.unit(30, "kg"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/gregory/front.svg",
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(1.3, "meter"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(20, "meter")
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(2.8, "meter"),
  4786. weight: math.unit(200, "kg"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/elory/front.svg",
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(2.8, "meter"),
  4797. default: true
  4798. },
  4799. {
  4800. name: "Macro",
  4801. height: math.unit(38, "meter")
  4802. }
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4807. {
  4808. front: {
  4809. height: math.unit(470, "feet"),
  4810. weight: math.unit(924, "tons"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/angelpatamon/front.svg",
  4814. }
  4815. }
  4816. },
  4817. [
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(470, "feet"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Deity Size I",
  4825. height: math.unit(28651.2, "km")
  4826. },
  4827. {
  4828. name: "Deity Size II",
  4829. height: math.unit(171907.2, "km")
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(7.2, "meter"),
  4838. weight: math.unit(8.2, "tons"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/cryae/side.svg",
  4842. extra: 3500 / 1500
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(7.2, "meter"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(175, "lb"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/xera/front.svg",
  4863. extra: 2377 / 1972,
  4864. bottom: 75.5 / 2452
  4865. }
  4866. },
  4867. side: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(175, "lb"),
  4870. name: "Side",
  4871. image: {
  4872. source: "./media/characters/xera/side.svg",
  4873. extra: 2345 / 2019,
  4874. bottom: 39.7 / 2384
  4875. }
  4876. },
  4877. back: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(175, "lb"),
  4880. name: "Back",
  4881. image: {
  4882. source: "./media/characters/xera/back.svg",
  4883. extra: 2095 / 1984,
  4884. bottom: 67 / 2166
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Small",
  4891. height: math.unit(10, "feet")
  4892. },
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(500, "meters"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro+",
  4900. height: math.unit(10, "km")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(25000, "km")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(3e6, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(175, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/nebula/front.svg",
  4921. extra: 2566 / 2362,
  4922. bottom: 81 / 2644
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Small",
  4929. height: math.unit(4.5, "meters")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(1500, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(150, "km")
  4939. },
  4940. {
  4941. name: "Gigamacro",
  4942. height: math.unit(27000, "km")
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4948. {
  4949. front: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(225, "lb"),
  4952. name: "Front",
  4953. image: {
  4954. source: "./media/characters/abysgar/front.svg",
  4955. extra: 1739/1614,
  4956. bottom: 71/1810
  4957. }
  4958. },
  4959. frontNsfw: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(225, "lb"),
  4962. name: "Front (NSFW)",
  4963. image: {
  4964. source: "./media/characters/abysgar/front-nsfw.svg",
  4965. extra: 1739/1614,
  4966. bottom: 71/1810
  4967. }
  4968. },
  4969. back: {
  4970. height: math.unit(4.6, "feet"),
  4971. weight: math.unit(225, "lb"),
  4972. name: "Back",
  4973. image: {
  4974. source: "./media/characters/abysgar/back.svg",
  4975. extra: 1384/1327,
  4976. bottom: 0/1384
  4977. }
  4978. },
  4979. head: {
  4980. height: math.unit(1.25, "feet"),
  4981. name: "Head",
  4982. image: {
  4983. source: "./media/characters/abysgar/head.svg",
  4984. extra: 669/569,
  4985. bottom: 0/669
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Small",
  4992. height: math.unit(4.5, "meters")
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(1250, "meters"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Megamacro",
  5001. height: math.unit(125, "km")
  5002. },
  5003. {
  5004. name: "Gigamacro",
  5005. height: math.unit(26000, "km")
  5006. }
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5011. {
  5012. front: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(180, "lb"),
  5015. name: "Front",
  5016. image: {
  5017. source: "./media/characters/yakuz/front.svg"
  5018. }
  5019. }
  5020. },
  5021. [
  5022. {
  5023. name: "Small",
  5024. height: math.unit(5, "meters")
  5025. },
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(1500, "meters"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Megamacro",
  5033. height: math.unit(200, "km")
  5034. },
  5035. {
  5036. name: "Gigamacro",
  5037. height: math.unit(100000, "km")
  5038. }
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(175, "lb"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/mirova/front.svg",
  5050. extra: 3334 / 3071,
  5051. bottom: 42 / 3375.6
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Small",
  5058. height: math.unit(5, "meters")
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(900, "meters"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Megamacro",
  5067. height: math.unit(135, "km")
  5068. },
  5069. {
  5070. name: "Gigamacro",
  5071. height: math.unit(20000, "km")
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5077. {
  5078. side: {
  5079. height: math.unit(28.35, "feet"),
  5080. weight: math.unit(99.75, "tons"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/asana-mech/side.svg",
  5084. extra: 923 / 699,
  5085. bottom: 50 / 975
  5086. }
  5087. },
  5088. chaingun: {
  5089. height: math.unit(7, "feet"),
  5090. weight: math.unit(2400, "lb"),
  5091. name: "Chaingun",
  5092. image: {
  5093. source: "./media/characters/asana-mech/chaingun.svg"
  5094. }
  5095. },
  5096. laser: {
  5097. height: math.unit(7.12, "feet"),
  5098. weight: math.unit(2000, "lb"),
  5099. name: "Laser",
  5100. image: {
  5101. source: "./media/characters/asana-mech/laser.svg"
  5102. }
  5103. },
  5104. },
  5105. [
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(28.35, "feet"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(2500, "feet")
  5114. },
  5115. {
  5116. name: "Megamacro",
  5117. height: math.unit(25, "miles")
  5118. },
  5119. {
  5120. name: "Examacro",
  5121. height: math.unit(6e8, "lightyears")
  5122. },
  5123. ]
  5124. ))
  5125. characterMakers.push(() => makeCharacter(
  5126. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5127. {
  5128. front: {
  5129. height: math.unit(5, "meters"),
  5130. weight: math.unit(1000, "kg"),
  5131. name: "Front",
  5132. image: {
  5133. source: "./media/characters/asche/front.svg",
  5134. extra: 1258 / 1190,
  5135. bottom: 47 / 1305
  5136. }
  5137. },
  5138. frontUnderwear: {
  5139. height: math.unit(5, "meters"),
  5140. weight: math.unit(1000, "kg"),
  5141. name: "Front (Underwear)",
  5142. image: {
  5143. source: "./media/characters/asche/front-underwear.svg",
  5144. extra: 1258 / 1190,
  5145. bottom: 47 / 1305
  5146. }
  5147. },
  5148. frontDressed: {
  5149. height: math.unit(5, "meters"),
  5150. weight: math.unit(1000, "kg"),
  5151. name: "Front (Dressed)",
  5152. image: {
  5153. source: "./media/characters/asche/front-dressed.svg",
  5154. extra: 1258 / 1190,
  5155. bottom: 47 / 1305
  5156. }
  5157. },
  5158. frontArmor: {
  5159. height: math.unit(5, "meters"),
  5160. weight: math.unit(1000, "kg"),
  5161. name: "Front (Armored)",
  5162. image: {
  5163. source: "./media/characters/asche/front-armored.svg",
  5164. extra: 1374 / 1308,
  5165. bottom: 23 / 1397
  5166. }
  5167. },
  5168. mp724: {
  5169. height: math.unit(0.96, "meters"),
  5170. weight: math.unit(38, "kg"),
  5171. name: "H&K MP724",
  5172. image: {
  5173. source: "./media/characters/asche/h&k-mp724.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(5, "meters"),
  5178. weight: math.unit(1000, "kg"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/asche/side.svg",
  5182. extra: 1717 / 1609,
  5183. bottom: 0.005
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(5, "meters"),
  5188. weight: math.unit(1000, "kg"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/asche/back.svg",
  5192. extra: 1570 / 1501
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "DEFCON 5",
  5199. height: math.unit(5, "meters")
  5200. },
  5201. {
  5202. name: "DEFCON 4",
  5203. height: math.unit(500, "meters"),
  5204. default: true
  5205. },
  5206. {
  5207. name: "DEFCON 3",
  5208. height: math.unit(5, "km")
  5209. },
  5210. {
  5211. name: "DEFCON 2",
  5212. height: math.unit(500, "km")
  5213. },
  5214. {
  5215. name: "DEFCON 1",
  5216. height: math.unit(500000, "km")
  5217. },
  5218. {
  5219. name: "DEFCON 0",
  5220. height: math.unit(3, "gigaparsecs")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(2, "meters"),
  5229. weight: math.unit(76, "kg"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/gale/front.svg"
  5233. }
  5234. },
  5235. frontAlt1: {
  5236. height: math.unit(2, "meters"),
  5237. weight: math.unit(76, "kg"),
  5238. name: "Front (Alt 1)",
  5239. image: {
  5240. source: "./media/characters/gale/front-alt-1.svg"
  5241. }
  5242. },
  5243. frontAlt2: {
  5244. height: math.unit(2, "meters"),
  5245. weight: math.unit(76, "kg"),
  5246. name: "Front (Alt 2)",
  5247. image: {
  5248. source: "./media/characters/gale/front-alt-2.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(7, "feet")
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(150, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Macro+",
  5264. height: math.unit(300, "feet")
  5265. },
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5270. {
  5271. front: {
  5272. height: math.unit(5 + 10/12, "feet"),
  5273. weight: math.unit(67, "kg"),
  5274. name: "Front",
  5275. image: {
  5276. source: "./media/characters/draylen/front.svg",
  5277. extra: 832/777,
  5278. bottom: 85/917
  5279. }
  5280. }
  5281. },
  5282. [
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(5 + 10/12, "feet")
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(150, "feet"),
  5290. default: true
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(7 + 9 / 12, "feet"),
  5299. weight: math.unit(379, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/chez/front.svg"
  5303. }
  5304. },
  5305. side: {
  5306. height: math.unit(7 + 9 / 12, "feet"),
  5307. weight: math.unit(379, "lbs"),
  5308. name: "Side",
  5309. image: {
  5310. source: "./media/characters/chez/side.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(7 + 9 / 12, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "God King",
  5322. height: math.unit(9750000, "meters")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(275, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/kaylum/front.svg",
  5335. bottom: 0.01,
  5336. extra: 1166 / 1031
  5337. }
  5338. },
  5339. frontWingless: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(275, "lbs"),
  5342. name: "Front (Wingless)",
  5343. image: {
  5344. source: "./media/characters/kaylum/front-wingless.svg",
  5345. bottom: 0.01,
  5346. extra: 1117 / 1031
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(3.05, "meters")
  5354. },
  5355. {
  5356. name: "Master",
  5357. height: math.unit(5.5, "meters")
  5358. },
  5359. {
  5360. name: "Rampage",
  5361. height: math.unit(19, "meters")
  5362. },
  5363. {
  5364. name: "Macro Lite",
  5365. height: math.unit(37, "meters")
  5366. },
  5367. {
  5368. name: "Hyper Predator",
  5369. height: math.unit(61, "meters")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(138, "meters"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(5 + 5 / 12, "feet"),
  5383. weight: math.unit(120, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/geta/front.svg",
  5387. extra: 1003/933,
  5388. bottom: 21/1024
  5389. }
  5390. },
  5391. paw: {
  5392. height: math.unit(0.35, "feet"),
  5393. name: "Paw",
  5394. image: {
  5395. source: "./media/characters/geta/paw.svg"
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Micro",
  5402. height: math.unit(3, "inches"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(5 + 5 / 12, "feet")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(300, "lbs"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/tyrnn/front.svg"
  5420. }
  5421. }
  5422. },
  5423. [
  5424. {
  5425. name: "Main Height",
  5426. height: math.unit(355, "feet"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Fave. Height",
  5431. height: math.unit(2400, "feet")
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(300, "lbs"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/appledectomy/front.svg"
  5444. }
  5445. }
  5446. },
  5447. [
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(2500, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(50, "miles"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Gigamacro",
  5459. height: math.unit(5000, "miles")
  5460. },
  5461. {
  5462. name: "Teramacro",
  5463. height: math.unit(250000, "miles")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(200, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/vulpes/front.svg",
  5476. extra: 573 / 543,
  5477. bottom: 0.033
  5478. }
  5479. },
  5480. side: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(200, "lbs"),
  5483. name: "Side",
  5484. image: {
  5485. source: "./media/characters/vulpes/side.svg",
  5486. extra: 577 / 549,
  5487. bottom: 11 / 588
  5488. }
  5489. },
  5490. back: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(200, "lbs"),
  5493. name: "Back",
  5494. image: {
  5495. source: "./media/characters/vulpes/back.svg",
  5496. extra: 573 / 549,
  5497. bottom: 20 / 593
  5498. }
  5499. },
  5500. feet: {
  5501. height: math.unit(1.276, "feet"),
  5502. name: "Feet",
  5503. image: {
  5504. source: "./media/characters/vulpes/feet.svg"
  5505. }
  5506. },
  5507. maw: {
  5508. height: math.unit(1.18, "feet"),
  5509. name: "Maw",
  5510. image: {
  5511. source: "./media/characters/vulpes/maw.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Micro",
  5518. height: math.unit(2, "inches")
  5519. },
  5520. {
  5521. name: "Normal",
  5522. height: math.unit(6.3, "feet")
  5523. },
  5524. {
  5525. name: "Macro",
  5526. height: math.unit(850, "feet")
  5527. },
  5528. {
  5529. name: "Megamacro",
  5530. height: math.unit(7500, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Gigamacro",
  5535. height: math.unit(570000, "miles")
  5536. }
  5537. ]
  5538. ))
  5539. characterMakers.push(() => makeCharacter(
  5540. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5541. {
  5542. front: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(210, "lbs"),
  5545. name: "Front",
  5546. image: {
  5547. source: "./media/characters/rain-fallen/front.svg"
  5548. }
  5549. },
  5550. side: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(210, "lbs"),
  5553. name: "Side",
  5554. image: {
  5555. source: "./media/characters/rain-fallen/side.svg"
  5556. }
  5557. },
  5558. back: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(210, "lbs"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/rain-fallen/back.svg"
  5564. }
  5565. },
  5566. feral: {
  5567. height: math.unit(9, "feet"),
  5568. weight: math.unit(700, "lbs"),
  5569. name: "Feral",
  5570. image: {
  5571. source: "./media/characters/rain-fallen/feral.svg"
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Meddling with Mortals",
  5578. height: math.unit(8 + 8/12, "feet")
  5579. },
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(5, "meter")
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(150, "meter"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Megamacro",
  5591. height: math.unit(278e6, "meter")
  5592. },
  5593. {
  5594. name: "Gigamacro",
  5595. height: math.unit(2e9, "meter")
  5596. },
  5597. {
  5598. name: "Teramacro",
  5599. height: math.unit(8e12, "meter")
  5600. },
  5601. {
  5602. name: "Devourer",
  5603. height: math.unit(14, "zettameters")
  5604. },
  5605. {
  5606. name: "Scarlet King",
  5607. height: math.unit(18, "yottameters")
  5608. },
  5609. {
  5610. name: "Void",
  5611. height: math.unit(1e88, "yottameters")
  5612. }
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5617. {
  5618. standing: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(180, "lbs"),
  5621. name: "Standing",
  5622. image: {
  5623. source: "./media/characters/zaakira/standing.svg",
  5624. extra: 1599/1504,
  5625. bottom: 39/1638
  5626. }
  5627. },
  5628. laying: {
  5629. height: math.unit(3.3, "feet"),
  5630. weight: math.unit(180, "lbs"),
  5631. name: "Laying",
  5632. image: {
  5633. source: "./media/characters/zaakira/laying.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(12, "feet")
  5641. },
  5642. {
  5643. name: "Macro",
  5644. height: math.unit(279, "feet"),
  5645. default: true
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5651. {
  5652. femSfw: {
  5653. height: math.unit(8, "feet"),
  5654. weight: math.unit(350, "lb"),
  5655. name: "Fem",
  5656. image: {
  5657. source: "./media/characters/sigvald/fem-sfw.svg",
  5658. extra: 182 / 164,
  5659. bottom: 8.7 / 190.5
  5660. }
  5661. },
  5662. femNsfw: {
  5663. height: math.unit(8, "feet"),
  5664. weight: math.unit(350, "lb"),
  5665. name: "Fem (NSFW)",
  5666. image: {
  5667. source: "./media/characters/sigvald/fem-nsfw.svg",
  5668. extra: 182 / 164,
  5669. bottom: 8.7 / 190.5
  5670. }
  5671. },
  5672. maleNsfw: {
  5673. height: math.unit(8, "feet"),
  5674. weight: math.unit(350, "lb"),
  5675. name: "Male (NSFW)",
  5676. image: {
  5677. source: "./media/characters/sigvald/male-nsfw.svg",
  5678. extra: 182 / 164,
  5679. bottom: 8.7 / 190.5
  5680. }
  5681. },
  5682. hermNsfw: {
  5683. height: math.unit(8, "feet"),
  5684. weight: math.unit(350, "lb"),
  5685. name: "Herm (NSFW)",
  5686. image: {
  5687. source: "./media/characters/sigvald/herm-nsfw.svg",
  5688. extra: 182 / 164,
  5689. bottom: 8.7 / 190.5
  5690. }
  5691. },
  5692. dick: {
  5693. height: math.unit(2.36, "feet"),
  5694. name: "Dick",
  5695. image: {
  5696. source: "./media/characters/sigvald/dick.svg"
  5697. }
  5698. },
  5699. eye: {
  5700. height: math.unit(0.31, "feet"),
  5701. name: "Eye",
  5702. image: {
  5703. source: "./media/characters/sigvald/eye.svg"
  5704. }
  5705. },
  5706. mouth: {
  5707. height: math.unit(0.92, "feet"),
  5708. name: "Mouth",
  5709. image: {
  5710. source: "./media/characters/sigvald/mouth.svg"
  5711. }
  5712. },
  5713. paws: {
  5714. height: math.unit(2.2, "feet"),
  5715. name: "Paws",
  5716. image: {
  5717. source: "./media/characters/sigvald/paws.svg"
  5718. }
  5719. }
  5720. },
  5721. [
  5722. {
  5723. name: "Normal",
  5724. height: math.unit(8, "feet")
  5725. },
  5726. {
  5727. name: "Large",
  5728. height: math.unit(12, "feet")
  5729. },
  5730. {
  5731. name: "Larger",
  5732. height: math.unit(20, "feet")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(150, "feet")
  5737. },
  5738. {
  5739. name: "Macro+",
  5740. height: math.unit(200, "feet"),
  5741. default: true
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5747. {
  5748. side: {
  5749. height: math.unit(12, "feet"),
  5750. weight: math.unit(2000, "kg"),
  5751. name: "Side",
  5752. image: {
  5753. source: "./media/characters/scott/side.svg",
  5754. extra: 754 / 724,
  5755. bottom: 0.069
  5756. }
  5757. },
  5758. upright: {
  5759. height: math.unit(12, "feet"),
  5760. weight: math.unit(2000, "kg"),
  5761. name: "Upright",
  5762. image: {
  5763. source: "./media/characters/scott/upright.svg",
  5764. extra: 3881 / 3722,
  5765. bottom: 0.05
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(12, "feet"),
  5773. default: true
  5774. },
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5779. {
  5780. side: {
  5781. height: math.unit(8, "meters"),
  5782. weight: math.unit(84755, "lbs"),
  5783. name: "Side",
  5784. image: {
  5785. source: "./media/characters/tobias/side.svg",
  5786. extra: 1474 / 1096,
  5787. bottom: 38.9 / 1513.1235
  5788. }
  5789. },
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(8, "meters"),
  5795. default: true
  5796. },
  5797. ]
  5798. ))
  5799. characterMakers.push(() => makeCharacter(
  5800. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5801. {
  5802. front: {
  5803. height: math.unit(5.5, "feet"),
  5804. weight: math.unit(400, "lbs"),
  5805. name: "Front",
  5806. image: {
  5807. source: "./media/characters/kieran/front.svg",
  5808. extra: 2694 / 2364,
  5809. bottom: 217 / 2908
  5810. }
  5811. },
  5812. side: {
  5813. height: math.unit(5.5, "feet"),
  5814. weight: math.unit(400, "lbs"),
  5815. name: "Side",
  5816. image: {
  5817. source: "./media/characters/kieran/side.svg",
  5818. extra: 875 / 777,
  5819. bottom: 84.6 / 959
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(5.5, "feet"),
  5827. default: true
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5833. {
  5834. side: {
  5835. height: math.unit(2, "meters"),
  5836. weight: math.unit(70, "kg"),
  5837. name: "Side",
  5838. image: {
  5839. source: "./media/characters/sanya/side.svg",
  5840. bottom: 0.02,
  5841. extra: 1.02
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Small",
  5848. height: math.unit(2, "meters")
  5849. },
  5850. {
  5851. name: "Normal",
  5852. height: math.unit(3, "meters")
  5853. },
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(16, "meters"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(120, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/miranda/front.svg",
  5870. extra: 195 / 185,
  5871. bottom: 10.9 / 206.5
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(2, "meters"),
  5876. weight: math.unit(120, "kg"),
  5877. name: "Back",
  5878. image: {
  5879. source: "./media/characters/miranda/back.svg",
  5880. extra: 201 / 193,
  5881. bottom: 2.3 / 203.7
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Normal",
  5888. height: math.unit(10, "feet"),
  5889. default: true
  5890. }
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "James", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. side: {
  5897. height: math.unit(2, "meters"),
  5898. weight: math.unit(100, "kg"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/james/front.svg",
  5902. extra: 10 / 8.5
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(8.5, "feet"),
  5910. default: true
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5916. {
  5917. side: {
  5918. height: math.unit(9.5, "feet"),
  5919. weight: math.unit(2500, "lbs"),
  5920. name: "Side",
  5921. image: {
  5922. source: "./media/characters/heather/side.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(9.5, "feet"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5936. {
  5937. side: {
  5938. height: math.unit(6.5, "feet"),
  5939. weight: math.unit(400, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/lukas/side.svg",
  5943. extra: 7.25 / 6.5
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(6.5, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5957. {
  5958. side: {
  5959. height: math.unit(5, "feet"),
  5960. weight: math.unit(3000, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/louise/side.svg"
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(5, "feet"),
  5971. default: true
  5972. }
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5977. {
  5978. side: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(150, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/ramona/side.svg",
  5984. extra: 871/854,
  5985. bottom: 41/912
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(6 + 4/12, "feet")
  5993. },
  5994. {
  5995. name: "Minimacro",
  5996. height: math.unit(5.3, "meters"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Macro",
  6001. height: math.unit(20, "stories")
  6002. },
  6003. {
  6004. name: "Macro+",
  6005. height: math.unit(50, "stories")
  6006. },
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6011. {
  6012. standing: {
  6013. height: math.unit(5.75, "feet"),
  6014. weight: math.unit(160, "lbs"),
  6015. name: "Standing",
  6016. image: {
  6017. source: "./media/characters/deerpuff/standing.svg",
  6018. extra: 682 / 624
  6019. }
  6020. },
  6021. sitting: {
  6022. height: math.unit(5.75 / 1.79, "feet"),
  6023. weight: math.unit(160, "lbs"),
  6024. name: "Sitting",
  6025. image: {
  6026. source: "./media/characters/deerpuff/sitting.svg",
  6027. bottom: 44 / 400,
  6028. extra: 1
  6029. }
  6030. },
  6031. taurLaying: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(400, "lbs"),
  6034. name: "Taur (Laying)",
  6035. image: {
  6036. source: "./media/characters/deerpuff/taur-laying.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Puffball",
  6043. height: math.unit(6, "inches")
  6044. },
  6045. {
  6046. name: "Normalpuff",
  6047. height: math.unit(5.75, "feet")
  6048. },
  6049. {
  6050. name: "Macropuff",
  6051. height: math.unit(1500, "feet"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Megapuff",
  6056. height: math.unit(500, "miles")
  6057. },
  6058. {
  6059. name: "Gigapuff",
  6060. height: math.unit(250000, "miles")
  6061. },
  6062. {
  6063. name: "Omegapuff",
  6064. height: math.unit(1000, "lightyears")
  6065. },
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6070. {
  6071. stomping: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(170, "lbs"),
  6074. name: "Stomping",
  6075. image: {
  6076. source: "./media/characters/vivian/stomping.svg"
  6077. }
  6078. },
  6079. sitting: {
  6080. height: math.unit(6 / 1.75, "feet"),
  6081. weight: math.unit(170, "lbs"),
  6082. name: "Sitting",
  6083. image: {
  6084. source: "./media/characters/vivian/sitting.svg",
  6085. bottom: 1 / 6.4,
  6086. extra: 1,
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(7, "feet"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(10, "stories")
  6099. },
  6100. {
  6101. name: "Macro+",
  6102. height: math.unit(30, "stories")
  6103. },
  6104. {
  6105. name: "Megamacro",
  6106. height: math.unit(10, "miles")
  6107. },
  6108. {
  6109. name: "Megamacro+",
  6110. height: math.unit(2750000, "meters")
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(6, "feet"),
  6119. weight: math.unit(160, "lbs"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/prince/front.svg",
  6123. extra: 1938/1682,
  6124. bottom: 45/1983
  6125. }
  6126. },
  6127. back: {
  6128. height: math.unit(6, "feet"),
  6129. weight: math.unit(160, "lbs"),
  6130. name: "Back",
  6131. image: {
  6132. source: "./media/characters/prince/back.svg",
  6133. extra: 1955/1726,
  6134. bottom: 6/1961
  6135. }
  6136. },
  6137. },
  6138. [
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(7.75, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Not cute",
  6146. height: math.unit(17, "feet")
  6147. },
  6148. {
  6149. name: "I said NOT",
  6150. height: math.unit(91, "feet")
  6151. },
  6152. {
  6153. name: "Please stop",
  6154. height: math.unit(560, "feet")
  6155. },
  6156. {
  6157. name: "What have you done",
  6158. height: math.unit(2200, "feet")
  6159. },
  6160. {
  6161. name: "Deer God",
  6162. height: math.unit(3.6, "miles")
  6163. },
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6168. {
  6169. standing: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(300, "lbs"),
  6172. name: "Standing",
  6173. image: {
  6174. source: "./media/characters/psymon/standing.svg",
  6175. extra: 1888 / 1810,
  6176. bottom: 0.05
  6177. }
  6178. },
  6179. slithering: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(300, "lbs"),
  6182. name: "Slithering",
  6183. image: {
  6184. source: "./media/characters/psymon/slithering.svg",
  6185. extra: 1330 / 1224
  6186. }
  6187. },
  6188. slitheringAlt: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(300, "lbs"),
  6191. name: "Slithering (Alt)",
  6192. image: {
  6193. source: "./media/characters/psymon/slithering-alt.svg",
  6194. extra: 1330 / 1224
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(11.25, "feet"),
  6202. default: true
  6203. },
  6204. {
  6205. name: "Large",
  6206. height: math.unit(27, "feet")
  6207. },
  6208. {
  6209. name: "Giant",
  6210. height: math.unit(87, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(365, "feet")
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(3, "miles")
  6219. },
  6220. {
  6221. name: "World Serpent",
  6222. height: math.unit(8000, "miles")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(180, "lbs"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/daimos/front.svg",
  6235. extra: 4160 / 3897,
  6236. bottom: 0.021
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(8, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Big Dog",
  6248. height: math.unit(22, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(127, "feet")
  6253. },
  6254. {
  6255. name: "Megamacro",
  6256. height: math.unit(3600, "feet")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6262. {
  6263. side: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(180, "lbs"),
  6266. name: "Side",
  6267. image: {
  6268. source: "./media/characters/blake/side.svg",
  6269. extra: 1212 / 1120,
  6270. bottom: 0.05
  6271. }
  6272. },
  6273. crouched: {
  6274. height: math.unit(6 * 0.57, "feet"),
  6275. weight: math.unit(180, "lbs"),
  6276. name: "Crouched",
  6277. image: {
  6278. source: "./media/characters/blake/crouched.svg",
  6279. extra: 840 / 587,
  6280. bottom: 0.04
  6281. }
  6282. },
  6283. bent: {
  6284. height: math.unit(6 * 0.75, "feet"),
  6285. weight: math.unit(180, "lbs"),
  6286. name: "Bent",
  6287. image: {
  6288. source: "./media/characters/blake/bent.svg",
  6289. extra: 592 / 544,
  6290. bottom: 0.035
  6291. }
  6292. },
  6293. },
  6294. [
  6295. {
  6296. name: "Normal",
  6297. height: math.unit(8 + 1 / 6, "feet"),
  6298. default: true
  6299. },
  6300. {
  6301. name: "Big Backside",
  6302. height: math.unit(37, "feet")
  6303. },
  6304. {
  6305. name: "Subway Shredder",
  6306. height: math.unit(72, "feet")
  6307. },
  6308. {
  6309. name: "City Carver",
  6310. height: math.unit(1675, "feet")
  6311. },
  6312. {
  6313. name: "Tectonic Tweaker",
  6314. height: math.unit(2300, "miles")
  6315. },
  6316. ]
  6317. ))
  6318. characterMakers.push(() => makeCharacter(
  6319. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6320. {
  6321. front: {
  6322. height: math.unit(6, "feet"),
  6323. weight: math.unit(180, "lbs"),
  6324. name: "Front",
  6325. image: {
  6326. source: "./media/characters/guisetto/front.svg",
  6327. extra: 856 / 817,
  6328. bottom: 0.06
  6329. }
  6330. },
  6331. airborne: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(180, "lbs"),
  6334. name: "Airborne",
  6335. image: {
  6336. source: "./media/characters/guisetto/airborne.svg",
  6337. extra: 584 / 525
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(10 + 11 / 12, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Large",
  6349. height: math.unit(35, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(475, "feet")
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(180, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/luxor/front.svg",
  6366. extra: 2940 / 2152
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(180, "lbs"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/luxor/back.svg",
  6375. extra: 1083 / 960
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(5 + 5 / 6, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Lamp",
  6387. height: math.unit(50, "feet")
  6388. },
  6389. {
  6390. name: "Lämp",
  6391. height: math.unit(300, "feet")
  6392. },
  6393. {
  6394. name: "The sun is a lamp",
  6395. height: math.unit(250000, "miles")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(50, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/huoyan/front.svg"
  6408. }
  6409. },
  6410. side: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(180, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/huoyan/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Chef",
  6422. height: math.unit(9, "feet")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(65, "feet"),
  6427. default: true
  6428. },
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(780, "feet")
  6432. },
  6433. {
  6434. name: "Flaming Mountain",
  6435. height: math.unit(4.8, "miles")
  6436. },
  6437. {
  6438. name: "Celestial",
  6439. height: math.unit(765000, "miles")
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(5 + 3 / 4, "feet"),
  6448. weight: math.unit(120, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/tails/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(5 + 3 / 4, "feet"),
  6459. default: true
  6460. }
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(4, "feet"),
  6468. weight: math.unit(50, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/rainy/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(800, "feet"),
  6479. default: true
  6480. }
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(150, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/rainier/front.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Micro",
  6498. height: math.unit(2, "mm"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(8 + 4/12, "feet"),
  6508. weight: math.unit(450, "kilograms"),
  6509. volume: math.unit(5, "cups"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/andy-renard/front.svg",
  6513. extra: 1839/1726,
  6514. bottom: 134/1973
  6515. }
  6516. },
  6517. back: {
  6518. height: math.unit(8 + 4/12, "feet"),
  6519. weight: math.unit(450, "kilograms"),
  6520. volume: math.unit(5, "cups"),
  6521. name: "Back",
  6522. image: {
  6523. source: "./media/characters/andy-renard/back.svg",
  6524. extra: 1838/1710,
  6525. bottom: 105/1943
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Tall",
  6532. height: math.unit(8 + 4/12, "feet")
  6533. },
  6534. {
  6535. name: "Mini Macro",
  6536. height: math.unit(15, "feet"),
  6537. default: true
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(100, "feet")
  6542. },
  6543. {
  6544. name: "Mega Macro",
  6545. height: math.unit(1000, "feet")
  6546. },
  6547. {
  6548. name: "Giga Macro",
  6549. height: math.unit(10, "miles")
  6550. },
  6551. {
  6552. name: "God Macro",
  6553. height: math.unit(1, "multiverse")
  6554. },
  6555. ]
  6556. ))
  6557. characterMakers.push(() => makeCharacter(
  6558. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6559. {
  6560. front: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(210, "lbs"),
  6563. name: "Front",
  6564. image: {
  6565. source: "./media/characters/cimmaron/front-sfw.svg",
  6566. extra: 701 / 676,
  6567. bottom: 0.046
  6568. }
  6569. },
  6570. back: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(210, "lbs"),
  6573. name: "Back",
  6574. image: {
  6575. source: "./media/characters/cimmaron/back-sfw.svg",
  6576. extra: 701 / 676,
  6577. bottom: 0.046
  6578. }
  6579. },
  6580. frontNsfw: {
  6581. height: math.unit(6, "feet"),
  6582. weight: math.unit(210, "lbs"),
  6583. name: "Front (NSFW)",
  6584. image: {
  6585. source: "./media/characters/cimmaron/front-nsfw.svg",
  6586. extra: 701 / 676,
  6587. bottom: 0.046
  6588. }
  6589. },
  6590. backNsfw: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(210, "lbs"),
  6593. name: "Back (NSFW)",
  6594. image: {
  6595. source: "./media/characters/cimmaron/back-nsfw.svg",
  6596. extra: 701 / 676,
  6597. bottom: 0.046
  6598. }
  6599. },
  6600. dick: {
  6601. height: math.unit(1.714, "feet"),
  6602. name: "Dick",
  6603. image: {
  6604. source: "./media/characters/cimmaron/dick.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(6, "feet"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro Mayor",
  6616. height: math.unit(350, "meters")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(200, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/akari/front.svg",
  6629. extra: 962 / 901,
  6630. bottom: 0.04
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Micro",
  6637. height: math.unit(5, "inches"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(7, "feet")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(140, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/cynosura/front.svg",
  6655. extra: 437/410,
  6656. bottom: 9/446
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(140, "lbs"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/cynosura/back.svg",
  6665. extra: 1304/1160,
  6666. bottom: 71/1375
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Micro",
  6673. height: math.unit(4, "inches")
  6674. },
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(5.75, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Tall",
  6682. height: math.unit(10, "feet")
  6683. },
  6684. {
  6685. name: "Big",
  6686. height: math.unit(20, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(50, "feet")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(13 + 2/12, "feet"),
  6699. weight: math.unit(800, "kg"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/gin/front.svg",
  6703. extra: 1312/1191,
  6704. bottom: 45/1357
  6705. }
  6706. },
  6707. mouth: {
  6708. height: math.unit(2.39 * 1.8, "feet"),
  6709. name: "Mouth",
  6710. image: {
  6711. source: "./media/characters/gin/mouth.svg"
  6712. }
  6713. },
  6714. hand: {
  6715. height: math.unit(1.57 * 2.19, "feet"),
  6716. name: "Hand",
  6717. image: {
  6718. source: "./media/characters/gin/hand.svg"
  6719. }
  6720. },
  6721. foot: {
  6722. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6723. name: "Foot",
  6724. image: {
  6725. source: "./media/characters/gin/foot.svg"
  6726. }
  6727. },
  6728. sole: {
  6729. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6730. name: "Sole",
  6731. image: {
  6732. source: "./media/characters/gin/sole.svg"
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Very Small",
  6739. height: math.unit(13 + 2 / 12, "feet")
  6740. },
  6741. {
  6742. name: "Micro",
  6743. height: math.unit(600, "miles")
  6744. },
  6745. {
  6746. name: "Regular",
  6747. height: math.unit(20, "earths"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(2.2, "solarradii")
  6753. },
  6754. {
  6755. name: "Teramacro",
  6756. height: math.unit(1.2, "galaxies")
  6757. },
  6758. {
  6759. name: "Omegamacro",
  6760. height: math.unit(200, "universes")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6 + 1 / 6, "feet"),
  6769. weight: math.unit(178, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/guy/front.svg"
  6773. }
  6774. }
  6775. },
  6776. [
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(6 + 1 / 6, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Large",
  6784. height: math.unit(25 + 7 / 12, "feet")
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(60 + 9 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Macro+",
  6792. height: math.unit(246, "feet")
  6793. },
  6794. {
  6795. name: "Macro++",
  6796. height: math.unit(878, "feet")
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(9, "feet"),
  6805. weight: math.unit(800, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tiberius/front.svg",
  6809. extra: 2295 / 2071
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(9, "feet"),
  6814. weight: math.unit(800, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/tiberius/back.svg",
  6818. extra: 2373 / 2160
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(9, "feet"),
  6826. default: true
  6827. }
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(600, "lbs"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/surgo/front.svg",
  6839. extra: 3591 / 2227
  6840. }
  6841. },
  6842. back: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(600, "lbs"),
  6845. name: "Back",
  6846. image: {
  6847. source: "./media/characters/surgo/back.svg",
  6848. extra: 3557 / 2228
  6849. }
  6850. },
  6851. laying: {
  6852. height: math.unit(6 * 0.85, "feet"),
  6853. weight: math.unit(600, "lbs"),
  6854. name: "Laying",
  6855. image: {
  6856. source: "./media/characters/surgo/laying.svg"
  6857. }
  6858. },
  6859. },
  6860. [
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(6, "feet"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6870. {
  6871. side: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(150, "lbs"),
  6874. name: "Side",
  6875. image: {
  6876. source: "./media/characters/cibus/side.svg",
  6877. extra: 800 / 400
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(6, "feet"),
  6885. default: true
  6886. }
  6887. ]
  6888. ))
  6889. characterMakers.push(() => makeCharacter(
  6890. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6891. {
  6892. front: {
  6893. height: math.unit(6, "feet"),
  6894. weight: math.unit(240, "lbs"),
  6895. name: "Front",
  6896. image: {
  6897. source: "./media/characters/nibbles/front.svg"
  6898. }
  6899. },
  6900. side: {
  6901. height: math.unit(6, "feet"),
  6902. weight: math.unit(240, "lbs"),
  6903. name: "Side",
  6904. image: {
  6905. source: "./media/characters/nibbles/side.svg"
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(9, "feet"),
  6913. default: true
  6914. }
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6919. {
  6920. side: {
  6921. height: math.unit(5 + 1 / 6, "feet"),
  6922. weight: math.unit(130, "lbs"),
  6923. name: "Side",
  6924. image: {
  6925. source: "./media/characters/rikky/side.svg",
  6926. extra: 851 / 801
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(5 + 1 / 6, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(152, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(7, "miles")
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6948. {
  6949. side: {
  6950. height: math.unit(370, "cm"),
  6951. weight: math.unit(350, "lbs"),
  6952. name: "Side",
  6953. image: {
  6954. source: "./media/characters/malfressa/side.svg"
  6955. }
  6956. },
  6957. walking: {
  6958. height: math.unit(370, "cm"),
  6959. weight: math.unit(350, "lbs"),
  6960. name: "Walking",
  6961. image: {
  6962. source: "./media/characters/malfressa/walking.svg"
  6963. }
  6964. },
  6965. feral: {
  6966. height: math.unit(2500, "cm"),
  6967. weight: math.unit(100000, "lbs"),
  6968. name: "Feral",
  6969. image: {
  6970. source: "./media/characters/malfressa/feral.svg",
  6971. extra: 2108 / 837,
  6972. bottom: 0.02
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(370, "cm")
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(300, "meters"),
  6984. default: true
  6985. }
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(60, "kg"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/jaro/front.svg",
  6997. extra: 845/817,
  6998. bottom: 45/890
  6999. }
  7000. },
  7001. back: {
  7002. height: math.unit(6, "feet"),
  7003. weight: math.unit(60, "kg"),
  7004. name: "Back",
  7005. image: {
  7006. source: "./media/characters/jaro/back.svg",
  7007. extra: 847/817,
  7008. bottom: 34/881
  7009. }
  7010. },
  7011. },
  7012. [
  7013. {
  7014. name: "Micro",
  7015. height: math.unit(7, "inches")
  7016. },
  7017. {
  7018. name: "Normal",
  7019. height: math.unit(5.5, "feet"),
  7020. default: true
  7021. },
  7022. {
  7023. name: "Minimacro",
  7024. height: math.unit(20, "feet")
  7025. },
  7026. {
  7027. name: "Macro",
  7028. height: math.unit(200, "meters")
  7029. }
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(195, "lb"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/rogue/front.svg"
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(90, "feet"),
  7048. default: true
  7049. },
  7050. ]
  7051. ))
  7052. characterMakers.push(() => makeCharacter(
  7053. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7054. {
  7055. standing: {
  7056. height: math.unit(5 + 8 / 12, "feet"),
  7057. weight: math.unit(140, "lb"),
  7058. name: "Standing",
  7059. image: {
  7060. source: "./media/characters/piper/standing.svg",
  7061. extra: 1440/1284,
  7062. bottom: 66/1506
  7063. }
  7064. },
  7065. running: {
  7066. height: math.unit(5 + 8 / 12, "feet"),
  7067. weight: math.unit(140, "lb"),
  7068. name: "Running",
  7069. image: {
  7070. source: "./media/characters/piper/running.svg",
  7071. extra: 3948/3655,
  7072. bottom: 0/3948
  7073. }
  7074. },
  7075. sole: {
  7076. height: math.unit(0.81, "feet"),
  7077. weight: math.unit(2, "kg"),
  7078. name: "Sole",
  7079. image: {
  7080. source: "./media/characters/piper/sole.svg"
  7081. }
  7082. },
  7083. nipple: {
  7084. height: math.unit(0.25, "feet"),
  7085. weight: math.unit(1.5, "lb"),
  7086. name: "Nipple",
  7087. image: {
  7088. source: "./media/characters/piper/nipple.svg"
  7089. }
  7090. },
  7091. head: {
  7092. height: math.unit(1.1, "feet"),
  7093. name: "Head",
  7094. image: {
  7095. source: "./media/characters/piper/head.svg"
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Micro",
  7102. height: math.unit(2, "inches")
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(5 + 8 / 12, "feet")
  7107. },
  7108. {
  7109. name: "Macro",
  7110. height: math.unit(250, "feet"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(7, "miles")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(220, "lb"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/gemini/front.svg"
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(220, "lb"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/gemini/back.svg"
  7136. }
  7137. },
  7138. kneeling: {
  7139. height: math.unit(6 / 1.5, "feet"),
  7140. weight: math.unit(220, "lb"),
  7141. name: "Kneeling",
  7142. image: {
  7143. source: "./media/characters/gemini/kneeling.svg",
  7144. bottom: 0.02
  7145. }
  7146. },
  7147. },
  7148. [
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(300, "meters"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Megamacro",
  7156. height: math.unit(6900, "meters")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7162. {
  7163. anthro: {
  7164. height: math.unit(2.35, "meters"),
  7165. weight: math.unit(73, "kg"),
  7166. name: "Anthro",
  7167. image: {
  7168. source: "./media/characters/alicia/anthro.svg",
  7169. extra: 2571 / 2385,
  7170. bottom: 75 / 2648
  7171. }
  7172. },
  7173. paw: {
  7174. height: math.unit(1.32, "feet"),
  7175. name: "Paw",
  7176. image: {
  7177. source: "./media/characters/alicia/paw.svg"
  7178. }
  7179. },
  7180. feral: {
  7181. height: math.unit(1.69, "meters"),
  7182. weight: math.unit(73, "kg"),
  7183. name: "Feral",
  7184. image: {
  7185. source: "./media/characters/alicia/feral.svg",
  7186. extra: 2123 / 1715,
  7187. bottom: 222 / 2349
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(2.35, "meters")
  7195. },
  7196. {
  7197. name: "Macro",
  7198. height: math.unit(60, "meters"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Megamacro",
  7203. height: math.unit(10000, "kilometers")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(7, "feet"),
  7212. weight: math.unit(250, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/archy/front.svg"
  7216. }
  7217. }
  7218. },
  7219. [
  7220. {
  7221. name: "Micro",
  7222. height: math.unit(1, "inch")
  7223. },
  7224. {
  7225. name: "Shorty",
  7226. height: math.unit(5, "feet")
  7227. },
  7228. {
  7229. name: "Normal",
  7230. height: math.unit(7, "feet")
  7231. },
  7232. {
  7233. name: "Macro",
  7234. height: math.unit(600, "meters"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Megamacro",
  7239. height: math.unit(1, "mile")
  7240. },
  7241. ]
  7242. ))
  7243. characterMakers.push(() => makeCharacter(
  7244. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7245. {
  7246. front: {
  7247. height: math.unit(1.65, "meters"),
  7248. weight: math.unit(74, "kg"),
  7249. name: "Front",
  7250. image: {
  7251. source: "./media/characters/berri/front.svg",
  7252. extra: 857 / 837,
  7253. bottom: 18 / 877
  7254. }
  7255. },
  7256. bum: {
  7257. height: math.unit(1.46, "feet"),
  7258. name: "Bum",
  7259. image: {
  7260. source: "./media/characters/berri/bum.svg"
  7261. }
  7262. },
  7263. mouth: {
  7264. height: math.unit(0.44, "feet"),
  7265. name: "Mouth",
  7266. image: {
  7267. source: "./media/characters/berri/mouth.svg"
  7268. }
  7269. },
  7270. paw: {
  7271. height: math.unit(0.826, "feet"),
  7272. name: "Paw",
  7273. image: {
  7274. source: "./media/characters/berri/paw.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(1.65, "meters")
  7282. },
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(60, "m"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(9.213, "km")
  7291. },
  7292. {
  7293. name: "Planet Eater",
  7294. height: math.unit(489, "megameters")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(2471635000000, "meters")
  7299. },
  7300. {
  7301. name: "Examacro",
  7302. height: math.unit(8.0624e+26, "meters")
  7303. }
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(1.72, "meters"),
  7311. weight: math.unit(68, "kg"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/lexi/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Very Smol",
  7321. height: math.unit(10, "mm")
  7322. },
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(6.8, "cm"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(1.72, "m")
  7331. }
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(1.69, "meters"),
  7339. weight: math.unit(68, "kg"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/martin/front.svg",
  7343. extra: 596 / 581
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Micro",
  7350. height: math.unit(6.85, "cm"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(1.69, "m")
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(1.69, "meters"),
  7364. weight: math.unit(68, "kg"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/juno/front.svg"
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(7, "cm")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(1.89, "m")
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(353, "meters"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7389. {
  7390. front: {
  7391. height: math.unit(1.93, "meters"),
  7392. weight: math.unit(83, "kg"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/samantha/front.svg"
  7396. }
  7397. },
  7398. frontClothed: {
  7399. height: math.unit(1.93, "meters"),
  7400. weight: math.unit(83, "kg"),
  7401. name: "Front (Clothed)",
  7402. image: {
  7403. source: "./media/characters/samantha/front-clothed.svg"
  7404. }
  7405. },
  7406. back: {
  7407. height: math.unit(1.93, "meters"),
  7408. weight: math.unit(83, "kg"),
  7409. name: "Back",
  7410. image: {
  7411. source: "./media/characters/samantha/back.svg"
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(1.93, "m")
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(74, "meters"),
  7423. default: true
  7424. },
  7425. {
  7426. name: "Macro+",
  7427. height: math.unit(223, "meters"),
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(8381, "meters"),
  7432. },
  7433. {
  7434. name: "Megamacro+",
  7435. height: math.unit(12000, "kilometers")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(1.92, "meters"),
  7444. weight: math.unit(80, "kg"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/dr-clay/front.svg"
  7448. }
  7449. },
  7450. frontClothed: {
  7451. height: math.unit(1.92, "meters"),
  7452. weight: math.unit(80, "kg"),
  7453. name: "Front (Clothed)",
  7454. image: {
  7455. source: "./media/characters/dr-clay/front-clothed.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Normal",
  7462. height: math.unit(1.92, "m")
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(214, "meters"),
  7467. default: true
  7468. },
  7469. {
  7470. name: "Macro+",
  7471. height: math.unit(12.237, "meters"),
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(557, "megameters"),
  7476. },
  7477. {
  7478. name: "Unimaginable",
  7479. height: math.unit(120e9, "lightyears")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(2, "meters"),
  7488. weight: math.unit(80, "kg"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Teramacro",
  7498. height: math.unit(500000, "lightyears"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7505. {
  7506. crux: {
  7507. height: math.unit(2, "meters"),
  7508. weight: math.unit(150, "kg"),
  7509. name: "Crux",
  7510. image: {
  7511. source: "./media/characters/vemus/crux.svg",
  7512. extra: 1074/936,
  7513. bottom: 23/1097
  7514. }
  7515. },
  7516. skunkTanuki: {
  7517. height: math.unit(2, "meters"),
  7518. weight: math.unit(150, "kg"),
  7519. name: "Skunk-Tanuki",
  7520. image: {
  7521. source: "./media/characters/vemus/skunk-tanuki.svg",
  7522. extra: 926/893,
  7523. bottom: 20/946
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Normal",
  7530. height: math.unit(4, "meters"),
  7531. default: true
  7532. },
  7533. {
  7534. name: "Big",
  7535. height: math.unit(8, "meters")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(100, "meters")
  7540. },
  7541. {
  7542. name: "Macro+",
  7543. height: math.unit(1500, "meters")
  7544. },
  7545. {
  7546. name: "Stellar",
  7547. height: math.unit(14e8, "meters")
  7548. },
  7549. ]
  7550. ))
  7551. characterMakers.push(() => makeCharacter(
  7552. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7553. {
  7554. front: {
  7555. height: math.unit(2, "meters"),
  7556. weight: math.unit(70, "kg"),
  7557. name: "Front",
  7558. image: {
  7559. source: "./media/characters/beherit/front.svg",
  7560. extra: 1234/1109,
  7561. bottom: 55/1289
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet")
  7569. },
  7570. {
  7571. name: "Lorg",
  7572. height: math.unit(25, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Lorger",
  7577. height: math.unit(75, "feet")
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(200, "meters")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(2, "meters"),
  7590. weight: math.unit(150, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/everett/front.svg",
  7594. extra: 1017/866,
  7595. bottom: 86/1103
  7596. }
  7597. },
  7598. paw: {
  7599. height: math.unit(2 / 3.6, "meters"),
  7600. name: "Paw",
  7601. image: {
  7602. source: "./media/characters/everett/paw.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(15, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Lorg",
  7614. height: math.unit(70, "feet"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Lorger",
  7619. height: math.unit(250, "feet")
  7620. },
  7621. {
  7622. name: "Macro",
  7623. height: math.unit(500, "meters")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(2, "meters"),
  7632. weight: math.unit(86, "kg"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/rose/front.svg",
  7636. extra: 1785/1636,
  7637. bottom: 30/1815
  7638. },
  7639. form: "liom",
  7640. default: true
  7641. },
  7642. frontSporty: {
  7643. height: math.unit(2, "meters"),
  7644. weight: math.unit(86, "kg"),
  7645. name: "Front (Sporty)",
  7646. image: {
  7647. source: "./media/characters/rose/front-sporty.svg",
  7648. extra: 350/335,
  7649. bottom: 10/360
  7650. },
  7651. form: "liom"
  7652. },
  7653. frontAlt: {
  7654. height: math.unit(1.6, "meters"),
  7655. weight: math.unit(86, "kg"),
  7656. name: "Front (Alt)",
  7657. image: {
  7658. source: "./media/characters/rose/front-alt.svg",
  7659. extra: 299/283,
  7660. bottom: 3/302
  7661. },
  7662. form: "liom"
  7663. },
  7664. plush: {
  7665. height: math.unit(2, "meters"),
  7666. weight: math.unit(86/3, "kg"),
  7667. name: "Plush",
  7668. image: {
  7669. source: "./media/characters/rose/plush.svg",
  7670. extra: 361/337,
  7671. bottom: 11/372
  7672. },
  7673. form: "plush",
  7674. default: true
  7675. },
  7676. faeStanding: {
  7677. height: math.unit(10, "cm"),
  7678. weight: math.unit(10, "grams"),
  7679. name: "Standing",
  7680. image: {
  7681. source: "./media/characters/rose/fae-standing.svg",
  7682. extra: 1189/1060,
  7683. bottom: 27/1216
  7684. },
  7685. form: "fae",
  7686. default: true
  7687. },
  7688. faeSitting: {
  7689. height: math.unit(5, "cm"),
  7690. weight: math.unit(10, "grams"),
  7691. name: "Sitting",
  7692. image: {
  7693. source: "./media/characters/rose/fae-sitting.svg",
  7694. extra: 737/577,
  7695. bottom: 356/1093
  7696. },
  7697. form: "fae"
  7698. },
  7699. faePaw: {
  7700. height: math.unit(1.35, "cm"),
  7701. name: "Paw",
  7702. image: {
  7703. source: "./media/characters/rose/fae-paw.svg"
  7704. },
  7705. form: "fae"
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "True Micro",
  7711. height: math.unit(9, "cm"),
  7712. form: "liom"
  7713. },
  7714. {
  7715. name: "Micro",
  7716. height: math.unit(16, "cm"),
  7717. form: "liom"
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(1.85, "meters"),
  7722. default: true,
  7723. form: "liom"
  7724. },
  7725. {
  7726. name: "Mini-Macro",
  7727. height: math.unit(5, "meters"),
  7728. form: "liom"
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(15, "meters"),
  7733. form: "liom"
  7734. },
  7735. {
  7736. name: "True Macro",
  7737. height: math.unit(40, "meters"),
  7738. form: "liom"
  7739. },
  7740. {
  7741. name: "City Scale",
  7742. height: math.unit(1, "km"),
  7743. form: "liom"
  7744. },
  7745. {
  7746. name: "Plushie",
  7747. height: math.unit(9, "cm"),
  7748. form: "plush",
  7749. default: true
  7750. },
  7751. {
  7752. name: "Fae",
  7753. height: math.unit(10, "cm"),
  7754. form: "fae",
  7755. default: true
  7756. },
  7757. ],
  7758. {
  7759. "liom": {
  7760. name: "Liom"
  7761. },
  7762. "plush": {
  7763. name: "Plush"
  7764. },
  7765. "fae": {
  7766. name: "Fae Fox",
  7767. default: true
  7768. }
  7769. }
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(2, "meters"),
  7776. weight: math.unit(350, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/regal/front.svg"
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(2, "meters"),
  7784. weight: math.unit(350, "lbs"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/regal/back.svg"
  7788. }
  7789. },
  7790. },
  7791. [
  7792. {
  7793. name: "Macro",
  7794. height: math.unit(350, "feet"),
  7795. default: true
  7796. }
  7797. ]
  7798. ))
  7799. characterMakers.push(() => makeCharacter(
  7800. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7801. {
  7802. front: {
  7803. height: math.unit(4 + 11 / 12, "feet"),
  7804. weight: math.unit(100, "lbs"),
  7805. name: "Front",
  7806. image: {
  7807. source: "./media/characters/opal/front.svg"
  7808. }
  7809. },
  7810. frontAlt: {
  7811. height: math.unit(4 + 11 / 12, "feet"),
  7812. weight: math.unit(100, "lbs"),
  7813. name: "Front (Alt)",
  7814. image: {
  7815. source: "./media/characters/opal/front-alt.svg"
  7816. }
  7817. },
  7818. },
  7819. [
  7820. {
  7821. name: "Small",
  7822. height: math.unit(4 + 11 / 12, "feet")
  7823. },
  7824. {
  7825. name: "Normal",
  7826. height: math.unit(20, "feet"),
  7827. default: true
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(120, "feet")
  7832. },
  7833. {
  7834. name: "Megamacro",
  7835. height: math.unit(80, "miles")
  7836. },
  7837. {
  7838. name: "True Size",
  7839. height: math.unit(100000, "lightyears")
  7840. },
  7841. ]
  7842. ))
  7843. characterMakers.push(() => makeCharacter(
  7844. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7845. {
  7846. front: {
  7847. height: math.unit(6, "feet"),
  7848. weight: math.unit(200, "lbs"),
  7849. name: "Front",
  7850. image: {
  7851. source: "./media/characters/vector-wuff/front.svg"
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2.8, "meters")
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(450, "meters"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Megamacro",
  7867. height: math.unit(15, "kilometers")
  7868. }
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(256, "lbs"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/dannik/front.svg"
  7880. }
  7881. }
  7882. },
  7883. [
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(69.57, "meters"),
  7887. default: true
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(120, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/azura-saharah/front.svg"
  7900. }
  7901. },
  7902. back: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(120, "lbs"),
  7905. name: "Back",
  7906. image: {
  7907. source: "./media/characters/azura-saharah/back.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(100, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7921. {
  7922. side: {
  7923. height: math.unit(5 + 4 / 12, "feet"),
  7924. weight: math.unit(163, "lbs"),
  7925. name: "Side",
  7926. image: {
  7927. source: "./media/characters/kennedy/side.svg"
  7928. }
  7929. }
  7930. },
  7931. [
  7932. {
  7933. name: "Standard Doggo",
  7934. height: math.unit(5 + 4 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Big Doggo",
  7938. height: math.unit(25 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(5 + 5/12, "feet"),
  7948. weight: math.unit(100, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/odios-de-lunar/front.svg",
  7952. extra: 1468/1323,
  7953. bottom: 22/1490
  7954. }
  7955. }
  7956. },
  7957. [
  7958. {
  7959. name: "Micro",
  7960. height: math.unit(3, "inches")
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(5.5, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(100, "feet")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7975. {
  7976. back: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(220, "lbs"),
  7979. name: "Back",
  7980. image: {
  7981. source: "./media/characters/mandake/back.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(7, "feet"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(78, "feet")
  7994. },
  7995. {
  7996. name: "Macro+",
  7997. height: math.unit(300, "meters")
  7998. },
  7999. {
  8000. name: "Macro++",
  8001. height: math.unit(2400, "feet")
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(5167, "meters")
  8006. },
  8007. {
  8008. name: "Gigamacro",
  8009. height: math.unit(41769, "miles")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(6, "feet"),
  8018. weight: math.unit(120, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/yozey/front.svg"
  8022. }
  8023. },
  8024. frontAlt: {
  8025. height: math.unit(6, "feet"),
  8026. weight: math.unit(120, "lbs"),
  8027. name: "Front (Alt)",
  8028. image: {
  8029. source: "./media/characters/yozey/front-alt.svg"
  8030. }
  8031. },
  8032. side: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(120, "lbs"),
  8035. name: "Side",
  8036. image: {
  8037. source: "./media/characters/yozey/side.svg"
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Micro",
  8044. height: math.unit(3, "inches"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Normal",
  8049. height: math.unit(6, "feet")
  8050. }
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(103, "lbs"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/valeska-voss/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Mini-Sized Sub",
  8068. height: math.unit(3.1, "inches")
  8069. },
  8070. {
  8071. name: "Mid-Sized Sub",
  8072. height: math.unit(6.2, "inches")
  8073. },
  8074. {
  8075. name: "Full-Sized Sub",
  8076. height: math.unit(9.3, "inches")
  8077. },
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(5 + 2 / 12, "foot"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(160, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/gene-zeta/front.svg",
  8094. extra: 3006 / 2826,
  8095. bottom: 182 / 3188
  8096. }
  8097. }
  8098. },
  8099. [
  8100. {
  8101. name: "Micro",
  8102. height: math.unit(6, "inches")
  8103. },
  8104. {
  8105. name: "Normal",
  8106. height: math.unit(5 + 11 / 12, "foot"),
  8107. default: true
  8108. },
  8109. {
  8110. name: "Macro",
  8111. height: math.unit(140, "feet")
  8112. },
  8113. {
  8114. name: "Supercharged",
  8115. height: math.unit(2500, "feet")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8121. {
  8122. front: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(350, "lbs"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/razinox/front.svg",
  8128. extra: 1686 / 1548,
  8129. bottom: 28.2 / 1868
  8130. }
  8131. },
  8132. back: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(350, "lbs"),
  8135. name: "Back",
  8136. image: {
  8137. source: "./media/characters/razinox/back.svg",
  8138. extra: 1660 / 1590,
  8139. bottom: 15 / 1665
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(10 + 8 / 12, "foot")
  8147. },
  8148. {
  8149. name: "Minimacro",
  8150. height: math.unit(15, "foot")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(60, "foot"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Megamacro",
  8159. height: math.unit(5, "miles")
  8160. },
  8161. {
  8162. name: "Gigamacro",
  8163. height: math.unit(6000, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(150, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/cobalt/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(8 + 1 / 12, "foot")
  8183. },
  8184. {
  8185. name: "Macro",
  8186. height: math.unit(111, "foot"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Supracosmic",
  8191. height: math.unit(1e42, "feet")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5, "inches"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/amanda/front.svg",
  8203. extra: 926/791,
  8204. bottom: 38/964
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(5, "inches"),
  8209. name: "Back",
  8210. image: {
  8211. source: "./media/characters/amanda/back.svg",
  8212. extra: 909/805,
  8213. bottom: 43/952
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(5, "inches"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(2.75, "meters"),
  8230. weight: math.unit(1200, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/teal/front.svg",
  8234. extra: 2463 / 2320,
  8235. bottom: 166 / 2629
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(2.75, "meters"),
  8240. weight: math.unit(1200, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/teal/back.svg",
  8244. extra: 2580 / 2489,
  8245. bottom: 151 / 2731
  8246. }
  8247. },
  8248. sitting: {
  8249. height: math.unit(1.9, "meters"),
  8250. weight: math.unit(1200, "lb"),
  8251. name: "Sitting",
  8252. image: {
  8253. source: "./media/characters/teal/sitting.svg",
  8254. extra: 623 / 590,
  8255. bottom: 121 / 744
  8256. }
  8257. },
  8258. standing: {
  8259. height: math.unit(2.75, "meters"),
  8260. weight: math.unit(1200, "lb"),
  8261. name: "Standing",
  8262. image: {
  8263. source: "./media/characters/teal/standing.svg",
  8264. extra: 923 / 893,
  8265. bottom: 60 / 983
  8266. }
  8267. },
  8268. stretching: {
  8269. height: math.unit(3.65, "meters"),
  8270. weight: math.unit(1200, "lb"),
  8271. name: "Stretching",
  8272. image: {
  8273. source: "./media/characters/teal/stretching.svg",
  8274. extra: 1276 / 1244,
  8275. bottom: 0 / 1276
  8276. }
  8277. },
  8278. legged: {
  8279. height: math.unit(1.3, "meters"),
  8280. weight: math.unit(100, "lb"),
  8281. name: "Legged",
  8282. image: {
  8283. source: "./media/characters/teal/legged.svg",
  8284. extra: 462 / 437,
  8285. bottom: 24 / 486
  8286. }
  8287. },
  8288. naga: {
  8289. height: math.unit(5.4, "meters"),
  8290. weight: math.unit(4000, "lb"),
  8291. name: "Naga",
  8292. image: {
  8293. source: "./media/characters/teal/naga.svg",
  8294. extra: 1902 / 1858,
  8295. bottom: 0 / 1902
  8296. }
  8297. },
  8298. hand: {
  8299. height: math.unit(0.52, "meters"),
  8300. name: "Hand",
  8301. image: {
  8302. source: "./media/characters/teal/hand.svg"
  8303. }
  8304. },
  8305. maw: {
  8306. height: math.unit(0.43, "meters"),
  8307. name: "Maw",
  8308. image: {
  8309. source: "./media/characters/teal/maw.svg"
  8310. }
  8311. },
  8312. slit: {
  8313. height: math.unit(0.25, "meters"),
  8314. name: "Slit",
  8315. image: {
  8316. source: "./media/characters/teal/slit.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(2.75, "meters"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(300, "feet")
  8329. },
  8330. {
  8331. name: "Macro+",
  8332. height: math.unit(2000, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8338. {
  8339. frontCat: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(180, "lbs"),
  8342. name: "Front (Cat)",
  8343. image: {
  8344. source: "./media/characters/ravin-amulet/front-cat.svg"
  8345. }
  8346. },
  8347. frontCatAlt: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(180, "lbs"),
  8350. name: "Front (Alt, Cat)",
  8351. image: {
  8352. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8353. }
  8354. },
  8355. frontWerewolf: {
  8356. height: math.unit(6 * 1.2, "feet"),
  8357. weight: math.unit(225, "lbs"),
  8358. name: "Front (Werewolf)",
  8359. image: {
  8360. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8361. }
  8362. },
  8363. backWerewolf: {
  8364. height: math.unit(6 * 1.2, "feet"),
  8365. weight: math.unit(225, "lbs"),
  8366. name: "Back (Werewolf)",
  8367. image: {
  8368. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Nano",
  8375. height: math.unit(1, "micrometer")
  8376. },
  8377. {
  8378. name: "Micro",
  8379. height: math.unit(1, "inch")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(6, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(60, "feet")
  8389. }
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(165, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/fluoresce/front.svg"
  8401. }
  8402. }
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(6, "cm")
  8408. },
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(5 + 7 / 12, "feet"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(56, "feet")
  8417. },
  8418. {
  8419. name: "Megamacro",
  8420. height: math.unit(1.9, "miles")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(9 + 6 / 12, "feet"),
  8429. weight: math.unit(523, "lbs"),
  8430. name: "Side",
  8431. image: {
  8432. source: "./media/characters/aurora/side.svg",
  8433. extra: 474/393,
  8434. bottom: 5/479
  8435. }
  8436. }
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(9 + 6 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(96, "feet"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Macro+",
  8450. height: math.unit(243, "feet")
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(194, "cm"),
  8459. weight: math.unit(90, "kg"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/ranek/front.svg",
  8463. extra: 1862/1791,
  8464. bottom: 80/1942
  8465. }
  8466. },
  8467. back: {
  8468. height: math.unit(194, "cm"),
  8469. weight: math.unit(90, "kg"),
  8470. name: "Back",
  8471. image: {
  8472. source: "./media/characters/ranek/back.svg",
  8473. extra: 1853/1787,
  8474. bottom: 74/1927
  8475. }
  8476. },
  8477. feral: {
  8478. height: math.unit(30, "cm"),
  8479. weight: math.unit(1.6, "lbs"),
  8480. name: "Feral",
  8481. image: {
  8482. source: "./media/characters/ranek/feral.svg",
  8483. extra: 990/631,
  8484. bottom: 29/1019
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(194, "cm"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Macro",
  8496. height: math.unit(100, "meters")
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(5 + 6 / 12, "feet"),
  8505. weight: math.unit(153, "lbs"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/andrew-cooper/front.svg"
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Nano",
  8515. height: math.unit(1, "mm")
  8516. },
  8517. {
  8518. name: "Micro",
  8519. height: math.unit(2, "inches")
  8520. },
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(5 + 6 / 12, "feet"),
  8524. default: true
  8525. }
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(6, "feet"),
  8533. weight: math.unit(180, "lbs"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/akane-sato/front.svg",
  8537. extra: 1219 / 1140
  8538. }
  8539. },
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(180, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/akane-sato/back.svg",
  8546. extra: 1219 / 1170
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(2.5, "meters")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(250, "meters"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(25, "km")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(65, "kg"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/rook/front.svg",
  8575. extra: 960 / 950
  8576. }
  8577. }
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(8.8, "feet")
  8583. },
  8584. {
  8585. name: "Macro",
  8586. height: math.unit(88, "feet"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(8, "miles")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(12 + 2 / 12, "feet"),
  8600. weight: math.unit(808, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/prodigy/front.svg"
  8604. }
  8605. }
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(12 + 2 / 12, "feet"),
  8611. default: true
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(143, "feet")
  8616. },
  8617. {
  8618. name: "Macro+",
  8619. height: math.unit(400, "feet")
  8620. },
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(225, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/daniel/front.svg"
  8632. }
  8633. },
  8634. leaning: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(225, "lbs"),
  8637. name: "Leaning",
  8638. image: {
  8639. source: "./media/characters/daniel/leaning.svg"
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(1000, "feet"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(6, "feet"),
  8656. weight: math.unit(88, "lbs"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/chiros/front.svg",
  8660. extra: 306 / 226
  8661. }
  8662. },
  8663. side: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(88, "lbs"),
  8666. name: "Side",
  8667. image: {
  8668. source: "./media/characters/chiros/side.svg",
  8669. extra: 306 / 226
  8670. }
  8671. },
  8672. },
  8673. [
  8674. {
  8675. name: "Normal",
  8676. height: math.unit(6, "cm"),
  8677. default: true
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8683. {
  8684. front: {
  8685. height: math.unit(6, "feet"),
  8686. weight: math.unit(100, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/selka/front.svg",
  8690. extra: 947 / 887
  8691. }
  8692. }
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(5, "cm"),
  8698. default: true
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(8 + 3 / 12, "feet"),
  8707. weight: math.unit(424, "lbs"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/verin/front.svg",
  8711. extra: 1845 / 1550
  8712. }
  8713. },
  8714. frontArmored: {
  8715. height: math.unit(8 + 3 / 12, "feet"),
  8716. weight: math.unit(424, "lbs"),
  8717. name: "Front (Armored)",
  8718. image: {
  8719. source: "./media/characters/verin/front-armor.svg",
  8720. extra: 1845 / 1550,
  8721. bottom: 0.01
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(8 + 3 / 12, "feet"),
  8726. weight: math.unit(424, "lbs"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/verin/back.svg",
  8730. bottom: 0.1,
  8731. extra: 1
  8732. }
  8733. },
  8734. foot: {
  8735. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8736. name: "Foot",
  8737. image: {
  8738. source: "./media/characters/verin/foot.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(8 + 3 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Minimacro",
  8749. height: math.unit(21, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(626, "feet")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(2.718, "meters"),
  8763. weight: math.unit(150, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/sovrim-terraquian/front.svg",
  8767. extra: 1752/1689,
  8768. bottom: 36/1788
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(2.718, "meters"),
  8773. weight: math.unit(150, "lbs"),
  8774. name: "Back",
  8775. image: {
  8776. source: "./media/characters/sovrim-terraquian/back.svg",
  8777. extra: 1698/1657,
  8778. bottom: 58/1756
  8779. }
  8780. },
  8781. tongue: {
  8782. height: math.unit(2.865, "feet"),
  8783. name: "Tongue",
  8784. image: {
  8785. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8786. }
  8787. },
  8788. hand: {
  8789. height: math.unit(1.61, "feet"),
  8790. name: "Hand",
  8791. image: {
  8792. source: "./media/characters/sovrim-terraquian/hand.svg"
  8793. }
  8794. },
  8795. foot: {
  8796. height: math.unit(1.05, "feet"),
  8797. name: "Foot",
  8798. image: {
  8799. source: "./media/characters/sovrim-terraquian/foot.svg"
  8800. }
  8801. },
  8802. footAlt: {
  8803. height: math.unit(0.88, "feet"),
  8804. name: "Foot (Alt)",
  8805. image: {
  8806. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(2, "inches")
  8814. },
  8815. {
  8816. name: "Small",
  8817. height: math.unit(1, "meter")
  8818. },
  8819. {
  8820. name: "Normal",
  8821. height: math.unit(Math.E, "meters"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(20, "meters")
  8827. },
  8828. {
  8829. name: "Macro+",
  8830. height: math.unit(400, "meters")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7, "feet"),
  8839. weight: math.unit(489, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/reece-silvermane/front.svg",
  8843. bottom: 0.02,
  8844. extra: 1
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(1.5, "miles"),
  8852. default: true
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(6, "feet"),
  8861. weight: math.unit(78, "kg"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/kane/front.svg",
  8865. extra: 978 / 899
  8866. }
  8867. },
  8868. },
  8869. [
  8870. {
  8871. name: "Normal",
  8872. height: math.unit(2.1, "m"),
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(1, "km"),
  8877. default: true
  8878. },
  8879. ]
  8880. ))
  8881. characterMakers.push(() => makeCharacter(
  8882. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8883. {
  8884. front: {
  8885. height: math.unit(6, "feet"),
  8886. weight: math.unit(200, "kg"),
  8887. name: "Front",
  8888. image: {
  8889. source: "./media/characters/tegon/front.svg",
  8890. bottom: 0.01,
  8891. extra: 1
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Micro",
  8898. height: math.unit(1, "inch")
  8899. },
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(6 + 3 / 12, "feet"),
  8903. default: true
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet")
  8908. },
  8909. {
  8910. name: "Megamacro",
  8911. height: math.unit(69, "miles")
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8917. {
  8918. side: {
  8919. height: math.unit(6, "feet"),
  8920. weight: math.unit(2304, "lbs"),
  8921. name: "Side",
  8922. image: {
  8923. source: "./media/characters/arcturax/side.svg",
  8924. extra: 790 / 376,
  8925. bottom: 0.01
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Micro",
  8932. height: math.unit(2, "inch")
  8933. },
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(6, "feet")
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(39, "feet"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Megamacro",
  8945. height: math.unit(7, "miles")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(50, "lbs"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/sentri/front.svg",
  8958. extra: 1750 / 1570,
  8959. bottom: 0.025
  8960. }
  8961. },
  8962. frontAlt: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(50, "lbs"),
  8965. name: "Front (Alt)",
  8966. image: {
  8967. source: "./media/characters/sentri/front-alt.svg",
  8968. extra: 1750 / 1570,
  8969. bottom: 0.025
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(15, "feet"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(2500, "feet")
  8982. }
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 8 / 12, "feet"),
  8990. weight: math.unit(130, "lbs"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/corvin/front.svg",
  8994. extra: 1803 / 1629
  8995. }
  8996. },
  8997. frontShirt: {
  8998. height: math.unit(5 + 8 / 12, "feet"),
  8999. weight: math.unit(130, "lbs"),
  9000. name: "Front (Shirt)",
  9001. image: {
  9002. source: "./media/characters/corvin/front-shirt.svg",
  9003. extra: 1803 / 1629
  9004. }
  9005. },
  9006. frontPoncho: {
  9007. height: math.unit(5 + 8 / 12, "feet"),
  9008. weight: math.unit(130, "lbs"),
  9009. name: "Front (Poncho)",
  9010. image: {
  9011. source: "./media/characters/corvin/front-poncho.svg",
  9012. extra: 1803 / 1629
  9013. }
  9014. },
  9015. side: {
  9016. height: math.unit(5 + 8 / 12, "feet"),
  9017. weight: math.unit(130, "lbs"),
  9018. name: "Side",
  9019. image: {
  9020. source: "./media/characters/corvin/side.svg",
  9021. extra: 1012 / 945
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(5 + 8 / 12, "feet"),
  9026. weight: math.unit(130, "lbs"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/corvin/back.svg",
  9030. extra: 1803 / 1629
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Micro",
  9037. height: math.unit(3, "inches")
  9038. },
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(5 + 8 / 12, "feet")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(300, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(500, "miles")
  9051. }
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(135, "lbs"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/q/front.svg",
  9063. extra: 854 / 752,
  9064. bottom: 0.005
  9065. }
  9066. },
  9067. back: {
  9068. height: math.unit(6, "feet"),
  9069. weight: math.unit(130, "lbs"),
  9070. name: "Back",
  9071. image: {
  9072. source: "./media/characters/q/back.svg",
  9073. extra: 854 / 752
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Macro",
  9080. height: math.unit(90, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Extra Macro",
  9085. height: math.unit(300, "feet"),
  9086. },
  9087. {
  9088. name: "BIG WALF",
  9089. height: math.unit(750, "feet"),
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(3, "feet"),
  9098. weight: math.unit(28, "lbs"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/citrine/front.svg"
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(3, "feet"),
  9109. default: true
  9110. }
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9115. {
  9116. front: {
  9117. height: math.unit(14, "feet"),
  9118. weight: math.unit(1450, "kg"),
  9119. preyCapacity: math.unit(15, "people"),
  9120. name: "Front",
  9121. image: {
  9122. source: "./media/characters/aura-starwind/front.svg",
  9123. extra: 1440/1327,
  9124. bottom: 11/1451
  9125. }
  9126. },
  9127. side: {
  9128. height: math.unit(14, "feet"),
  9129. weight: math.unit(1450, "kg"),
  9130. preyCapacity: math.unit(15, "people"),
  9131. name: "Side",
  9132. image: {
  9133. source: "./media/characters/aura-starwind/side.svg",
  9134. extra: 1654 / 1497
  9135. }
  9136. },
  9137. taur: {
  9138. height: math.unit(18, "feet"),
  9139. weight: math.unit(5500, "kg"),
  9140. preyCapacity: math.unit(50, "people"),
  9141. name: "Taur",
  9142. image: {
  9143. source: "./media/characters/aura-starwind/taur.svg",
  9144. extra: 1760 / 1650
  9145. }
  9146. },
  9147. feral: {
  9148. height: math.unit(46, "feet"),
  9149. weight: math.unit(25000, "kg"),
  9150. preyCapacity: math.unit(120, "people"),
  9151. name: "Feral",
  9152. image: {
  9153. source: "./media/characters/aura-starwind/feral.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(14, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(50, "meters")
  9166. },
  9167. {
  9168. name: "Megamacro",
  9169. height: math.unit(5000, "meters")
  9170. },
  9171. {
  9172. name: "Gigamacro",
  9173. height: math.unit(100000, "kilometers")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2 + 7 / 12, "feet"),
  9182. weight: math.unit(32, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/rivet/front.svg",
  9186. extra: 1716 / 1658,
  9187. bottom: 0.03
  9188. }
  9189. },
  9190. foot: {
  9191. height: math.unit(0.551, "feet"),
  9192. name: "Rivet's Foot",
  9193. image: {
  9194. source: "./media/characters/rivet/foot.svg"
  9195. },
  9196. rename: true
  9197. }
  9198. },
  9199. [
  9200. {
  9201. name: "Micro",
  9202. height: math.unit(1.5, "inches"),
  9203. },
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(2 + 7 / 12, "feet"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(85, "feet")
  9212. },
  9213. {
  9214. name: "Megamacro",
  9215. height: math.unit(2.2, "km")
  9216. }
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(5 + 9 / 12, "feet"),
  9224. weight: math.unit(150, "lbs"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/coffee/front.svg",
  9228. extra: 946/880,
  9229. bottom: 66/1012
  9230. }
  9231. },
  9232. foot: {
  9233. height: math.unit(1.29, "feet"),
  9234. name: "Foot",
  9235. image: {
  9236. source: "./media/characters/coffee/foot.svg"
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(2, "inches"),
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(5 + 9 / 12, "feet"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(800, "feet")
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(25, "miles")
  9257. }
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(200, "lbs"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/chari-gal/front.svg",
  9269. extra: 1568 / 1385,
  9270. bottom: 0.047
  9271. }
  9272. },
  9273. gigantamax: {
  9274. height: math.unit(6 * 16, "feet"),
  9275. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9276. name: "Gigantamax",
  9277. image: {
  9278. source: "./media/characters/chari-gal/gigantamax.svg",
  9279. extra: 1124 / 888,
  9280. bottom: 0.03
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(5 + 7 / 12, "feet")
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(200, "feet"),
  9292. default: true
  9293. }
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(150, "lbs"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/nova/front.svg",
  9305. extra: 5000 / 4722,
  9306. bottom: 0.02
  9307. }
  9308. }
  9309. },
  9310. [
  9311. {
  9312. name: "Micro-",
  9313. height: math.unit(0.8, "inches")
  9314. },
  9315. {
  9316. name: "Micro",
  9317. height: math.unit(2, "inches"),
  9318. default: true
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9324. {
  9325. koboldFront: {
  9326. height: math.unit(3 + 1 / 12, "feet"),
  9327. weight: math.unit(21.7, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/argent/kobold-front.svg",
  9331. extra: 1471 / 1331,
  9332. bottom: 100.8 / 1575.5
  9333. },
  9334. form: "kobold",
  9335. default: true
  9336. },
  9337. dragonFront: {
  9338. height: math.unit(75, "inches"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/argent/dragon-front.svg",
  9342. extra: 1389/1248,
  9343. bottom: 54/1443
  9344. },
  9345. form: "dragon",
  9346. },
  9347. dragonBack: {
  9348. height: math.unit(75, "inches"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/argent/dragon-back.svg",
  9352. extra: 1399/1271,
  9353. bottom: 23/1422
  9354. },
  9355. form: "dragon",
  9356. },
  9357. dragonDressed: {
  9358. height: math.unit(75, "inches"),
  9359. name: "Dressed",
  9360. image: {
  9361. source: "./media/characters/argent/dragon-dressed.svg",
  9362. extra: 1350/1215,
  9363. bottom: 26/1376
  9364. },
  9365. form: "dragon"
  9366. },
  9367. dragonHead: {
  9368. height: math.unit(23.5, "inches"),
  9369. name: "Head",
  9370. image: {
  9371. source: "./media/characters/argent/dragon-head.svg"
  9372. },
  9373. form: "dragon",
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Micro",
  9379. height: math.unit(2, "inches"),
  9380. form: "kobold",
  9381. },
  9382. {
  9383. name: "Normal",
  9384. height: math.unit(3 + 1 / 12, "feet"),
  9385. form: "kobold",
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(120, "feet"),
  9391. form: "kobold",
  9392. },
  9393. {
  9394. name: "Speck",
  9395. height: math.unit(1, "mm"),
  9396. form: "dragon",
  9397. },
  9398. {
  9399. name: "Tiny",
  9400. height: math.unit(1, "cm"),
  9401. form: "dragon",
  9402. },
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(5, "cm"),
  9406. form: "dragon",
  9407. },
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(75, "inches"),
  9411. form: "dragon",
  9412. default: true
  9413. },
  9414. {
  9415. name: "Extra Tall",
  9416. height: math.unit(9, "feet"),
  9417. form: "dragon",
  9418. },
  9419. {
  9420. name: "Inconvenient",
  9421. height: math.unit(5, "meters"),
  9422. form: "dragon",
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(70, "meters"),
  9427. form: "dragon",
  9428. },
  9429. {
  9430. name: "Macro+",
  9431. height: math.unit(250, "meters"),
  9432. form: "dragon",
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(20, "km"),
  9437. form: "dragon",
  9438. },
  9439. {
  9440. name: "Mountainous",
  9441. height: math.unit(100, "km"),
  9442. form: "dragon",
  9443. },
  9444. {
  9445. name: "Continental",
  9446. height: math.unit(2, "megameters"),
  9447. form: "dragon",
  9448. },
  9449. {
  9450. name: "Too Big",
  9451. height: math.unit(900, "megameters"),
  9452. form: "dragon",
  9453. },
  9454. ],
  9455. {
  9456. "kobold": {
  9457. name: "Kobold",
  9458. default: true
  9459. },
  9460. "dragon": {
  9461. name: "Dragon",
  9462. },
  9463. }
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9467. {
  9468. lamp: {
  9469. height: math.unit(7 * 1559 / 989, "feet"),
  9470. name: "Magic Lamp",
  9471. image: {
  9472. source: "./media/characters/mira-al-cul/lamp.svg",
  9473. extra: 1617 / 1559
  9474. }
  9475. },
  9476. front: {
  9477. height: math.unit(7, "feet"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/mira-al-cul/front.svg",
  9481. extra: 1044 / 990
  9482. }
  9483. },
  9484. },
  9485. [
  9486. {
  9487. name: "Heavily Restricted",
  9488. height: math.unit(7 * 1559 / 989, "feet")
  9489. },
  9490. {
  9491. name: "Freshly Freed",
  9492. height: math.unit(50 * 1559 / 989, "feet")
  9493. },
  9494. {
  9495. name: "World Encompassing",
  9496. height: math.unit(10000 * 1559 / 989, "miles")
  9497. },
  9498. {
  9499. name: "Galactic",
  9500. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9501. },
  9502. {
  9503. name: "Palmed Universe",
  9504. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Multiversal Matriarch",
  9509. height: math.unit(8.87e10, "yottameters")
  9510. },
  9511. {
  9512. name: "Void Mother",
  9513. height: math.unit(3.14e110, "yottaparsecs")
  9514. },
  9515. {
  9516. name: "Toying with Transcendence",
  9517. height: math.unit(1e307, "meters")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9523. {
  9524. front: {
  9525. height: math.unit(17 + 1 / 12, "feet"),
  9526. weight: math.unit(476.2 * 5, "lbs"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/kuro-shi-uchū/front.svg",
  9530. extra: 2329 / 1835,
  9531. bottom: 0.02
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(2, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12, "meters")
  9543. },
  9544. {
  9545. name: "Planetary",
  9546. height: math.unit(0.00929, "AU"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Universal",
  9551. height: math.unit(20, "gigaparsecs")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(5 + 2 / 12, "feet"),
  9560. weight: math.unit(120, "lbs"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/katherine/front.svg",
  9564. extra: 2075 / 1969
  9565. }
  9566. },
  9567. dress: {
  9568. height: math.unit(5 + 2 / 12, "feet"),
  9569. weight: math.unit(120, "lbs"),
  9570. name: "Dress",
  9571. image: {
  9572. source: "./media/characters/katherine/dress.svg",
  9573. extra: 2258 / 2064
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Micro",
  9580. height: math.unit(1, "inches"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(5 + 2 / 12, "feet")
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(100, "meters")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(80, "miles")
  9594. },
  9595. ]
  9596. ))
  9597. characterMakers.push(() => makeCharacter(
  9598. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9599. {
  9600. front: {
  9601. height: math.unit(7 + 8 / 12, "feet"),
  9602. weight: math.unit(250, "lbs"),
  9603. name: "Front",
  9604. image: {
  9605. source: "./media/characters/yevis/front.svg",
  9606. extra: 1938 / 1755
  9607. }
  9608. }
  9609. },
  9610. [
  9611. {
  9612. name: "Mortal",
  9613. height: math.unit(7 + 8 / 12, "feet")
  9614. },
  9615. {
  9616. name: "Battle",
  9617. height: math.unit(25 + 11 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Wrath",
  9621. height: math.unit(1654 + 11 / 12, "feet")
  9622. },
  9623. {
  9624. name: "Planet Destroyer",
  9625. height: math.unit(12000, "miles")
  9626. },
  9627. {
  9628. name: "Galaxy Conqueror",
  9629. height: math.unit(1.45, "zettameters"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Universal War",
  9634. height: math.unit(184, "gigaparsecs")
  9635. },
  9636. {
  9637. name: "Eternity War",
  9638. height: math.unit(1.98e55, "yottaparsecs")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(5 + 8 / 12, "feet"),
  9647. weight: math.unit(63, "kg"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/xavier/front.svg",
  9651. extra: 944 / 883
  9652. }
  9653. },
  9654. frontStretch: {
  9655. height: math.unit(5 + 8 / 12, "feet"),
  9656. weight: math.unit(63, "kg"),
  9657. name: "Stretching",
  9658. image: {
  9659. source: "./media/characters/xavier/front-stretch.svg",
  9660. extra: 962 / 820
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(5 + 8 / 12, "feet")
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(100, "meters"),
  9672. default: true
  9673. },
  9674. {
  9675. name: "McLargeHuge",
  9676. height: math.unit(10, "miles")
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9682. {
  9683. front: {
  9684. height: math.unit(5 + 5 / 12, "feet"),
  9685. weight: math.unit(150, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/joshii/front.svg",
  9689. extra: 765 / 653,
  9690. bottom: 51 / 816
  9691. }
  9692. },
  9693. foot: {
  9694. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9695. name: "Foot",
  9696. image: {
  9697. source: "./media/characters/joshii/foot.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "inches")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(5 + 5 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Macro",
  9712. height: math.unit(785, "feet"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Megamacro",
  9717. height: math.unit(24.5, "miles")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/goddess-elizabeth/front.svg",
  9730. extra: 1800 / 1525,
  9731. bottom: 0.005
  9732. }
  9733. },
  9734. foot: {
  9735. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9736. name: "Foot",
  9737. image: {
  9738. source: "./media/characters/goddess-elizabeth/foot.svg"
  9739. }
  9740. },
  9741. mouth: {
  9742. height: math.unit(6, "feet"),
  9743. name: "Mouth",
  9744. image: {
  9745. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(12, "feet")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(80, "miles"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(15000, "parsecs")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. weight: math.unit(144, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/kara/front.svg"
  9774. }
  9775. },
  9776. feet: {
  9777. height: math.unit(6 / 6.765, "feet"),
  9778. name: "Kara's Feet",
  9779. rename: true,
  9780. image: {
  9781. source: "./media/characters/kara/feet.svg"
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(5 + 9 / 12, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(174, "feet"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(18, "feet"),
  9802. weight: math.unit(4050, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/tyrone/front.svg",
  9806. extra: 2405 / 2270,
  9807. bottom: 182 / 2587
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(18, "feet"),
  9815. default: true
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(300, "feet")
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(15, "km")
  9824. },
  9825. {
  9826. name: "Gigamacro",
  9827. height: math.unit(500, "km")
  9828. },
  9829. {
  9830. name: "Teramacro",
  9831. height: math.unit(0.5, "gigameters")
  9832. },
  9833. {
  9834. name: "Omnimacro",
  9835. height: math.unit(1e252, "yottauniverse")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(7 + 8 / 12, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/danny/front.svg",
  9848. extra: 1490 / 1350
  9849. }
  9850. },
  9851. back: {
  9852. height: math.unit(7 + 8 / 12, "feet"),
  9853. weight: math.unit(120, "lb"),
  9854. name: "Back",
  9855. image: {
  9856. source: "./media/characters/danny/back.svg",
  9857. extra: 1490 / 1350
  9858. }
  9859. },
  9860. },
  9861. [
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(7 + 8 / 12, "feet"),
  9865. default: true
  9866. },
  9867. ]
  9868. ))
  9869. characterMakers.push(() => makeCharacter(
  9870. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9871. {
  9872. front: {
  9873. height: math.unit(3.5, "inches"),
  9874. weight: math.unit(19, "grams"),
  9875. name: "Front",
  9876. image: {
  9877. source: "./media/characters/mallow/front.svg",
  9878. extra: 471 / 431
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(3.5, "inches"),
  9883. weight: math.unit(19, "grams"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/mallow/back.svg",
  9887. extra: 471 / 431
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(3.5, "inches"),
  9895. default: true
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(9, "feet"),
  9904. weight: math.unit(230, "kg"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/starry-aqua/front.svg"
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(9, "feet"),
  9912. weight: math.unit(230, "kg"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/starry-aqua/back.svg"
  9916. }
  9917. },
  9918. hand: {
  9919. height: math.unit(9 * 0.1168, "feet"),
  9920. name: "Hand",
  9921. image: {
  9922. source: "./media/characters/starry-aqua/hand.svg"
  9923. }
  9924. },
  9925. foot: {
  9926. height: math.unit(9 * 0.18, "feet"),
  9927. name: "Foot",
  9928. image: {
  9929. source: "./media/characters/starry-aqua/foot.svg"
  9930. }
  9931. }
  9932. },
  9933. [
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(3, "inches")
  9937. },
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(9, "feet")
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(300, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(3200, "feet")
  9950. }
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(15, "feet"),
  9958. weight: math.unit(5026, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/luka-towers/front.svg",
  9962. extra: 1269/1133,
  9963. bottom: 51/1320
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(15, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Minimacro",
  9975. height: math.unit(25, "feet")
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(320, "feet")
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(35000, "feet")
  9984. },
  9985. {
  9986. name: "Gigamacro",
  9987. height: math.unit(4000, "miles")
  9988. },
  9989. {
  9990. name: "Teramacro",
  9991. height: math.unit(15000, "miles")
  9992. },
  9993. ]
  9994. ))
  9995. characterMakers.push(() => makeCharacter(
  9996. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9997. {
  9998. front: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(150, "lb"),
  10001. name: "Front",
  10002. image: {
  10003. source: "./media/characters/natalie-nightring/front.svg",
  10004. extra: 1,
  10005. bottom: 0.06
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Uh Oh",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Small",
  10016. height: math.unit(3, "inches")
  10017. },
  10018. {
  10019. name: "Human Scale",
  10020. height: math.unit(6, "feet")
  10021. },
  10022. {
  10023. name: "Librarian",
  10024. height: math.unit(50, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Immense",
  10029. height: math.unit(200, "miles")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(180, "lbs"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/danni-rosie/front.svg",
  10042. extra: 1260 / 1128,
  10043. bottom: 0.022
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(2, "inches"),
  10051. default: true
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(5 + 9 / 12, "feet"),
  10060. weight: math.unit(220, "lb"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/samantha-kruse/front.svg",
  10064. extra: (985 / 935),
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. frontUndressed: {
  10069. height: math.unit(5 + 9 / 12, "feet"),
  10070. weight: math.unit(220, "lb"),
  10071. name: "Front (Undressed)",
  10072. image: {
  10073. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10074. extra: (973 / 923),
  10075. bottom: 0.025
  10076. }
  10077. },
  10078. fat: {
  10079. height: math.unit(5 + 9 / 12, "feet"),
  10080. weight: math.unit(900, "lb"),
  10081. name: "Front (Fat)",
  10082. image: {
  10083. source: "./media/characters/samantha-kruse/fat.svg",
  10084. extra: 2688 / 2561
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Normal",
  10091. height: math.unit(5 + 9 / 12, "feet"),
  10092. default: true
  10093. }
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10098. {
  10099. back: {
  10100. height: math.unit(5 + 4 / 12, "feet"),
  10101. weight: math.unit(4963, "lb"),
  10102. name: "Back",
  10103. image: {
  10104. source: "./media/characters/amelia-rosie/back.svg",
  10105. extra: 1113 / 963,
  10106. bottom: 0.01
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Level 0",
  10113. height: math.unit(5 + 4 / 12, "feet")
  10114. },
  10115. {
  10116. name: "Level 1",
  10117. height: math.unit(164597, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Level 2",
  10122. height: math.unit(956243, "miles")
  10123. },
  10124. {
  10125. name: "Level 3",
  10126. height: math.unit(29421709423, "miles")
  10127. },
  10128. {
  10129. name: "Level 4",
  10130. height: math.unit(154, "lightyears")
  10131. },
  10132. {
  10133. name: "Level 5",
  10134. height: math.unit(4738272, "lightyears")
  10135. },
  10136. {
  10137. name: "Level 6",
  10138. height: math.unit(145787152896, "lightyears")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(5 + 11 / 12, "feet"),
  10147. weight: math.unit(65, "kg"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/rook-kitara/front.svg",
  10151. extra: 1347 / 1274,
  10152. bottom: 0.005
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Totally Unfair",
  10159. height: math.unit(1.8, "mm")
  10160. },
  10161. {
  10162. name: "Lap Rookie",
  10163. height: math.unit(1.4, "feet")
  10164. },
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 11 / 12, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "How Did This Happen",
  10172. height: math.unit(80, "miles")
  10173. }
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(7, "feet"),
  10181. weight: math.unit(300, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/pisces/front.svg",
  10185. extra: 2255 / 2115,
  10186. bottom: 0.03
  10187. }
  10188. },
  10189. back: {
  10190. height: math.unit(7, "feet"),
  10191. weight: math.unit(300, "lb"),
  10192. name: "Back",
  10193. image: {
  10194. source: "./media/characters/pisces/back.svg",
  10195. extra: 2146 / 2055,
  10196. bottom: 0.04
  10197. }
  10198. },
  10199. },
  10200. [
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(7, "feet"),
  10204. default: true
  10205. },
  10206. {
  10207. name: "Swimming Pool",
  10208. height: math.unit(12.2, "meters")
  10209. },
  10210. {
  10211. name: "Olympic Swimming Pool",
  10212. height: math.unit(56.3, "meters")
  10213. },
  10214. {
  10215. name: "Lake Superior",
  10216. height: math.unit(93900, "meters")
  10217. },
  10218. {
  10219. name: "Mediterranean Sea",
  10220. height: math.unit(644457, "meters")
  10221. },
  10222. {
  10223. name: "World's Oceans",
  10224. height: math.unit(4567491, "meters")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(2.3, "meters"),
  10233. weight: math.unit(120, "kg"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/zelas/front.svg"
  10237. }
  10238. },
  10239. side: {
  10240. height: math.unit(2.3, "meters"),
  10241. weight: math.unit(120, "kg"),
  10242. name: "Side",
  10243. image: {
  10244. source: "./media/characters/zelas/side.svg"
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(2.3, "meters"),
  10249. weight: math.unit(120, "kg"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/zelas/back.svg"
  10253. }
  10254. },
  10255. foot: {
  10256. height: math.unit(1.116, "feet"),
  10257. name: "Foot",
  10258. image: {
  10259. source: "./media/characters/zelas/foot.svg"
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(2.3, "meters")
  10267. },
  10268. {
  10269. name: "Macro",
  10270. height: math.unit(30, "meters"),
  10271. default: true
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(1, "inch"),
  10280. weight: math.unit(0.21, "grams"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/talbot/front.svg",
  10284. extra: 594 / 544
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "inch"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10298. {
  10299. front: {
  10300. height: math.unit(3 + 3 / 12, "feet"),
  10301. weight: math.unit(51.8, "lb"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/fliss/front.svg",
  10305. extra: 840 / 640
  10306. }
  10307. },
  10308. },
  10309. [
  10310. {
  10311. name: "Teeny Tiny",
  10312. height: math.unit(1, "mm")
  10313. },
  10314. {
  10315. name: "Small",
  10316. height: math.unit(1, "inch"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Standard Sylveon",
  10321. height: math.unit(3 + 3 / 12, "feet")
  10322. },
  10323. {
  10324. name: "Large Nuisance",
  10325. height: math.unit(33, "feet")
  10326. },
  10327. {
  10328. name: "City Filler",
  10329. height: math.unit(3000, "feet")
  10330. },
  10331. {
  10332. name: "New Horizon",
  10333. height: math.unit(6000, "miles")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(5, "cm"),
  10342. weight: math.unit(1.94, "g"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/fleta/front.svg",
  10346. extra: 835 / 803
  10347. }
  10348. },
  10349. back: {
  10350. height: math.unit(5, "cm"),
  10351. weight: math.unit(1.94, "g"),
  10352. name: "Back",
  10353. image: {
  10354. source: "./media/characters/fleta/back.svg",
  10355. extra: 835 / 803
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Micro",
  10362. height: math.unit(5, "cm"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(225, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/dominic/front.svg",
  10376. extra: 1770 / 1620,
  10377. bottom: 0.025
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(225, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/dominic/back.svg",
  10386. extra: 1745 / 1620,
  10387. bottom: 0.065
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Nano",
  10394. height: math.unit(0.1, "mm")
  10395. },
  10396. {
  10397. name: "Micro-",
  10398. height: math.unit(1, "mm")
  10399. },
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(4, "inches")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(6 + 4 / 12, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(115, "feet")
  10412. },
  10413. {
  10414. name: "Macro+",
  10415. height: math.unit(955, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(8990, "feet")
  10420. },
  10421. {
  10422. name: "Gigmacro",
  10423. height: math.unit(9310, "miles")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(1567005010, "miles")
  10428. },
  10429. {
  10430. name: "Examacro",
  10431. height: math.unit(1425, "parsecs")
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(400, "feet"),
  10440. weight: math.unit(44444444, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/major-colonel/front.svg"
  10444. }
  10445. },
  10446. back: {
  10447. height: math.unit(400, "feet"),
  10448. weight: math.unit(44444444, "lb"),
  10449. name: "Back",
  10450. image: {
  10451. source: "./media/characters/major-colonel/back.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(400, "feet"),
  10459. default: true
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10465. {
  10466. catFront: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Front (Cat Side)",
  10470. image: {
  10471. source: "./media/characters/axel-lycan/cat-front.svg",
  10472. extra: 430 / 402,
  10473. bottom: 43 / 472.35
  10474. }
  10475. },
  10476. catBack: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Back (Cat Side)",
  10480. image: {
  10481. source: "./media/characters/axel-lycan/cat-back.svg",
  10482. extra: 447 / 419,
  10483. bottom: 23.3 / 469
  10484. }
  10485. },
  10486. wolfFront: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(120, "lb"),
  10489. name: "Front (Wolf Side)",
  10490. image: {
  10491. source: "./media/characters/axel-lycan/wolf-front.svg",
  10492. extra: 485 / 456,
  10493. bottom: 19 / 504
  10494. }
  10495. },
  10496. wolfBack: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(120, "lb"),
  10499. name: "Back (Wolf Side)",
  10500. image: {
  10501. source: "./media/characters/axel-lycan/wolf-back.svg",
  10502. extra: 475 / 438,
  10503. bottom: 39.2 / 514
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(1, "km"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10517. {
  10518. front: {
  10519. height: math.unit(5 + 9 / 12, "feet"),
  10520. weight: math.unit(175, "lb"),
  10521. name: "Front",
  10522. image: {
  10523. source: "./media/characters/vanrel-hyena/front.svg",
  10524. extra: 1086 / 1010,
  10525. bottom: 0.04
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(5 + 9 / 12, "feet"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(103, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/abbott-absol/front.svg",
  10546. extra: 2010 / 1842
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Megamicro",
  10553. height: math.unit(0.1, "mm")
  10554. },
  10555. {
  10556. name: "Micro",
  10557. height: math.unit(1, "inch")
  10558. },
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(6, "feet"),
  10562. default: true
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(264, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/hector/front.svg",
  10575. extra: 2280 / 2130,
  10576. bottom: 0.07
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(12.25, "foot"),
  10584. default: true
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(160, "feet")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(6, "feet"),
  10597. weight: math.unit(150, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/sal/front.svg",
  10601. extra: 1846 / 1699,
  10602. bottom: 0.04
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(10, "miles"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10616. {
  10617. front: {
  10618. height: math.unit(3, "meters"),
  10619. weight: math.unit(450, "kg"),
  10620. name: "front",
  10621. image: {
  10622. source: "./media/characters/ranger/front.svg",
  10623. extra: 2401 / 2243,
  10624. bottom: 0.05
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(3, "meters"),
  10632. default: true
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(14, "feet"),
  10641. weight: math.unit(800, "kg"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/theresa/front.svg",
  10645. extra: 3575 / 3346,
  10646. bottom: 0.03
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(14, "feet"),
  10654. default: true
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10660. {
  10661. front: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(3, "kg"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/ine/front.svg",
  10667. extra: 678 / 539,
  10668. bottom: 0.023
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Normal",
  10675. height: math.unit(2.265, "feet"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(5, "feet"),
  10685. weight: math.unit(30, "kg"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/vial/front.svg",
  10689. extra: 1365 / 1277,
  10690. bottom: 0.04
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(5, "feet"),
  10698. default: true
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10704. {
  10705. side: {
  10706. height: math.unit(3.4, "meters"),
  10707. weight: math.unit(1000, "lb"),
  10708. name: "Side",
  10709. image: {
  10710. source: "./media/characters/rovoska/side.svg",
  10711. extra: 4403 / 1515
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(3.4, "meters"),
  10719. default: true
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10725. {
  10726. front: {
  10727. height: math.unit(8, "feet"),
  10728. weight: math.unit(315, "lb"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/gunner-rotthbauer/front.svg"
  10732. }
  10733. },
  10734. back: {
  10735. height: math.unit(8, "feet"),
  10736. weight: math.unit(315, "lb"),
  10737. name: "Back",
  10738. image: {
  10739. source: "./media/characters/gunner-rotthbauer/back.svg"
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Micro",
  10746. height: math.unit(3.5, "inches")
  10747. },
  10748. {
  10749. name: "Normal",
  10750. height: math.unit(8, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(250, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(1, "AU")
  10760. },
  10761. ]
  10762. ))
  10763. characterMakers.push(() => makeCharacter(
  10764. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10765. {
  10766. front: {
  10767. height: math.unit(5 + 5 / 12, "feet"),
  10768. weight: math.unit(140, "lb"),
  10769. name: "Front",
  10770. image: {
  10771. source: "./media/characters/allatia/front.svg",
  10772. extra: 1227 / 1180,
  10773. bottom: 0.027
  10774. }
  10775. },
  10776. },
  10777. [
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(5 + 5 / 12, "feet")
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(250, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Megamacro",
  10789. height: math.unit(8, "miles")
  10790. }
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(120, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/tene/front.svg",
  10802. extra: 814/750,
  10803. bottom: 36/850
  10804. }
  10805. },
  10806. stomping: {
  10807. height: math.unit(2.025, "meters"),
  10808. weight: math.unit(120, "lb"),
  10809. name: "Stomping",
  10810. image: {
  10811. source: "./media/characters/tene/stomping.svg",
  10812. extra: 885/821,
  10813. bottom: 15/900
  10814. }
  10815. },
  10816. sitting: {
  10817. height: math.unit(1, "meter"),
  10818. weight: math.unit(120, "lb"),
  10819. name: "Sitting",
  10820. image: {
  10821. source: "./media/characters/tene/sitting.svg",
  10822. extra: 396/366,
  10823. bottom: 79/475
  10824. }
  10825. },
  10826. smiling: {
  10827. height: math.unit(1.2, "feet"),
  10828. name: "Smiling",
  10829. image: {
  10830. source: "./media/characters/tene/smiling.svg",
  10831. extra: 1364/1071,
  10832. bottom: 0/1364
  10833. }
  10834. },
  10835. smug: {
  10836. height: math.unit(1.3, "feet"),
  10837. name: "Smug",
  10838. image: {
  10839. source: "./media/characters/tene/smug.svg",
  10840. extra: 1323/1082,
  10841. bottom: 0/1323
  10842. }
  10843. },
  10844. feral: {
  10845. height: math.unit(3.9, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Feral",
  10848. image: {
  10849. source: "./media/characters/tene/feral.svg",
  10850. extra: 717 / 458,
  10851. bottom: 0.179
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Normal",
  10858. height: math.unit(6, "feet")
  10859. },
  10860. {
  10861. name: "Macro",
  10862. height: math.unit(300, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(5, "miles")
  10868. },
  10869. ]
  10870. ))
  10871. characterMakers.push(() => makeCharacter(
  10872. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10873. {
  10874. side: {
  10875. height: math.unit(6, "feet"),
  10876. name: "Side",
  10877. image: {
  10878. source: "./media/characters/evander/side.svg",
  10879. extra: 877 / 477
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(0.83, "meters"),
  10887. default: true
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(12, "feet"),
  10896. weight: math.unit(1000, "lb"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10900. extra: 1762 / 1611
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(12, "feet"),
  10905. weight: math.unit(1000, "lb"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10909. extra: 1762 / 1611
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(12, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Kaiju",
  10921. height: math.unit(150, "feet")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(6, "feet"),
  10930. weight: math.unit(150, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/zero-alurus/front.svg"
  10934. }
  10935. },
  10936. back: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Back",
  10940. image: {
  10941. source: "./media/characters/zero-alurus/back.svg"
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(5 + 10 / 12, "feet")
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(60, "feet"),
  10953. default: true
  10954. },
  10955. {
  10956. name: "Macro+",
  10957. height: math.unit(450, "feet")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(200, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/mega-shi/front.svg",
  10970. extra: 1279 / 1250,
  10971. bottom: 0.02
  10972. }
  10973. },
  10974. back: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(200, "lb"),
  10977. name: "Back",
  10978. image: {
  10979. source: "./media/characters/mega-shi/back.svg",
  10980. extra: 1279 / 1250,
  10981. bottom: 0.02
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(16 + 6 / 12, "feet")
  10989. },
  10990. {
  10991. name: "Third Dimension",
  10992. height: math.unit(40, "meters")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(660, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(10, "miles")
  11002. },
  11003. {
  11004. name: "Planetary Launch",
  11005. height: math.unit(500, "miles")
  11006. },
  11007. {
  11008. name: "Interstellar",
  11009. height: math.unit(1e9, "miles")
  11010. },
  11011. {
  11012. name: "Leaving the Universe",
  11013. height: math.unit(1, "gigaparsec")
  11014. },
  11015. {
  11016. name: "Travelling Universes",
  11017. height: math.unit(30e15, "parsecs")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(5 + 4/12, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/odyssey/front.svg",
  11030. extra: 1747/1571,
  11031. bottom: 47/1794
  11032. }
  11033. },
  11034. side: {
  11035. height: math.unit(5.1, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Side",
  11038. image: {
  11039. source: "./media/characters/odyssey/side.svg",
  11040. extra: 1847/1619,
  11041. bottom: 47/1894
  11042. }
  11043. },
  11044. lounging: {
  11045. height: math.unit(1.464, "feet"),
  11046. weight: math.unit(120, "lb"),
  11047. name: "Lounging",
  11048. image: {
  11049. source: "./media/characters/odyssey/lounging.svg",
  11050. extra: 1235/837,
  11051. bottom: 551/1786
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Normal",
  11058. height: math.unit(5 + 4 / 12, "feet")
  11059. },
  11060. {
  11061. name: "Macro",
  11062. height: math.unit(1, "km")
  11063. },
  11064. {
  11065. name: "Megamacro",
  11066. height: math.unit(3000, "km")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(1, "AU"),
  11071. default: true
  11072. },
  11073. {
  11074. name: "Omniversal",
  11075. height: math.unit(100e14, "lightyears")
  11076. },
  11077. ]
  11078. ))
  11079. characterMakers.push(() => makeCharacter(
  11080. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11081. {
  11082. front: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(300, "lb"),
  11085. name: "Front",
  11086. image: {
  11087. source: "./media/characters/mekuto/front.svg",
  11088. extra: 921 / 832,
  11089. bottom: 0.03
  11090. }
  11091. },
  11092. hand: {
  11093. height: math.unit(6 / 10.24, "feet"),
  11094. name: "Hand",
  11095. image: {
  11096. source: "./media/characters/mekuto/hand.svg"
  11097. }
  11098. },
  11099. foot: {
  11100. height: math.unit(6 / 5.05, "feet"),
  11101. name: "Foot",
  11102. image: {
  11103. source: "./media/characters/mekuto/foot.svg"
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Minimicro",
  11110. height: math.unit(0.2, "inches")
  11111. },
  11112. {
  11113. name: "Micro",
  11114. height: math.unit(1.5, "inches")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(5 + 11 / 12, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Minimacro",
  11123. height: math.unit(17 + 9 / 12, "feet")
  11124. },
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(177.5, "feet")
  11128. },
  11129. {
  11130. name: "Megamacro",
  11131. height: math.unit(152, "miles")
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11137. {
  11138. front: {
  11139. height: math.unit(6.5, "inches"),
  11140. weight: math.unit(13, "oz"),
  11141. name: "Front",
  11142. image: {
  11143. source: "./media/characters/dafydd-tomos/front.svg",
  11144. extra: 2990 / 2603,
  11145. bottom: 0.03
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Micro",
  11152. height: math.unit(6.5, "inches"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/splinter/front.svg",
  11166. extra: 2990 / 2882,
  11167. bottom: 0.04
  11168. }
  11169. },
  11170. back: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(150, "lb"),
  11173. name: "Back",
  11174. image: {
  11175. source: "./media/characters/splinter/back.svg",
  11176. extra: 2990 / 2882,
  11177. bottom: 0.04
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet")
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(230, "meters"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(4 + 10 / 12, "feet"),
  11198. weight: math.unit(480, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/snow-gabumon/front.svg",
  11202. extra: 1140 / 963,
  11203. bottom: 0.058
  11204. }
  11205. },
  11206. back: {
  11207. height: math.unit(4 + 10 / 12, "feet"),
  11208. weight: math.unit(480, "lb"),
  11209. name: "Back",
  11210. image: {
  11211. source: "./media/characters/snow-gabumon/back.svg",
  11212. extra: 1115 / 962,
  11213. bottom: 0.041
  11214. }
  11215. },
  11216. frontUndresed: {
  11217. height: math.unit(4 + 10 / 12, "feet"),
  11218. weight: math.unit(480, "lb"),
  11219. name: "Front (Undressed)",
  11220. image: {
  11221. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11222. extra: 1061 / 960,
  11223. bottom: 0.045
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Micro",
  11230. height: math.unit(1, "inch")
  11231. },
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(4 + 10 / 12, "feet"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Macro",
  11239. height: math.unit(200, "feet")
  11240. },
  11241. {
  11242. name: "Megamacro",
  11243. height: math.unit(120, "miles")
  11244. },
  11245. {
  11246. name: "Gigamacro",
  11247. height: math.unit(9800, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(1.7, "meters"),
  11256. weight: math.unit(140, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/moody/front.svg",
  11260. extra: 3226 / 3007,
  11261. bottom: 0.087
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Micro",
  11268. height: math.unit(1, "mm")
  11269. },
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(1.7, "meters"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(80, "meters")
  11278. },
  11279. {
  11280. name: "Macro+",
  11281. height: math.unit(500, "meters")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/zyas/front.svg",
  11294. extra: 1180 / 1120,
  11295. bottom: 0.045
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(10, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Macro",
  11307. height: math.unit(500, "feet")
  11308. },
  11309. {
  11310. name: "Megamacro",
  11311. height: math.unit(5, "miles")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(150000, "miles")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(6, "feet"),
  11324. weight: math.unit(150, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/cuon/front.svg",
  11328. extra: 1390 / 1320,
  11329. bottom: 0.008
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Micro",
  11336. height: math.unit(3, "inches")
  11337. },
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(18 + 9 / 12, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro",
  11345. height: math.unit(360, "feet")
  11346. },
  11347. {
  11348. name: "Megamacro",
  11349. height: math.unit(360, "miles")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(2.4, "meters"),
  11358. weight: math.unit(70, "kg"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/nyanuxk/front.svg",
  11362. extra: 1172 / 1084,
  11363. bottom: 0.065
  11364. }
  11365. },
  11366. side: {
  11367. height: math.unit(2.4, "meters"),
  11368. weight: math.unit(70, "kg"),
  11369. name: "Side",
  11370. image: {
  11371. source: "./media/characters/nyanuxk/side.svg",
  11372. extra: 1190 / 1132,
  11373. bottom: 0.007
  11374. }
  11375. },
  11376. back: {
  11377. height: math.unit(2.4, "meters"),
  11378. weight: math.unit(70, "kg"),
  11379. name: "Back",
  11380. image: {
  11381. source: "./media/characters/nyanuxk/back.svg",
  11382. extra: 1200 / 1141,
  11383. bottom: 0.015
  11384. }
  11385. },
  11386. foot: {
  11387. height: math.unit(0.52, "meters"),
  11388. name: "Foot",
  11389. image: {
  11390. source: "./media/characters/nyanuxk/foot.svg"
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Micro",
  11397. height: math.unit(2, "cm")
  11398. },
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(2.4, "meters"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Smaller Macro",
  11406. height: math.unit(120, "meters")
  11407. },
  11408. {
  11409. name: "Bigger Macro",
  11410. height: math.unit(1.2, "km")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(15, "kilometers")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(2000, "km")
  11419. },
  11420. {
  11421. name: "Teramacro",
  11422. height: math.unit(500000, "km")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. name: "Side",
  11432. image: {
  11433. source: "./media/characters/ailbhe/side.svg",
  11434. extra: 757 / 464,
  11435. bottom: 0.041
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(1.07, "meters"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(120, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/zevulfius/front.svg",
  11456. extra: 965 / 903
  11457. }
  11458. },
  11459. side: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(120, "kg"),
  11462. name: "Side",
  11463. image: {
  11464. source: "./media/characters/zevulfius/side.svg",
  11465. extra: 939 / 900
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(120, "kg"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/zevulfius/back.svg",
  11474. extra: 918 / 854,
  11475. bottom: 0.005
  11476. }
  11477. },
  11478. foot: {
  11479. height: math.unit(6 / 3.72, "feet"),
  11480. name: "Foot",
  11481. image: {
  11482. source: "./media/characters/zevulfius/foot.svg"
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(750, "meters")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(20, "km"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(2000, "km")
  11499. },
  11500. {
  11501. name: "Teramacro",
  11502. height: math.unit(250000, "km")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(100, "feet"),
  11511. weight: math.unit(350, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/rikes/front.svg",
  11515. extra: 1565 / 1483,
  11516. bottom: 0.017
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(100, "feet"),
  11524. default: true
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(8, "feet"),
  11533. weight: math.unit(356, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/adam-silver-mane/front.svg",
  11537. extra: 1036/937,
  11538. bottom: 63/1099
  11539. }
  11540. },
  11541. side: {
  11542. height: math.unit(8, "feet"),
  11543. weight: math.unit(356, "lb"),
  11544. name: "Side",
  11545. image: {
  11546. source: "./media/characters/adam-silver-mane/side.svg",
  11547. extra: 997/901,
  11548. bottom: 59/1056
  11549. }
  11550. },
  11551. frontNsfw: {
  11552. height: math.unit(8, "feet"),
  11553. weight: math.unit(356, "lb"),
  11554. name: "Front (NSFW)",
  11555. image: {
  11556. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11557. extra: 1036/937,
  11558. bottom: 63/1099
  11559. }
  11560. },
  11561. sideNsfw: {
  11562. height: math.unit(8, "feet"),
  11563. weight: math.unit(356, "lb"),
  11564. name: "Side (NSFW)",
  11565. image: {
  11566. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11567. extra: 997/901,
  11568. bottom: 59/1056
  11569. }
  11570. },
  11571. dick: {
  11572. height: math.unit(2.1, "feet"),
  11573. name: "Dick",
  11574. image: {
  11575. source: "./media/characters/adam-silver-mane/dick.svg"
  11576. }
  11577. },
  11578. taur: {
  11579. height: math.unit(16, "feet"),
  11580. weight: math.unit(1500, "kg"),
  11581. name: "Taur",
  11582. image: {
  11583. source: "./media/characters/adam-silver-mane/taur.svg",
  11584. extra: 1713 / 1571,
  11585. bottom: 0.01
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Normal",
  11592. height: math.unit(8, "feet")
  11593. },
  11594. {
  11595. name: "Minimacro",
  11596. height: math.unit(80, "feet")
  11597. },
  11598. {
  11599. name: "MDA",
  11600. height: math.unit(80, "meters")
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(800, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(8000, "feet")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(800, "miles")
  11614. },
  11615. {
  11616. name: "Teramacro",
  11617. height: math.unit(80000, "miles")
  11618. },
  11619. {
  11620. name: "Celestial",
  11621. height: math.unit(8e6, "miles")
  11622. },
  11623. {
  11624. name: "Star Dragon",
  11625. height: math.unit(800000, "parsecs")
  11626. },
  11627. {
  11628. name: "Godly",
  11629. height: math.unit(800, "teraparsecs")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/ky'owin/front.svg",
  11642. extra: 3862/3053,
  11643. bottom: 74/3936
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(6 + 8 / 12, "feet")
  11651. },
  11652. {
  11653. name: "Large",
  11654. height: math.unit(68, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(132, "feet")
  11659. },
  11660. {
  11661. name: "Macro+",
  11662. height: math.unit(340, "feet")
  11663. },
  11664. {
  11665. name: "Macro++",
  11666. height: math.unit(680, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. {
  11674. name: "Megamacro+",
  11675. height: math.unit(10, "miles")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(4, "feet"),
  11684. weight: math.unit(50, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/mal/front.svg",
  11688. extra: 785 / 724,
  11689. bottom: 0.07
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Micro",
  11696. height: math.unit(4, "inches")
  11697. },
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(4, "feet"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(200, "feet")
  11706. },
  11707. ]
  11708. ))
  11709. characterMakers.push(() => makeCharacter(
  11710. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11711. {
  11712. front: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(150, "lb"),
  11715. name: "Front",
  11716. image: {
  11717. source: "./media/characters/jordan-deware/front.svg",
  11718. extra: 1191 / 1012
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Nano",
  11725. height: math.unit(0.01, "mm")
  11726. },
  11727. {
  11728. name: "Minimicro",
  11729. height: math.unit(1, "mm")
  11730. },
  11731. {
  11732. name: "Micro",
  11733. height: math.unit(0.5, "inches")
  11734. },
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(4, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Minimacro",
  11742. height: math.unit(40, "meters")
  11743. },
  11744. {
  11745. name: "Small Macro",
  11746. height: math.unit(400, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(4, "miles")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(40, "miles")
  11755. },
  11756. {
  11757. name: "Megamacro+",
  11758. height: math.unit(400, "miles")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(400000, "miles")
  11763. },
  11764. ]
  11765. ))
  11766. characterMakers.push(() => makeCharacter(
  11767. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11768. {
  11769. side: {
  11770. height: math.unit(6, "feet"),
  11771. weight: math.unit(150, "lb"),
  11772. name: "Side",
  11773. image: {
  11774. source: "./media/characters/kimiko/side.svg",
  11775. extra: 600 / 358
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(15, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Macro",
  11787. height: math.unit(220, "feet")
  11788. },
  11789. {
  11790. name: "Macro+",
  11791. height: math.unit(1450, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(11500, "feet")
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(9500, "miles")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(2208005005, "miles")
  11804. },
  11805. {
  11806. name: "Examacro",
  11807. height: math.unit(2750, "parsecs")
  11808. },
  11809. {
  11810. name: "Zettamacro",
  11811. height: math.unit(101500, "parsecs")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(6, "feet"),
  11820. weight: math.unit(70, "kg"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/andrew-sleepy/front.svg"
  11824. }
  11825. },
  11826. side: {
  11827. height: math.unit(6, "feet"),
  11828. weight: math.unit(70, "kg"),
  11829. name: "Side",
  11830. image: {
  11831. source: "./media/characters/andrew-sleepy/side.svg"
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(1, "mm"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/judio/front.svg",
  11852. extra: 1258 / 1110
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(5 + 6 / 12, "feet")
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(1000, "feet"),
  11864. default: true
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(10, "miles")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11874. {
  11875. frontDressed: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(68, "kg"),
  11878. name: "Front (Dressed)",
  11879. image: {
  11880. source: "./media/characters/nomaxice/front-dressed.svg",
  11881. extra: 1137/824,
  11882. bottom: 74/1211
  11883. }
  11884. },
  11885. frontShorts: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(68, "kg"),
  11888. name: "Front (Shorts)",
  11889. image: {
  11890. source: "./media/characters/nomaxice/front-shorts.svg",
  11891. extra: 1137/824,
  11892. bottom: 74/1211
  11893. }
  11894. },
  11895. back: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(68, "kg"),
  11898. name: "Back",
  11899. image: {
  11900. source: "./media/characters/nomaxice/back.svg",
  11901. extra: 822/786,
  11902. bottom: 39/861
  11903. }
  11904. },
  11905. hand: {
  11906. height: math.unit(0.565, "feet"),
  11907. name: "Hand",
  11908. image: {
  11909. source: "./media/characters/nomaxice/hand.svg"
  11910. }
  11911. },
  11912. foot: {
  11913. height: math.unit(1, "feet"),
  11914. name: "Foot",
  11915. image: {
  11916. source: "./media/characters/nomaxice/foot.svg"
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Micro",
  11923. height: math.unit(8, "cm")
  11924. },
  11925. {
  11926. name: "Norm",
  11927. height: math.unit(1.82, "m")
  11928. },
  11929. {
  11930. name: "Norm+",
  11931. height: math.unit(8.8, "feet"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Big",
  11936. height: math.unit(8, "meters")
  11937. },
  11938. {
  11939. name: "Macro",
  11940. height: math.unit(18, "meters")
  11941. },
  11942. {
  11943. name: "Macro+",
  11944. height: math.unit(88, "meters")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(12, "feet"),
  11953. weight: math.unit(1.5, "tons"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/dydros/front.svg",
  11957. extra: 863 / 800,
  11958. bottom: 0.015
  11959. }
  11960. },
  11961. back: {
  11962. height: math.unit(12, "feet"),
  11963. weight: math.unit(1.5, "tons"),
  11964. name: "Back",
  11965. image: {
  11966. source: "./media/characters/dydros/back.svg",
  11967. extra: 900 / 843,
  11968. bottom: 0.005
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(100, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/riggi/front.svg",
  11989. extra: 5787 / 5303
  11990. }
  11991. },
  11992. hyper: {
  11993. height: math.unit(6 * 5 / 3, "feet"),
  11994. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11995. name: "Hyper",
  11996. image: {
  11997. source: "./media/characters/riggi/hyper.svg",
  11998. extra: 3595 / 3485
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Small Macro",
  12005. height: math.unit(50, "feet")
  12006. },
  12007. {
  12008. name: "Default",
  12009. height: math.unit(200, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Loom",
  12014. height: math.unit(10000, "feet")
  12015. },
  12016. {
  12017. name: "Cruising Altitude",
  12018. height: math.unit(30000, "feet")
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(100, "miles")
  12023. },
  12024. {
  12025. name: "Continent Sized",
  12026. height: math.unit(2800, "miles")
  12027. },
  12028. {
  12029. name: "Earth Sized",
  12030. height: math.unit(8000, "miles")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(250, "lb"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/alexi/front.svg",
  12043. extra: 3483 / 3291,
  12044. bottom: 0.04
  12045. }
  12046. },
  12047. back: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Back",
  12051. image: {
  12052. source: "./media/characters/alexi/back.svg",
  12053. extra: 3533 / 3356,
  12054. bottom: 0.021
  12055. }
  12056. },
  12057. frontTransforming: {
  12058. height: math.unit(8.58, "feet"),
  12059. weight: math.unit(1300, "lb"),
  12060. name: "Transforming",
  12061. image: {
  12062. source: "./media/characters/alexi/front-transforming.svg",
  12063. extra: 437 / 409,
  12064. bottom: 19 / 458.66
  12065. }
  12066. },
  12067. frontTransformed: {
  12068. height: math.unit(12.5, "feet"),
  12069. weight: math.unit(4000, "lb"),
  12070. name: "Transformed",
  12071. image: {
  12072. source: "./media/characters/alexi/front-transformed.svg",
  12073. extra: 639 / 614,
  12074. bottom: 30.55 / 671
  12075. }
  12076. },
  12077. },
  12078. [
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(14, "feet"),
  12082. default: true
  12083. },
  12084. {
  12085. name: "Minimacro",
  12086. height: math.unit(30, "meters")
  12087. },
  12088. {
  12089. name: "Macro",
  12090. height: math.unit(500, "meters")
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(9000, "km")
  12095. },
  12096. {
  12097. name: "Teramacro",
  12098. height: math.unit(384000, "km")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6, "feet"),
  12107. weight: math.unit(150, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/kayroo/front.svg",
  12111. extra: 1153 / 1038,
  12112. bottom: 0.06
  12113. }
  12114. },
  12115. foot: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(150, "lb"),
  12118. name: "Foot",
  12119. image: {
  12120. source: "./media/characters/kayroo/foot.svg"
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Normal",
  12127. height: math.unit(8, "feet"),
  12128. default: true
  12129. },
  12130. {
  12131. name: "Minimacro",
  12132. height: math.unit(250, "feet")
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(2800, "feet")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(5200, "feet")
  12141. },
  12142. {
  12143. name: "Gigamacro",
  12144. height: math.unit(27000, "feet")
  12145. },
  12146. {
  12147. name: "Omega",
  12148. height: math.unit(45000, "feet")
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(18, "feet"),
  12157. weight: math.unit(5800, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/rhys/front.svg",
  12161. extra: 3386 / 3090,
  12162. bottom: 0.07
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(18, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Working Size",
  12174. height: math.unit(200, "feet")
  12175. },
  12176. {
  12177. name: "Demolition Size",
  12178. height: math.unit(2000, "feet")
  12179. },
  12180. {
  12181. name: "Maximum Licensed Size",
  12182. height: math.unit(5, "miles")
  12183. },
  12184. {
  12185. name: "Maximum Observed Size",
  12186. height: math.unit(10, "yottameters")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(250, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/toto/front.svg",
  12199. extra: 527 / 479,
  12200. bottom: 0.05
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Micro",
  12207. height: math.unit(3, "feet")
  12208. },
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(10, "feet")
  12212. },
  12213. {
  12214. name: "Macro",
  12215. height: math.unit(150, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Megamacro",
  12220. height: math.unit(1200, "feet")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "King", species: ["lion"], tags: ["anthro"] },
  12226. {
  12227. back: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Back",
  12231. image: {
  12232. source: "./media/characters/king/back.svg"
  12233. }
  12234. },
  12235. },
  12236. [
  12237. {
  12238. name: "Micro",
  12239. height: math.unit(2, "inches")
  12240. },
  12241. {
  12242. name: "Normal",
  12243. height: math.unit(8, "feet")
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(200, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(50, "miles")
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(11, "feet"),
  12261. weight: math.unit(1400, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/cordite/front.svg",
  12265. extra: 1919/1827,
  12266. bottom: 40/1959
  12267. }
  12268. },
  12269. side: {
  12270. height: math.unit(11, "feet"),
  12271. weight: math.unit(1400, "lb"),
  12272. name: "Side",
  12273. image: {
  12274. source: "./media/characters/cordite/side.svg",
  12275. extra: 1908/1793,
  12276. bottom: 38/1946
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(11, "feet"),
  12281. weight: math.unit(1400, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/cordite/back.svg",
  12285. extra: 1938/1837,
  12286. bottom: 10/1948
  12287. }
  12288. },
  12289. feral: {
  12290. height: math.unit(2, "feet"),
  12291. weight: math.unit(90, "lb"),
  12292. name: "Feral",
  12293. image: {
  12294. source: "./media/characters/cordite/feral.svg",
  12295. extra: 1260 / 755,
  12296. bottom: 0.05
  12297. }
  12298. },
  12299. },
  12300. [
  12301. {
  12302. name: "Normal",
  12303. height: math.unit(11, "feet"),
  12304. default: true
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(6, "feet"),
  12313. weight: math.unit(150, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/pianostrong/front.svg",
  12317. extra: 6577 / 6254,
  12318. bottom: 0.02
  12319. }
  12320. },
  12321. side: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Side",
  12325. image: {
  12326. source: "./media/characters/pianostrong/side.svg",
  12327. extra: 6106 / 5730
  12328. }
  12329. },
  12330. back: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Back",
  12334. image: {
  12335. source: "./media/characters/pianostrong/back.svg",
  12336. extra: 6085 / 5733,
  12337. bottom: 0.01
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(100, "feet")
  12345. },
  12346. {
  12347. name: "Macro+",
  12348. height: math.unit(300, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Macro++",
  12353. height: math.unit(1000, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/kona/front.svg",
  12366. extra: 2960 / 2629,
  12367. bottom: 0.005
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(11 + 8 / 12, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(850, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Macro+",
  12383. height: math.unit(1.5, "km"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(80, "miles")
  12389. },
  12390. {
  12391. name: "Gigamacro",
  12392. height: math.unit(3500, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12398. {
  12399. side: {
  12400. height: math.unit(1.9, "meters"),
  12401. weight: math.unit(326, "kg"),
  12402. name: "Side",
  12403. image: {
  12404. source: "./media/characters/levi/side.svg",
  12405. extra: 1704 / 1334,
  12406. bottom: 0.02
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(1.9, "meters"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(20, "meters")
  12419. },
  12420. {
  12421. name: "Macro+",
  12422. height: math.unit(200, "meters")
  12423. },
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(2, "km")
  12427. },
  12428. {
  12429. name: "Megamacro+",
  12430. height: math.unit(20, "km")
  12431. },
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(2500, "km")
  12435. },
  12436. {
  12437. name: "Gigamacro+",
  12438. height: math.unit(120000, "km")
  12439. },
  12440. {
  12441. name: "Teramacro",
  12442. height: math.unit(7.77e6, "km")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(6 + 4/12, "feet"),
  12451. weight: math.unit(190, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/bmc/front.svg",
  12455. extra: 1626/1472,
  12456. bottom: 79/1705
  12457. }
  12458. },
  12459. back: {
  12460. height: math.unit(6 + 4/12, "feet"),
  12461. weight: math.unit(190, "lb"),
  12462. name: "Back",
  12463. image: {
  12464. source: "./media/characters/bmc/back.svg",
  12465. extra: 1640/1479,
  12466. bottom: 45/1685
  12467. }
  12468. },
  12469. frontArmor: {
  12470. height: math.unit(6 + 4/12, "feet"),
  12471. weight: math.unit(190, "lb"),
  12472. name: "Front-armor",
  12473. image: {
  12474. source: "./media/characters/bmc/front-armor.svg",
  12475. extra: 1538/1468,
  12476. bottom: 79/1617
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Human-sized",
  12483. height: math.unit(6 + 4 / 12, "feet")
  12484. },
  12485. {
  12486. name: "Interactive Size",
  12487. height: math.unit(25, "feet")
  12488. },
  12489. {
  12490. name: "Small",
  12491. height: math.unit(250, "feet")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(1250, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Good Day",
  12500. height: math.unit(88, "miles")
  12501. },
  12502. {
  12503. name: "Largest Measured Size",
  12504. height: math.unit(105.960, "galaxies")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(20, "feet"),
  12513. weight: math.unit(2016, "kg"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/sven-the-kaiju/front.svg",
  12517. extra: 1277/1250,
  12518. bottom: 35/1312
  12519. }
  12520. },
  12521. mouth: {
  12522. height: math.unit(1.85, "feet"),
  12523. name: "Mouth",
  12524. image: {
  12525. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Fairy",
  12532. height: math.unit(6, "inches")
  12533. },
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(20, "feet"),
  12537. default: true
  12538. },
  12539. {
  12540. name: "Rampage",
  12541. height: math.unit(200, "feet")
  12542. },
  12543. {
  12544. name: "Archfey Forest Guardian",
  12545. height: math.unit(1, "mile")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(4, "meters"),
  12554. weight: math.unit(2, "tons"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/marik/front.svg",
  12558. extra: 1057 / 1003,
  12559. bottom: 0.08
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Normal",
  12566. height: math.unit(4, "meters"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Macro",
  12571. height: math.unit(20, "meters")
  12572. },
  12573. {
  12574. name: "Megamacro",
  12575. height: math.unit(50, "km")
  12576. },
  12577. {
  12578. name: "Gigamacro",
  12579. height: math.unit(100, "km")
  12580. },
  12581. {
  12582. name: "Alpha Macro",
  12583. height: math.unit(7.88e7, "yottameters")
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(110, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/mel/front.svg",
  12596. extra: 736 / 617,
  12597. bottom: 0.017
  12598. }
  12599. },
  12600. },
  12601. [
  12602. {
  12603. name: "Pico",
  12604. height: math.unit(3, "pm")
  12605. },
  12606. {
  12607. name: "Nano",
  12608. height: math.unit(3, "nm")
  12609. },
  12610. {
  12611. name: "Micro",
  12612. height: math.unit(0.3, "mm"),
  12613. default: true
  12614. },
  12615. {
  12616. name: "Micro+",
  12617. height: math.unit(3, "mm")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(5 + 10.5 / 12, "feet")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12627. {
  12628. kaiju: {
  12629. height: math.unit(1.75, "meters"),
  12630. weight: math.unit(55, "kg"),
  12631. name: "Kaiju",
  12632. image: {
  12633. source: "./media/characters/lykonous/kaiju.svg",
  12634. extra: 1055 / 946,
  12635. bottom: 0.135
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(2.5, "meters"),
  12643. default: true
  12644. },
  12645. {
  12646. name: "Kaiju Dragon",
  12647. height: math.unit(60, "meters")
  12648. },
  12649. {
  12650. name: "Mega Kaiju",
  12651. height: math.unit(120, "km")
  12652. },
  12653. {
  12654. name: "Giga Kaiju",
  12655. height: math.unit(200, "megameters")
  12656. },
  12657. {
  12658. name: "Terra Kaiju",
  12659. height: math.unit(400, "gigameters")
  12660. },
  12661. {
  12662. name: "Kaiju Dragon God",
  12663. height: math.unit(13000, "exaparsecs")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/blü/front.svg",
  12676. extra: 1883 / 1564,
  12677. bottom: 0.031
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(13, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Big Boi",
  12689. height: math.unit(150, "meters")
  12690. },
  12691. {
  12692. name: "Mini Stomper",
  12693. height: math.unit(300, "meters")
  12694. },
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(1000, "meters")
  12698. },
  12699. {
  12700. name: "Megamacro",
  12701. height: math.unit(11000, "meters")
  12702. },
  12703. {
  12704. name: "Gigamacro",
  12705. height: math.unit(11000, "km")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(420000, "km")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(120, "parsecs")
  12714. },
  12715. {
  12716. name: "God Tho",
  12717. height: math.unit(98000000000, "parsecs")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12723. {
  12724. taurFront: {
  12725. height: math.unit(6, "feet"),
  12726. weight: math.unit(200, "lb"),
  12727. name: "Taur (Front)",
  12728. image: {
  12729. source: "./media/characters/scales/taur-front.svg",
  12730. extra: 1,
  12731. bottom: 0.05
  12732. }
  12733. },
  12734. taurBack: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(200, "lb"),
  12737. name: "Taur (Back)",
  12738. image: {
  12739. source: "./media/characters/scales/taur-back.svg",
  12740. extra: 1,
  12741. bottom: 0.08
  12742. }
  12743. },
  12744. anthro: {
  12745. height: math.unit(6 * 7 / 12, "feet"),
  12746. weight: math.unit(100, "lb"),
  12747. name: "Anthro",
  12748. image: {
  12749. source: "./media/characters/scales/anthro.svg",
  12750. extra: 1,
  12751. bottom: 0.06
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(12, "feet"),
  12759. default: true
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/koragos/front.svg",
  12772. extra: 841 / 794,
  12773. bottom: 0.035
  12774. }
  12775. },
  12776. back: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/koragos/back.svg",
  12782. extra: 841 / 810,
  12783. bottom: 0.022
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(6 + 11 / 12, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(490, "feet")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(10, "miles")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(50, "miles")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(250, "lb"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/xylrem/front.svg",
  12816. extra: 3323 / 3050,
  12817. bottom: 0.065
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Micro",
  12824. height: math.unit(4, "feet")
  12825. },
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(16, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(2720, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(25000, "miles")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(8, "feet"),
  12846. weight: math.unit(250, "kg"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/ikideru/front.svg",
  12850. extra: 930 / 870,
  12851. bottom: 0.087
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(8, "feet"),
  12856. weight: math.unit(250, "kg"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/ikideru/back.svg",
  12860. extra: 919 / 852,
  12861. bottom: 0.055
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Rare",
  12868. height: math.unit(8, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Playful Loom",
  12873. height: math.unit(80, "feet")
  12874. },
  12875. {
  12876. name: "City Leaner",
  12877. height: math.unit(230, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro",
  12881. height: math.unit(2500, "feet")
  12882. },
  12883. {
  12884. name: "Gigamacro",
  12885. height: math.unit(26400, "feet")
  12886. },
  12887. {
  12888. name: "Tectonic Shifter",
  12889. height: math.unit(1.7, "megameters")
  12890. },
  12891. {
  12892. name: "Planet Carer",
  12893. height: math.unit(21, "megameters")
  12894. },
  12895. {
  12896. name: "God",
  12897. height: math.unit(11157.22, "parsecs")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(120, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/neo/front.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(2, "inches"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Human Size",
  12921. height: math.unit(5 + 8 / 12, "feet")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(13 + 10 / 12, "feet"),
  12930. weight: math.unit(5320, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/chauncey-chantz/front.svg",
  12934. extra: 1587 / 1435,
  12935. bottom: 0.02
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(13 + 10 / 12, "feet"),
  12943. default: true
  12944. },
  12945. {
  12946. name: "Macro",
  12947. height: math.unit(45, "feet")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(250, "miles")
  12952. },
  12953. {
  12954. name: "Planetary",
  12955. height: math.unit(10000, "miles")
  12956. },
  12957. {
  12958. name: "Galactic",
  12959. height: math.unit(40000, "parsecs")
  12960. },
  12961. {
  12962. name: "Universal",
  12963. height: math.unit(1, "yottameter")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/epifox/front.svg",
  12976. extra: 1,
  12977. bottom: 0.075
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(6, "inches")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(12, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(3810, "feet")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(500, "miles")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(1.8796, "m"),
  13006. weight: math.unit(230, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/colin-t/front.svg",
  13010. extra: 1272 / 1193,
  13011. bottom: 0.07
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Micro",
  13018. height: math.unit(0.571, "meters")
  13019. },
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(1.8796, "meters"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Tall",
  13027. height: math.unit(4, "meters")
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(67.241, "meters")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(371.856, "meters")
  13036. },
  13037. {
  13038. name: "Planetary",
  13039. height: math.unit(12631.5689, "km")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(1.85, "meters"),
  13048. weight: math.unit(80, "kg"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/matvei/front.svg",
  13052. extra: 456/447,
  13053. bottom: 8/464
  13054. }
  13055. },
  13056. back: {
  13057. height: math.unit(1.85, "meters"),
  13058. weight: math.unit(80, "kg"),
  13059. name: "Back",
  13060. image: {
  13061. source: "./media/characters/matvei/back.svg",
  13062. extra: 434/427,
  13063. bottom: 11/445
  13064. }
  13065. },
  13066. },
  13067. [
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(1.85, "meters"),
  13071. default: true
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(5 + 9 / 12, "feet"),
  13080. weight: math.unit(70, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/quincy/front.svg",
  13084. extra: 3041 / 2751
  13085. }
  13086. },
  13087. back: {
  13088. height: math.unit(5 + 9 / 12, "feet"),
  13089. weight: math.unit(70, "lb"),
  13090. name: "Back",
  13091. image: {
  13092. source: "./media/characters/quincy/back.svg",
  13093. extra: 3041 / 2751
  13094. }
  13095. },
  13096. flying: {
  13097. height: math.unit(5 + 4 / 12, "feet"),
  13098. weight: math.unit(70, "lb"),
  13099. name: "Flying",
  13100. image: {
  13101. source: "./media/characters/quincy/flying.svg",
  13102. extra: 1044 / 930
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(3, "cm")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(5 + 9 / 12, "feet")
  13114. },
  13115. {
  13116. name: "Macro",
  13117. height: math.unit(200, "meters"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Megamacro",
  13122. height: math.unit(1000, "meters")
  13123. },
  13124. ]
  13125. ))
  13126. characterMakers.push(() => makeCharacter(
  13127. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13128. {
  13129. front: {
  13130. height: math.unit(3 + 11/12, "feet"),
  13131. weight: math.unit(50, "lb"),
  13132. name: "Front",
  13133. image: {
  13134. source: "./media/characters/vanrel/front.svg",
  13135. extra: 1104/949,
  13136. bottom: 52/1156
  13137. }
  13138. },
  13139. back: {
  13140. height: math.unit(3 + 11/12, "feet"),
  13141. weight: math.unit(50, "lb"),
  13142. name: "Back",
  13143. image: {
  13144. source: "./media/characters/vanrel/back.svg",
  13145. extra: 1119/976,
  13146. bottom: 37/1156
  13147. }
  13148. },
  13149. tome: {
  13150. height: math.unit(1.35, "feet"),
  13151. weight: math.unit(10, "lb"),
  13152. name: "Vanrel's Tome",
  13153. rename: true,
  13154. image: {
  13155. source: "./media/characters/vanrel/tome.svg"
  13156. }
  13157. },
  13158. beans: {
  13159. height: math.unit(0.89, "feet"),
  13160. name: "Beans",
  13161. image: {
  13162. source: "./media/characters/vanrel/beans.svg"
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(3 + 11/12, "feet"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(7 + 5 / 12, "feet"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/kuiper-vanrel/front.svg",
  13182. extra: 1219/1169,
  13183. bottom: 69/1288
  13184. }
  13185. },
  13186. back: {
  13187. height: math.unit(7 + 5 / 12, "feet"),
  13188. name: "Back",
  13189. image: {
  13190. source: "./media/characters/kuiper-vanrel/back.svg",
  13191. extra: 1236/1193,
  13192. bottom: 27/1263
  13193. }
  13194. },
  13195. foot: {
  13196. height: math.unit(0.55, "meters"),
  13197. name: "Foot",
  13198. image: {
  13199. source: "./media/characters/kuiper-vanrel/foot.svg",
  13200. }
  13201. },
  13202. battle: {
  13203. height: math.unit(6.824, "feet"),
  13204. name: "Battle",
  13205. image: {
  13206. source: "./media/characters/kuiper-vanrel/battle.svg",
  13207. extra: 1466 / 1327,
  13208. bottom: 29 / 1492.5
  13209. }
  13210. },
  13211. meerkui: {
  13212. height: math.unit(18, "inches"),
  13213. name: "Meerkui",
  13214. image: {
  13215. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13216. extra: 1354/1289,
  13217. bottom: 69/1423
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(7 + 5 / 12, "feet"),
  13225. default: true
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(8 + 5 / 12, "feet"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/keset-vanrel/front.svg",
  13237. extra: 1231/1148,
  13238. bottom: 82/1313
  13239. }
  13240. },
  13241. back: {
  13242. height: math.unit(8 + 5 / 12, "feet"),
  13243. name: "Back",
  13244. image: {
  13245. source: "./media/characters/keset-vanrel/back.svg",
  13246. extra: 1240/1174,
  13247. bottom: 33/1273
  13248. }
  13249. },
  13250. hand: {
  13251. height: math.unit(0.6, "meters"),
  13252. name: "Hand",
  13253. image: {
  13254. source: "./media/characters/keset-vanrel/hand.svg"
  13255. }
  13256. },
  13257. foot: {
  13258. height: math.unit(0.94978, "meters"),
  13259. name: "Foot",
  13260. image: {
  13261. source: "./media/characters/keset-vanrel/foot.svg"
  13262. }
  13263. },
  13264. battle: {
  13265. height: math.unit(7.408, "feet"),
  13266. name: "Battle",
  13267. image: {
  13268. source: "./media/characters/keset-vanrel/battle.svg",
  13269. extra: 1890 / 1386,
  13270. bottom: 73.28 / 1970
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(8 + 5 / 12, "feet"),
  13278. default: true
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(6, "feet"),
  13287. weight: math.unit(150, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/neos/front.svg",
  13291. extra: 1696 / 992,
  13292. bottom: 0.14
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(54, "cm"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Macro",
  13304. height: math.unit(100, "m")
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(10, "km")
  13309. },
  13310. {
  13311. name: "Megamacro+",
  13312. height: math.unit(100, "km")
  13313. },
  13314. {
  13315. name: "Gigamacro",
  13316. height: math.unit(100, "Mm")
  13317. },
  13318. {
  13319. name: "Teramacro",
  13320. height: math.unit(100, "Gm")
  13321. },
  13322. {
  13323. name: "Examacro",
  13324. height: math.unit(100, "Em")
  13325. },
  13326. {
  13327. name: "Godly",
  13328. height: math.unit(10000, "Ym")
  13329. },
  13330. {
  13331. name: "Beyond Godly",
  13332. height: math.unit(25, "multiverses")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13338. {
  13339. feminine: {
  13340. height: math.unit(5, "feet"),
  13341. weight: math.unit(100, "lb"),
  13342. name: "Feminine",
  13343. image: {
  13344. source: "./media/characters/sammy-mouse/feminine.svg",
  13345. extra: 2526 / 2425,
  13346. bottom: 0.123
  13347. }
  13348. },
  13349. masculine: {
  13350. height: math.unit(5, "feet"),
  13351. weight: math.unit(100, "lb"),
  13352. name: "Masculine",
  13353. image: {
  13354. source: "./media/characters/sammy-mouse/masculine.svg",
  13355. extra: 2526 / 2425,
  13356. bottom: 0.123
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Micro",
  13363. height: math.unit(5, "inches")
  13364. },
  13365. {
  13366. name: "Normal",
  13367. height: math.unit(5, "feet"),
  13368. default: true
  13369. },
  13370. {
  13371. name: "Macro",
  13372. height: math.unit(60, "feet")
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13378. {
  13379. front: {
  13380. height: math.unit(4, "feet"),
  13381. weight: math.unit(50, "lb"),
  13382. name: "Front",
  13383. image: {
  13384. source: "./media/characters/kole/front.svg",
  13385. extra: 1423 / 1303,
  13386. bottom: 0.025
  13387. }
  13388. },
  13389. back: {
  13390. height: math.unit(4, "feet"),
  13391. weight: math.unit(50, "lb"),
  13392. name: "Back",
  13393. image: {
  13394. source: "./media/characters/kole/back.svg",
  13395. extra: 1426 / 1280,
  13396. bottom: 0.02
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(4, "feet"),
  13404. default: true
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(2.5, "feet"),
  13413. weight: math.unit(32, "lb"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/rufran/front.svg",
  13417. extra: 1313/885,
  13418. bottom: 94/1407
  13419. }
  13420. },
  13421. side: {
  13422. height: math.unit(2.5, "feet"),
  13423. weight: math.unit(32, "lb"),
  13424. name: "Side",
  13425. image: {
  13426. source: "./media/characters/rufran/side.svg",
  13427. extra: 1109/852,
  13428. bottom: 118/1227
  13429. }
  13430. },
  13431. back: {
  13432. height: math.unit(2.5, "feet"),
  13433. weight: math.unit(32, "lb"),
  13434. name: "Back",
  13435. image: {
  13436. source: "./media/characters/rufran/back.svg",
  13437. extra: 1280/878,
  13438. bottom: 131/1411
  13439. }
  13440. },
  13441. mouth: {
  13442. height: math.unit(1.13, "feet"),
  13443. name: "Mouth",
  13444. image: {
  13445. source: "./media/characters/rufran/mouth.svg"
  13446. }
  13447. },
  13448. foot: {
  13449. height: math.unit(1.33, "feet"),
  13450. name: "Foot",
  13451. image: {
  13452. source: "./media/characters/rufran/foot.svg"
  13453. }
  13454. },
  13455. koboldFront: {
  13456. height: math.unit(2 + 6 / 12, "feet"),
  13457. weight: math.unit(20, "lb"),
  13458. name: "Front (Kobold)",
  13459. image: {
  13460. source: "./media/characters/rufran/kobold-front.svg",
  13461. extra: 2041 / 1839,
  13462. bottom: 0.055
  13463. }
  13464. },
  13465. koboldBack: {
  13466. height: math.unit(2 + 6 / 12, "feet"),
  13467. weight: math.unit(20, "lb"),
  13468. name: "Back (Kobold)",
  13469. image: {
  13470. source: "./media/characters/rufran/kobold-back.svg",
  13471. extra: 2054 / 1839,
  13472. bottom: 0.01
  13473. }
  13474. },
  13475. koboldHand: {
  13476. height: math.unit(0.2166, "meters"),
  13477. name: "Hand (Kobold)",
  13478. image: {
  13479. source: "./media/characters/rufran/kobold-hand.svg"
  13480. }
  13481. },
  13482. koboldFoot: {
  13483. height: math.unit(0.185, "meters"),
  13484. name: "Foot (Kobold)",
  13485. image: {
  13486. source: "./media/characters/rufran/kobold-foot.svg"
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Micro",
  13493. height: math.unit(1, "inch")
  13494. },
  13495. {
  13496. name: "Normal",
  13497. height: math.unit(2 + 6 / 12, "feet"),
  13498. default: true
  13499. },
  13500. {
  13501. name: "Big",
  13502. height: math.unit(60, "feet")
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(325, "feet")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(0.3, "meters"),
  13515. weight: math.unit(3.5, "kg"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/chip/front.svg",
  13519. extra: 748 / 674
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Micro",
  13526. height: math.unit(1, "inch"),
  13527. default: true
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13533. {
  13534. side: {
  13535. height: math.unit(2.3, "meters"),
  13536. weight: math.unit(3500, "lb"),
  13537. name: "Side",
  13538. image: {
  13539. source: "./media/characters/torvid/side.svg",
  13540. extra: 1972 / 722,
  13541. bottom: 0.035
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Normal",
  13548. height: math.unit(2.3, "meters"),
  13549. default: true
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(2, "meters"),
  13558. weight: math.unit(150.5, "kg"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/susan/front.svg",
  13562. extra: 693 / 635,
  13563. bottom: 0.05
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Megamacro",
  13570. height: math.unit(505, "miles"),
  13571. default: true
  13572. },
  13573. ]
  13574. ))
  13575. characterMakers.push(() => makeCharacter(
  13576. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13577. {
  13578. front: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(150, "lb"),
  13581. name: "Front",
  13582. image: {
  13583. source: "./media/characters/raindrops/front.svg",
  13584. extra: 2655 / 2461,
  13585. bottom: 49 / 2705
  13586. }
  13587. },
  13588. back: {
  13589. height: math.unit(6, "feet"),
  13590. weight: math.unit(150, "lb"),
  13591. name: "Back",
  13592. image: {
  13593. source: "./media/characters/raindrops/back.svg",
  13594. extra: 2574 / 2400,
  13595. bottom: 65 / 2634
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Micro",
  13602. height: math.unit(6, "inches")
  13603. },
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(6 + 2 / 12, "feet")
  13607. },
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(131, "feet"),
  13611. default: true
  13612. },
  13613. {
  13614. name: "Megamacro",
  13615. height: math.unit(15, "miles")
  13616. },
  13617. {
  13618. name: "Gigamacro",
  13619. height: math.unit(4000, "miles")
  13620. },
  13621. {
  13622. name: "Teramacro",
  13623. height: math.unit(315000, "miles")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13629. {
  13630. front: {
  13631. height: math.unit(2.794, "meters"),
  13632. weight: math.unit(325, "kg"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/tezwa/front.svg",
  13636. extra: 2083 / 1906,
  13637. bottom: 0.031
  13638. }
  13639. },
  13640. foot: {
  13641. height: math.unit(0.687, "meters"),
  13642. name: "Foot",
  13643. image: {
  13644. source: "./media/characters/tezwa/foot.svg"
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Normal",
  13651. height: math.unit(9 + 2 / 12, "feet"),
  13652. default: true
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(58, "feet"),
  13661. weight: math.unit(89000, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/typhus/front.svg",
  13665. extra: 816 / 800,
  13666. bottom: 0.065
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Macro",
  13673. height: math.unit(58, "feet"),
  13674. default: true
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13680. {
  13681. front: {
  13682. height: math.unit(12, "feet"),
  13683. weight: math.unit(6, "tonnes"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/lyra-von-wulf/front.svg",
  13687. extra: 1,
  13688. bottom: 0.10
  13689. }
  13690. },
  13691. frontMecha: {
  13692. height: math.unit(12, "feet"),
  13693. weight: math.unit(12, "tonnes"),
  13694. name: "Front (Mecha)",
  13695. image: {
  13696. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13697. extra: 1,
  13698. bottom: 0.042
  13699. }
  13700. },
  13701. maw: {
  13702. height: math.unit(2.2, "feet"),
  13703. name: "Maw",
  13704. image: {
  13705. source: "./media/characters/lyra-von-wulf/maw.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Classic",
  13717. height: math.unit(50, "feet")
  13718. },
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(500, "feet")
  13722. },
  13723. {
  13724. name: "Megamacro",
  13725. height: math.unit(1, "mile")
  13726. },
  13727. {
  13728. name: "Gigamacro",
  13729. height: math.unit(400, "miles")
  13730. },
  13731. {
  13732. name: "Teramacro",
  13733. height: math.unit(22000, "miles")
  13734. },
  13735. {
  13736. name: "Solarmacro",
  13737. height: math.unit(8600000, "miles")
  13738. },
  13739. {
  13740. name: "Galactic",
  13741. height: math.unit(1057000, "lightyears")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6 + 10 / 12, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/dixon/front.svg",
  13754. extra: 3361 / 3209,
  13755. bottom: 0.01
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Normal",
  13762. height: math.unit(6 + 10 / 12, "feet"),
  13763. default: true
  13764. },
  13765. {
  13766. name: "Big",
  13767. height: math.unit(12, "meters")
  13768. },
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(500, "meters")
  13772. },
  13773. {
  13774. name: "Megamacro",
  13775. height: math.unit(2, "km")
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(185, "cm"),
  13784. weight: math.unit(68, "kg"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/kauko/front.svg",
  13788. extra: 1455 / 1421,
  13789. bottom: 0.03
  13790. }
  13791. },
  13792. back: {
  13793. height: math.unit(185, "cm"),
  13794. weight: math.unit(68, "kg"),
  13795. name: "Back",
  13796. image: {
  13797. source: "./media/characters/kauko/back.svg",
  13798. extra: 1455 / 1421,
  13799. bottom: 0.004
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Normal",
  13806. height: math.unit(185, "cm"),
  13807. default: true
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13813. {
  13814. frontSfw: {
  13815. height: math.unit(5, "meters"),
  13816. weight: math.unit(4250, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/varg/front-sfw.svg",
  13820. extra: 1103/1010,
  13821. bottom: 50/1153
  13822. },
  13823. form: "anthro",
  13824. default: true
  13825. },
  13826. backSfw: {
  13827. height: math.unit(5, "meters"),
  13828. weight: math.unit(4250, "lb"),
  13829. name: "Back",
  13830. image: {
  13831. source: "./media/characters/varg/back-sfw.svg",
  13832. extra: 1038/1022,
  13833. bottom: 36/1074
  13834. },
  13835. form: "anthro"
  13836. },
  13837. frontNsfw: {
  13838. height: math.unit(5, "meters"),
  13839. weight: math.unit(4250, "lb"),
  13840. name: "Front (NSFW)",
  13841. image: {
  13842. source: "./media/characters/varg/front-nsfw.svg",
  13843. extra: 1103/1010,
  13844. bottom: 50/1153
  13845. },
  13846. form: "anthro"
  13847. },
  13848. sheath: {
  13849. height: math.unit(3.8, "feet"),
  13850. weight: math.unit(90, "kilograms"),
  13851. name: "Sheath",
  13852. image: {
  13853. source: "./media/characters/varg/sheath.svg"
  13854. },
  13855. form: "anthro"
  13856. },
  13857. dick: {
  13858. height: math.unit(4.6, "feet"),
  13859. weight: math.unit(451, "kilograms"),
  13860. name: "Dick",
  13861. image: {
  13862. source: "./media/characters/varg/dick.svg"
  13863. },
  13864. form: "anthro"
  13865. },
  13866. feralSfw: {
  13867. height: math.unit(5, "meters"),
  13868. weight: math.unit(100000, "lb"),
  13869. name: "Side",
  13870. image: {
  13871. source: "./media/characters/varg/feral-sfw.svg",
  13872. extra: 1065/511,
  13873. bottom: 211/1276
  13874. },
  13875. form: "feral",
  13876. default: true
  13877. },
  13878. feralNsfw: {
  13879. height: math.unit(5, "meters"),
  13880. weight: math.unit(100000, "lb"),
  13881. name: "Side (NSFW)",
  13882. image: {
  13883. source: "./media/characters/varg/feral-nsfw.svg",
  13884. extra: 1065/511,
  13885. bottom: 211/1276
  13886. },
  13887. form: "feral",
  13888. },
  13889. feralSheath: {
  13890. height: math.unit(9.8, "feet"),
  13891. weight: math.unit(2000, "kilograms"),
  13892. name: "Sheath",
  13893. image: {
  13894. source: "./media/characters/varg/sheath.svg"
  13895. },
  13896. form: "feral"
  13897. },
  13898. feralDick: {
  13899. height: math.unit(13.11, "feet"),
  13900. weight: math.unit(10440, "kilograms"),
  13901. name: "Dick",
  13902. image: {
  13903. source: "./media/characters/varg/dick.svg"
  13904. },
  13905. form: "feral"
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(5, "meters"),
  13912. form: "anthro"
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(200, "meters"),
  13917. form: "anthro"
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(20, "kilometers"),
  13922. form: "anthro"
  13923. },
  13924. {
  13925. name: "True Size",
  13926. height: math.unit(211, "km"),
  13927. form: "anthro",
  13928. default: true
  13929. },
  13930. {
  13931. name: "Gigamacro",
  13932. height: math.unit(1000, "km"),
  13933. form: "anthro"
  13934. },
  13935. {
  13936. name: "Gigamacro+",
  13937. height: math.unit(8000, "km"),
  13938. form: "anthro"
  13939. },
  13940. {
  13941. name: "Teramacro",
  13942. height: math.unit(1000000, "km"),
  13943. form: "anthro"
  13944. },
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(5, "meters"),
  13948. form: "feral"
  13949. },
  13950. {
  13951. name: "Macro",
  13952. height: math.unit(200, "meters"),
  13953. form: "feral"
  13954. },
  13955. {
  13956. name: "Megamacro",
  13957. height: math.unit(20, "kilometers"),
  13958. form: "feral"
  13959. },
  13960. {
  13961. name: "True Size",
  13962. height: math.unit(211, "km"),
  13963. form: "feral",
  13964. default: true
  13965. },
  13966. {
  13967. name: "Gigamacro",
  13968. height: math.unit(1000, "km"),
  13969. form: "feral"
  13970. },
  13971. {
  13972. name: "Gigamacro+",
  13973. height: math.unit(8000, "km"),
  13974. form: "feral"
  13975. },
  13976. {
  13977. name: "Teramacro",
  13978. height: math.unit(1000000, "km"),
  13979. form: "feral"
  13980. },
  13981. ],
  13982. {
  13983. "anthro": {
  13984. name: "Anthro",
  13985. default: true
  13986. },
  13987. "feral": {
  13988. name: "Feral",
  13989. },
  13990. }
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(7 + 7 / 12, "feet"),
  13997. weight: math.unit(267, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/dayza/front.svg",
  14001. extra: 1262 / 1200,
  14002. bottom: 0.035
  14003. }
  14004. },
  14005. side: {
  14006. height: math.unit(7 + 7 / 12, "feet"),
  14007. weight: math.unit(267, "lb"),
  14008. name: "Side",
  14009. image: {
  14010. source: "./media/characters/dayza/side.svg",
  14011. extra: 1295 / 1245,
  14012. bottom: 0.05
  14013. }
  14014. },
  14015. back: {
  14016. height: math.unit(7 + 7 / 12, "feet"),
  14017. weight: math.unit(267, "lb"),
  14018. name: "Back",
  14019. image: {
  14020. source: "./media/characters/dayza/back.svg",
  14021. extra: 1241 / 1170
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Normal",
  14028. height: math.unit(7 + 7 / 12, "feet"),
  14029. default: true
  14030. },
  14031. {
  14032. name: "Macro",
  14033. height: math.unit(155, "feet")
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(6 + 5 / 12, "feet"),
  14042. weight: math.unit(160, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/xanthos/front.svg",
  14046. extra: 1,
  14047. bottom: 0.04
  14048. }
  14049. },
  14050. back: {
  14051. height: math.unit(6 + 5 / 12, "feet"),
  14052. weight: math.unit(160, "lb"),
  14053. name: "Back",
  14054. image: {
  14055. source: "./media/characters/xanthos/back.svg",
  14056. extra: 1,
  14057. bottom: 0.03
  14058. }
  14059. },
  14060. hand: {
  14061. height: math.unit(0.928, "feet"),
  14062. name: "Hand",
  14063. image: {
  14064. source: "./media/characters/xanthos/hand.svg"
  14065. }
  14066. },
  14067. foot: {
  14068. height: math.unit(1.286, "feet"),
  14069. name: "Foot",
  14070. image: {
  14071. source: "./media/characters/xanthos/foot.svg"
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(6 + 5 / 12, "feet"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Normal+",
  14083. height: math.unit(6, "meters")
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(40, "feet")
  14088. },
  14089. {
  14090. name: "Macro+",
  14091. height: math.unit(200, "meters")
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(20, "km")
  14096. },
  14097. {
  14098. name: "Megamacro+",
  14099. height: math.unit(100, "km")
  14100. },
  14101. {
  14102. name: "Gigamacro",
  14103. height: math.unit(200, "megameters")
  14104. },
  14105. {
  14106. name: "Gigamacro+",
  14107. height: math.unit(1.5, "gigameters")
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6 + 3 / 12, "feet"),
  14116. weight: math.unit(215, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/grynn/front.svg",
  14120. extra: 4627 / 4209,
  14121. bottom: 0.047
  14122. }
  14123. },
  14124. },
  14125. [
  14126. {
  14127. name: "Micro",
  14128. height: math.unit(6, "inches")
  14129. },
  14130. {
  14131. name: "Normal",
  14132. height: math.unit(6 + 3 / 12, "feet"),
  14133. default: true
  14134. },
  14135. {
  14136. name: "Big",
  14137. height: math.unit(104, "feet")
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(944, "feet")
  14142. },
  14143. {
  14144. name: "Macro+",
  14145. height: math.unit(9480, "feet")
  14146. },
  14147. {
  14148. name: "Megamacro",
  14149. height: math.unit(78752, "feet")
  14150. },
  14151. {
  14152. name: "Megamacro+",
  14153. height: math.unit(630128, "feet")
  14154. },
  14155. {
  14156. name: "Megamacro++",
  14157. height: math.unit(3150695, "feet")
  14158. },
  14159. ]
  14160. ))
  14161. characterMakers.push(() => makeCharacter(
  14162. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14163. {
  14164. front: {
  14165. height: math.unit(7 + 5 / 12, "feet"),
  14166. weight: math.unit(450, "lb"),
  14167. name: "Front",
  14168. image: {
  14169. source: "./media/characters/mocha-aura/front.svg",
  14170. extra: 1907 / 1817,
  14171. bottom: 0.04
  14172. }
  14173. },
  14174. back: {
  14175. height: math.unit(7 + 5 / 12, "feet"),
  14176. weight: math.unit(450, "lb"),
  14177. name: "Back",
  14178. image: {
  14179. source: "./media/characters/mocha-aura/back.svg",
  14180. extra: 1900 / 1825,
  14181. bottom: 0.045
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Nano",
  14188. height: math.unit(1, "nm")
  14189. },
  14190. {
  14191. name: "Megamicro",
  14192. height: math.unit(1, "mm")
  14193. },
  14194. {
  14195. name: "Micro",
  14196. height: math.unit(3, "inches")
  14197. },
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(7 + 5 / 12, "feet"),
  14201. default: true
  14202. },
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(30, "feet")
  14206. },
  14207. {
  14208. name: "Megamacro",
  14209. height: math.unit(3500, "feet")
  14210. },
  14211. {
  14212. name: "Teramacro",
  14213. height: math.unit(500000, "miles")
  14214. },
  14215. {
  14216. name: "Petamacro",
  14217. height: math.unit(50000000000000000, "parsecs")
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(6, "feet"),
  14226. weight: math.unit(150, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/ilisha-devya/front.svg",
  14230. extra: 1053/1049,
  14231. bottom: 270/1323
  14232. }
  14233. },
  14234. back: {
  14235. height: math.unit(6, "feet"),
  14236. weight: math.unit(150, "lb"),
  14237. name: "Back",
  14238. image: {
  14239. source: "./media/characters/ilisha-devya/back.svg",
  14240. extra: 1131/1128,
  14241. bottom: 39/1170
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Macro",
  14248. height: math.unit(500, "feet"),
  14249. default: true
  14250. },
  14251. {
  14252. name: "Megamacro",
  14253. height: math.unit(10, "miles")
  14254. },
  14255. {
  14256. name: "Gigamacro",
  14257. height: math.unit(100000, "miles")
  14258. },
  14259. {
  14260. name: "Examacro",
  14261. height: math.unit(1e9, "lightyears")
  14262. },
  14263. {
  14264. name: "Omniversal",
  14265. height: math.unit(1e33, "lightyears")
  14266. },
  14267. {
  14268. name: "Beyond Infinite",
  14269. height: math.unit(1e100, "lightyears")
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14275. {
  14276. Side: {
  14277. height: math.unit(6, "feet"),
  14278. weight: math.unit(150, "lb"),
  14279. name: "Side",
  14280. image: {
  14281. source: "./media/characters/mira/side.svg",
  14282. extra: 900 / 799,
  14283. bottom: 0.02
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Human Size",
  14290. height: math.unit(6, "feet")
  14291. },
  14292. {
  14293. name: "Macro",
  14294. height: math.unit(100, "feet"),
  14295. default: true
  14296. },
  14297. {
  14298. name: "Megamacro",
  14299. height: math.unit(10, "miles")
  14300. },
  14301. {
  14302. name: "Gigamacro",
  14303. height: math.unit(25000, "miles")
  14304. },
  14305. {
  14306. name: "Teramacro",
  14307. height: math.unit(300, "AU")
  14308. },
  14309. {
  14310. name: "Full Size",
  14311. height: math.unit(4.5e10, "lightyears")
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(150, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/holly/front.svg",
  14324. extra: 639 / 606
  14325. }
  14326. },
  14327. back: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(150, "lb"),
  14330. name: "Back",
  14331. image: {
  14332. source: "./media/characters/holly/back.svg",
  14333. extra: 623 / 598
  14334. }
  14335. },
  14336. frontWorking: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(150, "lb"),
  14339. name: "Front (Working)",
  14340. image: {
  14341. source: "./media/characters/holly/front-working.svg",
  14342. extra: 607 / 577,
  14343. bottom: 0.048
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(12 + 3 / 12, "feet"),
  14351. default: true
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/porter/front.svg",
  14364. extra: 1,
  14365. bottom: 0.01
  14366. }
  14367. },
  14368. frontRobes: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Front (Robes)",
  14372. image: {
  14373. source: "./media/characters/porter/front-robes.svg",
  14374. extra: 1.01,
  14375. bottom: 0.01
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(11 + 9 / 12, "feet"),
  14383. default: true
  14384. },
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14389. {
  14390. legendary: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Legendary",
  14394. image: {
  14395. source: "./media/characters/lucy/legendary.svg",
  14396. extra: 1355 / 1100,
  14397. bottom: 0.045
  14398. }
  14399. },
  14400. },
  14401. [
  14402. {
  14403. name: "Legendary",
  14404. height: math.unit(86882 * 2, "miles"),
  14405. default: true
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14411. {
  14412. front: {
  14413. height: math.unit(6, "feet"),
  14414. weight: math.unit(150, "lb"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/drusilla/front.svg",
  14418. extra: 678 / 635,
  14419. bottom: 0.03
  14420. }
  14421. },
  14422. back: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(150, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/drusilla/back.svg",
  14428. extra: 678 / 635,
  14429. bottom: 0.005
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Macro",
  14436. height: math.unit(100, "feet")
  14437. },
  14438. {
  14439. name: "Canon Height",
  14440. height: math.unit(2000, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(180, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/renard-thatch/front.svg",
  14454. extra: 2411 / 2275,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. frontPosing: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(180, "lb"),
  14461. name: "Front (Posing)",
  14462. image: {
  14463. source: "./media/characters/renard-thatch/front-posing.svg",
  14464. extra: 2381 / 2261,
  14465. bottom: 0.01
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(180, "lb"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/renard-thatch/back.svg",
  14474. extra: 2428 / 2288
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Micro",
  14481. height: math.unit(3, "inches")
  14482. },
  14483. {
  14484. name: "Default",
  14485. height: math.unit(6, "feet"),
  14486. default: true
  14487. },
  14488. {
  14489. name: "Macro",
  14490. height: math.unit(75, "feet")
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(1450, "feet"),
  14499. weight: math.unit(1.21e6, "tons"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/sekvra/front.svg",
  14503. extra: 1193/1190,
  14504. bottom: 78/1271
  14505. }
  14506. },
  14507. side: {
  14508. height: math.unit(1450, "feet"),
  14509. weight: math.unit(1.21e6, "tons"),
  14510. name: "Side",
  14511. image: {
  14512. source: "./media/characters/sekvra/side.svg",
  14513. extra: 1193/1190,
  14514. bottom: 52/1245
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(1450, "feet"),
  14519. weight: math.unit(1.21e6, "tons"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/sekvra/back.svg",
  14523. extra: 1219/1216,
  14524. bottom: 21/1240
  14525. }
  14526. },
  14527. frontClothed: {
  14528. height: math.unit(1450, "feet"),
  14529. weight: math.unit(1.21e6, "tons"),
  14530. name: "Front (Clothed)",
  14531. image: {
  14532. source: "./media/characters/sekvra/front-clothed.svg",
  14533. extra: 1192/1189,
  14534. bottom: 79/1271
  14535. }
  14536. },
  14537. },
  14538. [
  14539. {
  14540. name: "Macro",
  14541. height: math.unit(1450, "feet"),
  14542. default: true
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(15000, "feet")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(150, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/carmine/front.svg",
  14559. extra: 1,
  14560. bottom: 0.035
  14561. }
  14562. },
  14563. frontArmor: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front (Armor)",
  14567. image: {
  14568. source: "./media/characters/carmine/front-armor.svg",
  14569. extra: 1,
  14570. bottom: 0.035
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Large",
  14577. height: math.unit(1, "mile")
  14578. },
  14579. {
  14580. name: "Huge",
  14581. height: math.unit(40, "miles"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Colossal",
  14586. height: math.unit(2500, "miles")
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/elyssia/front.svg",
  14599. extra: 2201 / 2035,
  14600. bottom: 0.05
  14601. }
  14602. },
  14603. frontClothed: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Front (Clothed)",
  14607. image: {
  14608. source: "./media/characters/elyssia/front-clothed.svg",
  14609. extra: 2201 / 2035,
  14610. bottom: 0.05
  14611. }
  14612. },
  14613. back: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Back",
  14617. image: {
  14618. source: "./media/characters/elyssia/back.svg",
  14619. extra: 2201 / 2035,
  14620. bottom: 0.013
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Smaller",
  14627. height: math.unit(150, "feet")
  14628. },
  14629. {
  14630. name: "Standard",
  14631. height: math.unit(1400, "feet"),
  14632. default: true
  14633. },
  14634. {
  14635. name: "Distracted",
  14636. height: math.unit(15000, "feet")
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(7 + 4/12, "feet"),
  14645. weight: math.unit(690, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/geno-maxwell/front.svg",
  14649. extra: 984/856,
  14650. bottom: 87/1071
  14651. }
  14652. },
  14653. back: {
  14654. height: math.unit(7 + 4/12, "feet"),
  14655. weight: math.unit(690, "lb"),
  14656. name: "Back",
  14657. image: {
  14658. source: "./media/characters/geno-maxwell/back.svg",
  14659. extra: 981/854,
  14660. bottom: 57/1038
  14661. }
  14662. },
  14663. frontCostume: {
  14664. height: math.unit(7 + 4/12, "feet"),
  14665. weight: math.unit(690, "lb"),
  14666. name: "Front (Costume)",
  14667. image: {
  14668. source: "./media/characters/geno-maxwell/front-costume.svg",
  14669. extra: 984/856,
  14670. bottom: 87/1071
  14671. }
  14672. },
  14673. backcostume: {
  14674. height: math.unit(7 + 4/12, "feet"),
  14675. weight: math.unit(690, "lb"),
  14676. name: "Back (Costume)",
  14677. image: {
  14678. source: "./media/characters/geno-maxwell/back-costume.svg",
  14679. extra: 981/854,
  14680. bottom: 57/1038
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Micro",
  14687. height: math.unit(3, "inches")
  14688. },
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(7 + 4 / 12, "feet"),
  14692. default: true
  14693. },
  14694. {
  14695. name: "Macro",
  14696. height: math.unit(220, "feet")
  14697. },
  14698. {
  14699. name: "Megamacro",
  14700. height: math.unit(11, "miles")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(7 + 4/12, "feet"),
  14709. weight: math.unit(750, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/regena-maxwell/front.svg",
  14713. extra: 984/856,
  14714. bottom: 87/1071
  14715. }
  14716. },
  14717. back: {
  14718. height: math.unit(7 + 4/12, "feet"),
  14719. weight: math.unit(750, "lb"),
  14720. name: "Back",
  14721. image: {
  14722. source: "./media/characters/regena-maxwell/back.svg",
  14723. extra: 981/854,
  14724. bottom: 57/1038
  14725. }
  14726. },
  14727. frontCostume: {
  14728. height: math.unit(7 + 4/12, "feet"),
  14729. weight: math.unit(750, "lb"),
  14730. name: "Front (Costume)",
  14731. image: {
  14732. source: "./media/characters/regena-maxwell/front-costume.svg",
  14733. extra: 984/856,
  14734. bottom: 87/1071
  14735. }
  14736. },
  14737. backcostume: {
  14738. height: math.unit(7 + 4/12, "feet"),
  14739. weight: math.unit(750, "lb"),
  14740. name: "Back (Costume)",
  14741. image: {
  14742. source: "./media/characters/regena-maxwell/back-costume.svg",
  14743. extra: 981/854,
  14744. bottom: 57/1038
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(7 + 4 / 12, "feet"),
  14752. default: true
  14753. },
  14754. {
  14755. name: "Macro",
  14756. height: math.unit(220, "feet")
  14757. },
  14758. {
  14759. name: "Megamacro",
  14760. height: math.unit(11, "miles")
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(6, "feet"),
  14769. weight: math.unit(150, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14773. extra: 860 / 690,
  14774. bottom: 0.03
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(1.7, "meters"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(150, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/quilly/front.svg",
  14795. extra: 890 / 776
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Gigamacro",
  14802. height: math.unit(404090, "miles"),
  14803. default: true
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(7 + 8 / 12, "feet"),
  14812. weight: math.unit(350, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/tempest/front.svg",
  14816. extra: 1175 / 1086,
  14817. bottom: 0.02
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(7 + 8 / 12, "feet"),
  14825. default: true
  14826. },
  14827. ]
  14828. ))
  14829. characterMakers.push(() => makeCharacter(
  14830. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14831. {
  14832. side: {
  14833. height: math.unit(4 + 5 / 12, "feet"),
  14834. weight: math.unit(80, "lb"),
  14835. name: "Side",
  14836. image: {
  14837. source: "./media/characters/rodger/side.svg",
  14838. extra: 1235 / 1118
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Micro",
  14845. height: math.unit(1, "inch")
  14846. },
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(4 + 5 / 12, "feet"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Macro",
  14854. height: math.unit(120, "feet")
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(150, "lb"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/danyel/front.svg",
  14867. extra: 1185 / 1123,
  14868. bottom: 0.05
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Shrunken",
  14875. height: math.unit(0.5, "mm")
  14876. },
  14877. {
  14878. name: "Micro",
  14879. height: math.unit(1, "mm"),
  14880. default: true
  14881. },
  14882. {
  14883. name: "Upsized",
  14884. height: math.unit(5 + 5 / 12, "feet")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(5 + 6 / 12, "feet"),
  14893. weight: math.unit(200, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/vivian-bijoux/front.svg",
  14897. extra: 1217/1209,
  14898. bottom: 76/1293
  14899. }
  14900. },
  14901. back: {
  14902. height: math.unit(5 + 6 / 12, "feet"),
  14903. weight: math.unit(200, "lb"),
  14904. name: "Back",
  14905. image: {
  14906. source: "./media/characters/vivian-bijoux/back.svg",
  14907. extra: 1214/1208,
  14908. bottom: 51/1265
  14909. }
  14910. },
  14911. dressed: {
  14912. height: math.unit(5 + 6 / 12, "feet"),
  14913. weight: math.unit(200, "lb"),
  14914. name: "Dressed",
  14915. image: {
  14916. source: "./media/characters/vivian-bijoux/dressed.svg",
  14917. extra: 1217/1209,
  14918. bottom: 76/1293
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(5 + 6 / 12, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Bad Dream",
  14930. height: math.unit(500, "feet")
  14931. },
  14932. {
  14933. name: "Nightmare",
  14934. height: math.unit(500, "miles")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(6 + 1 / 12, "feet"),
  14943. weight: math.unit(260, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/zeta/front.svg",
  14947. extra: 1968 / 1889,
  14948. bottom: 0.06
  14949. }
  14950. },
  14951. back: {
  14952. height: math.unit(6 + 1 / 12, "feet"),
  14953. weight: math.unit(260, "lb"),
  14954. name: "Back",
  14955. image: {
  14956. source: "./media/characters/zeta/back.svg",
  14957. extra: 1944 / 1858,
  14958. bottom: 0.03
  14959. }
  14960. },
  14961. hand: {
  14962. height: math.unit(1.112, "feet"),
  14963. name: "Hand",
  14964. image: {
  14965. source: "./media/characters/zeta/hand.svg"
  14966. }
  14967. },
  14968. foot: {
  14969. height: math.unit(1.48, "feet"),
  14970. name: "Foot",
  14971. image: {
  14972. source: "./media/characters/zeta/foot.svg"
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Micro",
  14979. height: math.unit(6, "inches")
  14980. },
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(6 + 1 / 12, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Macro",
  14988. height: math.unit(20, "feet")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/jamie-larsen/front.svg",
  15001. extra: 962 / 933,
  15002. bottom: 0.02
  15003. }
  15004. },
  15005. back: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Back",
  15009. image: {
  15010. source: "./media/characters/jamie-larsen/back.svg",
  15011. extra: 997 / 946
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Macro",
  15018. height: math.unit(28 + 7 / 12, "feet"),
  15019. default: true
  15020. },
  15021. {
  15022. name: "Macro+",
  15023. height: math.unit(180, "feet")
  15024. },
  15025. {
  15026. name: "Megamacro",
  15027. height: math.unit(10, "miles")
  15028. },
  15029. {
  15030. name: "Gigamacro",
  15031. height: math.unit(200000, "miles")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(120, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/vance/front.svg",
  15044. extra: 1980 / 1890,
  15045. bottom: 0.09
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(120, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/vance/back.svg",
  15054. extra: 2081 / 1994,
  15055. bottom: 0.014
  15056. }
  15057. },
  15058. hand: {
  15059. height: math.unit(0.88, "feet"),
  15060. name: "Hand",
  15061. image: {
  15062. source: "./media/characters/vance/hand.svg"
  15063. }
  15064. },
  15065. foot: {
  15066. height: math.unit(0.64, "feet"),
  15067. name: "Foot",
  15068. image: {
  15069. source: "./media/characters/vance/foot.svg"
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Small",
  15076. height: math.unit(90, "feet"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Macro",
  15081. height: math.unit(100, "meters")
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(15, "miles")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(180, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/xochitl/front.svg",
  15098. extra: 2297 / 2261,
  15099. bottom: 0.065
  15100. }
  15101. },
  15102. back: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(180, "lb"),
  15105. name: "Back",
  15106. image: {
  15107. source: "./media/characters/xochitl/back.svg",
  15108. extra: 2386 / 2354,
  15109. bottom: 0.01
  15110. }
  15111. },
  15112. foot: {
  15113. height: math.unit(6 / 5 * 1.15, "feet"),
  15114. weight: math.unit(150, "lb"),
  15115. name: "Foot",
  15116. image: {
  15117. source: "./media/characters/xochitl/foot.svg"
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(80, "feet")
  15125. },
  15126. {
  15127. name: "Macro+",
  15128. height: math.unit(400, "feet"),
  15129. default: true
  15130. },
  15131. {
  15132. name: "Gigamacro",
  15133. height: math.unit(80000, "miles")
  15134. },
  15135. {
  15136. name: "Gigamacro+",
  15137. height: math.unit(400000, "miles")
  15138. },
  15139. {
  15140. name: "Teramacro",
  15141. height: math.unit(300, "AU")
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/vincent/front.svg",
  15154. extra: 1130 / 1080,
  15155. bottom: 0.055
  15156. }
  15157. },
  15158. beak: {
  15159. height: math.unit(6 * 0.1, "feet"),
  15160. name: "Beak",
  15161. image: {
  15162. source: "./media/characters/vincent/beak.svg"
  15163. }
  15164. },
  15165. hand: {
  15166. height: math.unit(6 * 0.85, "feet"),
  15167. weight: math.unit(150, "lb"),
  15168. name: "Hand",
  15169. image: {
  15170. source: "./media/characters/vincent/hand.svg"
  15171. }
  15172. },
  15173. foot: {
  15174. height: math.unit(6 * 0.19, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Foot",
  15177. image: {
  15178. source: "./media/characters/vincent/foot.svg"
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Base",
  15185. height: math.unit(6 + 5 / 12, "feet"),
  15186. default: true
  15187. },
  15188. {
  15189. name: "Macro",
  15190. height: math.unit(300, "feet")
  15191. },
  15192. {
  15193. name: "Megamacro",
  15194. height: math.unit(2, "miles")
  15195. },
  15196. {
  15197. name: "Gigamacro",
  15198. height: math.unit(1000, "miles")
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15204. {
  15205. front: {
  15206. height: math.unit(2, "meters"),
  15207. weight: math.unit(500, "kg"),
  15208. name: "Front",
  15209. image: {
  15210. source: "./media/characters/coatl/front.svg",
  15211. extra: 3948 / 3500,
  15212. bottom: 0.082
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(4, "meters")
  15220. },
  15221. {
  15222. name: "Macro",
  15223. height: math.unit(100, "meters"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Macro+",
  15228. height: math.unit(300, "meters")
  15229. },
  15230. {
  15231. name: "Megamacro",
  15232. height: math.unit(3, "gigameters")
  15233. },
  15234. {
  15235. name: "Megamacro+",
  15236. height: math.unit(300, "terameters")
  15237. },
  15238. {
  15239. name: "Megamacro++",
  15240. height: math.unit(3, "lightyears")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(50, "kg"),
  15250. name: "front",
  15251. image: {
  15252. source: "./media/characters/shiroryu/front.svg",
  15253. extra: 1990 / 1935
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Mortal Mingling",
  15260. height: math.unit(3, "meters")
  15261. },
  15262. {
  15263. name: "Kaiju-ish",
  15264. height: math.unit(250, "meters")
  15265. },
  15266. {
  15267. name: "Somewhat Godly",
  15268. height: math.unit(400, "km"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Planetary",
  15273. height: math.unit(300, "megameters")
  15274. },
  15275. {
  15276. name: "Galaxy-dwarfing",
  15277. height: math.unit(450, "kiloparsecs")
  15278. },
  15279. {
  15280. name: "Universe Eater",
  15281. height: math.unit(150, "gigaparsecs")
  15282. },
  15283. {
  15284. name: "Almost Immeasurable",
  15285. height: math.unit(1.3e266, "yottaparsecs")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/umeko/front.svg",
  15298. extra: 1,
  15299. bottom: 0.019
  15300. }
  15301. },
  15302. frontArmored: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(150, "lb"),
  15305. name: "Front (Armored)",
  15306. image: {
  15307. source: "./media/characters/umeko/front-armored.svg",
  15308. extra: 1,
  15309. bottom: 0.021
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Macro",
  15316. height: math.unit(220, "feet"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Guardian Dragon",
  15321. height: math.unit(50, "miles")
  15322. },
  15323. {
  15324. name: "Cosmic",
  15325. height: math.unit(800000, "miles")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(6, "feet"),
  15334. weight: math.unit(150, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/cassidy/front.svg",
  15338. extra: 810/808,
  15339. bottom: 41/851
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Canon Height",
  15346. height: math.unit(120, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro+",
  15351. height: math.unit(400, "feet")
  15352. },
  15353. {
  15354. name: "Macro++",
  15355. height: math.unit(4000, "feet")
  15356. },
  15357. {
  15358. name: "Megamacro",
  15359. height: math.unit(3, "miles")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(150, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/isaac/front.svg",
  15372. extra: 896 / 815,
  15373. bottom: 0.11
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Human Size",
  15380. height: math.unit(8, "feet"),
  15381. default: true
  15382. },
  15383. {
  15384. name: "Macro",
  15385. height: math.unit(400, "feet")
  15386. },
  15387. {
  15388. name: "Megamacro",
  15389. height: math.unit(50, "miles")
  15390. },
  15391. {
  15392. name: "Canon Height",
  15393. height: math.unit(200, "AU")
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(6, "feet"),
  15402. weight: math.unit(72, "kg"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/sleekit/front.svg",
  15406. extra: 4693 / 4487,
  15407. bottom: 0.012
  15408. }
  15409. },
  15410. },
  15411. [
  15412. {
  15413. name: "Minimum Height",
  15414. height: math.unit(10, "meters")
  15415. },
  15416. {
  15417. name: "Smaller",
  15418. height: math.unit(25, "meters")
  15419. },
  15420. {
  15421. name: "Larger",
  15422. height: math.unit(38, "meters"),
  15423. default: true
  15424. },
  15425. {
  15426. name: "Maximum height",
  15427. height: math.unit(100, "meters")
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15433. {
  15434. front: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/nillia/front.svg",
  15440. extra: 2195 / 2037,
  15441. bottom: 0.005
  15442. }
  15443. },
  15444. back: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Back",
  15448. image: {
  15449. source: "./media/characters/nillia/back.svg",
  15450. extra: 2195 / 2037,
  15451. bottom: 0.005
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Canon Height",
  15458. height: math.unit(489, "feet"),
  15459. default: true
  15460. }
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/mesmyriza/front.svg",
  15472. extra: 2067 / 1784,
  15473. bottom: 0.035
  15474. }
  15475. },
  15476. foot: {
  15477. height: math.unit(6 / (250 / 35), "feet"),
  15478. name: "Foot",
  15479. image: {
  15480. source: "./media/characters/mesmyriza/foot.svg"
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Macro",
  15487. height: math.unit(457, "meters"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(8, "megameters")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(250, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/saudade/front.svg",
  15505. extra: 1172 / 1139,
  15506. bottom: 0.035
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(3, "inches")
  15514. },
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(6, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(50, "feet")
  15523. },
  15524. {
  15525. name: "Megamacro",
  15526. height: math.unit(2800, "feet")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(5 + 4 / 12, "feet"),
  15535. weight: math.unit(100, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/keireer/front.svg",
  15539. extra: 716 / 666,
  15540. bottom: 0.05
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(5 + 4 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(5.5, "feet"),
  15557. weight: math.unit(90, "kg"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/mirja/front.svg",
  15561. extra: 1452/1262,
  15562. bottom: 67/1519
  15563. }
  15564. },
  15565. frontDressed: {
  15566. height: math.unit(5.5, "feet"),
  15567. weight: math.unit(90, "lb"),
  15568. name: "Front (Dressed)",
  15569. image: {
  15570. source: "./media/characters/mirja/dressed.svg",
  15571. extra: 1452/1262,
  15572. bottom: 67/1519
  15573. }
  15574. },
  15575. back: {
  15576. height: math.unit(6, "feet"),
  15577. weight: math.unit(90, "lb"),
  15578. name: "Back",
  15579. image: {
  15580. source: "./media/characters/mirja/back.svg",
  15581. extra: 1892/1795,
  15582. bottom: 48/1940
  15583. }
  15584. },
  15585. maw: {
  15586. height: math.unit(1.312, "feet"),
  15587. name: "Maw",
  15588. image: {
  15589. source: "./media/characters/mirja/maw.svg"
  15590. }
  15591. },
  15592. paw: {
  15593. height: math.unit(1.15, "feet"),
  15594. name: "Paw",
  15595. image: {
  15596. source: "./media/characters/mirja/paw.svg"
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "\"Incognito\"",
  15603. height: math.unit(3, "meters")
  15604. },
  15605. {
  15606. name: "Strolling Size",
  15607. height: math.unit(15, "km")
  15608. },
  15609. {
  15610. name: "Larger Strolling Size",
  15611. height: math.unit(400, "km")
  15612. },
  15613. {
  15614. name: "Preferred Size",
  15615. height: math.unit(5000, "km"),
  15616. default: true
  15617. },
  15618. {
  15619. name: "True Size",
  15620. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(15, "feet"),
  15629. weight: math.unit(880, "kg"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/nightraver/front.svg",
  15633. extra: 2444 / 2160,
  15634. bottom: 0.027
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(15, "feet"),
  15639. weight: math.unit(880, "kg"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/nightraver/back.svg",
  15643. extra: 2309 / 2180,
  15644. bottom: 0.005
  15645. }
  15646. },
  15647. sole: {
  15648. height: math.unit(2.878, "feet"),
  15649. name: "Sole",
  15650. image: {
  15651. source: "./media/characters/nightraver/sole.svg"
  15652. }
  15653. },
  15654. foot: {
  15655. height: math.unit(2.285, "feet"),
  15656. name: "Foot",
  15657. image: {
  15658. source: "./media/characters/nightraver/foot.svg"
  15659. }
  15660. },
  15661. maw: {
  15662. height: math.unit(2.67, "feet"),
  15663. name: "Maw",
  15664. image: {
  15665. source: "./media/characters/nightraver/maw.svg"
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Micro",
  15672. height: math.unit(1, "cm")
  15673. },
  15674. {
  15675. name: "Normal",
  15676. height: math.unit(15, "feet"),
  15677. default: true
  15678. },
  15679. {
  15680. name: "Macro",
  15681. height: math.unit(300, "feet")
  15682. },
  15683. {
  15684. name: "Megamacro",
  15685. height: math.unit(300, "miles")
  15686. },
  15687. {
  15688. name: "Gigamacro",
  15689. height: math.unit(10000, "miles")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15695. {
  15696. side: {
  15697. height: math.unit(2, "inches"),
  15698. weight: math.unit(5, "grams"),
  15699. name: "Side",
  15700. image: {
  15701. source: "./media/characters/arc/side.svg"
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Micro",
  15708. height: math.unit(2, "inches"),
  15709. default: true
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(1.1938, "meters"),
  15718. weight: math.unit(54, "kg"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/nebula-shahar/front.svg",
  15722. extra: 1642 / 1436,
  15723. bottom: 0.06
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "Megamicro",
  15730. height: math.unit(0.3, "mm")
  15731. },
  15732. {
  15733. name: "Micro",
  15734. height: math.unit(3, "cm")
  15735. },
  15736. {
  15737. name: "Normal",
  15738. height: math.unit(138, "cm"),
  15739. default: true
  15740. },
  15741. {
  15742. name: "Macro",
  15743. height: math.unit(30, "m")
  15744. },
  15745. ]
  15746. ))
  15747. characterMakers.push(() => makeCharacter(
  15748. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15749. {
  15750. front: {
  15751. height: math.unit(5.24, "feet"),
  15752. weight: math.unit(150, "lb"),
  15753. name: "Front",
  15754. image: {
  15755. source: "./media/characters/shayla/front.svg",
  15756. extra: 1512 / 1414,
  15757. bottom: 0.01
  15758. }
  15759. },
  15760. back: {
  15761. height: math.unit(5.24, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Back",
  15764. image: {
  15765. source: "./media/characters/shayla/back.svg",
  15766. extra: 1512 / 1414
  15767. }
  15768. },
  15769. hand: {
  15770. height: math.unit(0.7781496062992126, "feet"),
  15771. name: "Hand",
  15772. image: {
  15773. source: "./media/characters/shayla/hand.svg"
  15774. }
  15775. },
  15776. foot: {
  15777. height: math.unit(1.4206036745406823, "feet"),
  15778. name: "Foot",
  15779. image: {
  15780. source: "./media/characters/shayla/foot.svg"
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Micro",
  15787. height: math.unit(0.32, "feet")
  15788. },
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(5.24, "feet"),
  15792. default: true
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(492.12, "feet")
  15797. },
  15798. {
  15799. name: "Megamacro",
  15800. height: math.unit(186.41, "miles")
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(2.2, "m"),
  15809. weight: math.unit(120, "kg"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/pia-jr/front.svg",
  15813. extra: 1000 / 970,
  15814. bottom: 0.035
  15815. }
  15816. },
  15817. hand: {
  15818. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15819. name: "Hand",
  15820. image: {
  15821. source: "./media/characters/pia-jr/hand.svg"
  15822. }
  15823. },
  15824. paw: {
  15825. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15826. name: "Paw",
  15827. image: {
  15828. source: "./media/characters/pia-jr/paw.svg"
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Micro",
  15835. height: math.unit(1.2, "cm")
  15836. },
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(2.2, "m"),
  15840. default: true
  15841. },
  15842. {
  15843. name: "Macro",
  15844. height: math.unit(180, "m")
  15845. },
  15846. {
  15847. name: "Megamacro",
  15848. height: math.unit(420, "km")
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(2, "m"),
  15857. weight: math.unit(115, "kg"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/pia-sr/front.svg",
  15861. extra: 760 / 730,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. back: {
  15866. height: math.unit(2, "m"),
  15867. weight: math.unit(115, "kg"),
  15868. name: "Back",
  15869. image: {
  15870. source: "./media/characters/pia-sr/back.svg",
  15871. extra: 760 / 730,
  15872. bottom: 0.01
  15873. }
  15874. },
  15875. hand: {
  15876. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15877. name: "Hand",
  15878. image: {
  15879. source: "./media/characters/pia-sr/hand.svg"
  15880. }
  15881. },
  15882. foot: {
  15883. height: math.unit(1.83, "feet"),
  15884. name: "Foot",
  15885. image: {
  15886. source: "./media/characters/pia-sr/foot.svg"
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Micro",
  15893. height: math.unit(88, "mm")
  15894. },
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(2, "m"),
  15898. default: true
  15899. },
  15900. {
  15901. name: "Macro",
  15902. height: math.unit(200, "m")
  15903. },
  15904. {
  15905. name: "Megamacro",
  15906. height: math.unit(420, "km")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(8 + 2 / 12, "feet"),
  15915. weight: math.unit(300, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/kibibyte/front.svg",
  15919. extra: 2221 / 2098,
  15920. bottom: 0.04
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(8 + 2 / 12, "feet"),
  15928. default: true
  15929. },
  15930. {
  15931. name: "Socialable Macro",
  15932. height: math.unit(50, "feet")
  15933. },
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(300, "feet")
  15937. },
  15938. {
  15939. name: "Megamacro",
  15940. height: math.unit(500, "miles")
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/felix/front.svg",
  15953. extra: 762 / 722,
  15954. bottom: 0.02
  15955. }
  15956. },
  15957. frontClothed: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(150, "lb"),
  15960. name: "Front (Clothed)",
  15961. image: {
  15962. source: "./media/characters/felix/front-clothed.svg",
  15963. extra: 762 / 722,
  15964. bottom: 0.02
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(6 + 8 / 12, "feet"),
  15972. default: true
  15973. },
  15974. {
  15975. name: "Macro",
  15976. height: math.unit(2600, "feet")
  15977. },
  15978. {
  15979. name: "Megamacro",
  15980. height: math.unit(450, "miles")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(6 + 1 / 12, "feet"),
  15989. weight: math.unit(250, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/tobo/front.svg",
  15993. extra: 608 / 586,
  15994. bottom: 0.023
  15995. }
  15996. },
  15997. back: {
  15998. height: math.unit(6 + 1 / 12, "feet"),
  15999. weight: math.unit(250, "lb"),
  16000. name: "Back",
  16001. image: {
  16002. source: "./media/characters/tobo/back.svg",
  16003. extra: 608 / 586
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Nano",
  16010. height: math.unit(2, "nm")
  16011. },
  16012. {
  16013. name: "Megamicro",
  16014. height: math.unit(0.1, "mm")
  16015. },
  16016. {
  16017. name: "Micro",
  16018. height: math.unit(1, "inch"),
  16019. default: true
  16020. },
  16021. {
  16022. name: "Human-sized",
  16023. height: math.unit(6 + 1 / 12, "feet")
  16024. },
  16025. {
  16026. name: "Macro",
  16027. height: math.unit(250, "feet")
  16028. },
  16029. {
  16030. name: "Megamacro",
  16031. height: math.unit(75, "miles")
  16032. },
  16033. {
  16034. name: "Texas-sized",
  16035. height: math.unit(750, "miles")
  16036. },
  16037. {
  16038. name: "Teramacro",
  16039. height: math.unit(50000, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(269, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/danny-kapowsky/front.svg",
  16052. extra: 766 / 736,
  16053. bottom: 0.044
  16054. }
  16055. },
  16056. back: {
  16057. height: math.unit(6, "feet"),
  16058. weight: math.unit(269, "lb"),
  16059. name: "Back",
  16060. image: {
  16061. source: "./media/characters/danny-kapowsky/back.svg",
  16062. extra: 797 / 760,
  16063. bottom: 0.025
  16064. }
  16065. },
  16066. },
  16067. [
  16068. {
  16069. name: "Macro",
  16070. height: math.unit(150, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro+",
  16075. height: math.unit(200, "feet")
  16076. },
  16077. {
  16078. name: "Macro++",
  16079. height: math.unit(300, "feet")
  16080. },
  16081. {
  16082. name: "Macro+++",
  16083. height: math.unit(400, "feet")
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16089. {
  16090. side: {
  16091. height: math.unit(6, "feet"),
  16092. weight: math.unit(170, "lb"),
  16093. name: "Side",
  16094. image: {
  16095. source: "./media/characters/finn/side.svg",
  16096. extra: 1953 / 1807,
  16097. bottom: 0.057
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Megamacro",
  16104. height: math.unit(14445, "feet"),
  16105. default: true
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16111. {
  16112. front: {
  16113. height: math.unit(5 + 6 / 12, "feet"),
  16114. weight: math.unit(125, "lb"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/roy/front.svg",
  16118. extra: 1,
  16119. bottom: 0.11
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Micro",
  16126. height: math.unit(3, "inches"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(5 + 6 / 12, "feet")
  16132. },
  16133. {
  16134. name: "Lesser Macro",
  16135. height: math.unit(60, "feet")
  16136. },
  16137. {
  16138. name: "Greater Macro",
  16139. height: math.unit(120, "feet")
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(100, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/aevsivs/front.svg",
  16152. extra: 1,
  16153. bottom: 0.03
  16154. }
  16155. },
  16156. back: {
  16157. height: math.unit(6, "feet"),
  16158. weight: math.unit(100, "lb"),
  16159. name: "Back",
  16160. image: {
  16161. source: "./media/characters/aevsivs/back.svg"
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Micro",
  16168. height: math.unit(2, "inches"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(5, "feet")
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(5 + 7 / 12, "feet"),
  16182. weight: math.unit(159, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/hildegard/front.svg",
  16186. extra: 289 / 269,
  16187. bottom: 7.63 / 297.8
  16188. }
  16189. },
  16190. back: {
  16191. height: math.unit(5 + 7 / 12, "feet"),
  16192. weight: math.unit(159, "lb"),
  16193. name: "Back",
  16194. image: {
  16195. source: "./media/characters/hildegard/back.svg",
  16196. extra: 280 / 260,
  16197. bottom: 2.3 / 282
  16198. }
  16199. },
  16200. },
  16201. [
  16202. {
  16203. name: "Normal",
  16204. height: math.unit(5 + 7 / 12, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16211. {
  16212. bernard: {
  16213. height: math.unit(2 + 7 / 12, "feet"),
  16214. weight: math.unit(66, "lb"),
  16215. name: "Bernard",
  16216. rename: true,
  16217. image: {
  16218. source: "./media/characters/bernard-wilder/bernard.svg",
  16219. extra: 192 / 128,
  16220. bottom: 0.05
  16221. }
  16222. },
  16223. wilder: {
  16224. height: math.unit(5 + 8 / 12, "feet"),
  16225. weight: math.unit(143, "lb"),
  16226. name: "Wilder",
  16227. rename: true,
  16228. image: {
  16229. source: "./media/characters/bernard-wilder/wilder.svg",
  16230. extra: 361 / 312,
  16231. bottom: 0.02
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(2 + 7 / 12, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16245. {
  16246. anthro: {
  16247. height: math.unit(6 + 1 / 12, "feet"),
  16248. weight: math.unit(155, "lb"),
  16249. name: "Anthro",
  16250. image: {
  16251. source: "./media/characters/hearth/anthro.svg",
  16252. extra: 1178/1136,
  16253. bottom: 28/1206
  16254. }
  16255. },
  16256. feral: {
  16257. height: math.unit(3.78, "feet"),
  16258. weight: math.unit(35, "kg"),
  16259. name: "Feral",
  16260. image: {
  16261. source: "./media/characters/hearth/feral.svg",
  16262. extra: 153 / 135,
  16263. bottom: 0.03
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(6 + 1 / 12, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(6, "feet"),
  16280. weight: math.unit(182, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/ingrid/front.svg",
  16284. extra: 294 / 268,
  16285. bottom: 0.027
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(6, "feet"),
  16293. default: true
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16299. {
  16300. eevee: {
  16301. height: math.unit(2 + 10 / 12, "feet"),
  16302. weight: math.unit(86, "lb"),
  16303. name: "Malgam",
  16304. image: {
  16305. source: "./media/characters/malgam/eevee.svg",
  16306. extra: 952/784,
  16307. bottom: 38/990
  16308. }
  16309. },
  16310. sylveon: {
  16311. height: math.unit(4, "feet"),
  16312. weight: math.unit(101, "lb"),
  16313. name: "Future Malgam",
  16314. rename: true,
  16315. image: {
  16316. source: "./media/characters/malgam/sylveon.svg",
  16317. extra: 371 / 325,
  16318. bottom: 0.015
  16319. }
  16320. },
  16321. gigantamax: {
  16322. height: math.unit(50, "feet"),
  16323. name: "Gigantamax Malgam",
  16324. rename: true,
  16325. image: {
  16326. source: "./media/characters/malgam/gigantamax.svg"
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(2 + 10 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(5 + 11 / 12, "feet"),
  16343. weight: math.unit(188, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/fleur/front.svg",
  16347. extra: 309 / 283,
  16348. bottom: 0.007
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(5 + 11 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(5 + 4 / 12, "feet"),
  16365. weight: math.unit(122, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/jude/front.svg",
  16369. extra: 288 / 273,
  16370. bottom: 0.03
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(5 + 4 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(5 + 11 / 12, "feet"),
  16387. weight: math.unit(190, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/seara/front.svg",
  16391. extra: 1,
  16392. bottom: 0.05
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(5 + 11 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(16 + 5 / 12, "feet"),
  16409. weight: math.unit(524, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/caspian-lugia/front.svg",
  16413. extra: 1,
  16414. bottom: 0.04
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(16 + 5 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(5 + 7 / 12, "feet"),
  16431. weight: math.unit(170, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/mika/front.svg",
  16435. extra: 1,
  16436. bottom: 0.016
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(5 + 7 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6 + 2 / 12, "feet"),
  16453. weight: math.unit(268, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/sol/front.svg",
  16457. extra: 247 / 231,
  16458. bottom: 0.05
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(6 + 2 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16472. {
  16473. buizel: {
  16474. height: math.unit(2 + 5 / 12, "feet"),
  16475. weight: math.unit(87, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/umiko/buizel.svg",
  16479. extra: 172 / 157,
  16480. bottom: 0.01
  16481. },
  16482. form: "buizel",
  16483. default: true
  16484. },
  16485. floatzel: {
  16486. height: math.unit(5 + 9 / 12, "feet"),
  16487. weight: math.unit(250, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/umiko/floatzel.svg",
  16491. extra: 1076/1006,
  16492. bottom: 15/1091
  16493. },
  16494. form: "floatzel",
  16495. default: true
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(2 + 5 / 12, "feet"),
  16502. form: "buizel",
  16503. default: true
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(5 + 9 / 12, "feet"),
  16508. form: "floatzel",
  16509. default: true
  16510. },
  16511. ],
  16512. {
  16513. "buizel": {
  16514. name: "Buizel"
  16515. },
  16516. "floatzel": {
  16517. name: "Floatzel",
  16518. default: true
  16519. }
  16520. }
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6 + 2 / 12, "feet"),
  16527. weight: math.unit(146, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/iliac/front.svg",
  16531. extra: 389 / 365,
  16532. bottom: 0.035
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(6 + 2 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(6, "feet"),
  16549. weight: math.unit(170, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/topaz/front.svg",
  16553. extra: 317 / 303,
  16554. bottom: 0.055
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(6, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16568. {
  16569. front: {
  16570. height: math.unit(5 + 11 / 12, "feet"),
  16571. weight: math.unit(144, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/gabriel/front.svg",
  16575. extra: 285 / 262,
  16576. bottom: 0.004
  16577. }
  16578. },
  16579. },
  16580. [
  16581. {
  16582. name: "Normal",
  16583. height: math.unit(5 + 11 / 12, "feet"),
  16584. default: true
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16590. {
  16591. side: {
  16592. height: math.unit(6 + 5 / 12, "feet"),
  16593. weight: math.unit(300, "lb"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/tempest-suicune/side.svg",
  16597. extra: 195 / 154,
  16598. bottom: 0.04
  16599. }
  16600. },
  16601. },
  16602. [
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(6 + 5 / 12, "feet"),
  16606. default: true
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(7 + 2 / 12, "feet"),
  16615. weight: math.unit(322, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/vulcan/front.svg",
  16619. extra: 154 / 147,
  16620. bottom: 0.04
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(7 + 2 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(5 + 10 / 12, "feet"),
  16637. weight: math.unit(264, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/gault/front.svg",
  16641. extra: 161 / 140,
  16642. bottom: 0.028
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(5 + 10 / 12, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(6, "feet"),
  16659. weight: math.unit(150, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/shard/front.svg",
  16663. extra: 273 / 238,
  16664. bottom: 0.02
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(3 + 6 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16678. {
  16679. front: {
  16680. height: math.unit(5 + 11 / 12, "feet"),
  16681. weight: math.unit(146, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/ashe/front.svg",
  16685. extra: 400 / 373,
  16686. bottom: 0.01
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(5 + 11 / 12, "feet"),
  16694. default: true
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(5 + 5 / 12, "feet"),
  16703. weight: math.unit(135, "lb"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/beatrix/front.svg",
  16707. extra: 392 / 379,
  16708. bottom: 0.01
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(6, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6 + 2/12, "feet"),
  16725. weight: math.unit(135, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/ignatius/front.svg",
  16729. extra: 1380/1259,
  16730. bottom: 27/1407
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(6 + 2/12, "feet"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6 + 2 / 12, "feet"),
  16747. weight: math.unit(138, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/mei-li/front.svg",
  16751. extra: 237 / 229,
  16752. bottom: 0.03
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(6 + 2 / 12, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(2 + 4 / 12, "feet"),
  16769. weight: math.unit(62, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/puru/front.svg",
  16773. extra: 206 / 149,
  16774. bottom: 0.06
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(2 + 4 / 12, "feet"),
  16782. default: true
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16788. {
  16789. anthro: {
  16790. height: math.unit(5 + 8/12, "feet"),
  16791. weight: math.unit(200, "lb"),
  16792. energyNeed: math.unit(2000, "kcal"),
  16793. name: "Anthro",
  16794. image: {
  16795. source: "./media/characters/kee/anthro.svg",
  16796. extra: 3251/3184,
  16797. bottom: 250/3501
  16798. }
  16799. },
  16800. taur: {
  16801. height: math.unit(11, "feet"),
  16802. weight: math.unit(500, "lb"),
  16803. energyNeed: math.unit(5000, "kcal"),
  16804. name: "Taur",
  16805. image: {
  16806. source: "./media/characters/kee/taur.svg",
  16807. extra: 1362/1320,
  16808. bottom: 83/1445
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(5 + 8/12, "feet"),
  16816. default: true
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(35, "feet")
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16826. {
  16827. anthro: {
  16828. height: math.unit(7, "feet"),
  16829. weight: math.unit(190, "lb"),
  16830. name: "Anthro",
  16831. image: {
  16832. source: "./media/characters/cobalt-dracha/anthro.svg",
  16833. extra: 231 / 225,
  16834. bottom: 0.04
  16835. }
  16836. },
  16837. feral: {
  16838. height: math.unit(9 + 7 / 12, "feet"),
  16839. weight: math.unit(294, "lb"),
  16840. name: "Feral",
  16841. image: {
  16842. source: "./media/characters/cobalt-dracha/feral.svg",
  16843. extra: 692 / 633,
  16844. bottom: 0.05
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(7, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16858. {
  16859. fallen: {
  16860. height: math.unit(11 + 8 / 12, "feet"),
  16861. weight: math.unit(485, "lb"),
  16862. name: "Java (Fallen)",
  16863. rename: true,
  16864. image: {
  16865. source: "./media/characters/java/fallen.svg",
  16866. extra: 226 / 208,
  16867. bottom: 0.005
  16868. }
  16869. },
  16870. godkin: {
  16871. height: math.unit(10 + 6 / 12, "feet"),
  16872. weight: math.unit(328, "lb"),
  16873. name: "Java (Godkin)",
  16874. rename: true,
  16875. image: {
  16876. source: "./media/characters/java/godkin.svg",
  16877. extra: 1104/1068,
  16878. bottom: 36/1140
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(11 + 8 / 12, "feet"),
  16886. default: true
  16887. },
  16888. ]
  16889. ))
  16890. characterMakers.push(() => makeCharacter(
  16891. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16892. {
  16893. front: {
  16894. height: math.unit(5 + 9 / 12, "feet"),
  16895. weight: math.unit(170, "lb"),
  16896. name: "Front",
  16897. image: {
  16898. source: "./media/characters/purna/front.svg",
  16899. extra: 239 / 229,
  16900. bottom: 0.01
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 9 / 12, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(5 + 9 / 12, "feet"),
  16917. weight: math.unit(142, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/kuva/front.svg",
  16921. extra: 281 / 271,
  16922. bottom: 0.006
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(5 + 9 / 12, "feet"),
  16930. default: true
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16936. {
  16937. anthro: {
  16938. height: math.unit(9 + 2 / 12, "feet"),
  16939. weight: math.unit(270, "lb"),
  16940. name: "Anthro",
  16941. image: {
  16942. source: "./media/characters/embra/anthro.svg",
  16943. extra: 200 / 187,
  16944. bottom: 0.02
  16945. }
  16946. },
  16947. feral: {
  16948. height: math.unit(18 + 8 / 12, "feet"),
  16949. weight: math.unit(576, "lb"),
  16950. name: "Feral",
  16951. image: {
  16952. source: "./media/characters/embra/feral.svg",
  16953. extra: 152 / 137,
  16954. bottom: 0.037
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(9 + 2 / 12, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16968. {
  16969. anthro: {
  16970. height: math.unit(10 + 9 / 12, "feet"),
  16971. weight: math.unit(224, "lb"),
  16972. name: "Anthro",
  16973. image: {
  16974. source: "./media/characters/grottos/anthro.svg",
  16975. extra: 350 / 332,
  16976. bottom: 0.045
  16977. }
  16978. },
  16979. feral: {
  16980. height: math.unit(20 + 7 / 12, "feet"),
  16981. weight: math.unit(629, "lb"),
  16982. name: "Feral",
  16983. image: {
  16984. source: "./media/characters/grottos/feral.svg",
  16985. extra: 207 / 190,
  16986. bottom: 0.05
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(10 + 9 / 12, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17000. {
  17001. anthro: {
  17002. height: math.unit(9 + 6 / 12, "feet"),
  17003. weight: math.unit(298, "lb"),
  17004. name: "Anthro",
  17005. image: {
  17006. source: "./media/characters/frifna/anthro.svg",
  17007. extra: 282 / 269,
  17008. bottom: 0.015
  17009. }
  17010. },
  17011. feral: {
  17012. height: math.unit(16 + 2 / 12, "feet"),
  17013. weight: math.unit(624, "lb"),
  17014. name: "Feral",
  17015. image: {
  17016. source: "./media/characters/frifna/feral.svg"
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(9 + 6 / 12, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(6 + 2 / 12, "feet"),
  17033. weight: math.unit(168, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/elise/front.svg",
  17037. extra: 276 / 271
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Normal",
  17044. height: math.unit(6 + 2 / 12, "feet"),
  17045. default: true
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(5 + 10 / 12, "feet"),
  17054. weight: math.unit(210, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/glade/front.svg",
  17058. extra: 258 / 247,
  17059. bottom: 0.008
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(5 + 10 / 12, "feet"),
  17067. default: true
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(5 + 10 / 12, "feet"),
  17076. weight: math.unit(129, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/rina/front.svg",
  17080. extra: 266 / 255,
  17081. bottom: 0.005
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(5 + 10 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(6 + 1 / 12, "feet"),
  17098. weight: math.unit(192, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/veronica/front.svg",
  17102. extra: 319 / 309,
  17103. bottom: 0.005
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6 + 1 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(9 + 3 / 12, "feet"),
  17120. weight: math.unit(1100, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/braxton/front.svg",
  17124. extra: 1057 / 984,
  17125. bottom: 0.05
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(9 + 3 / 12, "feet")
  17133. },
  17134. {
  17135. name: "Giant",
  17136. height: math.unit(300, "feet"),
  17137. default: true
  17138. },
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(700, "feet")
  17142. },
  17143. {
  17144. name: "Megamacro",
  17145. height: math.unit(6000, "feet")
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17151. {
  17152. front: {
  17153. height: math.unit(6 + 7 / 12, "feet"),
  17154. weight: math.unit(150, "lb"),
  17155. name: "Front",
  17156. image: {
  17157. source: "./media/characters/blue-feyonics/front.svg",
  17158. extra: 1403 / 1306,
  17159. bottom: 0.047
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(6 + 7 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(1.8, "meters"),
  17176. weight: math.unit(60, "kg"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/maxwell/front.svg",
  17180. extra: 2060 / 1873
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Micro",
  17187. height: math.unit(1, "mm")
  17188. },
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(1.8, "meter"),
  17192. default: true
  17193. },
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(30, "meters")
  17197. },
  17198. {
  17199. name: "Megamacro",
  17200. height: math.unit(10, "km")
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(6, "feet"),
  17209. weight: math.unit(150, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/jack/front.svg",
  17213. extra: 1754 / 1640,
  17214. bottom: 0.01
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(80000, "feet"),
  17222. default: true
  17223. },
  17224. {
  17225. name: "Max size",
  17226. height: math.unit(10, "lightyears")
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17232. {
  17233. urban: {
  17234. height: math.unit(5, "feet"),
  17235. weight: math.unit(240, "lb"),
  17236. name: "Urban",
  17237. image: {
  17238. source: "./media/characters/cafat/urban.svg",
  17239. extra: 1223/1126,
  17240. bottom: 205/1428
  17241. }
  17242. },
  17243. summer: {
  17244. height: math.unit(5, "feet"),
  17245. weight: math.unit(240, "lb"),
  17246. name: "Summer",
  17247. image: {
  17248. source: "./media/characters/cafat/summer.svg",
  17249. extra: 1223/1126,
  17250. bottom: 205/1428
  17251. }
  17252. },
  17253. winter: {
  17254. height: math.unit(5, "feet"),
  17255. weight: math.unit(240, "lb"),
  17256. name: "Winter",
  17257. image: {
  17258. source: "./media/characters/cafat/winter.svg",
  17259. extra: 1223/1126,
  17260. bottom: 205/1428
  17261. }
  17262. },
  17263. lingerie: {
  17264. height: math.unit(5, "feet"),
  17265. weight: math.unit(240, "lb"),
  17266. name: "Lingerie",
  17267. image: {
  17268. source: "./media/characters/cafat/lingerie.svg",
  17269. extra: 1223/1126,
  17270. bottom: 205/1428
  17271. }
  17272. },
  17273. upright: {
  17274. height: math.unit(6.3, "feet"),
  17275. weight: math.unit(240, "lb"),
  17276. name: "Upright",
  17277. image: {
  17278. source: "./media/characters/cafat/upright.svg",
  17279. bottom: 0.01
  17280. }
  17281. },
  17282. uprightFull: {
  17283. height: math.unit(6.3, "feet"),
  17284. weight: math.unit(240, "lb"),
  17285. name: "Upright (Full)",
  17286. image: {
  17287. source: "./media/characters/cafat/upright-full.svg",
  17288. bottom: 0.01
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Small",
  17295. height: math.unit(5, "feet"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Large",
  17300. height: math.unit(13, "feet")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(6, "feet"),
  17309. weight: math.unit(150, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/verin-raharra/front.svg",
  17313. extra: 5019 / 4835,
  17314. bottom: 0.023
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(7 + 5 / 12, "feet"),
  17322. default: true
  17323. },
  17324. {
  17325. name: "Upsized",
  17326. height: math.unit(20, "feet")
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(7, "feet"),
  17335. weight: math.unit(230, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/nakata/front.svg",
  17339. extra: 1.005,
  17340. bottom: 0.01
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(7, "feet"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Big",
  17352. height: math.unit(14, "feet")
  17353. },
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(400, "feet")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(4.91, "feet"),
  17365. weight: math.unit(100, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/lily/front.svg",
  17369. extra: 1585 / 1415,
  17370. bottom: 0.02
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(4.91, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17384. {
  17385. laying: {
  17386. height: math.unit(4 + 4 / 12, "feet"),
  17387. weight: math.unit(600, "lb"),
  17388. name: "Laying",
  17389. image: {
  17390. source: "./media/characters/sheila/laying.svg",
  17391. extra: 1333 / 1265,
  17392. bottom: 0.16
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(4 + 4 / 12, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(190, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/sax/front.svg",
  17413. extra: 1187 / 973,
  17414. bottom: 0.042
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Micro",
  17421. height: math.unit(4, "inches"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(6, "feet"),
  17431. weight: math.unit(150, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/pandora/front.svg",
  17435. extra: 2720 / 2556,
  17436. bottom: 0.015
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/pandora/back.svg",
  17445. extra: 2720 / 2556,
  17446. bottom: 0.01
  17447. }
  17448. },
  17449. beans: {
  17450. height: math.unit(6 / 8, "feet"),
  17451. name: "Beans",
  17452. image: {
  17453. source: "./media/characters/pandora/beans.svg"
  17454. }
  17455. },
  17456. collar: {
  17457. height: math.unit(0.31, "feet"),
  17458. name: "Collar",
  17459. image: {
  17460. source: "./media/characters/pandora/collar.svg"
  17461. }
  17462. },
  17463. skirt: {
  17464. height: math.unit(6, "feet"),
  17465. weight: math.unit(150, "lb"),
  17466. name: "Skirt",
  17467. image: {
  17468. source: "./media/characters/pandora/skirt.svg",
  17469. extra: 1622 / 1525,
  17470. bottom: 0.015
  17471. }
  17472. },
  17473. hoodie: {
  17474. height: math.unit(6, "feet"),
  17475. weight: math.unit(150, "lb"),
  17476. name: "Hoodie",
  17477. image: {
  17478. source: "./media/characters/pandora/hoodie.svg",
  17479. extra: 1622 / 1525,
  17480. bottom: 0.015
  17481. }
  17482. },
  17483. casual: {
  17484. height: math.unit(6, "feet"),
  17485. weight: math.unit(150, "lb"),
  17486. name: "Casual",
  17487. image: {
  17488. source: "./media/characters/pandora/casual.svg",
  17489. extra: 1622 / 1525,
  17490. bottom: 0.015
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(6, "feet")
  17498. },
  17499. {
  17500. name: "Big Steppy",
  17501. height: math.unit(1, "km"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Galactic Steppy",
  17506. height: math.unit(2, "gigameters")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17512. {
  17513. side: {
  17514. height: math.unit(10, "feet"),
  17515. weight: math.unit(800, "kg"),
  17516. name: "Side",
  17517. image: {
  17518. source: "./media/characters/venio-darcony/side.svg",
  17519. extra: 1373 / 1003,
  17520. bottom: 0.037
  17521. }
  17522. },
  17523. front: {
  17524. height: math.unit(19, "feet"),
  17525. weight: math.unit(800, "kg"),
  17526. name: "Front",
  17527. image: {
  17528. source: "./media/characters/venio-darcony/front.svg"
  17529. }
  17530. },
  17531. back: {
  17532. height: math.unit(19, "feet"),
  17533. weight: math.unit(800, "kg"),
  17534. name: "Back",
  17535. image: {
  17536. source: "./media/characters/venio-darcony/back.svg"
  17537. }
  17538. },
  17539. sideNsfw: {
  17540. height: math.unit(10, "feet"),
  17541. weight: math.unit(800, "kg"),
  17542. name: "Side (NSFW)",
  17543. image: {
  17544. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17545. extra: 1373 / 1003,
  17546. bottom: 0.037
  17547. }
  17548. },
  17549. frontNsfw: {
  17550. height: math.unit(19, "feet"),
  17551. weight: math.unit(800, "kg"),
  17552. name: "Front (NSFW)",
  17553. image: {
  17554. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17555. }
  17556. },
  17557. backNsfw: {
  17558. height: math.unit(19, "feet"),
  17559. weight: math.unit(800, "kg"),
  17560. name: "Back (NSFW)",
  17561. image: {
  17562. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17563. }
  17564. },
  17565. sideArmored: {
  17566. height: math.unit(10, "feet"),
  17567. weight: math.unit(800, "kg"),
  17568. name: "Side (Armored)",
  17569. image: {
  17570. source: "./media/characters/venio-darcony/side-armored.svg",
  17571. extra: 1373 / 1003,
  17572. bottom: 0.037
  17573. }
  17574. },
  17575. frontArmored: {
  17576. height: math.unit(19, "feet"),
  17577. weight: math.unit(900, "kg"),
  17578. name: "Front (Armored)",
  17579. image: {
  17580. source: "./media/characters/venio-darcony/front-armored.svg"
  17581. }
  17582. },
  17583. backArmored: {
  17584. height: math.unit(19, "feet"),
  17585. weight: math.unit(900, "kg"),
  17586. name: "Back (Armored)",
  17587. image: {
  17588. source: "./media/characters/venio-darcony/back-armored.svg"
  17589. }
  17590. },
  17591. sword: {
  17592. height: math.unit(10, "feet"),
  17593. weight: math.unit(50, "lb"),
  17594. name: "Sword",
  17595. image: {
  17596. source: "./media/characters/venio-darcony/sword.svg"
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(10, "feet")
  17604. },
  17605. {
  17606. name: "Macro",
  17607. height: math.unit(130, "feet"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Macro+",
  17612. height: math.unit(240, "feet")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(6, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/veski/front.svg",
  17625. extra: 1299 / 1225,
  17626. bottom: 0.04
  17627. }
  17628. },
  17629. back: {
  17630. height: math.unit(6, "feet"),
  17631. weight: math.unit(150, "lb"),
  17632. name: "Back",
  17633. image: {
  17634. source: "./media/characters/veski/back.svg",
  17635. extra: 1299 / 1225,
  17636. bottom: 0.008
  17637. }
  17638. },
  17639. maw: {
  17640. height: math.unit(1.5 * 1.21, "feet"),
  17641. name: "Maw",
  17642. image: {
  17643. source: "./media/characters/veski/maw.svg"
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Macro",
  17650. height: math.unit(2, "km"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(5 + 7 / 12, "feet"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/isabelle/front.svg",
  17663. extra: 2130 / 1976,
  17664. bottom: 0.05
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Supermicro",
  17671. height: math.unit(10, "micrometers")
  17672. },
  17673. {
  17674. name: "Micro",
  17675. height: math.unit(1, "inch")
  17676. },
  17677. {
  17678. name: "Tiny",
  17679. height: math.unit(5, "inches")
  17680. },
  17681. {
  17682. name: "Standard",
  17683. height: math.unit(5 + 7 / 12, "inches")
  17684. },
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(80, "meters"),
  17688. default: true
  17689. },
  17690. {
  17691. name: "Megamacro",
  17692. height: math.unit(250, "meters")
  17693. },
  17694. {
  17695. name: "Gigamacro",
  17696. height: math.unit(5, "km")
  17697. },
  17698. {
  17699. name: "Cosmic",
  17700. height: math.unit(2.5e6, "miles")
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17706. {
  17707. front: {
  17708. height: math.unit(6, "feet"),
  17709. weight: math.unit(150, "lb"),
  17710. name: "Front",
  17711. image: {
  17712. source: "./media/characters/hanzo/front.svg",
  17713. extra: 374 / 344,
  17714. bottom: 0.02
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(8, "feet"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(7, "feet"),
  17731. weight: math.unit(130, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/anna/front.svg",
  17735. extra: 169 / 145,
  17736. bottom: 0.06
  17737. }
  17738. },
  17739. full: {
  17740. height: math.unit(4.96, "feet"),
  17741. weight: math.unit(220, "lb"),
  17742. name: "Full",
  17743. image: {
  17744. source: "./media/characters/anna/full.svg",
  17745. extra: 138 / 114,
  17746. bottom: 0.15
  17747. }
  17748. },
  17749. tongue: {
  17750. height: math.unit(2.53, "feet"),
  17751. name: "Tongue",
  17752. image: {
  17753. source: "./media/characters/anna/tongue.svg"
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(7, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(7, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/ian-corvid/front.svg",
  17774. extra: 150 / 142,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(7, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/ian-corvid/back.svg",
  17784. extra: 150 / 143,
  17785. bottom: 0.01
  17786. }
  17787. },
  17788. stomping: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(150, "lb"),
  17791. name: "Stomping",
  17792. image: {
  17793. source: "./media/characters/ian-corvid/stomping.svg",
  17794. extra: 76 / 72
  17795. }
  17796. },
  17797. sitting: {
  17798. height: math.unit(7 / 1.8, "feet"),
  17799. weight: math.unit(150, "lb"),
  17800. name: "Sitting",
  17801. image: {
  17802. source: "./media/characters/ian-corvid/sitting.svg",
  17803. extra: 1400 / 1269,
  17804. bottom: 0.15
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Tiny Microw",
  17811. height: math.unit(1, "inch")
  17812. },
  17813. {
  17814. name: "Microw",
  17815. height: math.unit(6, "inches")
  17816. },
  17817. {
  17818. name: "Crow",
  17819. height: math.unit(7 + 1 / 12, "feet"),
  17820. default: true
  17821. },
  17822. {
  17823. name: "Macrow",
  17824. height: math.unit(176, "feet")
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(5 + 7 / 12, "feet"),
  17833. weight: math.unit(147, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/natalie-kellon/front.svg",
  17837. extra: 1214 / 1141,
  17838. bottom: 0.02
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Micro",
  17845. height: math.unit(1 / 16, "inch")
  17846. },
  17847. {
  17848. name: "Tiny",
  17849. height: math.unit(4, "inches")
  17850. },
  17851. {
  17852. name: "Normal",
  17853. height: math.unit(5 + 7 / 12, "feet"),
  17854. default: true
  17855. },
  17856. {
  17857. name: "Amazon",
  17858. height: math.unit(12, "feet")
  17859. },
  17860. {
  17861. name: "Giantess",
  17862. height: math.unit(160, "meters")
  17863. },
  17864. {
  17865. name: "Titaness",
  17866. height: math.unit(800, "meters")
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17872. {
  17873. front: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/alluria/front.svg",
  17879. extra: 806 / 738,
  17880. bottom: 0.01
  17881. }
  17882. },
  17883. side: {
  17884. height: math.unit(6, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Side",
  17887. image: {
  17888. source: "./media/characters/alluria/side.svg",
  17889. extra: 800 / 750,
  17890. }
  17891. },
  17892. back: {
  17893. height: math.unit(6, "feet"),
  17894. weight: math.unit(150, "lb"),
  17895. name: "Back",
  17896. image: {
  17897. source: "./media/characters/alluria/back.svg",
  17898. extra: 806 / 738,
  17899. }
  17900. },
  17901. frontMaid: {
  17902. height: math.unit(6, "feet"),
  17903. weight: math.unit(150, "lb"),
  17904. name: "Front (Maid)",
  17905. image: {
  17906. source: "./media/characters/alluria/front-maid.svg",
  17907. extra: 806 / 738,
  17908. bottom: 0.01
  17909. }
  17910. },
  17911. sideMaid: {
  17912. height: math.unit(6, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Side (Maid)",
  17915. image: {
  17916. source: "./media/characters/alluria/side-maid.svg",
  17917. extra: 800 / 750,
  17918. bottom: 0.005
  17919. }
  17920. },
  17921. backMaid: {
  17922. height: math.unit(6, "feet"),
  17923. weight: math.unit(150, "lb"),
  17924. name: "Back (Maid)",
  17925. image: {
  17926. source: "./media/characters/alluria/back-maid.svg",
  17927. extra: 806 / 738,
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Micro",
  17934. height: math.unit(6, "inches"),
  17935. default: true
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(6, "feet"),
  17944. weight: math.unit(150, "lb"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/kyle/front.svg",
  17948. extra: 1069 / 962,
  17949. bottom: 77.228 / 1727.45
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(150, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(6, "feet"),
  17966. weight: math.unit(300, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/duncan/front.svg",
  17970. extra: 1650 / 1482,
  17971. bottom: 0.05
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(100, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(5 + 4 / 12, "feet"),
  17988. weight: math.unit(220, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/memory/front.svg",
  17992. extra: 3641 / 3545,
  17993. bottom: 0.03
  17994. }
  17995. },
  17996. back: {
  17997. height: math.unit(5 + 4 / 12, "feet"),
  17998. weight: math.unit(220, "lb"),
  17999. name: "Back",
  18000. image: {
  18001. source: "./media/characters/memory/back.svg",
  18002. extra: 3641 / 3545,
  18003. bottom: 0.025
  18004. }
  18005. },
  18006. frontSkirt: {
  18007. height: math.unit(5 + 4 / 12, "feet"),
  18008. weight: math.unit(220, "lb"),
  18009. name: "Front (Skirt)",
  18010. image: {
  18011. source: "./media/characters/memory/front-skirt.svg",
  18012. extra: 3641 / 3545,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. frontDress: {
  18017. height: math.unit(5 + 4 / 12, "feet"),
  18018. weight: math.unit(220, "lb"),
  18019. name: "Front (Dress)",
  18020. image: {
  18021. source: "./media/characters/memory/front-dress.svg",
  18022. extra: 3641 / 3545,
  18023. bottom: 0.03
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(6, "inches"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(5 + 4 / 12, "feet")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(4 + 11 / 12, "feet"),
  18044. weight: math.unit(100, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/luno/front.svg",
  18048. extra: 1535 / 1487,
  18049. bottom: 0.03
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Micro",
  18056. height: math.unit(3, "inches")
  18057. },
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(4 + 11 / 12, "feet"),
  18061. default: true
  18062. },
  18063. {
  18064. name: "Macro",
  18065. height: math.unit(300, "feet")
  18066. },
  18067. {
  18068. name: "Megamacro",
  18069. height: math.unit(700, "miles")
  18070. },
  18071. ]
  18072. ))
  18073. characterMakers.push(() => makeCharacter(
  18074. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18075. {
  18076. front: {
  18077. height: math.unit(6 + 2 / 12, "feet"),
  18078. weight: math.unit(170, "lb"),
  18079. name: "Front",
  18080. image: {
  18081. source: "./media/characters/jamesy/front.svg",
  18082. extra: 440 / 382,
  18083. bottom: 0.005
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Micro",
  18090. height: math.unit(3, "inches")
  18091. },
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(6 + 2 / 12, "feet"),
  18095. default: true
  18096. },
  18097. {
  18098. name: "Macro",
  18099. height: math.unit(300, "feet")
  18100. },
  18101. {
  18102. name: "Megamacro",
  18103. height: math.unit(700, "miles")
  18104. },
  18105. ]
  18106. ))
  18107. characterMakers.push(() => makeCharacter(
  18108. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18109. {
  18110. front: {
  18111. height: math.unit(6, "feet"),
  18112. weight: math.unit(160, "lb"),
  18113. name: "Front",
  18114. image: {
  18115. source: "./media/characters/mark/front.svg",
  18116. extra: 3300 / 3100,
  18117. bottom: 136.42 / 3440.47
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Macro",
  18124. height: math.unit(120, "meters")
  18125. },
  18126. {
  18127. name: "Bigger Macro",
  18128. height: math.unit(350, "meters")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(8, "km"),
  18133. default: true
  18134. },
  18135. {
  18136. name: "Continental",
  18137. height: math.unit(4550, "km")
  18138. },
  18139. {
  18140. name: "Planetary",
  18141. height: math.unit(65000, "km")
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18147. {
  18148. front: {
  18149. height: math.unit(6, "feet"),
  18150. weight: math.unit(400, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/mac/front.svg",
  18154. extra: 1048 / 987.7,
  18155. bottom: 60 / 1107.6,
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Macro",
  18162. height: math.unit(500, "feet"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(5 + 2 / 12, "feet"),
  18172. weight: math.unit(190, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/bari/front.svg",
  18176. extra: 3156 / 2880,
  18177. bottom: 0.03
  18178. }
  18179. },
  18180. back: {
  18181. height: math.unit(5 + 2 / 12, "feet"),
  18182. weight: math.unit(190, "lb"),
  18183. name: "Back",
  18184. image: {
  18185. source: "./media/characters/bari/back.svg",
  18186. extra: 3260 / 2834,
  18187. bottom: 0.025
  18188. }
  18189. },
  18190. frontPlush: {
  18191. height: math.unit(5 + 2 / 12, "feet"),
  18192. weight: math.unit(190, "lb"),
  18193. name: "Front (Plush)",
  18194. image: {
  18195. source: "./media/characters/bari/front-plush.svg",
  18196. extra: 1112 / 1061,
  18197. bottom: 0.002
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Micro",
  18204. height: math.unit(3, "inches")
  18205. },
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(5 + 2 / 12, "feet"),
  18209. default: true
  18210. },
  18211. {
  18212. name: "Macro",
  18213. height: math.unit(20, "feet")
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18219. {
  18220. front: {
  18221. height: math.unit(6 + 1 / 12, "feet"),
  18222. weight: math.unit(275, "lb"),
  18223. name: "Front",
  18224. image: {
  18225. source: "./media/characters/hunter-misha-raven/front.svg"
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Mortal",
  18232. height: math.unit(6 + 1 / 12, "feet")
  18233. },
  18234. {
  18235. name: "Divine",
  18236. height: math.unit(1.12134e34, "parsecs"),
  18237. default: true
  18238. },
  18239. ]
  18240. ))
  18241. characterMakers.push(() => makeCharacter(
  18242. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18243. {
  18244. front: {
  18245. height: math.unit(6 + 3 / 12, "feet"),
  18246. weight: math.unit(220, "lb"),
  18247. name: "Front",
  18248. image: {
  18249. source: "./media/characters/max-calore/front.svg",
  18250. extra: 1700 / 1648,
  18251. bottom: 0.01
  18252. }
  18253. },
  18254. back: {
  18255. height: math.unit(6 + 3 / 12, "feet"),
  18256. weight: math.unit(220, "lb"),
  18257. name: "Back",
  18258. image: {
  18259. source: "./media/characters/max-calore/back.svg",
  18260. extra: 1700 / 1648,
  18261. bottom: 0.01
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(6 + 3 / 12, "feet"),
  18269. default: true
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18275. {
  18276. side: {
  18277. height: math.unit(2 + 8 / 12, "feet"),
  18278. weight: math.unit(99, "lb"),
  18279. name: "Side",
  18280. image: {
  18281. source: "./media/characters/aspen/side.svg",
  18282. extra: 152 / 138,
  18283. bottom: 0.032
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Normal",
  18290. height: math.unit(2 + 8 / 12, "feet"),
  18291. default: true
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18297. {
  18298. side: {
  18299. height: math.unit(3 + 2 / 12, "feet"),
  18300. weight: math.unit(224, "lb"),
  18301. name: "Side",
  18302. image: {
  18303. source: "./media/characters/sheila-feral-wolf/side.svg",
  18304. extra: 179 / 166,
  18305. bottom: 0.03
  18306. }
  18307. },
  18308. },
  18309. [
  18310. {
  18311. name: "Normal",
  18312. height: math.unit(3 + 2 / 12, "feet"),
  18313. default: true
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18319. {
  18320. side: {
  18321. height: math.unit(1 + 9 / 12, "feet"),
  18322. weight: math.unit(38, "lb"),
  18323. name: "Side",
  18324. image: {
  18325. source: "./media/characters/michelle/side.svg",
  18326. extra: 147 / 136.7,
  18327. bottom: 0.03
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(1 + 9 / 12, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(1.54, "feet"),
  18344. weight: math.unit(50, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/nino/front.svg"
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(1.54, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(1.49, "feet"),
  18364. weight: math.unit(45, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/viola/front.svg"
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(1.49, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(6 + 5 / 12, "feet"),
  18384. weight: math.unit(580, "lb"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/atlas/front.svg",
  18388. extra: 298.5 / 290,
  18389. bottom: 0.015
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Normal",
  18396. height: math.unit(6 + 5 / 12, "feet"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18403. {
  18404. side: {
  18405. height: math.unit(15.6, "inches"),
  18406. weight: math.unit(10, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/davy/side.svg",
  18410. extra: 200 / 170,
  18411. bottom: 0.01
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(15.6, "inches"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18425. {
  18426. side: {
  18427. height: math.unit(4 + 8 / 12, "feet"),
  18428. weight: math.unit(166, "lb"),
  18429. name: "Side",
  18430. image: {
  18431. source: "./media/characters/fiona/side.svg",
  18432. extra: 232 / 220,
  18433. bottom: 0.03
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(4 + 8 / 12, "feet"),
  18441. default: true
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18447. {
  18448. front: {
  18449. height: math.unit(26, "inches"),
  18450. weight: math.unit(35, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/lyla/front.svg",
  18454. bottom: 0.1
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(3, "feet"),
  18462. default: true
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18468. {
  18469. side: {
  18470. height: math.unit(1.8, "feet"),
  18471. weight: math.unit(44, "lb"),
  18472. name: "Side",
  18473. image: {
  18474. source: "./media/characters/perseus/side.svg",
  18475. bottom: 0.21
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(1.8, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18489. {
  18490. side: {
  18491. height: math.unit(4 + 2 / 12, "feet"),
  18492. weight: math.unit(20, "lb"),
  18493. name: "Side",
  18494. image: {
  18495. source: "./media/characters/remus/side.svg"
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(4 + 2 / 12, "feet"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(4 + 11 / 12, "feet"),
  18512. weight: math.unit(114, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/raf/front.svg",
  18516. extra: 1504/1339,
  18517. bottom: 26/1530
  18518. }
  18519. },
  18520. side: {
  18521. height: math.unit(4 + 11 / 12, "feet"),
  18522. weight: math.unit(114, "lb"),
  18523. name: "Side",
  18524. image: {
  18525. source: "./media/characters/raf/side.svg",
  18526. extra: 1466/1316,
  18527. bottom: 29/1495
  18528. }
  18529. },
  18530. paw: {
  18531. height: math.unit(1.45, "feet"),
  18532. name: "Paw",
  18533. image: {
  18534. source: "./media/characters/raf/paw.svg"
  18535. },
  18536. extraAttributes: {
  18537. "toeSize": {
  18538. name: "Toe Size",
  18539. power: 2,
  18540. type: "area",
  18541. base: math.unit(0.004, "m^2")
  18542. },
  18543. "padSize": {
  18544. name: "Pad Size",
  18545. power: 2,
  18546. type: "area",
  18547. base: math.unit(0.04, "m^2")
  18548. },
  18549. "footSize": {
  18550. name: "Foot Size",
  18551. power: 2,
  18552. type: "area",
  18553. base: math.unit(0.08, "m^2")
  18554. },
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Micro",
  18561. height: math.unit(2, "inches")
  18562. },
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(4 + 11 / 12, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Macro",
  18570. height: math.unit(70, "feet")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(1.5, "meters"),
  18579. weight: math.unit(68, "kg"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/liam-einarr/front.svg",
  18583. extra: 2822 / 2666
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(1.5, "meters"),
  18588. weight: math.unit(68, "kg"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/liam-einarr/back.svg",
  18592. extra: 2822 / 2666,
  18593. bottom: 0.015
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(1.5, "meters"),
  18601. default: true
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(150, "meters")
  18606. },
  18607. {
  18608. name: "Megamacro",
  18609. height: math.unit(35, "km")
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6, "feet"),
  18618. weight: math.unit(75, "kg"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/linda/front.svg",
  18622. extra: 930 / 874,
  18623. bottom: 0.004
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(6, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(6 + 8 / 12, "feet"),
  18640. weight: math.unit(220, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/caylex/front.svg",
  18644. extra: 821 / 772,
  18645. bottom: 0.07
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(6 + 8 / 12, "feet"),
  18650. weight: math.unit(220, "lb"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/caylex/back.svg",
  18654. extra: 821 / 772,
  18655. bottom: 0.022
  18656. }
  18657. },
  18658. hand: {
  18659. height: math.unit(1.25, "feet"),
  18660. name: "Hand",
  18661. image: {
  18662. source: "./media/characters/caylex/hand.svg"
  18663. }
  18664. },
  18665. foot: {
  18666. height: math.unit(1.6, "feet"),
  18667. name: "Foot",
  18668. image: {
  18669. source: "./media/characters/caylex/foot.svg"
  18670. }
  18671. },
  18672. armored: {
  18673. height: math.unit(6 + 8 / 12, "feet"),
  18674. weight: math.unit(250, "lb"),
  18675. name: "Armored",
  18676. image: {
  18677. source: "./media/characters/caylex/armored.svg",
  18678. extra: 1420 / 1310,
  18679. bottom: 0.045
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(6 + 8 / 12, "feet"),
  18687. default: true
  18688. },
  18689. {
  18690. name: "Normal+",
  18691. height: math.unit(12, "feet")
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(7 + 6 / 12, "feet"),
  18700. weight: math.unit(288, "lb"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/alana/front.svg",
  18704. extra: 679 / 653,
  18705. bottom: 22.5 / 701
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(7 + 6 / 12, "feet")
  18713. },
  18714. {
  18715. name: "Large",
  18716. height: math.unit(50, "feet")
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(100, "feet"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro+",
  18725. height: math.unit(200, "feet")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(6 + 1 / 12, "feet"),
  18734. weight: math.unit(210, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/hasani/front.svg",
  18738. extra: 244 / 232,
  18739. bottom: 0.01
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(6 + 1 / 12, "feet"),
  18744. weight: math.unit(210, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/hasani/back.svg",
  18748. extra: 244 / 232,
  18749. bottom: 0.01
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(6 + 1 / 12, "feet")
  18757. },
  18758. {
  18759. name: "Macro",
  18760. height: math.unit(175, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(1.82, "meters"),
  18770. weight: math.unit(140, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/nita/front.svg",
  18774. extra: 2473 / 2363,
  18775. bottom: 0.01
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(1.82, "m")
  18783. },
  18784. {
  18785. name: "Macro",
  18786. height: math.unit(300, "m")
  18787. },
  18788. {
  18789. name: "Mistake Canon",
  18790. height: math.unit(0.5, "miles"),
  18791. default: true
  18792. },
  18793. {
  18794. name: "Big Mistake",
  18795. height: math.unit(13, "miles")
  18796. },
  18797. {
  18798. name: "Playing God",
  18799. height: math.unit(2450, "miles")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(4, "feet"),
  18808. weight: math.unit(120, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/shiriko/front.svg",
  18812. extra: 970/934,
  18813. bottom: 5/975
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(4, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18827. {
  18828. front: {
  18829. height: math.unit(6, "feet"),
  18830. name: "front",
  18831. image: {
  18832. source: "./media/characters/deja/front.svg",
  18833. extra: 926 / 840,
  18834. bottom: 0.07
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Planck Length",
  18841. height: math.unit(1.6e-35, "meters")
  18842. },
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(30.48, "meters"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Universal",
  18850. height: math.unit(8.8e26, "meters")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18856. {
  18857. side: {
  18858. height: math.unit(8, "feet"),
  18859. weight: math.unit(6300, "lb"),
  18860. name: "Side",
  18861. image: {
  18862. source: "./media/characters/anima/side.svg",
  18863. bottom: 0.035
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(8, "feet"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(8, "feet"),
  18880. weight: math.unit(350, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/bianca/front.svg",
  18884. extra: 234 / 225,
  18885. bottom: 0.03
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(8, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(11 + 5/12, "feet"),
  18902. weight: math.unit(1200, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/adinia/front.svg",
  18906. extra: 1767/1641,
  18907. bottom: 44/1811
  18908. },
  18909. extraAttributes: {
  18910. "energyIntake": {
  18911. name: "Energy Intake",
  18912. power: 3,
  18913. type: "energy",
  18914. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18915. },
  18916. }
  18917. },
  18918. back: {
  18919. height: math.unit(11 + 5/12, "feet"),
  18920. weight: math.unit(1200, "lb"),
  18921. name: "Back",
  18922. image: {
  18923. source: "./media/characters/adinia/back.svg",
  18924. extra: 1834/1684,
  18925. bottom: 14/1848
  18926. },
  18927. extraAttributes: {
  18928. "energyIntake": {
  18929. name: "Energy Intake",
  18930. power: 3,
  18931. type: "energy",
  18932. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18933. },
  18934. }
  18935. },
  18936. maw: {
  18937. height: math.unit(3.79, "feet"),
  18938. name: "Maw",
  18939. image: {
  18940. source: "./media/characters/adinia/maw.svg"
  18941. }
  18942. },
  18943. rump: {
  18944. height: math.unit(4.6, "feet"),
  18945. name: "Rump",
  18946. image: {
  18947. source: "./media/characters/adinia/rump.svg"
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(11 + 5 / 12, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18961. {
  18962. front: {
  18963. height: math.unit(3, "meters"),
  18964. weight: math.unit(200, "kg"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/lykasa/front.svg",
  18968. extra: 1076 / 976,
  18969. bottom: 0.06
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(3, "meters")
  18977. },
  18978. {
  18979. name: "Kaiju",
  18980. height: math.unit(120, "meters"),
  18981. default: true
  18982. },
  18983. {
  18984. name: "Mega Kaiju",
  18985. height: math.unit(240, "km")
  18986. },
  18987. {
  18988. name: "Giga Kaiju",
  18989. height: math.unit(400, "megameters")
  18990. },
  18991. {
  18992. name: "Tera Kaiju",
  18993. height: math.unit(800, "gigameters")
  18994. },
  18995. {
  18996. name: "Kaiju Dragon Goddess",
  18997. height: math.unit(26, "zettaparsecs")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19003. {
  19004. side: {
  19005. height: math.unit(283 / 124 * 6, "feet"),
  19006. weight: math.unit(35000, "lb"),
  19007. name: "Side",
  19008. image: {
  19009. source: "./media/characters/malfaren/side.svg",
  19010. extra: 1310/529,
  19011. bottom: 24/1334
  19012. }
  19013. },
  19014. front: {
  19015. height: math.unit(22.36, "feet"),
  19016. weight: math.unit(35000, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/malfaren/front.svg",
  19020. extra: 1237/1115,
  19021. bottom: 32/1269
  19022. }
  19023. },
  19024. maw: {
  19025. height: math.unit(6.9, "feet"),
  19026. name: "Maw",
  19027. image: {
  19028. source: "./media/characters/malfaren/maw.svg"
  19029. }
  19030. },
  19031. dick: {
  19032. height: math.unit(6.19, "feet"),
  19033. name: "Dick",
  19034. image: {
  19035. source: "./media/characters/malfaren/dick.svg"
  19036. }
  19037. },
  19038. eye: {
  19039. height: math.unit(0.69, "feet"),
  19040. name: "Eye",
  19041. image: {
  19042. source: "./media/characters/malfaren/eye.svg"
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Big",
  19049. height: math.unit(283 / 162 * 6, "feet"),
  19050. },
  19051. {
  19052. name: "Bigger",
  19053. height: math.unit(283 / 124 * 6, "feet")
  19054. },
  19055. {
  19056. name: "Massive",
  19057. height: math.unit(283 / 92 * 6, "feet"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "👀💦",
  19062. height: math.unit(283 / 73 * 6, "feet"),
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(1.7, "m"),
  19071. weight: math.unit(70, "kg"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/kernel/front.svg",
  19075. extra: 222 / 210,
  19076. bottom: 0.007
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Nano",
  19083. height: math.unit(17, "micrometers")
  19084. },
  19085. {
  19086. name: "Micro",
  19087. height: math.unit(1.7, "mm")
  19088. },
  19089. {
  19090. name: "Small",
  19091. height: math.unit(1.7, "cm")
  19092. },
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(1.7, "m"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(1.75, "meters"),
  19105. weight: math.unit(65, "kg"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/jayne-folest/front.svg",
  19109. extra: 2115 / 2007,
  19110. bottom: 0.02
  19111. }
  19112. },
  19113. back: {
  19114. height: math.unit(1.75, "meters"),
  19115. weight: math.unit(65, "kg"),
  19116. name: "Back",
  19117. image: {
  19118. source: "./media/characters/jayne-folest/back.svg",
  19119. extra: 2115 / 2007,
  19120. bottom: 0.005
  19121. }
  19122. },
  19123. frontClothed: {
  19124. height: math.unit(1.75, "meters"),
  19125. weight: math.unit(65, "kg"),
  19126. name: "Front (Clothed)",
  19127. image: {
  19128. source: "./media/characters/jayne-folest/front-clothed.svg",
  19129. extra: 2115 / 2007,
  19130. bottom: 0.035
  19131. }
  19132. },
  19133. hand: {
  19134. height: math.unit(1 / 1.260, "feet"),
  19135. name: "Hand",
  19136. image: {
  19137. source: "./media/characters/jayne-folest/hand.svg"
  19138. }
  19139. },
  19140. foot: {
  19141. height: math.unit(1 / 0.918, "feet"),
  19142. name: "Foot",
  19143. image: {
  19144. source: "./media/characters/jayne-folest/foot.svg"
  19145. }
  19146. },
  19147. },
  19148. [
  19149. {
  19150. name: "Micro",
  19151. height: math.unit(4, "cm")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(1.75, "meters")
  19156. },
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(47.5, "meters"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(180, "cm"),
  19169. weight: math.unit(70, "kg"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/algier/front.svg",
  19173. extra: 596 / 572,
  19174. bottom: 0.04
  19175. }
  19176. },
  19177. back: {
  19178. height: math.unit(180, "cm"),
  19179. weight: math.unit(70, "kg"),
  19180. name: "Back",
  19181. image: {
  19182. source: "./media/characters/algier/back.svg",
  19183. extra: 596 / 572,
  19184. bottom: 0.025
  19185. }
  19186. },
  19187. frontdressed: {
  19188. height: math.unit(180, "cm"),
  19189. weight: math.unit(150, "kg"),
  19190. name: "Front-dressed",
  19191. image: {
  19192. source: "./media/characters/algier/front-dressed.svg",
  19193. extra: 596 / 572,
  19194. bottom: 0.038
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(5, "cm")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(180, "cm"),
  19206. default: true
  19207. },
  19208. {
  19209. name: "Macro",
  19210. height: math.unit(64, "m")
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19216. {
  19217. upright: {
  19218. height: math.unit(7, "feet"),
  19219. weight: math.unit(300, "lb"),
  19220. name: "Upright",
  19221. image: {
  19222. source: "./media/characters/pretzel/upright.svg",
  19223. extra: 534 / 522,
  19224. bottom: 0.065
  19225. }
  19226. },
  19227. sprawling: {
  19228. height: math.unit(3.75, "feet"),
  19229. weight: math.unit(300, "lb"),
  19230. name: "Sprawling",
  19231. image: {
  19232. source: "./media/characters/pretzel/sprawling.svg",
  19233. extra: 314 / 281,
  19234. bottom: 0.1
  19235. }
  19236. },
  19237. tongue: {
  19238. height: math.unit(2, "feet"),
  19239. name: "Tongue",
  19240. image: {
  19241. source: "./media/characters/pretzel/tongue.svg"
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(7, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Oversized",
  19253. height: math.unit(15, "feet")
  19254. },
  19255. {
  19256. name: "Huge",
  19257. height: math.unit(30, "feet")
  19258. },
  19259. {
  19260. name: "Macro",
  19261. height: math.unit(250, "feet")
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19267. {
  19268. sideFront: {
  19269. height: math.unit(5 + 2 / 12, "feet"),
  19270. weight: math.unit(120, "lb"),
  19271. name: "Front Side",
  19272. image: {
  19273. source: "./media/characters/roxi/side-front.svg",
  19274. extra: 2924 / 2717,
  19275. bottom: 0.08
  19276. }
  19277. },
  19278. sideBack: {
  19279. height: math.unit(5 + 2 / 12, "feet"),
  19280. weight: math.unit(120, "lb"),
  19281. name: "Back Side",
  19282. image: {
  19283. source: "./media/characters/roxi/side-back.svg",
  19284. extra: 2904 / 2693,
  19285. bottom: 0.06
  19286. }
  19287. },
  19288. front: {
  19289. height: math.unit(5 + 2 / 12, "feet"),
  19290. weight: math.unit(120, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/roxi/front.svg",
  19294. extra: 2028 / 1907,
  19295. bottom: 0.01
  19296. }
  19297. },
  19298. frontAlt: {
  19299. height: math.unit(5 + 2 / 12, "feet"),
  19300. weight: math.unit(120, "lb"),
  19301. name: "Front (Alt)",
  19302. image: {
  19303. source: "./media/characters/roxi/front-alt.svg",
  19304. extra: 1828 / 1798,
  19305. bottom: 0.01
  19306. }
  19307. },
  19308. sitting: {
  19309. height: math.unit(2.8, "feet"),
  19310. weight: math.unit(120, "lb"),
  19311. name: "Sitting",
  19312. image: {
  19313. source: "./media/characters/roxi/sitting.svg",
  19314. extra: 2660 / 2462,
  19315. bottom: 0.1
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Normal",
  19322. height: math.unit(5 + 2 / 12, "feet"),
  19323. default: true
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19329. {
  19330. side: {
  19331. height: math.unit(55, "feet"),
  19332. weight: math.unit(153, "tons"),
  19333. name: "Side",
  19334. image: {
  19335. source: "./media/characters/shadow/side.svg",
  19336. extra: 701 / 628,
  19337. bottom: 0.02
  19338. }
  19339. },
  19340. flying: {
  19341. height: math.unit(145, "feet"),
  19342. weight: math.unit(153, "tons"),
  19343. name: "Flying",
  19344. image: {
  19345. source: "./media/characters/shadow/flying.svg"
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(55, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(6, "feet"),
  19362. weight: math.unit(200, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/marcie/front.svg",
  19366. extra: 960 / 876,
  19367. bottom: 58 / 1017.87
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(1, "mile"),
  19375. default: true
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19381. {
  19382. front: {
  19383. height: math.unit(7, "feet"),
  19384. weight: math.unit(200, "lb"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/kachina/front.svg",
  19388. extra: 1290.68 / 1119,
  19389. bottom: 36.5 / 1327.18
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(7, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19403. {
  19404. looking: {
  19405. height: math.unit(2, "meters"),
  19406. weight: math.unit(300, "kg"),
  19407. name: "Looking",
  19408. image: {
  19409. source: "./media/characters/kash/looking.svg",
  19410. extra: 474 / 344,
  19411. bottom: 0.03
  19412. }
  19413. },
  19414. side: {
  19415. height: math.unit(2, "meters"),
  19416. weight: math.unit(300, "kg"),
  19417. name: "Side",
  19418. image: {
  19419. source: "./media/characters/kash/side.svg",
  19420. extra: 302 / 251,
  19421. bottom: 0.03
  19422. }
  19423. },
  19424. front: {
  19425. height: math.unit(2, "meters"),
  19426. weight: math.unit(300, "kg"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/kash/front.svg",
  19430. extra: 495 / 360,
  19431. bottom: 0.015
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(2, "meters"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Big",
  19443. height: math.unit(3, "meters")
  19444. },
  19445. {
  19446. name: "Large",
  19447. height: math.unit(5, "meters")
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19453. {
  19454. feeding: {
  19455. height: math.unit(6.7, "feet"),
  19456. weight: math.unit(350, "lb"),
  19457. name: "Feeding",
  19458. image: {
  19459. source: "./media/characters/lalim/feeding.svg",
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(6.7, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19473. {
  19474. front: {
  19475. height: math.unit(9.5, "feet"),
  19476. weight: math.unit(600, "lb"),
  19477. name: "Front",
  19478. image: {
  19479. source: "./media/characters/de'vout/front.svg",
  19480. extra: 1443 / 1328,
  19481. bottom: 0.025
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(9.5, "feet"),
  19486. weight: math.unit(600, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/de'vout/back.svg",
  19490. extra: 1443 / 1328
  19491. }
  19492. },
  19493. frontDressed: {
  19494. height: math.unit(9.5, "feet"),
  19495. weight: math.unit(600, "lb"),
  19496. name: "Front (Dressed",
  19497. image: {
  19498. source: "./media/characters/de'vout/front-dressed.svg",
  19499. extra: 1443 / 1328,
  19500. bottom: 0.025
  19501. }
  19502. },
  19503. backDressed: {
  19504. height: math.unit(9.5, "feet"),
  19505. weight: math.unit(600, "lb"),
  19506. name: "Back (Dressed",
  19507. image: {
  19508. source: "./media/characters/de'vout/back-dressed.svg",
  19509. extra: 1443 / 1328
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(9.5, "feet"),
  19517. default: true
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19523. {
  19524. front: {
  19525. height: math.unit(8, "feet"),
  19526. weight: math.unit(225, "lb"),
  19527. name: "Front",
  19528. image: {
  19529. source: "./media/characters/talana/front.svg",
  19530. extra: 1410 / 1300,
  19531. bottom: 0.015
  19532. }
  19533. },
  19534. frontDressed: {
  19535. height: math.unit(8, "feet"),
  19536. weight: math.unit(225, "lb"),
  19537. name: "Front (Dressed",
  19538. image: {
  19539. source: "./media/characters/talana/front-dressed.svg",
  19540. extra: 1410 / 1300,
  19541. bottom: 0.015
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(8, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19555. {
  19556. side: {
  19557. height: math.unit(7.2, "feet"),
  19558. weight: math.unit(150, "lb"),
  19559. name: "Side",
  19560. image: {
  19561. source: "./media/characters/xeauvok/side.svg",
  19562. extra: 1975 / 1523,
  19563. bottom: 0.07
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(7.2, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19577. {
  19578. side: {
  19579. height: math.unit(4, "meters"),
  19580. weight: math.unit(2200, "kg"),
  19581. name: "Side",
  19582. image: {
  19583. source: "./media/characters/zara/side.svg",
  19584. extra: 765/744,
  19585. bottom: 156/921
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(4, "meters"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19599. {
  19600. side: {
  19601. height: math.unit(6, "feet"),
  19602. weight: math.unit(150, "lb"),
  19603. name: "Side",
  19604. image: {
  19605. source: "./media/characters/richard-dragon/side.svg",
  19606. extra: 845 / 340,
  19607. bottom: 0.017
  19608. }
  19609. },
  19610. maw: {
  19611. height: math.unit(2.97, "feet"),
  19612. name: "Maw",
  19613. image: {
  19614. source: "./media/characters/richard-dragon/maw.svg"
  19615. }
  19616. },
  19617. },
  19618. [
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(4, "feet"),
  19626. weight: math.unit(100, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/richard-smeargle/front.svg",
  19630. extra: 2952 / 2820,
  19631. bottom: 0.028
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(4, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Dynamax",
  19643. height: math.unit(20, "meters")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(6, "feet"),
  19652. weight: math.unit(110, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/klay/front.svg",
  19656. extra: 962 / 883,
  19657. bottom: 0.04
  19658. }
  19659. },
  19660. back: {
  19661. height: math.unit(6, "feet"),
  19662. weight: math.unit(110, "lb"),
  19663. name: "Back",
  19664. image: {
  19665. source: "./media/characters/klay/back.svg",
  19666. extra: 962 / 883
  19667. }
  19668. },
  19669. beans: {
  19670. height: math.unit(1.15, "feet"),
  19671. name: "Beans",
  19672. image: {
  19673. source: "./media/characters/klay/beans.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Micro",
  19680. height: math.unit(6, "inches")
  19681. },
  19682. {
  19683. name: "Mini",
  19684. height: math.unit(3, "feet")
  19685. },
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(6, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Big",
  19693. height: math.unit(25, "feet")
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(100, "feet")
  19698. },
  19699. {
  19700. name: "Megamacro",
  19701. height: math.unit(400, "feet")
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(6, "feet"),
  19710. weight: math.unit(160, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/marcus/front.svg",
  19714. extra: 734 / 676,
  19715. bottom: 0.03
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Little",
  19722. height: math.unit(6, "feet")
  19723. },
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(110, "feet"),
  19727. default: true
  19728. },
  19729. {
  19730. name: "Macro",
  19731. height: math.unit(250, "feet")
  19732. },
  19733. {
  19734. name: "Megamacro",
  19735. height: math.unit(1000, "feet")
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(7, "feet"),
  19744. weight: math.unit(275, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/claude-delroute/front.svg",
  19748. extra: 902/827,
  19749. bottom: 26/928
  19750. }
  19751. },
  19752. side: {
  19753. height: math.unit(7, "feet"),
  19754. weight: math.unit(275, "lb"),
  19755. name: "Side",
  19756. image: {
  19757. source: "./media/characters/claude-delroute/side.svg",
  19758. extra: 908/853,
  19759. bottom: 16/924
  19760. }
  19761. },
  19762. back: {
  19763. height: math.unit(7, "feet"),
  19764. weight: math.unit(275, "lb"),
  19765. name: "Back",
  19766. image: {
  19767. source: "./media/characters/claude-delroute/back.svg",
  19768. extra: 911/829,
  19769. bottom: 18/929
  19770. }
  19771. },
  19772. maw: {
  19773. height: math.unit(0.6407, "meters"),
  19774. name: "Maw",
  19775. image: {
  19776. source: "./media/characters/claude-delroute/maw.svg"
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(7, "feet"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Lorge",
  19788. height: math.unit(20, "feet")
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(8 + 4 / 12, "feet"),
  19797. weight: math.unit(600, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/dragonien/front.svg",
  19801. extra: 100 / 94,
  19802. bottom: 3.3 / 103.3445
  19803. }
  19804. },
  19805. back: {
  19806. height: math.unit(8 + 4 / 12, "feet"),
  19807. weight: math.unit(600, "lb"),
  19808. name: "Back",
  19809. image: {
  19810. source: "./media/characters/dragonien/back.svg",
  19811. extra: 776 / 746,
  19812. bottom: 6.4 / 782.0616
  19813. }
  19814. },
  19815. foot: {
  19816. height: math.unit(1.54, "feet"),
  19817. name: "Foot",
  19818. image: {
  19819. source: "./media/characters/dragonien/foot.svg",
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(8 + 4 / 12, "feet"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(200, "feet")
  19832. },
  19833. {
  19834. name: "Megamacro",
  19835. height: math.unit(1, "mile")
  19836. },
  19837. {
  19838. name: "Gigamacro",
  19839. height: math.unit(1000, "miles")
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(5 + 2 / 12, "feet"),
  19848. weight: math.unit(110, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/desta/front.svg",
  19852. extra: 767 / 726,
  19853. bottom: 11.7 / 779
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(5 + 2 / 12, "feet"),
  19858. weight: math.unit(110, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/desta/back.svg",
  19862. extra: 777 / 728,
  19863. bottom: 6 / 784
  19864. }
  19865. },
  19866. frontAlt: {
  19867. height: math.unit(5 + 2 / 12, "feet"),
  19868. weight: math.unit(110, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/desta/front-alt.svg",
  19872. extra: 1482 / 1417
  19873. }
  19874. },
  19875. side: {
  19876. height: math.unit(5 + 2 / 12, "feet"),
  19877. weight: math.unit(110, "lb"),
  19878. name: "Side",
  19879. image: {
  19880. source: "./media/characters/desta/side.svg",
  19881. extra: 2579 / 2491,
  19882. bottom: 0.053
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Micro",
  19889. height: math.unit(6, "inches")
  19890. },
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(5 + 2 / 12, "feet"),
  19894. default: true
  19895. },
  19896. {
  19897. name: "Macro",
  19898. height: math.unit(62, "feet")
  19899. },
  19900. {
  19901. name: "Megamacro",
  19902. height: math.unit(1800, "feet")
  19903. },
  19904. ]
  19905. ))
  19906. characterMakers.push(() => makeCharacter(
  19907. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19908. {
  19909. front: {
  19910. height: math.unit(10, "feet"),
  19911. weight: math.unit(700, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/storm-alystar/front.svg",
  19915. extra: 2112 / 1898,
  19916. bottom: 0.034
  19917. }
  19918. },
  19919. },
  19920. [
  19921. {
  19922. name: "Micro",
  19923. height: math.unit(3.5, "inches")
  19924. },
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(10, "feet"),
  19928. default: true
  19929. },
  19930. {
  19931. name: "Macro",
  19932. height: math.unit(400, "feet")
  19933. },
  19934. {
  19935. name: "Deific",
  19936. height: math.unit(60, "miles")
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19942. {
  19943. front: {
  19944. height: math.unit(2.35, "meters"),
  19945. weight: math.unit(119, "kg"),
  19946. name: "Front",
  19947. image: {
  19948. source: "./media/characters/ilia/front.svg",
  19949. extra: 1285 / 1255,
  19950. bottom: 0.06
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(2.35, "meters")
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(140, "meters"),
  19962. default: true
  19963. },
  19964. {
  19965. name: "Megamacro",
  19966. height: math.unit(100, "miles")
  19967. },
  19968. ]
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19972. {
  19973. front: {
  19974. height: math.unit(6 + 5 / 12, "feet"),
  19975. weight: math.unit(190, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/kingdead/front.svg",
  19979. extra: 1228 / 1177
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Micro",
  19986. height: math.unit(7, "inches")
  19987. },
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(6 + 5 / 12, "feet")
  19991. },
  19992. {
  19993. name: "Macro",
  19994. height: math.unit(150, "feet"),
  19995. default: true
  19996. },
  19997. {
  19998. name: "Megamacro",
  19999. height: math.unit(200, "miles")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20005. {
  20006. front: {
  20007. height: math.unit(8, "feet"),
  20008. weight: math.unit(600, "lb"),
  20009. name: "Front",
  20010. image: {
  20011. source: "./media/characters/kyrehx/front.svg",
  20012. extra: 1195 / 1095,
  20013. bottom: 0.034
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Micro",
  20020. height: math.unit(2, "inches")
  20021. },
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(8, "feet"),
  20025. default: true
  20026. },
  20027. {
  20028. name: "Macro",
  20029. height: math.unit(255, "feet")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20038. weight: math.unit(184, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/xang/front.svg",
  20042. extra: 845 / 755
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20050. default: true
  20051. },
  20052. {
  20053. name: "Macro",
  20054. height: math.unit(0.935 * 146, "feet")
  20055. },
  20056. {
  20057. name: "Megamacro",
  20058. height: math.unit(0.935 * 3, "miles")
  20059. },
  20060. ]
  20061. ))
  20062. characterMakers.push(() => makeCharacter(
  20063. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20064. {
  20065. frontDressed: {
  20066. height: math.unit(5 + 7 / 12, "feet"),
  20067. weight: math.unit(140, "lb"),
  20068. name: "Front (Dressed)",
  20069. image: {
  20070. source: "./media/characters/doc-weardno/front-dressed.svg",
  20071. extra: 263 / 234
  20072. }
  20073. },
  20074. backDressed: {
  20075. height: math.unit(5 + 7 / 12, "feet"),
  20076. weight: math.unit(140, "lb"),
  20077. name: "Back (Dressed)",
  20078. image: {
  20079. source: "./media/characters/doc-weardno/back-dressed.svg",
  20080. extra: 266 / 238
  20081. }
  20082. },
  20083. front: {
  20084. height: math.unit(5 + 7 / 12, "feet"),
  20085. weight: math.unit(140, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/doc-weardno/front.svg",
  20089. extra: 254 / 233
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Micro",
  20096. height: math.unit(3, "inches")
  20097. },
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 7 / 12, "feet"),
  20101. default: true
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(25, "feet")
  20106. },
  20107. {
  20108. name: "Megamacro",
  20109. height: math.unit(2, "miles")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(6 + 2 / 12, "feet"),
  20118. weight: math.unit(153, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/seth-whilst/front.svg",
  20122. bottom: 0.07
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Micro",
  20129. height: math.unit(5, "inches")
  20130. },
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(6 + 2 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(3, "inches"),
  20143. weight: math.unit(8, "grams"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/pocket-jabari/front.svg",
  20147. extra: 1024 / 974,
  20148. bottom: 0.039
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Minimicro",
  20155. height: math.unit(8, "mm")
  20156. },
  20157. {
  20158. name: "Micro",
  20159. height: math.unit(3, "inches"),
  20160. default: true
  20161. },
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(3, "feet")
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20170. {
  20171. frontDressed: {
  20172. height: math.unit(15, "feet"),
  20173. weight: math.unit(3280, "lb"),
  20174. name: "Front (Dressed)",
  20175. image: {
  20176. source: "./media/characters/sapphy/front-dressed.svg",
  20177. extra: 1951/1654,
  20178. bottom: 194/2145
  20179. },
  20180. form: "anthro",
  20181. default: true
  20182. },
  20183. backDressed: {
  20184. height: math.unit(15, "feet"),
  20185. weight: math.unit(3280, "lb"),
  20186. name: "Back (Dressed)",
  20187. image: {
  20188. source: "./media/characters/sapphy/back-dressed.svg",
  20189. extra: 2058/1918,
  20190. bottom: 125/2183
  20191. },
  20192. form: "anthro"
  20193. },
  20194. frontNude: {
  20195. height: math.unit(15, "feet"),
  20196. weight: math.unit(3280, "lb"),
  20197. name: "Front (Nude)",
  20198. image: {
  20199. source: "./media/characters/sapphy/front-nude.svg",
  20200. extra: 1951/1654,
  20201. bottom: 194/2145
  20202. },
  20203. form: "anthro"
  20204. },
  20205. backNude: {
  20206. height: math.unit(15, "feet"),
  20207. weight: math.unit(3280, "lb"),
  20208. name: "Back (Nude)",
  20209. image: {
  20210. source: "./media/characters/sapphy/back-nude.svg",
  20211. extra: 2058/1918,
  20212. bottom: 125/2183
  20213. },
  20214. form: "anthro"
  20215. },
  20216. full: {
  20217. height: math.unit(15, "feet"),
  20218. weight: math.unit(3280, "lb"),
  20219. name: "Full",
  20220. image: {
  20221. source: "./media/characters/sapphy/full.svg",
  20222. extra: 1396/1317,
  20223. bottom: 44/1440
  20224. },
  20225. form: "anthro"
  20226. },
  20227. dick: {
  20228. height: math.unit(3.8, "feet"),
  20229. name: "Dick",
  20230. image: {
  20231. source: "./media/characters/sapphy/dick.svg"
  20232. },
  20233. form: "anthro"
  20234. },
  20235. feral: {
  20236. height: math.unit(35, "feet"),
  20237. weight: math.unit(160, "tons"),
  20238. name: "Feral",
  20239. image: {
  20240. source: "./media/characters/sapphy/feral.svg",
  20241. extra: 1050/573,
  20242. bottom: 60/1110
  20243. },
  20244. form: "feral",
  20245. default: true
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(15, "feet"),
  20252. form: "anthro"
  20253. },
  20254. {
  20255. name: "Casual Macro",
  20256. height: math.unit(120, "feet"),
  20257. form: "anthro"
  20258. },
  20259. {
  20260. name: "Macro",
  20261. height: math.unit(2150, "feet"),
  20262. default: true,
  20263. form: "anthro"
  20264. },
  20265. {
  20266. name: "Megamacro",
  20267. height: math.unit(8, "miles"),
  20268. form: "anthro"
  20269. },
  20270. {
  20271. name: "Galaxy Mom",
  20272. height: math.unit(6, "megalightyears"),
  20273. form: "anthro"
  20274. },
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(35, "feet"),
  20278. form: "feral",
  20279. default: true
  20280. },
  20281. {
  20282. name: "Macro",
  20283. height: math.unit(300, "feet"),
  20284. form: "feral"
  20285. },
  20286. {
  20287. name: "Galaxy Mom",
  20288. height: math.unit(10, "megalightyears"),
  20289. form: "feral"
  20290. },
  20291. ],
  20292. {
  20293. "anthro": {
  20294. name: "Anthro",
  20295. default: true
  20296. },
  20297. "feral": {
  20298. name: "Feral"
  20299. }
  20300. }
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20304. {
  20305. hyenaFront: {
  20306. height: math.unit(6, "feet"),
  20307. weight: math.unit(190, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/kiro/hyena-front.svg",
  20311. extra: 927/839,
  20312. bottom: 91/1018
  20313. },
  20314. form: "hyena",
  20315. default: true
  20316. },
  20317. front: {
  20318. height: math.unit(6, "feet"),
  20319. weight: math.unit(170, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/kiro/front.svg",
  20323. extra: 1064 / 1012,
  20324. bottom: 0.052
  20325. },
  20326. form: "folf",
  20327. default: true
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(6, "inches"),
  20334. form: "folf"
  20335. },
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(6, "feet"),
  20339. form: "folf",
  20340. default: true
  20341. },
  20342. {
  20343. name: "Macro",
  20344. height: math.unit(72, "feet"),
  20345. form: "folf"
  20346. },
  20347. {
  20348. name: "Micro",
  20349. height: math.unit(6, "inches"),
  20350. form: "hyena"
  20351. },
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(6, "feet"),
  20355. form: "hyena",
  20356. default: true
  20357. },
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(72, "feet"),
  20361. form: "hyena"
  20362. },
  20363. ],
  20364. {
  20365. "hyena": {
  20366. name: "Hyena",
  20367. default: true
  20368. },
  20369. "folf": {
  20370. name: "Folf",
  20371. },
  20372. }
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(5 + 9 / 12, "feet"),
  20379. weight: math.unit(175, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/irishfox/front.svg",
  20383. extra: 1912 / 1680,
  20384. bottom: 0.02
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Nano",
  20391. height: math.unit(1, "mm")
  20392. },
  20393. {
  20394. name: "Micro",
  20395. height: math.unit(2, "inches")
  20396. },
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(5 + 9 / 12, "feet"),
  20400. default: true
  20401. },
  20402. {
  20403. name: "Macro",
  20404. height: math.unit(45, "feet")
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(6 + 1 / 12, "feet"),
  20413. weight: math.unit(75, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/aronai-sieyes/front.svg",
  20417. extra: 1532/1450,
  20418. bottom: 42/1574
  20419. }
  20420. },
  20421. side: {
  20422. height: math.unit(6 + 1 / 12, "feet"),
  20423. weight: math.unit(75, "lb"),
  20424. name: "Side",
  20425. image: {
  20426. source: "./media/characters/aronai-sieyes/side.svg",
  20427. extra: 1422/1365,
  20428. bottom: 148/1570
  20429. }
  20430. },
  20431. back: {
  20432. height: math.unit(6 + 1 / 12, "feet"),
  20433. weight: math.unit(75, "lb"),
  20434. name: "Back",
  20435. image: {
  20436. source: "./media/characters/aronai-sieyes/back.svg",
  20437. extra: 1526/1464,
  20438. bottom: 51/1577
  20439. }
  20440. },
  20441. dressed: {
  20442. height: math.unit(6 + 1 / 12, "feet"),
  20443. weight: math.unit(75, "lb"),
  20444. name: "Dressed",
  20445. image: {
  20446. source: "./media/characters/aronai-sieyes/dressed.svg",
  20447. extra: 1559/1483,
  20448. bottom: 39/1598
  20449. }
  20450. },
  20451. slit: {
  20452. height: math.unit(1.3, "feet"),
  20453. name: "Slit",
  20454. image: {
  20455. source: "./media/characters/aronai-sieyes/slit.svg"
  20456. }
  20457. },
  20458. slitSpread: {
  20459. height: math.unit(0.9, "feet"),
  20460. name: "Slit (Spread)",
  20461. image: {
  20462. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20463. }
  20464. },
  20465. rump: {
  20466. height: math.unit(1.3, "feet"),
  20467. name: "Rump",
  20468. image: {
  20469. source: "./media/characters/aronai-sieyes/rump.svg"
  20470. }
  20471. },
  20472. maw: {
  20473. height: math.unit(1.25, "feet"),
  20474. name: "Maw",
  20475. image: {
  20476. source: "./media/characters/aronai-sieyes/maw.svg"
  20477. }
  20478. },
  20479. feral: {
  20480. height: math.unit(18, "feet"),
  20481. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20482. name: "Feral",
  20483. image: {
  20484. source: "./media/characters/aronai-sieyes/feral.svg",
  20485. extra: 1530 / 1240,
  20486. bottom: 0.035
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Micro",
  20493. height: math.unit(2, "inches")
  20494. },
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(6 + 1 / 12, "feet"),
  20498. default: true
  20499. }
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(12, "feet"),
  20507. weight: math.unit(410, "kg"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/xuna/front.svg",
  20511. extra: 2184 / 1980
  20512. }
  20513. },
  20514. side: {
  20515. height: math.unit(12, "feet"),
  20516. weight: math.unit(410, "kg"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/xuna/side.svg",
  20520. extra: 2184 / 1980
  20521. }
  20522. },
  20523. back: {
  20524. height: math.unit(12, "feet"),
  20525. weight: math.unit(410, "kg"),
  20526. name: "Back",
  20527. image: {
  20528. source: "./media/characters/xuna/back.svg",
  20529. extra: 2184 / 1980
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Nano glow",
  20536. height: math.unit(10, "nm")
  20537. },
  20538. {
  20539. name: "Micro floof",
  20540. height: math.unit(0.3, "m")
  20541. },
  20542. {
  20543. name: "Huggable softy boi",
  20544. height: math.unit(3.6576, "m"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Admirable floof",
  20549. height: math.unit(80, "meters")
  20550. },
  20551. {
  20552. name: "Gentle macro",
  20553. height: math.unit(300, "meters")
  20554. },
  20555. {
  20556. name: "Very careful floof",
  20557. height: math.unit(3200, "meters")
  20558. },
  20559. {
  20560. name: "The mega floof",
  20561. height: math.unit(36000, "meters")
  20562. },
  20563. {
  20564. name: "Giga-fur-Wicker",
  20565. height: math.unit(4800000, "meters")
  20566. },
  20567. {
  20568. name: "Licky world",
  20569. height: math.unit(20000000, "meters")
  20570. },
  20571. {
  20572. name: "Floofy cyan sun",
  20573. height: math.unit(1500000000, "meters")
  20574. },
  20575. {
  20576. name: "Milky Wicker",
  20577. height: math.unit(1000000000000000000000, "meters")
  20578. },
  20579. {
  20580. name: "The observing Wicker",
  20581. height: math.unit(999999999999999999999999999, "meters")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(5 + 9 / 12, "feet"),
  20590. weight: math.unit(150, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/arokha-sieyes/front.svg",
  20594. extra: 1425 / 1284,
  20595. bottom: 0.05
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(5 + 9 / 12, "feet")
  20603. },
  20604. {
  20605. name: "Macro",
  20606. height: math.unit(30, "meters"),
  20607. default: true
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20613. {
  20614. front: {
  20615. height: math.unit(6, "feet"),
  20616. weight: math.unit(180, "lb"),
  20617. name: "Front",
  20618. image: {
  20619. source: "./media/characters/arokh-sieyes/front.svg",
  20620. extra: 1830 / 1769,
  20621. bottom: 0.01
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(6, "feet")
  20629. },
  20630. {
  20631. name: "Macro",
  20632. height: math.unit(30, "meters"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20639. {
  20640. side: {
  20641. height: math.unit(13 + 1 / 12, "feet"),
  20642. weight: math.unit(8.5, "tonnes"),
  20643. preyCapacity: math.unit(36, "people"),
  20644. name: "Side",
  20645. image: {
  20646. source: "./media/characters/goldeneye/side.svg",
  20647. extra: 1139/741,
  20648. bottom: 98/1237
  20649. }
  20650. },
  20651. front: {
  20652. height: math.unit(5.1, "feet"),
  20653. weight: math.unit(8.5, "tonnes"),
  20654. preyCapacity: math.unit(36, "people"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/goldeneye/front.svg",
  20658. extra: 635/365,
  20659. bottom: 598/1233
  20660. }
  20661. },
  20662. maw: {
  20663. height: math.unit(6.6, "feet"),
  20664. name: "Maw",
  20665. image: {
  20666. source: "./media/characters/goldeneye/maw.svg"
  20667. }
  20668. },
  20669. headFront: {
  20670. height: math.unit(8, "feet"),
  20671. name: "Head (Front)",
  20672. image: {
  20673. source: "./media/characters/goldeneye/head-front.svg"
  20674. }
  20675. },
  20676. headSide: {
  20677. height: math.unit(6, "feet"),
  20678. name: "Head (Side)",
  20679. image: {
  20680. source: "./media/characters/goldeneye/head-side.svg"
  20681. }
  20682. },
  20683. headBack: {
  20684. height: math.unit(8, "feet"),
  20685. name: "Head (Back)",
  20686. image: {
  20687. source: "./media/characters/goldeneye/head-back.svg"
  20688. }
  20689. },
  20690. paw: {
  20691. height: math.unit(3.4, "feet"),
  20692. name: "Paw",
  20693. image: {
  20694. source: "./media/characters/goldeneye/paw.svg"
  20695. }
  20696. },
  20697. toering: {
  20698. height: math.unit(0.45, "feet"),
  20699. name: "Toering",
  20700. image: {
  20701. source: "./media/characters/goldeneye/toering.svg"
  20702. }
  20703. },
  20704. eyes: {
  20705. height: math.unit(0.5, "feet"),
  20706. name: "Eyes",
  20707. image: {
  20708. source: "./media/characters/goldeneye/eyes.svg"
  20709. }
  20710. },
  20711. },
  20712. [
  20713. {
  20714. name: "Normal",
  20715. height: math.unit(13 + 1 / 12, "feet"),
  20716. default: true
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20722. {
  20723. front: {
  20724. height: math.unit(6 + 1 / 12, "feet"),
  20725. weight: math.unit(210, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/leonardo-lycheborne/front.svg",
  20729. extra: 776/723,
  20730. bottom: 34/810
  20731. }
  20732. },
  20733. side: {
  20734. height: math.unit(6 + 1 / 12, "feet"),
  20735. weight: math.unit(210, "lb"),
  20736. name: "Side",
  20737. image: {
  20738. source: "./media/characters/leonardo-lycheborne/side.svg",
  20739. extra: 780/728,
  20740. bottom: 12/792
  20741. }
  20742. },
  20743. back: {
  20744. height: math.unit(6 + 1 / 12, "feet"),
  20745. weight: math.unit(210, "lb"),
  20746. name: "Back",
  20747. image: {
  20748. source: "./media/characters/leonardo-lycheborne/back.svg",
  20749. extra: 775/721,
  20750. bottom: 17/792
  20751. }
  20752. },
  20753. hand: {
  20754. height: math.unit(1.08, "feet"),
  20755. name: "Hand",
  20756. image: {
  20757. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20758. }
  20759. },
  20760. foot: {
  20761. height: math.unit(1.32, "feet"),
  20762. name: "Foot",
  20763. image: {
  20764. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20765. }
  20766. },
  20767. maw: {
  20768. height: math.unit(1, "feet"),
  20769. name: "Maw",
  20770. image: {
  20771. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20772. }
  20773. },
  20774. were: {
  20775. height: math.unit(20, "feet"),
  20776. weight: math.unit(7800, "lb"),
  20777. name: "Were",
  20778. image: {
  20779. source: "./media/characters/leonardo-lycheborne/were.svg",
  20780. extra: 1224/1165,
  20781. bottom: 72/1296
  20782. }
  20783. },
  20784. feral: {
  20785. height: math.unit(7.5, "feet"),
  20786. weight: math.unit(600, "lb"),
  20787. name: "Feral",
  20788. image: {
  20789. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20790. extra: 797/702,
  20791. bottom: 139/936
  20792. }
  20793. },
  20794. taur: {
  20795. height: math.unit(11, "feet"),
  20796. weight: math.unit(3300, "lb"),
  20797. name: "Taur",
  20798. image: {
  20799. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20800. extra: 1271/1197,
  20801. bottom: 47/1318
  20802. }
  20803. },
  20804. barghest: {
  20805. height: math.unit(11, "feet"),
  20806. weight: math.unit(1300, "lb"),
  20807. name: "Barghest",
  20808. image: {
  20809. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20810. extra: 1291/1204,
  20811. bottom: 37/1328
  20812. }
  20813. },
  20814. dick: {
  20815. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20816. name: "Dick",
  20817. image: {
  20818. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20819. }
  20820. },
  20821. dickWere: {
  20822. height: math.unit((20) / 3.8, "feet"),
  20823. name: "Dick (Were)",
  20824. image: {
  20825. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(6 + 1 / 12, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(10, "feet"),
  20842. weight: math.unit(350, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/jet/front.svg",
  20846. extra: 2050 / 1980,
  20847. bottom: 0.013
  20848. }
  20849. },
  20850. back: {
  20851. height: math.unit(10, "feet"),
  20852. weight: math.unit(350, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/jet/back.svg",
  20856. extra: 2050 / 1980,
  20857. bottom: 0.013
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Micro",
  20864. height: math.unit(6, "inches")
  20865. },
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(10, "feet"),
  20869. default: true
  20870. },
  20871. {
  20872. name: "Macro",
  20873. height: math.unit(100, "feet")
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(15, "feet"),
  20882. weight: math.unit(2800, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/tanarath/front.svg",
  20886. extra: 2392 / 2220,
  20887. bottom: 0.03
  20888. }
  20889. },
  20890. back: {
  20891. height: math.unit(15, "feet"),
  20892. weight: math.unit(2800, "lb"),
  20893. name: "Back",
  20894. image: {
  20895. source: "./media/characters/tanarath/back.svg",
  20896. extra: 2392 / 2220,
  20897. bottom: 0.03
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(15, "feet"),
  20905. default: true
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(7 + 1 / 12, "feet"),
  20914. weight: math.unit(175, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/patty-cattybatty/front.svg",
  20918. extra: 908 / 874,
  20919. bottom: 0.025
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Micro",
  20926. height: math.unit(1, "inch")
  20927. },
  20928. {
  20929. name: "Normal",
  20930. height: math.unit(7 + 1 / 12, "feet")
  20931. },
  20932. {
  20933. name: "Mini Macro",
  20934. height: math.unit(155, "feet")
  20935. },
  20936. {
  20937. name: "Macro",
  20938. height: math.unit(1077, "feet")
  20939. },
  20940. {
  20941. name: "Mega Macro",
  20942. height: math.unit(47650, "feet"),
  20943. default: true
  20944. },
  20945. {
  20946. name: "Giga Macro",
  20947. height: math.unit(440, "miles")
  20948. },
  20949. {
  20950. name: "Tera Macro",
  20951. height: math.unit(8700, "miles")
  20952. },
  20953. {
  20954. name: "Planetary Macro",
  20955. height: math.unit(32700, "miles")
  20956. },
  20957. {
  20958. name: "Solar Macro",
  20959. height: math.unit(550000, "miles")
  20960. },
  20961. {
  20962. name: "Celestial Macro",
  20963. height: math.unit(2.5, "AU")
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(4 + 5 / 12, "feet"),
  20972. weight: math.unit(90, "lb"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/cappu/front.svg",
  20976. extra: 1247 / 1152,
  20977. bottom: 0.012
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(4 + 5 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20991. {
  20992. frontDressed: {
  20993. height: math.unit(70, "cm"),
  20994. weight: math.unit(6, "kg"),
  20995. name: "Front (Dressed)",
  20996. image: {
  20997. source: "./media/characters/sebi/front-dressed.svg",
  20998. extra: 713.5 / 686.5,
  20999. bottom: 0.003
  21000. }
  21001. },
  21002. front: {
  21003. height: math.unit(70, "cm"),
  21004. weight: math.unit(5, "kg"),
  21005. name: "Front",
  21006. image: {
  21007. source: "./media/characters/sebi/front.svg",
  21008. extra: 713.5 / 686.5,
  21009. bottom: 0.003
  21010. }
  21011. }
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(70, "cm"),
  21017. default: true
  21018. },
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(8, "meters")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(6, "feet"),
  21030. weight: math.unit(150, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/typhek/front.svg",
  21034. extra: 1948 / 1929,
  21035. bottom: 0.025
  21036. }
  21037. },
  21038. side: {
  21039. height: math.unit(6, "feet"),
  21040. weight: math.unit(150, "lb"),
  21041. name: "Side",
  21042. image: {
  21043. source: "./media/characters/typhek/side.svg",
  21044. extra: 2034 / 2010,
  21045. bottom: 0.003
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(6, "feet"),
  21050. weight: math.unit(150, "lb"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/typhek/back.svg",
  21054. extra: 2005 / 1978,
  21055. bottom: 0.004
  21056. }
  21057. },
  21058. palm: {
  21059. height: math.unit(1.2, "feet"),
  21060. name: "Palm",
  21061. image: {
  21062. source: "./media/characters/typhek/palm.svg"
  21063. }
  21064. },
  21065. fist: {
  21066. height: math.unit(1.1, "feet"),
  21067. name: "Fist",
  21068. image: {
  21069. source: "./media/characters/typhek/fist.svg"
  21070. }
  21071. },
  21072. foot: {
  21073. height: math.unit(1.57, "feet"),
  21074. name: "Foot",
  21075. image: {
  21076. source: "./media/characters/typhek/foot.svg"
  21077. }
  21078. },
  21079. sole: {
  21080. height: math.unit(2.05, "feet"),
  21081. name: "Sole",
  21082. image: {
  21083. source: "./media/characters/typhek/sole.svg"
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Macro",
  21090. height: math.unit(40, "stories"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Megamacro",
  21095. height: math.unit(1, "mile")
  21096. },
  21097. {
  21098. name: "Gigamacro",
  21099. height: math.unit(4000, "solarradii")
  21100. },
  21101. {
  21102. name: "Universal",
  21103. height: math.unit(1.1, "universes")
  21104. }
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21109. {
  21110. side: {
  21111. height: math.unit(5 + 7 / 12, "feet"),
  21112. weight: math.unit(150, "lb"),
  21113. name: "Side",
  21114. image: {
  21115. source: "./media/characters/kassy/side.svg",
  21116. extra: 1280 / 1225,
  21117. bottom: 0.002
  21118. }
  21119. },
  21120. front: {
  21121. height: math.unit(5 + 7 / 12, "feet"),
  21122. weight: math.unit(150, "lb"),
  21123. name: "Front",
  21124. image: {
  21125. source: "./media/characters/kassy/front.svg",
  21126. extra: 1280 / 1225,
  21127. bottom: 0.025
  21128. }
  21129. },
  21130. back: {
  21131. height: math.unit(5 + 7 / 12, "feet"),
  21132. weight: math.unit(150, "lb"),
  21133. name: "Back",
  21134. image: {
  21135. source: "./media/characters/kassy/back.svg",
  21136. extra: 1280 / 1225,
  21137. bottom: 0.002
  21138. }
  21139. },
  21140. foot: {
  21141. height: math.unit(1.266, "feet"),
  21142. name: "Foot",
  21143. image: {
  21144. source: "./media/characters/kassy/foot.svg"
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(5 + 7 / 12, "feet")
  21152. },
  21153. {
  21154. name: "Macro",
  21155. height: math.unit(137, "feet"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Megamacro",
  21160. height: math.unit(1, "mile")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(6 + 1 / 12, "feet"),
  21169. weight: math.unit(200, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/neil/front.svg",
  21173. extra: 1326 / 1250,
  21174. bottom: 0.023
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(6 + 1 / 12, "feet"),
  21182. default: true
  21183. },
  21184. {
  21185. name: "Macro",
  21186. height: math.unit(200, "feet")
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5 + 9 / 12, "feet"),
  21195. weight: math.unit(190, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/atticus/front.svg",
  21199. extra: 2934 / 2785,
  21200. bottom: 0.025
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(5 + 9 / 12, "feet"),
  21208. default: true
  21209. },
  21210. {
  21211. name: "Macro",
  21212. height: math.unit(180, "feet")
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21218. {
  21219. side: {
  21220. height: math.unit(9, "feet"),
  21221. weight: math.unit(650, "lb"),
  21222. name: "Side",
  21223. image: {
  21224. source: "./media/characters/milo/side.svg",
  21225. extra: 2644 / 2310,
  21226. bottom: 0.032
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(9, "feet"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Macro",
  21238. height: math.unit(300, "feet")
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21244. {
  21245. side: {
  21246. height: math.unit(8, "meters"),
  21247. weight: math.unit(90000, "kg"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/ijzer/side.svg",
  21251. extra: 2756 / 1600,
  21252. bottom: 0.01
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Small",
  21259. height: math.unit(3, "meters")
  21260. },
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(8, "meters"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Normal+",
  21268. height: math.unit(10, "meters")
  21269. },
  21270. {
  21271. name: "Bigger",
  21272. height: math.unit(24, "meters")
  21273. },
  21274. {
  21275. name: "Huge",
  21276. height: math.unit(80, "meters")
  21277. },
  21278. ]
  21279. ))
  21280. characterMakers.push(() => makeCharacter(
  21281. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21282. {
  21283. front: {
  21284. height: math.unit(6 + 2 / 12, "feet"),
  21285. weight: math.unit(153, "lb"),
  21286. name: "Front",
  21287. image: {
  21288. source: "./media/characters/luca-cervicum/front.svg",
  21289. extra: 370 / 327,
  21290. bottom: 0.015
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(6 + 2 / 12, "feet"),
  21295. weight: math.unit(153, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/luca-cervicum/back.svg",
  21299. extra: 367 / 333,
  21300. bottom: 0.005
  21301. }
  21302. },
  21303. frontGear: {
  21304. height: math.unit(6 + 2 / 12, "feet"),
  21305. weight: math.unit(173, "lb"),
  21306. name: "Front (Gear)",
  21307. image: {
  21308. source: "./media/characters/luca-cervicum/front-gear.svg",
  21309. extra: 377 / 333,
  21310. bottom: 0.006
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(6 + 2 / 12, "feet"),
  21318. default: true
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(6 + 1 / 12, "feet"),
  21327. weight: math.unit(304, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/oliver/front.svg",
  21331. extra: 157 / 143,
  21332. bottom: 0.08
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(6 + 1 / 12, "feet"),
  21340. default: true
  21341. },
  21342. ]
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21346. {
  21347. front: {
  21348. height: math.unit(5 + 7 / 12, "feet"),
  21349. weight: math.unit(140, "lb"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/shane/front.svg",
  21353. extra: 304 / 289,
  21354. bottom: 0.005
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(5 + 7 / 12, "feet"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(5 + 9 / 12, "feet"),
  21371. weight: math.unit(178, "lb"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/shin/front.svg",
  21375. extra: 159 / 151,
  21376. bottom: 0.015
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(5 + 9 / 12, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(5 + 10 / 12, "feet"),
  21393. weight: math.unit(168, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/xerxes/front.svg",
  21397. extra: 282 / 260,
  21398. bottom: 0.045
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(5 + 10 / 12, "feet"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(6 + 7 / 12, "feet"),
  21415. weight: math.unit(208, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/chaska/front.svg",
  21419. extra: 332 / 319,
  21420. bottom: 0.015
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(6 + 7 / 12, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 8 / 12, "feet"),
  21437. weight: math.unit(208, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/enuk/front.svg",
  21441. extra: 437 / 406,
  21442. bottom: 0.02
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(5 + 8 / 12, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(5 + 10 / 12, "feet"),
  21459. weight: math.unit(252, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/bruun/front.svg",
  21463. extra: 197 / 187,
  21464. bottom: 0.012
  21465. }
  21466. },
  21467. },
  21468. [
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(5 + 10 / 12, "feet"),
  21472. default: true
  21473. },
  21474. ]
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(6 + 10 / 12, "feet"),
  21481. weight: math.unit(255, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/alexeev/front.svg",
  21485. extra: 213 / 200,
  21486. bottom: 0.05
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(6 + 10 / 12, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(2 + 8 / 12, "feet"),
  21503. weight: math.unit(22, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/evelyn/front.svg",
  21507. extra: 208 / 180
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(2 + 8 / 12, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(5 + 9 / 12, "feet"),
  21524. weight: math.unit(139, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/inca/front.svg",
  21528. extra: 294 / 291,
  21529. bottom: 0.03
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5 + 9 / 12, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(6 + 3 / 12, "feet"),
  21546. weight: math.unit(185, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/mera/front.svg",
  21550. extra: 291 / 277,
  21551. bottom: 0.03
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(6 + 3 / 12, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6 + 7 / 12, "feet"),
  21568. weight: math.unit(160, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/ceres/front.svg",
  21572. extra: 1023 / 950,
  21573. bottom: 0.027
  21574. }
  21575. },
  21576. back: {
  21577. height: math.unit(6 + 7 / 12, "feet"),
  21578. weight: math.unit(160, "lb"),
  21579. name: "Back",
  21580. image: {
  21581. source: "./media/characters/ceres/back.svg",
  21582. extra: 1023 / 950
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(6 + 7 / 12, "feet"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(5 + 10 / 12, "feet"),
  21599. weight: math.unit(150, "lb"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/kris/front.svg",
  21603. extra: 885 / 803,
  21604. bottom: 0.03
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5 + 10 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(7, "feet"),
  21621. weight: math.unit(120, "kg"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/taluthus/front.svg",
  21625. extra: 903 / 833,
  21626. bottom: 0.015
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(7, "feet"),
  21634. default: true
  21635. },
  21636. {
  21637. name: "Macro",
  21638. height: math.unit(300, "feet")
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(5 + 9 / 12, "feet"),
  21647. weight: math.unit(145, "lb"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/dawn/front.svg",
  21651. extra: 2094 / 2016,
  21652. bottom: 0.025
  21653. }
  21654. },
  21655. back: {
  21656. height: math.unit(5 + 9 / 12, "feet"),
  21657. weight: math.unit(160, "lb"),
  21658. name: "Back",
  21659. image: {
  21660. source: "./media/characters/dawn/back.svg",
  21661. extra: 2112 / 2080,
  21662. bottom: 0.005
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Normal",
  21669. height: math.unit(6 + 7 / 12, "feet"),
  21670. default: true
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21676. {
  21677. anthro: {
  21678. height: math.unit(8 + 3 / 12, "feet"),
  21679. weight: math.unit(450, "lb"),
  21680. name: "Anthro",
  21681. image: {
  21682. source: "./media/characters/arador/anthro.svg",
  21683. extra: 1835 / 1718,
  21684. bottom: 0.025
  21685. }
  21686. },
  21687. feral: {
  21688. height: math.unit(4, "feet"),
  21689. weight: math.unit(200, "lb"),
  21690. name: "Feral",
  21691. image: {
  21692. source: "./media/characters/arador/feral.svg",
  21693. extra: 1683 / 1514,
  21694. bottom: 0.07
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(8 + 3 / 12, "feet")
  21702. },
  21703. {
  21704. name: "Macro",
  21705. height: math.unit(82.5, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(5 + 10 / 12, "feet"),
  21715. weight: math.unit(125, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/dharsi/front.svg",
  21719. extra: 716 / 630,
  21720. bottom: 0.035
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Nano",
  21727. height: math.unit(100, "nm")
  21728. },
  21729. {
  21730. name: "Micro",
  21731. height: math.unit(2, "inches")
  21732. },
  21733. {
  21734. name: "Normal",
  21735. height: math.unit(5 + 10 / 12, "feet"),
  21736. default: true
  21737. },
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(1000, "feet")
  21741. },
  21742. {
  21743. name: "Megamacro",
  21744. height: math.unit(10, "miles")
  21745. },
  21746. {
  21747. name: "Gigamacro",
  21748. height: math.unit(3000, "miles")
  21749. },
  21750. {
  21751. name: "Teramacro",
  21752. height: math.unit(500000, "miles")
  21753. },
  21754. {
  21755. name: "Teramacro+",
  21756. height: math.unit(30, "galaxies")
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(6, "feet"),
  21765. weight: math.unit(150, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/deathy/front.svg",
  21769. extra: 1552 / 1463,
  21770. bottom: 0.025
  21771. }
  21772. },
  21773. side: {
  21774. height: math.unit(6, "feet"),
  21775. weight: math.unit(150, "lb"),
  21776. name: "Side",
  21777. image: {
  21778. source: "./media/characters/deathy/side.svg",
  21779. extra: 1604 / 1455,
  21780. bottom: 0.025
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(6, "feet"),
  21785. weight: math.unit(150, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/deathy/back.svg",
  21789. extra: 1580 / 1463,
  21790. bottom: 0.005
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Micro",
  21797. height: math.unit(5, "millimeters")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(6 + 5 / 12, "feet"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21808. {
  21809. front: {
  21810. height: math.unit(16, "feet"),
  21811. weight: math.unit(4000, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/juniper/front.svg",
  21815. bottom: 0.04
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(16, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(6, "feet"),
  21832. weight: math.unit(150, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/hipster/front.svg",
  21836. extra: 1312 / 1209,
  21837. bottom: 0.025
  21838. }
  21839. },
  21840. back: {
  21841. height: math.unit(6, "feet"),
  21842. weight: math.unit(150, "lb"),
  21843. name: "Back",
  21844. image: {
  21845. source: "./media/characters/hipster/back.svg",
  21846. extra: 1281 / 1196,
  21847. bottom: 0.01
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Micro",
  21854. height: math.unit(1, "mm")
  21855. },
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(4, "inches"),
  21859. default: true
  21860. },
  21861. {
  21862. name: "Macro",
  21863. height: math.unit(500, "feet")
  21864. },
  21865. {
  21866. name: "Megamacro",
  21867. height: math.unit(1000, "miles")
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(6, "feet"),
  21876. weight: math.unit(150, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/tendirmuldr/front.svg",
  21880. extra: 1878 / 1772,
  21881. bottom: 0.015
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Megamacro",
  21888. height: math.unit(1500, "miles"),
  21889. default: true
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21895. {
  21896. front: {
  21897. height: math.unit(14, "feet"),
  21898. weight: math.unit(12000, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/mort/front.svg",
  21902. extra: 365 / 318,
  21903. bottom: 0.01
  21904. }
  21905. },
  21906. side: {
  21907. height: math.unit(14, "feet"),
  21908. weight: math.unit(12000, "lb"),
  21909. name: "Side",
  21910. image: {
  21911. source: "./media/characters/mort/side.svg",
  21912. extra: 365 / 318,
  21913. bottom: 0.052
  21914. },
  21915. default: true
  21916. },
  21917. back: {
  21918. height: math.unit(14, "feet"),
  21919. weight: math.unit(12000, "lb"),
  21920. name: "Back",
  21921. image: {
  21922. source: "./media/characters/mort/back.svg",
  21923. extra: 371 / 332,
  21924. bottom: 0.18
  21925. }
  21926. },
  21927. },
  21928. [
  21929. {
  21930. name: "Normal",
  21931. height: math.unit(14, "feet"),
  21932. default: true
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21938. {
  21939. front: {
  21940. height: math.unit(8, "feet"),
  21941. weight: math.unit(1, "ton"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/lycoa/front.svg",
  21945. extra: 1836/1728,
  21946. bottom: 81/1917
  21947. }
  21948. },
  21949. back: {
  21950. height: math.unit(8, "feet"),
  21951. weight: math.unit(1, "ton"),
  21952. name: "Back",
  21953. image: {
  21954. source: "./media/characters/lycoa/back.svg",
  21955. extra: 1785/1720,
  21956. bottom: 91/1876
  21957. }
  21958. },
  21959. head: {
  21960. height: math.unit(1.6243, "feet"),
  21961. name: "Head",
  21962. image: {
  21963. source: "./media/characters/lycoa/head.svg",
  21964. extra: 1011/782,
  21965. bottom: 0/1011
  21966. }
  21967. },
  21968. tailmaw: {
  21969. height: math.unit(1.9, "feet"),
  21970. name: "Tailmaw",
  21971. image: {
  21972. source: "./media/characters/lycoa/tailmaw.svg"
  21973. }
  21974. },
  21975. tentacles: {
  21976. height: math.unit(2.1, "feet"),
  21977. name: "Tentacles",
  21978. image: {
  21979. source: "./media/characters/lycoa/tentacles.svg"
  21980. }
  21981. },
  21982. dick: {
  21983. height: math.unit(1.73, "feet"),
  21984. name: "Dick",
  21985. image: {
  21986. source: "./media/characters/lycoa/dick.svg"
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(8, "feet"),
  21994. default: true
  21995. },
  21996. {
  21997. name: "Macro",
  21998. height: math.unit(30, "feet")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22004. {
  22005. front: {
  22006. height: math.unit(4 + 2 / 12, "feet"),
  22007. weight: math.unit(70, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/naldara/front.svg",
  22011. extra: 1664/1387,
  22012. bottom: 81/1745
  22013. },
  22014. form: "anthro",
  22015. default: true
  22016. },
  22017. naga: {
  22018. height: math.unit(20, "feet"),
  22019. weight: math.unit(15000, "kg"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/naldara/naga.svg",
  22023. extra: 1590/1396,
  22024. bottom: 285/1875
  22025. },
  22026. form: "naga",
  22027. default: true
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(4 + 2 / 12, "feet"),
  22034. form: "anthro",
  22035. default: true
  22036. },
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(20, "feet"),
  22040. form: "naga",
  22041. default: true
  22042. },
  22043. ],
  22044. {
  22045. "anthro": {
  22046. name: "Anthro",
  22047. default: true
  22048. },
  22049. "naga": {
  22050. name: "Naga"
  22051. }
  22052. }
  22053. ))
  22054. characterMakers.push(() => makeCharacter(
  22055. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22056. {
  22057. front: {
  22058. height: math.unit(13 + 7 / 12, "feet"),
  22059. weight: math.unit(1500, "lb"),
  22060. name: "Front",
  22061. image: {
  22062. source: "./media/characters/briar/front.svg",
  22063. extra: 1223/1157,
  22064. bottom: 123/1346
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(13 + 7 / 12, "feet"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22078. {
  22079. side: {
  22080. height: math.unit(16, "feet"),
  22081. weight: math.unit(500, "lb"),
  22082. name: "Side",
  22083. image: {
  22084. source: "./media/characters/vanguard/side.svg",
  22085. extra: 1022/914,
  22086. bottom: 30/1052
  22087. }
  22088. },
  22089. sideAlt: {
  22090. height: math.unit(10, "feet"),
  22091. weight: math.unit(500, "lb"),
  22092. name: "Side (Alt)",
  22093. image: {
  22094. source: "./media/characters/vanguard/side-alt.svg",
  22095. extra: 502 / 425,
  22096. bottom: 0.087
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(17.71, "feet"),
  22104. default: true
  22105. },
  22106. ]
  22107. ))
  22108. characterMakers.push(() => makeCharacter(
  22109. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22110. {
  22111. front: {
  22112. height: math.unit(7.5, "feet"),
  22113. weight: math.unit(2, "lb"),
  22114. name: "Front",
  22115. image: {
  22116. source: "./media/characters/artemis/work-safe-front.svg",
  22117. extra: 1192 / 1075,
  22118. bottom: 0.07
  22119. },
  22120. form: "work-safe",
  22121. default: true
  22122. },
  22123. frontNsfw: {
  22124. height: math.unit(7.5, "feet"),
  22125. weight: math.unit(2, "lb"),
  22126. name: "Front",
  22127. image: {
  22128. source: "./media/characters/artemis/calibrating-front.svg",
  22129. extra: 1192 / 1075,
  22130. bottom: 0.07
  22131. },
  22132. form: "calibrating",
  22133. default: true
  22134. },
  22135. frontNsfwer: {
  22136. height: math.unit(7.5, "feet"),
  22137. weight: math.unit(2, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/artemis/oversize-load-front.svg",
  22141. extra: 1192 / 1075,
  22142. bottom: 0.07
  22143. },
  22144. form: "oversize-load",
  22145. default: true
  22146. },
  22147. side: {
  22148. height: math.unit(7.5, "feet"),
  22149. weight: math.unit(2, "lb"),
  22150. name: "Side",
  22151. image: {
  22152. source: "./media/characters/artemis/work-safe-side.svg",
  22153. extra: 1192 / 1075,
  22154. bottom: 0.07
  22155. },
  22156. form: "work-safe"
  22157. },
  22158. sideNsfw: {
  22159. height: math.unit(7.5, "feet"),
  22160. weight: math.unit(2, "lb"),
  22161. name: "Side",
  22162. image: {
  22163. source: "./media/characters/artemis/calibrating-side.svg",
  22164. extra: 1192 / 1075,
  22165. bottom: 0.07
  22166. },
  22167. form: "calibrating"
  22168. },
  22169. sideNsfwer: {
  22170. height: math.unit(7.5, "feet"),
  22171. weight: math.unit(2, "lb"),
  22172. name: "Side",
  22173. image: {
  22174. source: "./media/characters/artemis/oversize-load-side.svg",
  22175. extra: 1192 / 1075,
  22176. bottom: 0.07
  22177. },
  22178. form: "oversize-load"
  22179. },
  22180. maw: {
  22181. height: math.unit(1.1, "feet"),
  22182. name: "Maw",
  22183. image: {
  22184. source: "./media/characters/artemis/maw.svg"
  22185. },
  22186. form: "work-safe"
  22187. },
  22188. stomach: {
  22189. height: math.unit(0.95, "feet"),
  22190. name: "Stomach",
  22191. image: {
  22192. source: "./media/characters/artemis/stomach.svg"
  22193. },
  22194. form: "work-safe"
  22195. },
  22196. dickCanine: {
  22197. height: math.unit(1, "feet"),
  22198. name: "Dick (Canine)",
  22199. image: {
  22200. source: "./media/characters/artemis/dick-canine.svg"
  22201. },
  22202. form: "calibrating"
  22203. },
  22204. dickEquine: {
  22205. height: math.unit(0.85, "feet"),
  22206. name: "Dick (Equine)",
  22207. image: {
  22208. source: "./media/characters/artemis/dick-equine.svg"
  22209. },
  22210. form: "calibrating"
  22211. },
  22212. dickExotic: {
  22213. height: math.unit(0.85, "feet"),
  22214. name: "Dick (Exotic)",
  22215. image: {
  22216. source: "./media/characters/artemis/dick-exotic.svg"
  22217. },
  22218. form: "calibrating"
  22219. },
  22220. dickCanineBigger: {
  22221. height: math.unit(1 * 1.33, "feet"),
  22222. name: "Dick (Canine)",
  22223. image: {
  22224. source: "./media/characters/artemis/dick-canine.svg"
  22225. },
  22226. form: "oversize-load"
  22227. },
  22228. dickEquineBigger: {
  22229. height: math.unit(0.85 * 1.33, "feet"),
  22230. name: "Dick (Equine)",
  22231. image: {
  22232. source: "./media/characters/artemis/dick-equine.svg"
  22233. },
  22234. form: "oversize-load"
  22235. },
  22236. dickExoticBigger: {
  22237. height: math.unit(0.85 * 1.33, "feet"),
  22238. name: "Dick (Exotic)",
  22239. image: {
  22240. source: "./media/characters/artemis/dick-exotic.svg"
  22241. },
  22242. form: "oversize-load"
  22243. },
  22244. },
  22245. [
  22246. {
  22247. name: "Normal",
  22248. height: math.unit(7.5, "feet"),
  22249. form: "work-safe",
  22250. default: true
  22251. },
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(7.5, "feet"),
  22255. form: "calibrating",
  22256. default: true
  22257. },
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(7.5, "feet"),
  22261. form: "oversize-load",
  22262. default: true
  22263. },
  22264. {
  22265. name: "Enlarged",
  22266. height: math.unit(12, "feet"),
  22267. form: "work-safe",
  22268. },
  22269. {
  22270. name: "Enlarged",
  22271. height: math.unit(12, "feet"),
  22272. form: "calibrating",
  22273. },
  22274. {
  22275. name: "Enlarged",
  22276. height: math.unit(12, "feet"),
  22277. form: "oversize-load",
  22278. },
  22279. ],
  22280. {
  22281. "work-safe": {
  22282. name: "Work-Safe",
  22283. default: true
  22284. },
  22285. "calibrating": {
  22286. name: "Calibrating"
  22287. },
  22288. "oversize-load": {
  22289. name: "Oversize Load"
  22290. }
  22291. }
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(5 + 3 / 12, "feet"),
  22298. weight: math.unit(160, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/kira/front.svg",
  22302. extra: 906 / 786,
  22303. bottom: 0.01
  22304. }
  22305. },
  22306. back: {
  22307. height: math.unit(5 + 3 / 12, "feet"),
  22308. weight: math.unit(160, "lb"),
  22309. name: "Back",
  22310. image: {
  22311. source: "./media/characters/kira/back.svg",
  22312. extra: 882 / 757,
  22313. bottom: 0.005
  22314. }
  22315. },
  22316. frontDressed: {
  22317. height: math.unit(5 + 3 / 12, "feet"),
  22318. weight: math.unit(160, "lb"),
  22319. name: "Front (Dressed)",
  22320. image: {
  22321. source: "./media/characters/kira/front-dressed.svg",
  22322. extra: 906 / 786,
  22323. bottom: 0.01
  22324. }
  22325. },
  22326. beans: {
  22327. height: math.unit(0.92, "feet"),
  22328. name: "Beans",
  22329. image: {
  22330. source: "./media/characters/kira/beans.svg"
  22331. }
  22332. },
  22333. },
  22334. [
  22335. {
  22336. name: "Normal",
  22337. height: math.unit(5 + 3 / 12, "feet"),
  22338. default: true
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(5 + 4 / 12, "feet"),
  22347. weight: math.unit(145, "lb"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/scramble/front.svg",
  22351. extra: 763 / 727,
  22352. bottom: 0.05
  22353. }
  22354. },
  22355. back: {
  22356. height: math.unit(5 + 4 / 12, "feet"),
  22357. weight: math.unit(145, "lb"),
  22358. name: "Back",
  22359. image: {
  22360. source: "./media/characters/scramble/back.svg",
  22361. extra: 826 / 737,
  22362. bottom: 0.002
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Normal",
  22369. height: math.unit(5 + 4 / 12, "feet"),
  22370. default: true
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22376. {
  22377. side: {
  22378. height: math.unit(6 + 2 / 12, "feet"),
  22379. weight: math.unit(190, "lb"),
  22380. name: "Side",
  22381. image: {
  22382. source: "./media/characters/biscuit/side.svg",
  22383. extra: 858 / 791,
  22384. bottom: 0.044
  22385. }
  22386. },
  22387. },
  22388. [
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(6 + 2 / 12, "feet"),
  22392. default: true
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22398. {
  22399. front: {
  22400. height: math.unit(5 + 2 / 12, "feet"),
  22401. weight: math.unit(120, "lb"),
  22402. name: "Front",
  22403. image: {
  22404. source: "./media/characters/poffin/front.svg",
  22405. extra: 786 / 680,
  22406. bottom: 0.005
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(5 + 2 / 12, "feet"),
  22414. default: true
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(6 + 3 / 12, "feet"),
  22423. weight: math.unit(519, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/dhari/front.svg",
  22427. extra: 1048 / 946,
  22428. bottom: 0.015
  22429. }
  22430. },
  22431. back: {
  22432. height: math.unit(6 + 3 / 12, "feet"),
  22433. weight: math.unit(519, "lb"),
  22434. name: "Back",
  22435. image: {
  22436. source: "./media/characters/dhari/back.svg",
  22437. extra: 1048 / 931,
  22438. bottom: 0.005
  22439. }
  22440. },
  22441. frontDressed: {
  22442. height: math.unit(6 + 3 / 12, "feet"),
  22443. weight: math.unit(519, "lb"),
  22444. name: "Front (Dressed)",
  22445. image: {
  22446. source: "./media/characters/dhari/front-dressed.svg",
  22447. extra: 1713 / 1546,
  22448. bottom: 0.02
  22449. }
  22450. },
  22451. backDressed: {
  22452. height: math.unit(6 + 3 / 12, "feet"),
  22453. weight: math.unit(519, "lb"),
  22454. name: "Back (Dressed)",
  22455. image: {
  22456. source: "./media/characters/dhari/back-dressed.svg",
  22457. extra: 1699 / 1537,
  22458. bottom: 0.01
  22459. }
  22460. },
  22461. maw: {
  22462. height: math.unit(0.95, "feet"),
  22463. name: "Maw",
  22464. image: {
  22465. source: "./media/characters/dhari/maw.svg"
  22466. }
  22467. },
  22468. wereFront: {
  22469. height: math.unit(12 + 8 / 12, "feet"),
  22470. weight: math.unit(4000, "lb"),
  22471. name: "Front (Were)",
  22472. image: {
  22473. source: "./media/characters/dhari/were-front.svg",
  22474. extra: 1065 / 969,
  22475. bottom: 0.015
  22476. }
  22477. },
  22478. wereBack: {
  22479. height: math.unit(12 + 8 / 12, "feet"),
  22480. weight: math.unit(4000, "lb"),
  22481. name: "Back (Were)",
  22482. image: {
  22483. source: "./media/characters/dhari/were-back.svg",
  22484. extra: 1065 / 969,
  22485. bottom: 0.012
  22486. }
  22487. },
  22488. wereMaw: {
  22489. height: math.unit(0.625, "meters"),
  22490. name: "Maw (Were)",
  22491. image: {
  22492. source: "./media/characters/dhari/were-maw.svg"
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(6 + 3 / 12, "feet"),
  22500. default: true
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22506. {
  22507. anthro: {
  22508. height: math.unit(5 + 7 / 12, "feet"),
  22509. weight: math.unit(175, "lb"),
  22510. name: "Anthro",
  22511. image: {
  22512. source: "./media/characters/rena-dyne/anthro.svg",
  22513. extra: 1849 / 1785,
  22514. bottom: 0.005
  22515. }
  22516. },
  22517. taur: {
  22518. height: math.unit(15 + 6 / 12, "feet"),
  22519. weight: math.unit(8000, "lb"),
  22520. name: "Taur",
  22521. image: {
  22522. source: "./media/characters/rena-dyne/taur.svg",
  22523. extra: 2315 / 2234,
  22524. bottom: 0.033
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Normal",
  22531. height: math.unit(5 + 7 / 12, "feet"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(8, "feet"),
  22541. weight: math.unit(600, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/weremeep/front.svg",
  22545. extra: 970/849,
  22546. bottom: 7/977
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(8, "feet"),
  22554. default: true
  22555. },
  22556. {
  22557. name: "Lorg",
  22558. height: math.unit(12, "feet")
  22559. },
  22560. {
  22561. name: "Oh Lawd She Comin'",
  22562. height: math.unit(20, "feet")
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22568. {
  22569. front: {
  22570. height: math.unit(4, "feet"),
  22571. weight: math.unit(90, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/reza/front.svg",
  22575. extra: 1183 / 1111,
  22576. bottom: 0.017
  22577. }
  22578. },
  22579. back: {
  22580. height: math.unit(4, "feet"),
  22581. weight: math.unit(90, "lb"),
  22582. name: "Back",
  22583. image: {
  22584. source: "./media/characters/reza/back.svg",
  22585. extra: 1183 / 1111,
  22586. bottom: 0.01
  22587. }
  22588. },
  22589. drake: {
  22590. height: math.unit(30, "feet"),
  22591. weight: math.unit(246960, "lb"),
  22592. name: "Drake",
  22593. image: {
  22594. source: "./media/characters/reza/drake.svg",
  22595. extra: 2350 / 2024,
  22596. bottom: 60.7 / 2403
  22597. }
  22598. },
  22599. },
  22600. [
  22601. {
  22602. name: "Normal",
  22603. height: math.unit(4, "feet"),
  22604. default: true
  22605. },
  22606. ]
  22607. ))
  22608. characterMakers.push(() => makeCharacter(
  22609. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22610. {
  22611. side: {
  22612. height: math.unit(15, "feet"),
  22613. weight: math.unit(14, "tons"),
  22614. name: "Side",
  22615. image: {
  22616. source: "./media/characters/athea/side.svg",
  22617. extra: 960 / 540,
  22618. bottom: 0.003
  22619. }
  22620. },
  22621. sitting: {
  22622. height: math.unit(6 * 2.85, "feet"),
  22623. weight: math.unit(14, "tons"),
  22624. name: "Sitting",
  22625. image: {
  22626. source: "./media/characters/athea/sitting.svg",
  22627. extra: 621 / 581,
  22628. bottom: 0.075
  22629. }
  22630. },
  22631. maw: {
  22632. height: math.unit(7.59498031496063, "feet"),
  22633. name: "Maw",
  22634. image: {
  22635. source: "./media/characters/athea/maw.svg"
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Lap Cat",
  22642. height: math.unit(2.5, "feet")
  22643. },
  22644. {
  22645. name: "Minimacro",
  22646. height: math.unit(15, "feet"),
  22647. default: true
  22648. },
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(120, "feet")
  22652. },
  22653. {
  22654. name: "Macro+",
  22655. height: math.unit(640, "feet")
  22656. },
  22657. {
  22658. name: "Colossus",
  22659. height: math.unit(2.2, "miles")
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(8 + 8 / 12, "feet"),
  22668. weight: math.unit(130, "kg"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/seroko/front.svg",
  22672. extra: 1385 / 1280,
  22673. bottom: 0.025
  22674. }
  22675. },
  22676. back: {
  22677. height: math.unit(8 + 8 / 12, "feet"),
  22678. weight: math.unit(130, "kg"),
  22679. name: "Back",
  22680. image: {
  22681. source: "./media/characters/seroko/back.svg",
  22682. extra: 1369 / 1238,
  22683. bottom: 0.018
  22684. }
  22685. },
  22686. frontDressed: {
  22687. height: math.unit(8 + 8 / 12, "feet"),
  22688. weight: math.unit(130, "kg"),
  22689. name: "Front (Dressed)",
  22690. image: {
  22691. source: "./media/characters/seroko/front-dressed.svg",
  22692. extra: 1366 / 1275,
  22693. bottom: 0.03
  22694. }
  22695. },
  22696. },
  22697. [
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(8 + 8 / 12, "feet"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(5.5, "feet"),
  22710. weight: math.unit(160, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/quatzi/front.svg",
  22714. extra: 2346 / 2242,
  22715. bottom: 0.015
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(5.5, "feet"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Big",
  22727. height: math.unit(7.7, "feet")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(5 + 11 / 12, "feet"),
  22736. weight: math.unit(180, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/sen/front.svg",
  22740. extra: 1321 / 1254,
  22741. bottom: 0.015
  22742. }
  22743. },
  22744. side: {
  22745. height: math.unit(5 + 11 / 12, "feet"),
  22746. weight: math.unit(180, "lb"),
  22747. name: "Side",
  22748. image: {
  22749. source: "./media/characters/sen/side.svg",
  22750. extra: 1321 / 1254,
  22751. bottom: 0.007
  22752. }
  22753. },
  22754. back: {
  22755. height: math.unit(5 + 11 / 12, "feet"),
  22756. weight: math.unit(180, "lb"),
  22757. name: "Back",
  22758. image: {
  22759. source: "./media/characters/sen/back.svg",
  22760. extra: 1321 / 1254
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(5 + 11 / 12, "feet"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(166.6, "cm"),
  22777. weight: math.unit(66.6, "kg"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/fruity/front.svg",
  22781. extra: 1510 / 1386,
  22782. bottom: 0.04
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(166.6, "cm"),
  22787. weight: math.unit(66.6, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/fruity/back.svg",
  22791. extra: 1563 / 1435,
  22792. bottom: 0.005
  22793. }
  22794. },
  22795. },
  22796. [
  22797. {
  22798. name: "Normal",
  22799. height: math.unit(166.6, "cm"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Demonic",
  22804. height: math.unit(166.6, "feet")
  22805. },
  22806. ]
  22807. ))
  22808. characterMakers.push(() => makeCharacter(
  22809. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22810. {
  22811. side: {
  22812. height: math.unit(10, "feet"),
  22813. weight: math.unit(500, "lb"),
  22814. name: "Side",
  22815. image: {
  22816. source: "./media/characters/zost/side.svg",
  22817. extra: 2870/2533,
  22818. bottom: 252/3122
  22819. }
  22820. },
  22821. mawFront: {
  22822. height: math.unit(1.08, "meters"),
  22823. name: "Maw (Front)",
  22824. image: {
  22825. source: "./media/characters/zost/maw-front.svg"
  22826. }
  22827. },
  22828. mawSide: {
  22829. height: math.unit(2.66, "feet"),
  22830. name: "Maw (Side)",
  22831. image: {
  22832. source: "./media/characters/zost/maw-side.svg"
  22833. }
  22834. },
  22835. wingspan: {
  22836. height: math.unit(7.4, "feet"),
  22837. name: "Wingspan",
  22838. image: {
  22839. source: "./media/characters/zost/wingspan.svg"
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Normal",
  22846. height: math.unit(10, "feet"),
  22847. default: true
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(5 + 4 / 12, "feet"),
  22856. weight: math.unit(120, "lb"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/luci/front.svg",
  22860. extra: 1985 / 1884,
  22861. bottom: 0.04
  22862. }
  22863. },
  22864. back: {
  22865. height: math.unit(5 + 4 / 12, "feet"),
  22866. weight: math.unit(120, "lb"),
  22867. name: "Back",
  22868. image: {
  22869. source: "./media/characters/luci/back.svg",
  22870. extra: 1892 / 1791,
  22871. bottom: 0.002
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Normal",
  22878. height: math.unit(5 + 4 / 12, "feet"),
  22879. default: true
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(1500, "feet"),
  22888. weight: math.unit(3.8e6, "tons"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/2th/front.svg",
  22892. extra: 3489 / 3350,
  22893. bottom: 0.1
  22894. }
  22895. },
  22896. foot: {
  22897. height: math.unit(461, "feet"),
  22898. name: "Foot",
  22899. image: {
  22900. source: "./media/characters/2th/foot.svg"
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "\"Micro\"",
  22907. height: math.unit(15 + 7 / 12, "feet")
  22908. },
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(1500, "feet"),
  22912. default: true
  22913. },
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(5000, "feet")
  22917. },
  22918. {
  22919. name: "Megamacro",
  22920. height: math.unit(15, "miles")
  22921. },
  22922. {
  22923. name: "Gigamacro",
  22924. height: math.unit(4000, "miles")
  22925. },
  22926. {
  22927. name: "Galactic",
  22928. height: math.unit(50, "AU")
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(5 + 6 / 12, "feet"),
  22937. weight: math.unit(220, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/amethyst/front.svg",
  22941. extra: 2078 / 2040,
  22942. bottom: 0.045
  22943. }
  22944. },
  22945. back: {
  22946. height: math.unit(5 + 6 / 12, "feet"),
  22947. weight: math.unit(220, "lb"),
  22948. name: "Back",
  22949. image: {
  22950. source: "./media/characters/amethyst/back.svg",
  22951. extra: 2021 / 1989,
  22952. bottom: 0.02
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(5 + 6 / 12, "feet"),
  22960. default: true
  22961. },
  22962. ]
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22966. {
  22967. front: {
  22968. height: math.unit(4 + 11 / 12, "feet"),
  22969. weight: math.unit(120, "lb"),
  22970. name: "Front",
  22971. image: {
  22972. source: "./media/characters/yumi-akiyama/front.svg",
  22973. extra: 1327 / 1235,
  22974. bottom: 0.02
  22975. }
  22976. },
  22977. back: {
  22978. height: math.unit(4 + 11 / 12, "feet"),
  22979. weight: math.unit(120, "lb"),
  22980. name: "Back",
  22981. image: {
  22982. source: "./media/characters/yumi-akiyama/back.svg",
  22983. extra: 1287 / 1245,
  22984. bottom: 0.002
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Galactic",
  22991. height: math.unit(50, "galaxies"),
  22992. default: true
  22993. },
  22994. {
  22995. name: "Universal",
  22996. height: math.unit(100, "universes")
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(8, "feet"),
  23005. weight: math.unit(500, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/rifter-yrmori/front.svg",
  23009. extra: 1180 / 1125,
  23010. bottom: 0.02
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(8, "feet"),
  23015. weight: math.unit(500, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/rifter-yrmori/back.svg",
  23019. extra: 1190 / 1145,
  23020. bottom: 0.001
  23021. }
  23022. },
  23023. wings: {
  23024. height: math.unit(7.75, "feet"),
  23025. weight: math.unit(500, "lb"),
  23026. name: "Wings",
  23027. image: {
  23028. source: "./media/characters/rifter-yrmori/wings.svg",
  23029. extra: 1357 / 1285
  23030. }
  23031. },
  23032. maw: {
  23033. height: math.unit(0.8, "feet"),
  23034. name: "Maw",
  23035. image: {
  23036. source: "./media/characters/rifter-yrmori/maw.svg"
  23037. }
  23038. },
  23039. mawfront: {
  23040. height: math.unit(1.45, "feet"),
  23041. name: "Maw (Front)",
  23042. image: {
  23043. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Normal",
  23050. height: math.unit(8, "feet"),
  23051. default: true
  23052. },
  23053. {
  23054. name: "Macro",
  23055. height: math.unit(42, "meters")
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23061. {
  23062. were: {
  23063. height: math.unit(25 + 6 / 12, "feet"),
  23064. weight: math.unit(10000, "lb"),
  23065. name: "Were",
  23066. image: {
  23067. source: "./media/characters/tahajin/were.svg",
  23068. extra: 801 / 770,
  23069. bottom: 0.042
  23070. }
  23071. },
  23072. aquatic: {
  23073. height: math.unit(6 + 4 / 12, "feet"),
  23074. weight: math.unit(160, "lb"),
  23075. name: "Aquatic",
  23076. image: {
  23077. source: "./media/characters/tahajin/aquatic.svg",
  23078. extra: 572 / 542,
  23079. bottom: 0.04
  23080. }
  23081. },
  23082. chow: {
  23083. height: math.unit(8 + 11 / 12, "feet"),
  23084. weight: math.unit(450, "lb"),
  23085. name: "Chow",
  23086. image: {
  23087. source: "./media/characters/tahajin/chow.svg",
  23088. extra: 660 / 640,
  23089. bottom: 0.015
  23090. }
  23091. },
  23092. demiNaga: {
  23093. height: math.unit(6 + 8 / 12, "feet"),
  23094. weight: math.unit(300, "lb"),
  23095. name: "Demi Naga",
  23096. image: {
  23097. source: "./media/characters/tahajin/demi-naga.svg",
  23098. extra: 643 / 615,
  23099. bottom: 0.1
  23100. }
  23101. },
  23102. data: {
  23103. height: math.unit(5, "inches"),
  23104. weight: math.unit(0.1, "lb"),
  23105. name: "Data",
  23106. image: {
  23107. source: "./media/characters/tahajin/data.svg"
  23108. }
  23109. },
  23110. fluu: {
  23111. height: math.unit(5 + 7 / 12, "feet"),
  23112. weight: math.unit(140, "lb"),
  23113. name: "Fluu",
  23114. image: {
  23115. source: "./media/characters/tahajin/fluu.svg",
  23116. extra: 628 / 592,
  23117. bottom: 0.02
  23118. }
  23119. },
  23120. starWarrior: {
  23121. height: math.unit(4 + 5 / 12, "feet"),
  23122. weight: math.unit(50, "lb"),
  23123. name: "Star Warrior",
  23124. image: {
  23125. source: "./media/characters/tahajin/star-warrior.svg"
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Normal",
  23132. height: math.unit(25 + 6 / 12, "feet"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(8, "feet"),
  23142. weight: math.unit(350, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/gabira/front.svg",
  23146. extra: 1261/1154,
  23147. bottom: 51/1312
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(8, "feet"),
  23152. weight: math.unit(350, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/gabira/back.svg",
  23156. extra: 1265/1163,
  23157. bottom: 46/1311
  23158. }
  23159. },
  23160. head: {
  23161. height: math.unit(2.85, "feet"),
  23162. name: "Head",
  23163. image: {
  23164. source: "./media/characters/gabira/head.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Normal",
  23171. height: math.unit(8, "feet"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(5 + 3 / 12, "feet"),
  23181. weight: math.unit(137, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/sasha-katraine/front.svg",
  23185. extra: 1745/1694,
  23186. bottom: 37/1782
  23187. }
  23188. },
  23189. back: {
  23190. height: math.unit(5 + 3 / 12, "feet"),
  23191. weight: math.unit(137, "lb"),
  23192. name: "Back",
  23193. image: {
  23194. source: "./media/characters/sasha-katraine/back.svg",
  23195. extra: 1776/1699,
  23196. bottom: 26/1802
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Micro",
  23203. height: math.unit(5, "inches")
  23204. },
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(5 + 3 / 12, "feet"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23214. {
  23215. side: {
  23216. height: math.unit(4, "inches"),
  23217. weight: math.unit(200, "grams"),
  23218. name: "Side",
  23219. image: {
  23220. source: "./media/characters/der/side.svg",
  23221. extra: 719 / 400,
  23222. bottom: 30.6 / 749.9187
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Micro",
  23229. height: math.unit(4, "inches"),
  23230. default: true
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23236. {
  23237. side: {
  23238. height: math.unit(30, "meters"),
  23239. weight: math.unit(700, "tonnes"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/fixerdragon/side.svg",
  23243. extra: (1293.0514 - 116.03) / 1106.86,
  23244. bottom: 116.03 / 1293.0514
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Planck",
  23251. height: math.unit(1.6e-35, "meters")
  23252. },
  23253. {
  23254. name: "Micro",
  23255. height: math.unit(0.4, "meters")
  23256. },
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(30, "meters"),
  23260. default: true
  23261. },
  23262. {
  23263. name: "Megamacro",
  23264. height: math.unit(1.2, "megameters")
  23265. },
  23266. {
  23267. name: "Teramacro",
  23268. height: math.unit(130, "terameters")
  23269. },
  23270. {
  23271. name: "Yottamacro",
  23272. height: math.unit(6200, "yottameters")
  23273. },
  23274. ]
  23275. ));
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23278. {
  23279. front: {
  23280. height: math.unit(8, "feet"),
  23281. weight: math.unit(250, "lb"),
  23282. name: "Front",
  23283. image: {
  23284. source: "./media/characters/kite/front.svg",
  23285. extra: 2796 / 2659,
  23286. bottom: 0.002
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(8, "feet"),
  23294. default: true
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(360, "feet")
  23299. },
  23300. {
  23301. name: "Megamacro",
  23302. height: math.unit(1500, "feet")
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(5 + 11/12, "feet"),
  23311. weight: math.unit(170, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/poojawa-vynar/front.svg",
  23315. extra: 1735/1585,
  23316. bottom: 96/1831
  23317. }
  23318. },
  23319. back: {
  23320. height: math.unit(5 + 11/12, "feet"),
  23321. weight: math.unit(170, "lb"),
  23322. name: "Back",
  23323. image: {
  23324. source: "./media/characters/poojawa-vynar/back.svg",
  23325. extra: 1749/1607,
  23326. bottom: 28/1777
  23327. }
  23328. },
  23329. male: {
  23330. height: math.unit(5 + 11/12, "feet"),
  23331. weight: math.unit(170, "lb"),
  23332. name: "Male",
  23333. image: {
  23334. source: "./media/characters/poojawa-vynar/male.svg",
  23335. extra: 1855/1713,
  23336. bottom: 63/1918
  23337. }
  23338. },
  23339. taur: {
  23340. height: math.unit(5 + 11/12, "feet"),
  23341. weight: math.unit(170, "lb"),
  23342. name: "Taur",
  23343. image: {
  23344. source: "./media/characters/poojawa-vynar/taur.svg",
  23345. extra: 1151/1059,
  23346. bottom: 356/1507
  23347. }
  23348. },
  23349. frontDressed: {
  23350. height: math.unit(5 + 11/12, "feet"),
  23351. weight: math.unit(170, "lb"),
  23352. name: "Front (Dressed)",
  23353. image: {
  23354. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23355. extra: 1735/1585,
  23356. bottom: 96/1831
  23357. }
  23358. },
  23359. backDressed: {
  23360. height: math.unit(5 + 11/12, "feet"),
  23361. weight: math.unit(170, "lb"),
  23362. name: "Back (Dressed)",
  23363. image: {
  23364. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23365. extra: 1749/1607,
  23366. bottom: 28/1777
  23367. }
  23368. },
  23369. maleDressed: {
  23370. height: math.unit(5 + 11/12, "feet"),
  23371. weight: math.unit(170, "lb"),
  23372. name: "Male (Dressed)",
  23373. image: {
  23374. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23375. extra: 1855/1713,
  23376. bottom: 63/1918
  23377. }
  23378. },
  23379. taurDressed: {
  23380. height: math.unit(5 + 11/12, "feet"),
  23381. weight: math.unit(170, "lb"),
  23382. name: "Taur (Dressed)",
  23383. image: {
  23384. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23385. extra: 1151/1059,
  23386. bottom: 356/1507
  23387. }
  23388. },
  23389. maw: {
  23390. height: math.unit(1.46, "feet"),
  23391. name: "Maw",
  23392. image: {
  23393. source: "./media/characters/poojawa-vynar/maw.svg"
  23394. }
  23395. },
  23396. head: {
  23397. height: math.unit(2.34, "feet"),
  23398. name: "Head",
  23399. image: {
  23400. source: "./media/characters/poojawa-vynar/head.svg"
  23401. }
  23402. },
  23403. paw: {
  23404. height: math.unit(1.61, "feet"),
  23405. name: "Paw",
  23406. image: {
  23407. source: "./media/characters/poojawa-vynar/paw.svg"
  23408. }
  23409. },
  23410. pawToering: {
  23411. height: math.unit(1.72, "feet"),
  23412. name: "Paw (Toering)",
  23413. image: {
  23414. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23415. }
  23416. },
  23417. toering: {
  23418. height: math.unit(2.9, "inches"),
  23419. name: "Toering",
  23420. image: {
  23421. source: "./media/characters/poojawa-vynar/toering.svg"
  23422. }
  23423. },
  23424. shaft: {
  23425. height: math.unit(0.625, "feet"),
  23426. name: "Shaft",
  23427. image: {
  23428. source: "./media/characters/poojawa-vynar/shaft.svg"
  23429. }
  23430. },
  23431. spade: {
  23432. height: math.unit(0.42, "feet"),
  23433. name: "Spade",
  23434. image: {
  23435. source: "./media/characters/poojawa-vynar/spade.svg"
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Shortstack",
  23442. height: math.unit(4, "feet")
  23443. },
  23444. {
  23445. name: "Normal",
  23446. height: math.unit(5 + 11 / 12, "feet"),
  23447. default: true
  23448. },
  23449. {
  23450. name: "Tauric",
  23451. height: math.unit(4, "meters")
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23457. {
  23458. front: {
  23459. height: math.unit(293, "meters"),
  23460. weight: math.unit(70400, "tons"),
  23461. name: "Front",
  23462. image: {
  23463. source: "./media/characters/violette/front.svg",
  23464. extra: 1227 / 1180,
  23465. bottom: 0.005
  23466. }
  23467. },
  23468. back: {
  23469. height: math.unit(293, "meters"),
  23470. weight: math.unit(70400, "tons"),
  23471. name: "Back",
  23472. image: {
  23473. source: "./media/characters/violette/back.svg",
  23474. extra: 1227 / 1180,
  23475. bottom: 0.005
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(293, "meters"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(1050, "feet"),
  23492. weight: math.unit(200000, "tons"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/alessandra/front.svg",
  23496. extra: 960 / 912,
  23497. bottom: 0.06
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Macro",
  23504. height: math.unit(1050, "feet")
  23505. },
  23506. {
  23507. name: "Macro+",
  23508. height: math.unit(900, "meters"),
  23509. default: true
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23515. {
  23516. front: {
  23517. height: math.unit(5, "feet"),
  23518. weight: math.unit(187, "lb"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/person/front.svg",
  23522. extra: 3087 / 2945,
  23523. bottom: 91 / 3181
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Micro",
  23530. height: math.unit(3, "inches")
  23531. },
  23532. {
  23533. name: "Normal",
  23534. height: math.unit(5, "feet"),
  23535. default: true
  23536. },
  23537. {
  23538. name: "Macro",
  23539. height: math.unit(90, "feet")
  23540. },
  23541. {
  23542. name: "Max Size",
  23543. height: math.unit(280, "feet")
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(4.5, "meters"),
  23552. weight: math.unit(3200, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/ty/front.svg",
  23556. extra: 1038 / 960,
  23557. bottom: 31.156 / 1068
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(4.5, "meters"),
  23562. weight: math.unit(3200, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/ty/back.svg",
  23566. extra: 1044 / 966,
  23567. bottom: 7.48 / 1049
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(4.5, "meters"),
  23575. default: true
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(5 + 4 / 12, "feet"),
  23584. weight: math.unit(115, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/rocky/front.svg",
  23588. extra: 1012 / 975,
  23589. bottom: 54 / 1066
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(5 + 4 / 12, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23603. {
  23604. upright: {
  23605. height: math.unit(6, "meters"),
  23606. weight: math.unit(4000, "kg"),
  23607. name: "Upright",
  23608. image: {
  23609. source: "./media/characters/ruin/upright.svg",
  23610. extra: 668 / 661,
  23611. bottom: 42 / 799.8396
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(6, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(5, "feet"),
  23628. weight: math.unit(106, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/robin/front.svg",
  23632. extra: 862 / 799,
  23633. bottom: 42.4 / 914.8856
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(5, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23647. {
  23648. side: {
  23649. height: math.unit(3, "feet"),
  23650. weight: math.unit(225, "lb"),
  23651. name: "Side",
  23652. image: {
  23653. source: "./media/characters/saian/side.svg",
  23654. extra: 566 / 356,
  23655. bottom: 79.7 / 643
  23656. }
  23657. },
  23658. maw: {
  23659. height: math.unit(2.85, "feet"),
  23660. name: "Maw",
  23661. image: {
  23662. source: "./media/characters/saian/maw.svg"
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(3, "feet"),
  23670. default: true
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23676. {
  23677. side: {
  23678. height: math.unit(8, "feet"),
  23679. weight: math.unit(300, "lb"),
  23680. name: "Side",
  23681. image: {
  23682. source: "./media/characters/equus-silvermane/side.svg",
  23683. extra: 2176 / 2050,
  23684. bottom: 65.7 / 2245
  23685. }
  23686. },
  23687. front: {
  23688. height: math.unit(8, "feet"),
  23689. weight: math.unit(300, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/equus-silvermane/front.svg",
  23693. extra: 4633 / 4400,
  23694. bottom: 71.3 / 4706.915
  23695. }
  23696. },
  23697. sideStepping: {
  23698. height: math.unit(8, "feet"),
  23699. weight: math.unit(300, "lb"),
  23700. name: "Side (Stepping)",
  23701. image: {
  23702. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23703. extra: 1968 / 1860,
  23704. bottom: 16.4 / 1989
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(8, "feet")
  23712. },
  23713. {
  23714. name: "Minimacro",
  23715. height: math.unit(75, "feet"),
  23716. default: true
  23717. },
  23718. {
  23719. name: "Macro",
  23720. height: math.unit(150, "feet")
  23721. },
  23722. {
  23723. name: "Macro+",
  23724. height: math.unit(1000, "feet")
  23725. },
  23726. {
  23727. name: "Megamacro",
  23728. height: math.unit(1, "mile")
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23734. {
  23735. side: {
  23736. height: math.unit(20, "feet"),
  23737. weight: math.unit(30000, "kg"),
  23738. name: "Side",
  23739. image: {
  23740. source: "./media/characters/windar/side.svg",
  23741. extra: 1491 / 1248,
  23742. bottom: 82.56 / 1568
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(20, "feet"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23756. {
  23757. side: {
  23758. height: math.unit(15.66, "feet"),
  23759. weight: math.unit(150, "lb"),
  23760. name: "Side",
  23761. image: {
  23762. source: "./media/characters/melody/side.svg",
  23763. extra: 1097 / 944,
  23764. bottom: 11.8 / 1109
  23765. }
  23766. },
  23767. sideOutfit: {
  23768. height: math.unit(15.66, "feet"),
  23769. weight: math.unit(150, "lb"),
  23770. name: "Side (Outfit)",
  23771. image: {
  23772. source: "./media/characters/melody/side-outfit.svg",
  23773. extra: 1097 / 944,
  23774. bottom: 11.8 / 1109
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Normal",
  23781. height: math.unit(15.66, "feet"),
  23782. default: true
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23788. {
  23789. armoredFront: {
  23790. height: math.unit(8, "feet"),
  23791. weight: math.unit(325, "lb"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/windera/armored-front.svg",
  23795. extra: 1830/1598,
  23796. bottom: 151/1981
  23797. },
  23798. form: "armored",
  23799. default: true
  23800. },
  23801. macroFront: {
  23802. height: math.unit(70, "feet"),
  23803. weight: math.unit(315453, "lb"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/windera/macro-front.svg",
  23807. extra: 963/883,
  23808. bottom: 23/986
  23809. },
  23810. form: "macro",
  23811. default: true
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(8, "feet"),
  23818. default: true,
  23819. form: "armored"
  23820. },
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(70, "feet"),
  23824. default: true,
  23825. form: "macro"
  23826. },
  23827. ],
  23828. {
  23829. "armored": {
  23830. name: "Armored",
  23831. default: true
  23832. },
  23833. "macro": {
  23834. name: "Macro",
  23835. },
  23836. }
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23840. {
  23841. front: {
  23842. height: math.unit(28.75, "feet"),
  23843. weight: math.unit(2000, "kg"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/sonear/front.svg",
  23847. extra: 1041.1 / 964.9,
  23848. bottom: 53.7 / 1096.6
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(28.75, "feet"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23862. {
  23863. side: {
  23864. height: math.unit(25.5, "feet"),
  23865. weight: math.unit(23000, "kg"),
  23866. name: "Side",
  23867. image: {
  23868. source: "./media/characters/kanara/side.svg"
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(25.5, "feet"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23882. {
  23883. side: {
  23884. height: math.unit(10, "feet"),
  23885. weight: math.unit(1000, "kg"),
  23886. name: "Side",
  23887. image: {
  23888. source: "./media/characters/ereus/side.svg",
  23889. extra: 1157 / 959,
  23890. bottom: 153 / 1312.5
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Normal",
  23897. height: math.unit(10, "feet"),
  23898. default: true
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23904. {
  23905. side: {
  23906. height: math.unit(4.5, "feet"),
  23907. weight: math.unit(500, "lb"),
  23908. name: "Side",
  23909. image: {
  23910. source: "./media/characters/e-ter/side.svg",
  23911. extra: 1550 / 1248,
  23912. bottom: 146 / 1694
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(4.5, "feet"),
  23920. default: true
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23926. {
  23927. side: {
  23928. height: math.unit(9.7, "feet"),
  23929. weight: math.unit(4000, "kg"),
  23930. name: "Side",
  23931. image: {
  23932. source: "./media/characters/yamie/side.svg"
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(9.7, "feet"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23946. {
  23947. front: {
  23948. height: math.unit(50, "feet"),
  23949. weight: math.unit(50000, "kg"),
  23950. name: "Front",
  23951. image: {
  23952. source: "./media/characters/anders/front.svg",
  23953. extra: 570 / 539,
  23954. bottom: 14.7 / 586.7
  23955. }
  23956. },
  23957. },
  23958. [
  23959. {
  23960. name: "Large",
  23961. height: math.unit(50, "feet")
  23962. },
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(2000, "feet"),
  23966. default: true
  23967. },
  23968. {
  23969. name: "Megamacro",
  23970. height: math.unit(12, "miles")
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23976. {
  23977. front: {
  23978. height: math.unit(7 + 2 / 12, "feet"),
  23979. weight: math.unit(300, "lb"),
  23980. name: "Front",
  23981. image: {
  23982. source: "./media/characters/reban/front.svg",
  23983. extra: 1287/1212,
  23984. bottom: 148/1435
  23985. }
  23986. },
  23987. head: {
  23988. height: math.unit(1.95, "feet"),
  23989. name: "Head",
  23990. image: {
  23991. source: "./media/characters/reban/head.svg"
  23992. }
  23993. },
  23994. maw: {
  23995. height: math.unit(0.95, "feet"),
  23996. name: "Maw",
  23997. image: {
  23998. source: "./media/characters/reban/maw.svg"
  23999. }
  24000. },
  24001. foot: {
  24002. height: math.unit(1.65, "feet"),
  24003. name: "Foot",
  24004. image: {
  24005. source: "./media/characters/reban/foot.svg"
  24006. }
  24007. },
  24008. dick: {
  24009. height: math.unit(7 / 5, "feet"),
  24010. name: "Dick",
  24011. image: {
  24012. source: "./media/characters/reban/dick.svg"
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Natural Height",
  24019. height: math.unit(7 + 2 / 12, "feet")
  24020. },
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(500, "feet"),
  24024. default: true
  24025. },
  24026. {
  24027. name: "Canon Height",
  24028. height: math.unit(50, "AU")
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(6, "feet"),
  24037. weight: math.unit(150, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/terrance-keayes/front.svg",
  24041. extra: 1.005,
  24042. bottom: 151 / 1615
  24043. }
  24044. },
  24045. side: {
  24046. height: math.unit(6, "feet"),
  24047. weight: math.unit(150, "lb"),
  24048. name: "Side",
  24049. image: {
  24050. source: "./media/characters/terrance-keayes/side.svg",
  24051. extra: 1.005,
  24052. bottom: 129.4 / 1544
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(6, "feet"),
  24057. weight: math.unit(150, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/terrance-keayes/back.svg",
  24061. extra: 1.005,
  24062. bottom: 58.4 / 1557.3
  24063. }
  24064. },
  24065. dick: {
  24066. height: math.unit(6 * 0.208, "feet"),
  24067. name: "Dick",
  24068. image: {
  24069. source: "./media/characters/terrance-keayes/dick.svg"
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Canon Height",
  24076. height: math.unit(35, "miles"),
  24077. default: true
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(6, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/ofelia/front.svg",
  24090. extra: 1130/1117,
  24091. bottom: 91/1221
  24092. }
  24093. },
  24094. back: {
  24095. height: math.unit(6, "feet"),
  24096. weight: math.unit(150, "lb"),
  24097. name: "Back",
  24098. image: {
  24099. source: "./media/characters/ofelia/back.svg",
  24100. extra: 1172/1159,
  24101. bottom: 28/1200
  24102. }
  24103. },
  24104. maw: {
  24105. height: math.unit(1, "feet"),
  24106. name: "Maw",
  24107. image: {
  24108. source: "./media/characters/ofelia/maw.svg"
  24109. }
  24110. },
  24111. foot: {
  24112. height: math.unit(1.949, "feet"),
  24113. name: "Foot",
  24114. image: {
  24115. source: "./media/characters/ofelia/foot.svg"
  24116. }
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Canon Height",
  24122. height: math.unit(2000, "miles"),
  24123. default: true
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(6, "feet"),
  24132. weight: math.unit(150, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/samuel/front.svg",
  24136. extra: 265 / 258,
  24137. bottom: 2 / 266.1566
  24138. }
  24139. },
  24140. },
  24141. [
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(100, "feet"),
  24145. default: true
  24146. },
  24147. {
  24148. name: "Full Size",
  24149. height: math.unit(1000, "miles")
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24155. {
  24156. front: {
  24157. height: math.unit(6, "feet"),
  24158. weight: math.unit(300, "lb"),
  24159. name: "Front",
  24160. image: {
  24161. source: "./media/characters/beishir-kiel/front.svg",
  24162. extra: 569 / 547,
  24163. bottom: 41.9 / 609
  24164. }
  24165. },
  24166. maw: {
  24167. height: math.unit(6 * 0.202, "feet"),
  24168. name: "Maw",
  24169. image: {
  24170. source: "./media/characters/beishir-kiel/maw.svg"
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(300, "feet"),
  24178. default: true
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24184. {
  24185. front: {
  24186. height: math.unit(5 + 7/12, "feet"),
  24187. weight: math.unit(120, "lb"),
  24188. name: "Front",
  24189. image: {
  24190. source: "./media/characters/logan-grey/front.svg",
  24191. extra: 1836/1738,
  24192. bottom: 108/1944
  24193. }
  24194. },
  24195. back: {
  24196. height: math.unit(5 + 7/12, "feet"),
  24197. weight: math.unit(120, "lb"),
  24198. name: "Back",
  24199. image: {
  24200. source: "./media/characters/logan-grey/back.svg",
  24201. extra: 1880/1794,
  24202. bottom: 24/1904
  24203. }
  24204. },
  24205. frontSfw: {
  24206. height: math.unit(5 + 7/12, "feet"),
  24207. weight: math.unit(120, "lb"),
  24208. name: "Front (SFW)",
  24209. image: {
  24210. source: "./media/characters/logan-grey/front-sfw.svg",
  24211. extra: 1836/1738,
  24212. bottom: 108/1944
  24213. }
  24214. },
  24215. backSfw: {
  24216. height: math.unit(5 + 7/12, "feet"),
  24217. weight: math.unit(120, "lb"),
  24218. name: "Back (SFW)",
  24219. image: {
  24220. source: "./media/characters/logan-grey/back-sfw.svg",
  24221. extra: 1880/1794,
  24222. bottom: 24/1904
  24223. }
  24224. },
  24225. hands: {
  24226. height: math.unit(0.84, "feet"),
  24227. name: "Hands",
  24228. image: {
  24229. source: "./media/characters/logan-grey/hands.svg"
  24230. }
  24231. },
  24232. paws: {
  24233. height: math.unit(0.72, "feet"),
  24234. name: "Paws",
  24235. image: {
  24236. source: "./media/characters/logan-grey/paws.svg"
  24237. }
  24238. },
  24239. cock: {
  24240. height: math.unit(1.45, "feet"),
  24241. name: "Cock",
  24242. image: {
  24243. source: "./media/characters/logan-grey/cock.svg"
  24244. }
  24245. },
  24246. cockAlt: {
  24247. height: math.unit(1.437, "feet"),
  24248. name: "Cock (alt)",
  24249. image: {
  24250. source: "./media/characters/logan-grey/cock-alt.svg"
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Normal",
  24257. height: math.unit(5 + 8 / 12, "feet")
  24258. },
  24259. {
  24260. name: "The 500 Foot Femboy",
  24261. height: math.unit(500, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Megmacro",
  24266. height: math.unit(20, "miles")
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(8 + 2 / 12, "feet"),
  24275. weight: math.unit(275, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/draganta/front.svg",
  24279. extra: 1177 / 1135,
  24280. bottom: 33.46 / 1212.1
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(8 + 6 / 12, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(150, "feet")
  24293. },
  24294. {
  24295. name: "Megamacro",
  24296. height: math.unit(1000, "miles")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(1.72, "m"),
  24305. weight: math.unit(80, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/voski/front.svg",
  24309. extra: 2076.22 / 2022.4,
  24310. bottom: 102.7 / 2177.3866
  24311. }
  24312. },
  24313. frontFlaccid: {
  24314. height: math.unit(1.72, "m"),
  24315. weight: math.unit(80, "lb"),
  24316. name: "Front (Flaccid)",
  24317. image: {
  24318. source: "./media/characters/voski/front-flaccid.svg",
  24319. extra: 2076.22 / 2022.4,
  24320. bottom: 102.7 / 2177.3866
  24321. }
  24322. },
  24323. frontErect: {
  24324. height: math.unit(1.72, "m"),
  24325. weight: math.unit(80, "lb"),
  24326. name: "Front (Erect)",
  24327. image: {
  24328. source: "./media/characters/voski/front-erect.svg",
  24329. extra: 2076.22 / 2022.4,
  24330. bottom: 102.7 / 2177.3866
  24331. }
  24332. },
  24333. back: {
  24334. height: math.unit(1.72, "m"),
  24335. weight: math.unit(80, "lb"),
  24336. name: "Back",
  24337. image: {
  24338. source: "./media/characters/voski/back.svg",
  24339. extra: 2104 / 2051,
  24340. bottom: 10.45 / 2113.63
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(1.72, "m")
  24348. },
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(55, "m"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Macro+",
  24356. height: math.unit(300, "m")
  24357. },
  24358. {
  24359. name: "Macro++",
  24360. height: math.unit(700, "m")
  24361. },
  24362. {
  24363. name: "Macro+++",
  24364. height: math.unit(4500, "m")
  24365. },
  24366. {
  24367. name: "Macro++++",
  24368. height: math.unit(45, "km")
  24369. },
  24370. {
  24371. name: "Macro+++++",
  24372. height: math.unit(1220, "km")
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24378. {
  24379. front: {
  24380. height: math.unit(2.3, "m"),
  24381. weight: math.unit(304, "kg"),
  24382. name: "Front",
  24383. image: {
  24384. source: "./media/characters/icowom-lee/front.svg",
  24385. extra: 985 / 955,
  24386. bottom: 25.4 / 1012
  24387. }
  24388. },
  24389. fronttentacles: {
  24390. height: math.unit(2.3, "m"),
  24391. weight: math.unit(304, "kg"),
  24392. name: "Front-tentacles",
  24393. image: {
  24394. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24395. extra: 985 / 955,
  24396. bottom: 25.4 / 1012
  24397. }
  24398. },
  24399. back: {
  24400. height: math.unit(2.3, "m"),
  24401. weight: math.unit(304, "kg"),
  24402. name: "Back",
  24403. image: {
  24404. source: "./media/characters/icowom-lee/back.svg",
  24405. extra: 975 / 954,
  24406. bottom: 9.5 / 985
  24407. }
  24408. },
  24409. backtentacles: {
  24410. height: math.unit(2.3, "m"),
  24411. weight: math.unit(304, "kg"),
  24412. name: "Back-tentacles",
  24413. image: {
  24414. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24415. extra: 975 / 954,
  24416. bottom: 9.5 / 985
  24417. }
  24418. },
  24419. frontDressed: {
  24420. height: math.unit(2.3, "m"),
  24421. weight: math.unit(304, "kg"),
  24422. name: "Front (Dressed)",
  24423. image: {
  24424. source: "./media/characters/icowom-lee/front-dressed.svg",
  24425. extra: 3076 / 2933,
  24426. bottom: 51.4 / 3125.1889
  24427. }
  24428. },
  24429. rump: {
  24430. height: math.unit(0.776, "meters"),
  24431. name: "Rump",
  24432. image: {
  24433. source: "./media/characters/icowom-lee/rump.svg"
  24434. }
  24435. },
  24436. genitals: {
  24437. height: math.unit(0.78, "meters"),
  24438. name: "Genitals",
  24439. image: {
  24440. source: "./media/characters/icowom-lee/genitals.svg"
  24441. }
  24442. },
  24443. },
  24444. [
  24445. {
  24446. name: "Normal",
  24447. height: math.unit(2.3, "meters"),
  24448. default: true
  24449. },
  24450. {
  24451. name: "Macro",
  24452. height: math.unit(94, "meters"),
  24453. default: true
  24454. },
  24455. ]
  24456. ))
  24457. characterMakers.push(() => makeCharacter(
  24458. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24459. {
  24460. front: {
  24461. height: math.unit(22, "meters"),
  24462. weight: math.unit(21000, "kg"),
  24463. name: "Front",
  24464. image: {
  24465. source: "./media/characters/shock-diamond/front.svg",
  24466. extra: 2204 / 2053,
  24467. bottom: 65 / 2239.47
  24468. }
  24469. },
  24470. frontNude: {
  24471. height: math.unit(22, "meters"),
  24472. weight: math.unit(21000, "kg"),
  24473. name: "Front (Nude)",
  24474. image: {
  24475. source: "./media/characters/shock-diamond/front-nude.svg",
  24476. extra: 2514 / 2285,
  24477. bottom: 13 / 2527.56
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(3, "meters")
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(22, "meters"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(5 + 4/12, "feet"),
  24498. weight: math.unit(125, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/rory/front.svg",
  24502. extra: 1790/1681,
  24503. bottom: 66/1856
  24504. }
  24505. },
  24506. back: {
  24507. height: math.unit(5 + 4/12, "feet"),
  24508. weight: math.unit(125, "lb"),
  24509. name: "Back",
  24510. image: {
  24511. source: "./media/characters/rory/back.svg",
  24512. extra: 1805/1690,
  24513. bottom: 56/1861
  24514. }
  24515. },
  24516. frontDressed: {
  24517. height: math.unit(5 + 4/12, "feet"),
  24518. weight: math.unit(125, "lb"),
  24519. name: "Front (Dressed)",
  24520. image: {
  24521. source: "./media/characters/rory/front-dressed.svg",
  24522. extra: 1790/1681,
  24523. bottom: 66/1856
  24524. }
  24525. },
  24526. backDressed: {
  24527. height: math.unit(5 + 4/12, "feet"),
  24528. weight: math.unit(125, "lb"),
  24529. name: "Back (Dressed)",
  24530. image: {
  24531. source: "./media/characters/rory/back-dressed.svg",
  24532. extra: 1805/1690,
  24533. bottom: 56/1861
  24534. }
  24535. },
  24536. frontNsfw: {
  24537. height: math.unit(5 + 4/12, "feet"),
  24538. weight: math.unit(125, "lb"),
  24539. name: "Front (NSFW)",
  24540. image: {
  24541. source: "./media/characters/rory/front-nsfw.svg",
  24542. extra: 1790/1681,
  24543. bottom: 66/1856
  24544. }
  24545. },
  24546. backNsfw: {
  24547. height: math.unit(5 + 4/12, "feet"),
  24548. weight: math.unit(125, "lb"),
  24549. name: "Back (NSFW)",
  24550. image: {
  24551. source: "./media/characters/rory/back-nsfw.svg",
  24552. extra: 1805/1690,
  24553. bottom: 56/1861
  24554. }
  24555. },
  24556. dick: {
  24557. height: math.unit(0.8, "feet"),
  24558. name: "Dick",
  24559. image: {
  24560. source: "./media/characters/rory/dick.svg"
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Micro",
  24567. height: math.unit(3, "inches")
  24568. },
  24569. {
  24570. name: "Normal",
  24571. height: math.unit(5 + 4/12, "feet"),
  24572. default: true
  24573. },
  24574. {
  24575. name: "Macro",
  24576. height: math.unit(90, "feet")
  24577. },
  24578. {
  24579. name: "Supercharged",
  24580. height: math.unit(270, "feet")
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(5 + 9 / 12, "feet"),
  24589. weight: math.unit(190, "lb"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/sprisk/front.svg",
  24593. extra: 1225 / 1180,
  24594. bottom: 42.7 / 1266.4
  24595. }
  24596. },
  24597. frontNsfw: {
  24598. height: math.unit(5 + 9 / 12, "feet"),
  24599. weight: math.unit(190, "lb"),
  24600. name: "Front (NSFW)",
  24601. image: {
  24602. source: "./media/characters/sprisk/front-nsfw.svg",
  24603. extra: 1225 / 1180,
  24604. bottom: 42.7 / 1266.4
  24605. }
  24606. },
  24607. back: {
  24608. height: math.unit(5 + 9 / 12, "feet"),
  24609. weight: math.unit(190, "lb"),
  24610. name: "Back",
  24611. image: {
  24612. source: "./media/characters/sprisk/back.svg",
  24613. extra: 1247 / 1200,
  24614. bottom: 5.6 / 1253.04
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Tiny",
  24621. height: math.unit(2, "inches")
  24622. },
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(5 + 9 / 12, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Mini Macro",
  24630. height: math.unit(18, "feet")
  24631. },
  24632. {
  24633. name: "Macro",
  24634. height: math.unit(100, "feet")
  24635. },
  24636. {
  24637. name: "MACRO",
  24638. height: math.unit(50, "miles")
  24639. },
  24640. {
  24641. name: "M A C R O",
  24642. height: math.unit(300, "miles")
  24643. },
  24644. ]
  24645. ))
  24646. characterMakers.push(() => makeCharacter(
  24647. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24648. {
  24649. side: {
  24650. height: math.unit(15.6, "meters"),
  24651. weight: math.unit(700000, "kg"),
  24652. name: "Side",
  24653. image: {
  24654. source: "./media/characters/bunsen/side.svg",
  24655. extra: 1644 / 358
  24656. }
  24657. },
  24658. foot: {
  24659. height: math.unit(1.611 * 1644 / 358, "meter"),
  24660. name: "Foot",
  24661. image: {
  24662. source: "./media/characters/bunsen/foot.svg"
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Small",
  24669. height: math.unit(10, "feet")
  24670. },
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(15.6, "meters"),
  24674. default: true
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(4 + 11 / 12, "feet"),
  24683. weight: math.unit(140, "lb"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/sesh/front.svg",
  24687. extra: 3420 / 3231,
  24688. bottom: 72 / 3949.5
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Normal",
  24695. height: math.unit(4 + 11 / 12, "feet")
  24696. },
  24697. {
  24698. name: "Grown",
  24699. height: math.unit(15, "feet"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Macro",
  24704. height: math.unit(1500, "feet")
  24705. },
  24706. {
  24707. name: "Megamacro",
  24708. height: math.unit(30, "miles")
  24709. },
  24710. {
  24711. name: "Continental",
  24712. height: math.unit(3000, "miles")
  24713. },
  24714. {
  24715. name: "Gravity Mass",
  24716. height: math.unit(300000, "miles")
  24717. },
  24718. {
  24719. name: "Planet Buster",
  24720. height: math.unit(30000000, "miles")
  24721. },
  24722. {
  24723. name: "Big",
  24724. height: math.unit(3000000000, "miles")
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(9, "feet"),
  24733. weight: math.unit(350, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/pepper/front.svg",
  24737. extra: 1448 / 1312,
  24738. bottom: 9.4 / 1457.88
  24739. }
  24740. },
  24741. back: {
  24742. height: math.unit(9, "feet"),
  24743. weight: math.unit(350, "lb"),
  24744. name: "Back",
  24745. image: {
  24746. source: "./media/characters/pepper/back.svg",
  24747. extra: 1423 / 1300,
  24748. bottom: 4.6 / 1429
  24749. }
  24750. },
  24751. maw: {
  24752. height: math.unit(0.932, "feet"),
  24753. name: "Maw",
  24754. image: {
  24755. source: "./media/characters/pepper/maw.svg"
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(9, "feet"),
  24763. default: true
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(6, "feet"),
  24772. weight: math.unit(150, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/maelstrom/front.svg",
  24776. extra: 2100 / 1883,
  24777. bottom: 94 / 2196.7
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Less Kaiju",
  24784. height: math.unit(200, "feet")
  24785. },
  24786. {
  24787. name: "Kaiju",
  24788. height: math.unit(400, "feet"),
  24789. default: true
  24790. },
  24791. {
  24792. name: "Kaiju-er",
  24793. height: math.unit(600, "feet")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(6 + 5 / 12, "feet"),
  24802. weight: math.unit(180, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/lexir/front.svg",
  24806. extra: 180 / 172,
  24807. bottom: 12 / 192
  24808. }
  24809. },
  24810. back: {
  24811. height: math.unit(6 + 5 / 12, "feet"),
  24812. weight: math.unit(180, "lb"),
  24813. name: "Back",
  24814. image: {
  24815. source: "./media/characters/lexir/back.svg",
  24816. extra: 1273/1201,
  24817. bottom: 39/1312
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Very Smal",
  24824. height: math.unit(1, "nm")
  24825. },
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(6 + 5 / 12, "feet"),
  24829. default: true
  24830. },
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(1, "mile")
  24834. },
  24835. {
  24836. name: "Megamacro",
  24837. height: math.unit(50, "miles")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(1.5, "meters"),
  24846. weight: math.unit(100, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/maksio/front.svg",
  24850. extra: 1549 / 1531,
  24851. bottom: 123.7 / 1674.5429
  24852. }
  24853. },
  24854. back: {
  24855. height: math.unit(1.5, "meters"),
  24856. weight: math.unit(100, "lb"),
  24857. name: "Back",
  24858. image: {
  24859. source: "./media/characters/maksio/back.svg",
  24860. extra: 1541 / 1509,
  24861. bottom: 97 / 1639
  24862. }
  24863. },
  24864. hand: {
  24865. height: math.unit(0.621, "feet"),
  24866. name: "Hand",
  24867. image: {
  24868. source: "./media/characters/maksio/hand.svg"
  24869. }
  24870. },
  24871. foot: {
  24872. height: math.unit(1.611, "feet"),
  24873. name: "Foot",
  24874. image: {
  24875. source: "./media/characters/maksio/foot.svg"
  24876. }
  24877. },
  24878. },
  24879. [
  24880. {
  24881. name: "Shrunken",
  24882. height: math.unit(10, "cm")
  24883. },
  24884. {
  24885. name: "Normal",
  24886. height: math.unit(150, "cm"),
  24887. default: true
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24893. {
  24894. front: {
  24895. height: math.unit(100, "feet"),
  24896. name: "Front",
  24897. image: {
  24898. source: "./media/characters/erza-bear/front.svg",
  24899. extra: 2449 / 2390,
  24900. bottom: 46 / 2494
  24901. }
  24902. },
  24903. back: {
  24904. height: math.unit(100, "feet"),
  24905. name: "Back",
  24906. image: {
  24907. source: "./media/characters/erza-bear/back.svg",
  24908. extra: 2489 / 2430,
  24909. bottom: 85.4 / 2480
  24910. }
  24911. },
  24912. tail: {
  24913. height: math.unit(42, "feet"),
  24914. name: "Tail",
  24915. image: {
  24916. source: "./media/characters/erza-bear/tail.svg"
  24917. }
  24918. },
  24919. tongue: {
  24920. height: math.unit(8, "feet"),
  24921. name: "Tongue",
  24922. image: {
  24923. source: "./media/characters/erza-bear/tongue.svg"
  24924. }
  24925. },
  24926. dick: {
  24927. height: math.unit(10.5, "feet"),
  24928. name: "Dick",
  24929. image: {
  24930. source: "./media/characters/erza-bear/dick.svg"
  24931. }
  24932. },
  24933. dickVertical: {
  24934. height: math.unit(16.9, "feet"),
  24935. name: "Dick (Vertical)",
  24936. image: {
  24937. source: "./media/characters/erza-bear/dick-vertical.svg"
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(100, "feet"),
  24945. default: true
  24946. },
  24947. ]
  24948. ))
  24949. characterMakers.push(() => makeCharacter(
  24950. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24951. {
  24952. front: {
  24953. height: math.unit(172, "cm"),
  24954. weight: math.unit(73, "kg"),
  24955. name: "Front",
  24956. image: {
  24957. source: "./media/characters/violet-flor/front.svg",
  24958. extra: 1530 / 1442,
  24959. bottom: 61.9 / 1588.8
  24960. }
  24961. },
  24962. back: {
  24963. height: math.unit(180, "cm"),
  24964. weight: math.unit(73, "kg"),
  24965. name: "Back",
  24966. image: {
  24967. source: "./media/characters/violet-flor/back.svg",
  24968. extra: 1692 / 1630,
  24969. bottom: 20 / 1712
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(172, "cm"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(6, "feet"),
  24986. weight: math.unit(220, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/lynn-rhea/front.svg",
  24990. extra: 310 / 273
  24991. }
  24992. },
  24993. back: {
  24994. height: math.unit(6, "feet"),
  24995. weight: math.unit(220, "lb"),
  24996. name: "Back",
  24997. image: {
  24998. source: "./media/characters/lynn-rhea/back.svg",
  24999. extra: 310 / 273
  25000. }
  25001. },
  25002. dicks: {
  25003. height: math.unit(0.9, "feet"),
  25004. name: "Dicks",
  25005. image: {
  25006. source: "./media/characters/lynn-rhea/dicks.svg"
  25007. }
  25008. },
  25009. slit: {
  25010. height: math.unit(0.4, "feet"),
  25011. name: "Slit",
  25012. image: {
  25013. source: "./media/characters/lynn-rhea/slit.svg"
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Micro",
  25020. height: math.unit(1, "inch")
  25021. },
  25022. {
  25023. name: "Macro",
  25024. height: math.unit(60, "feet"),
  25025. default: true
  25026. },
  25027. {
  25028. name: "Megamacro",
  25029. height: math.unit(2, "miles")
  25030. },
  25031. {
  25032. name: "Gigamacro",
  25033. height: math.unit(3, "earths")
  25034. },
  25035. {
  25036. name: "Galactic",
  25037. height: math.unit(0.8, "galaxies")
  25038. },
  25039. ]
  25040. ))
  25041. characterMakers.push(() => makeCharacter(
  25042. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25043. {
  25044. front: {
  25045. height: math.unit(1600, "feet"),
  25046. weight: math.unit(85758785169, "kg"),
  25047. name: "Front",
  25048. image: {
  25049. source: "./media/characters/valathos/front.svg",
  25050. extra: 1451 / 1339
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Macro",
  25057. height: math.unit(1600, "feet"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(7 + 5 / 12, "feet"),
  25067. weight: math.unit(300, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/azula/front.svg",
  25071. extra: 3208 / 2880,
  25072. bottom: 80.2 / 3277
  25073. }
  25074. },
  25075. back: {
  25076. height: math.unit(7 + 5 / 12, "feet"),
  25077. weight: math.unit(300, "lb"),
  25078. name: "Back",
  25079. image: {
  25080. source: "./media/characters/azula/back.svg",
  25081. extra: 3169 / 2822,
  25082. bottom: 150.6 / 3321
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(7 + 5 / 12, "feet"),
  25090. default: true
  25091. },
  25092. {
  25093. name: "Big",
  25094. height: math.unit(20, "feet")
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(5 + 1 / 12, "feet"),
  25103. weight: math.unit(110, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/rupert/front.svg",
  25107. extra: 1549 / 1495,
  25108. bottom: 54.2 / 1604.4
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(5 + 1 / 12, "feet"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25122. {
  25123. front: {
  25124. height: math.unit(8 + 4 / 12, "feet"),
  25125. weight: math.unit(350, "lb"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/sheera-castellar/front.svg",
  25129. extra: 1957 / 1894,
  25130. bottom: 26.97 / 1975.017
  25131. }
  25132. },
  25133. side: {
  25134. height: math.unit(8 + 4 / 12, "feet"),
  25135. weight: math.unit(350, "lb"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/sheera-castellar/side.svg",
  25139. extra: 1957 / 1894
  25140. }
  25141. },
  25142. back: {
  25143. height: math.unit(8 + 4 / 12, "feet"),
  25144. weight: math.unit(350, "lb"),
  25145. name: "Back",
  25146. image: {
  25147. source: "./media/characters/sheera-castellar/back.svg",
  25148. extra: 1957 / 1894
  25149. }
  25150. },
  25151. angled: {
  25152. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25153. weight: math.unit(350, "lb"),
  25154. name: "Angled",
  25155. image: {
  25156. source: "./media/characters/sheera-castellar/angled.svg",
  25157. extra: 1807 / 1707,
  25158. bottom: 68 / 1875
  25159. }
  25160. },
  25161. genitals: {
  25162. height: math.unit(2.2, "feet"),
  25163. name: "Genitals",
  25164. image: {
  25165. source: "./media/characters/sheera-castellar/genitals.svg"
  25166. }
  25167. },
  25168. taur: {
  25169. height: math.unit(10 + 6/12, "feet"),
  25170. name: "Taur",
  25171. image: {
  25172. source: "./media/characters/sheera-castellar/taur.svg",
  25173. extra: 2017/1909,
  25174. bottom: 185/2202
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(8 + 4 / 12, "feet")
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(150, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Macro+",
  25190. height: math.unit(800, "feet")
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(6, "feet"),
  25199. weight: math.unit(150, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/jaipur/front.svg",
  25203. extra: 3860 / 3731,
  25204. bottom: 287 / 4140
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(6, "feet"),
  25209. weight: math.unit(150, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/jaipur/back.svg",
  25213. extra: 1637/1561,
  25214. bottom: 154/1791
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(1.85, "meters"),
  25222. default: true
  25223. },
  25224. {
  25225. name: "Macro",
  25226. height: math.unit(150, "meters")
  25227. },
  25228. {
  25229. name: "Macro+",
  25230. height: math.unit(0.5, "miles")
  25231. },
  25232. {
  25233. name: "Macro++",
  25234. height: math.unit(2.5, "miles")
  25235. },
  25236. {
  25237. name: "Macro+++",
  25238. height: math.unit(12, "miles")
  25239. },
  25240. {
  25241. name: "Macro++++",
  25242. height: math.unit(120, "miles")
  25243. },
  25244. {
  25245. name: "Macro+++++",
  25246. height: math.unit(1200, "miles")
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(6, "feet"),
  25255. weight: math.unit(150, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/sheila-wolf/front.svg",
  25259. extra: 1931 / 1808,
  25260. bottom: 29.5 / 1960
  25261. }
  25262. },
  25263. dick: {
  25264. height: math.unit(1.464, "feet"),
  25265. name: "Dick",
  25266. image: {
  25267. source: "./media/characters/sheila-wolf/dick.svg"
  25268. }
  25269. },
  25270. muzzle: {
  25271. height: math.unit(0.513, "feet"),
  25272. name: "Muzzle",
  25273. image: {
  25274. source: "./media/characters/sheila-wolf/muzzle.svg"
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Macro",
  25281. height: math.unit(70, "feet"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(32, "meters"),
  25291. weight: math.unit(300000, "kg"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/almor/front.svg",
  25295. extra: 1408 / 1322,
  25296. bottom: 94.6 / 1506.5
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Macro",
  25303. height: math.unit(32, "meters"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(7, "feet"),
  25313. weight: math.unit(200, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/silver/front.svg",
  25317. extra: 472.1 / 450.5,
  25318. bottom: 26.5 / 499.424
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Normal",
  25325. height: math.unit(7, "feet"),
  25326. default: true
  25327. },
  25328. {
  25329. name: "Macro",
  25330. height: math.unit(800, "feet")
  25331. },
  25332. {
  25333. name: "Megamacro",
  25334. height: math.unit(250, "miles")
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(6, "feet"),
  25343. weight: math.unit(150, "lb"),
  25344. name: "Front",
  25345. image: {
  25346. source: "./media/characters/pliskin/front.svg",
  25347. extra: 1469 / 1359,
  25348. bottom: 70 / 1540
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Micro",
  25355. height: math.unit(3, "inches")
  25356. },
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(5 + 11 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(120, "feet")
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25370. {
  25371. front: {
  25372. height: math.unit(6, "feet"),
  25373. weight: math.unit(150, "lb"),
  25374. name: "Front",
  25375. image: {
  25376. source: "./media/characters/sammy/front.svg",
  25377. extra: 1193 / 1089,
  25378. bottom: 30.5 / 1226
  25379. }
  25380. },
  25381. },
  25382. [
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(1700, "feet"),
  25386. default: true
  25387. },
  25388. {
  25389. name: "Examacro",
  25390. height: math.unit(2.5e9, "lightyears")
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(21, "meters"),
  25399. weight: math.unit(12, "tonnes"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/kuru/front.svg",
  25403. extra: 4301 / 3785,
  25404. bottom: 371.3 / 4691
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Macro",
  25411. height: math.unit(21, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(23, "meters"),
  25421. weight: math.unit(12.2, "tonnes"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/rakka/front.svg",
  25425. extra: 4670 / 4169,
  25426. bottom: 301 / 4968.7
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(23, "meters"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(6, "feet"),
  25443. weight: math.unit(150, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/rhys-feline/front.svg",
  25447. extra: 2488 / 2308,
  25448. bottom: 35.67 / 2519.19
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Really Small",
  25455. height: math.unit(1, "nm")
  25456. },
  25457. {
  25458. name: "Micro",
  25459. height: math.unit(4, "inches")
  25460. },
  25461. {
  25462. name: "Normal",
  25463. height: math.unit(4 + 10 / 12, "feet"),
  25464. default: true
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(100, "feet")
  25469. },
  25470. {
  25471. name: "Megamacto",
  25472. height: math.unit(50, "miles")
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25478. {
  25479. side: {
  25480. height: math.unit(30, "feet"),
  25481. weight: math.unit(35000, "kg"),
  25482. name: "Side",
  25483. image: {
  25484. source: "./media/characters/alydar/side.svg",
  25485. extra: 234 / 222,
  25486. bottom: 6.5 / 241
  25487. }
  25488. },
  25489. front: {
  25490. height: math.unit(30, "feet"),
  25491. weight: math.unit(35000, "kg"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/alydar/front.svg",
  25495. extra: 223.37 / 210.2,
  25496. bottom: 22.3 / 246.76
  25497. }
  25498. },
  25499. top: {
  25500. height: math.unit(64.54, "feet"),
  25501. weight: math.unit(35000, "kg"),
  25502. name: "Top",
  25503. image: {
  25504. source: "./media/characters/alydar/top.svg"
  25505. }
  25506. },
  25507. anthro: {
  25508. height: math.unit(30, "feet"),
  25509. weight: math.unit(9000, "kg"),
  25510. name: "Anthro",
  25511. image: {
  25512. source: "./media/characters/alydar/anthro.svg",
  25513. extra: 432 / 421,
  25514. bottom: 7.18 / 440
  25515. }
  25516. },
  25517. maw: {
  25518. height: math.unit(11.693, "feet"),
  25519. name: "Maw",
  25520. image: {
  25521. source: "./media/characters/alydar/maw.svg"
  25522. }
  25523. },
  25524. head: {
  25525. height: math.unit(11.693, "feet"),
  25526. name: "Head",
  25527. image: {
  25528. source: "./media/characters/alydar/head.svg"
  25529. }
  25530. },
  25531. headAlt: {
  25532. height: math.unit(12.861, "feet"),
  25533. name: "Head (Alt)",
  25534. image: {
  25535. source: "./media/characters/alydar/head-alt.svg"
  25536. }
  25537. },
  25538. wing: {
  25539. height: math.unit(20.712, "feet"),
  25540. name: "Wing",
  25541. image: {
  25542. source: "./media/characters/alydar/wing.svg"
  25543. }
  25544. },
  25545. wingFeather: {
  25546. height: math.unit(9.662, "feet"),
  25547. name: "Wing Feather",
  25548. image: {
  25549. source: "./media/characters/alydar/wing-feather.svg"
  25550. }
  25551. },
  25552. countourFeather: {
  25553. height: math.unit(4.154, "feet"),
  25554. name: "Contour Feather",
  25555. image: {
  25556. source: "./media/characters/alydar/contour-feather.svg"
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Diplomatic",
  25563. height: math.unit(13, "feet"),
  25564. default: true
  25565. },
  25566. {
  25567. name: "Small",
  25568. height: math.unit(30, "feet")
  25569. },
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(95, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Large",
  25577. height: math.unit(285, "feet")
  25578. },
  25579. {
  25580. name: "Incomprehensible",
  25581. height: math.unit(450, "megameters")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25587. {
  25588. side: {
  25589. height: math.unit(11, "feet"),
  25590. weight: math.unit(1750, "kg"),
  25591. name: "Side",
  25592. image: {
  25593. source: "./media/characters/selicia/side.svg",
  25594. extra: 440 / 396,
  25595. bottom: 24.8 / 465.979
  25596. }
  25597. },
  25598. maw: {
  25599. height: math.unit(4.665, "feet"),
  25600. name: "Maw",
  25601. image: {
  25602. source: "./media/characters/selicia/maw.svg"
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(11, "feet"),
  25610. default: true
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25616. {
  25617. side: {
  25618. height: math.unit(2 + 6 / 12, "feet"),
  25619. weight: math.unit(30, "lb"),
  25620. name: "Side",
  25621. image: {
  25622. source: "./media/characters/layla/side.svg",
  25623. extra: 244 / 188,
  25624. bottom: 18.2 / 262.1
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(2 + 6 / 12, "feet"),
  25629. weight: math.unit(30, "lb"),
  25630. name: "Back",
  25631. image: {
  25632. source: "./media/characters/layla/back.svg",
  25633. extra: 308 / 241.5,
  25634. bottom: 8.9 / 316.8
  25635. }
  25636. },
  25637. cumming: {
  25638. height: math.unit(2 + 6 / 12, "feet"),
  25639. weight: math.unit(30, "lb"),
  25640. name: "Cumming",
  25641. image: {
  25642. source: "./media/characters/layla/cumming.svg",
  25643. extra: 342 / 279,
  25644. bottom: 595 / 938
  25645. }
  25646. },
  25647. dickFlaccid: {
  25648. height: math.unit(2.595, "feet"),
  25649. name: "Flaccid Genitals",
  25650. image: {
  25651. source: "./media/characters/layla/dick-flaccid.svg"
  25652. }
  25653. },
  25654. dickErect: {
  25655. height: math.unit(2.359, "feet"),
  25656. name: "Erect Genitals",
  25657. image: {
  25658. source: "./media/characters/layla/dick-erect.svg"
  25659. }
  25660. },
  25661. dragon: {
  25662. height: math.unit(40, "feet"),
  25663. name: "Dragon",
  25664. image: {
  25665. source: "./media/characters/layla/dragon.svg",
  25666. extra: 610/535,
  25667. bottom: 367/977
  25668. }
  25669. },
  25670. taur: {
  25671. height: math.unit(30, "feet"),
  25672. name: "Taur",
  25673. image: {
  25674. source: "./media/characters/layla/taur.svg",
  25675. extra: 1268/1199,
  25676. bottom: 112/1380
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Micro",
  25683. height: math.unit(1, "inch")
  25684. },
  25685. {
  25686. name: "Small",
  25687. height: math.unit(1, "foot")
  25688. },
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(2 + 6 / 12, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Macro",
  25696. height: math.unit(200, "feet")
  25697. },
  25698. {
  25699. name: "Megamacro",
  25700. height: math.unit(1000, "miles")
  25701. },
  25702. {
  25703. name: "Planetary",
  25704. height: math.unit(8000, "miles")
  25705. },
  25706. {
  25707. name: "True Layla",
  25708. height: math.unit(200000 * 7, "multiverses")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25714. {
  25715. back: {
  25716. height: math.unit(10.5, "feet"),
  25717. weight: math.unit(800, "lb"),
  25718. name: "Back",
  25719. image: {
  25720. source: "./media/characters/knox/back.svg",
  25721. extra: 1486 / 1089,
  25722. bottom: 107 / 1601.4
  25723. }
  25724. },
  25725. side: {
  25726. height: math.unit(10.5, "feet"),
  25727. weight: math.unit(800, "lb"),
  25728. name: "Side",
  25729. image: {
  25730. source: "./media/characters/knox/side.svg",
  25731. extra: 244 / 218,
  25732. bottom: 14 / 260
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Compact",
  25739. height: math.unit(10.5, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Dynamax",
  25744. height: math.unit(210, "feet")
  25745. },
  25746. {
  25747. name: "Full Macro",
  25748. height: math.unit(850, "feet")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(28, "feet"),
  25757. weight: math.unit(10500, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/kayda/front.svg",
  25761. extra: 1536 / 1428,
  25762. bottom: 68.7 / 1603
  25763. }
  25764. },
  25765. back: {
  25766. height: math.unit(28, "feet"),
  25767. weight: math.unit(10500, "lb"),
  25768. name: "Back",
  25769. image: {
  25770. source: "./media/characters/kayda/back.svg",
  25771. extra: 1557 / 1464,
  25772. bottom: 39.5 / 1597.49
  25773. }
  25774. },
  25775. dick: {
  25776. height: math.unit(3.858, "feet"),
  25777. name: "Dick",
  25778. image: {
  25779. source: "./media/characters/kayda/dick.svg"
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(28, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(10 + 11 / 12, "feet"),
  25796. weight: math.unit(1400, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/brian/front.svg",
  25800. extra: 737 / 692,
  25801. bottom: 55.4 / 785
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(10 + 11 / 12, "feet"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(5 + 8 / 12, "feet"),
  25818. weight: math.unit(140, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/khemri/front.svg",
  25822. extra: 4780 / 4059,
  25823. bottom: 80.1 / 4859.25
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Micro",
  25830. height: math.unit(6, "inches")
  25831. },
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(5 + 8 / 12, "feet"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25841. {
  25842. front: {
  25843. height: math.unit(13, "feet"),
  25844. weight: math.unit(1700, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/felix-braveheart/front.svg",
  25848. extra: 1222 / 1157,
  25849. bottom: 53.2 / 1280
  25850. }
  25851. },
  25852. back: {
  25853. height: math.unit(13, "feet"),
  25854. weight: math.unit(1700, "lb"),
  25855. name: "Back",
  25856. image: {
  25857. source: "./media/characters/felix-braveheart/back.svg",
  25858. extra: 1277 / 1203,
  25859. bottom: 50.2 / 1327
  25860. }
  25861. },
  25862. feral: {
  25863. height: math.unit(6, "feet"),
  25864. weight: math.unit(400, "lb"),
  25865. name: "Feral",
  25866. image: {
  25867. source: "./media/characters/felix-braveheart/feral.svg",
  25868. extra: 682 / 625,
  25869. bottom: 6.9 / 688
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(13, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25883. {
  25884. side: {
  25885. height: math.unit(5 + 11 / 12, "feet"),
  25886. weight: math.unit(1400, "lb"),
  25887. name: "Side",
  25888. image: {
  25889. source: "./media/characters/shadow-blade/side.svg",
  25890. extra: 1726 / 1267,
  25891. bottom: 58.4 / 1785
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(5 + 11 / 12, "feet"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(1 + 6 / 12, "feet"),
  25908. weight: math.unit(25, "lb"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/karla-halldor/front.svg",
  25912. extra: 1459 / 1383,
  25913. bottom: 12 / 1472
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(1 + 6 / 12, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(6 + 2 / 12, "feet"),
  25930. weight: math.unit(160, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/ariam/front.svg",
  25934. extra: 1073/976,
  25935. bottom: 52/1125
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(6 + 2/12, "feet"),
  25940. weight: math.unit(160, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/ariam/back.svg",
  25944. extra: 1103/1023,
  25945. bottom: 9/1112
  25946. }
  25947. },
  25948. dressed: {
  25949. height: math.unit(6 + 2/12, "feet"),
  25950. weight: math.unit(160, "lb"),
  25951. name: "Dressed",
  25952. image: {
  25953. source: "./media/characters/ariam/dressed.svg",
  25954. extra: 1099/1009,
  25955. bottom: 25/1124
  25956. }
  25957. },
  25958. squatting: {
  25959. height: math.unit(4.1, "feet"),
  25960. weight: math.unit(160, "lb"),
  25961. name: "Squatting",
  25962. image: {
  25963. source: "./media/characters/ariam/squatting.svg",
  25964. extra: 2617 / 2112,
  25965. bottom: 61.2 / 2681,
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(6 + 2 / 12, "feet"),
  25973. default: true
  25974. },
  25975. {
  25976. name: "Normal+",
  25977. height: math.unit(4, "meters")
  25978. },
  25979. {
  25980. name: "Macro",
  25981. height: math.unit(50, "meters")
  25982. },
  25983. {
  25984. name: "Macro+",
  25985. height: math.unit(100, "meters")
  25986. },
  25987. {
  25988. name: "Megamacro",
  25989. height: math.unit(20, "km")
  25990. },
  25991. {
  25992. name: "Caretaker",
  25993. height: math.unit(444, "megameters")
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(1.67, "meters"),
  26002. weight: math.unit(140, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26006. extra: 438 / 410,
  26007. bottom: 0.75 / 439
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Shrunken",
  26014. height: math.unit(7.6, "cm")
  26015. },
  26016. {
  26017. name: "Human Scale",
  26018. height: math.unit(1.67, "meters")
  26019. },
  26020. {
  26021. name: "Wolxi Scale",
  26022. height: math.unit(36.7, "meters"),
  26023. default: true
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(1.73, "meters"),
  26032. weight: math.unit(240, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/izue-two-mothers/front.svg",
  26036. extra: 469 / 437,
  26037. bottom: 1.24 / 470.6
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Shrunken",
  26044. height: math.unit(7.86, "cm")
  26045. },
  26046. {
  26047. name: "Human Scale",
  26048. height: math.unit(1.73, "meters")
  26049. },
  26050. {
  26051. name: "Wolxi Scale",
  26052. height: math.unit(38, "meters"),
  26053. default: true
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26059. {
  26060. front: {
  26061. height: math.unit(1.55, "meters"),
  26062. weight: math.unit(120, "lb"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/teeku-love-shack/front.svg",
  26066. extra: 387 / 362,
  26067. bottom: 1.51 / 388
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Shrunken",
  26074. height: math.unit(7, "cm")
  26075. },
  26076. {
  26077. name: "Human Scale",
  26078. height: math.unit(1.55, "meters")
  26079. },
  26080. {
  26081. name: "Wolxi Scale",
  26082. height: math.unit(34.1, "meters"),
  26083. default: true
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(1.83, "meters"),
  26092. weight: math.unit(135, "lb"),
  26093. name: "Front",
  26094. image: {
  26095. source: "./media/characters/dejma-the-red/front.svg",
  26096. extra: 480 / 458,
  26097. bottom: 1.8 / 482
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Shrunken",
  26104. height: math.unit(8.3, "cm")
  26105. },
  26106. {
  26107. name: "Human Scale",
  26108. height: math.unit(1.83, "meters")
  26109. },
  26110. {
  26111. name: "Wolxi Scale",
  26112. height: math.unit(40, "meters"),
  26113. default: true
  26114. },
  26115. ]
  26116. ))
  26117. characterMakers.push(() => makeCharacter(
  26118. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26119. {
  26120. front: {
  26121. height: math.unit(1.78, "meters"),
  26122. weight: math.unit(65, "kg"),
  26123. name: "Front",
  26124. image: {
  26125. source: "./media/characters/aki/front.svg",
  26126. extra: 452 / 415
  26127. }
  26128. },
  26129. frontNsfw: {
  26130. height: math.unit(1.78, "meters"),
  26131. weight: math.unit(65, "kg"),
  26132. name: "Front (NSFW)",
  26133. image: {
  26134. source: "./media/characters/aki/front-nsfw.svg",
  26135. extra: 452 / 415
  26136. }
  26137. },
  26138. back: {
  26139. height: math.unit(1.78, "meters"),
  26140. weight: math.unit(65, "kg"),
  26141. name: "Back",
  26142. image: {
  26143. source: "./media/characters/aki/back.svg",
  26144. extra: 452 / 415
  26145. }
  26146. },
  26147. rump: {
  26148. height: math.unit(2.05, "feet"),
  26149. name: "Rump",
  26150. image: {
  26151. source: "./media/characters/aki/rump.svg"
  26152. }
  26153. },
  26154. dick: {
  26155. height: math.unit(0.95, "feet"),
  26156. name: "Dick",
  26157. image: {
  26158. source: "./media/characters/aki/dick.svg"
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Micro",
  26165. height: math.unit(15, "cm")
  26166. },
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(178, "cm"),
  26170. default: true
  26171. },
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(214, "m")
  26175. },
  26176. {
  26177. name: "Macro+",
  26178. height: math.unit(534, "m")
  26179. },
  26180. ]
  26181. ))
  26182. characterMakers.push(() => makeCharacter(
  26183. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26184. {
  26185. front: {
  26186. height: math.unit(5 + 5 / 12, "feet"),
  26187. weight: math.unit(120, "lb"),
  26188. name: "Front",
  26189. image: {
  26190. source: "./media/characters/ari/front.svg",
  26191. extra: 1550/1471,
  26192. bottom: 39/1589
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Normal",
  26199. height: math.unit(5 + 5 / 12, "feet")
  26200. },
  26201. {
  26202. name: "Macro",
  26203. height: math.unit(100, "feet"),
  26204. default: true
  26205. },
  26206. {
  26207. name: "Megamacro",
  26208. height: math.unit(100, "miles")
  26209. },
  26210. {
  26211. name: "Gigamacro",
  26212. height: math.unit(80000, "miles")
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26218. {
  26219. side: {
  26220. height: math.unit(9, "feet"),
  26221. weight: math.unit(400, "kg"),
  26222. name: "Side",
  26223. image: {
  26224. source: "./media/characters/bolt/side.svg",
  26225. extra: 1126 / 896,
  26226. bottom: 60 / 1187.3,
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Micro",
  26233. height: math.unit(5, "inches")
  26234. },
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(9, "feet"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(700, "feet")
  26243. },
  26244. {
  26245. name: "Max Size",
  26246. height: math.unit(1.52e22, "yottameters")
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(4.3, "meters"),
  26255. weight: math.unit(3, "tons"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/draekon-sylviar/front.svg",
  26259. extra: 2072/1512,
  26260. bottom: 74/2146
  26261. }
  26262. },
  26263. back: {
  26264. height: math.unit(4.3, "meters"),
  26265. weight: math.unit(3, "tons"),
  26266. name: "Back",
  26267. image: {
  26268. source: "./media/characters/draekon-sylviar/back.svg",
  26269. extra: 1639/1483,
  26270. bottom: 41/1680
  26271. }
  26272. },
  26273. feral: {
  26274. height: math.unit(1.15, "meters"),
  26275. weight: math.unit(3, "tons"),
  26276. name: "Feral",
  26277. image: {
  26278. source: "./media/characters/draekon-sylviar/feral.svg",
  26279. extra: 1033/395,
  26280. bottom: 130/1163
  26281. }
  26282. },
  26283. maw: {
  26284. height: math.unit(1.3, "meters"),
  26285. name: "Maw",
  26286. image: {
  26287. source: "./media/characters/draekon-sylviar/maw.svg"
  26288. }
  26289. },
  26290. mawSeparated: {
  26291. height: math.unit(1.53, "meters"),
  26292. name: "Separated Maw",
  26293. image: {
  26294. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26295. }
  26296. },
  26297. tail: {
  26298. height: math.unit(1.15, "meters"),
  26299. name: "Tail",
  26300. image: {
  26301. source: "./media/characters/draekon-sylviar/tail.svg"
  26302. }
  26303. },
  26304. tailDick: {
  26305. height: math.unit(1.15, "meters"),
  26306. name: "Tail (Dick)",
  26307. image: {
  26308. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26309. }
  26310. },
  26311. tailDickSeparated: {
  26312. height: math.unit(1.19, "meters"),
  26313. name: "Tail (Separated Dick)",
  26314. image: {
  26315. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26316. }
  26317. },
  26318. slit: {
  26319. height: math.unit(1, "meters"),
  26320. name: "Slit",
  26321. image: {
  26322. source: "./media/characters/draekon-sylviar/slit.svg"
  26323. }
  26324. },
  26325. dick: {
  26326. height: math.unit(1.15, "meters"),
  26327. name: "Dick",
  26328. image: {
  26329. source: "./media/characters/draekon-sylviar/dick.svg"
  26330. }
  26331. },
  26332. dickSeparated: {
  26333. height: math.unit(1.1, "meters"),
  26334. name: "Separated Dick",
  26335. image: {
  26336. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26337. }
  26338. },
  26339. sheath: {
  26340. height: math.unit(1.15, "meters"),
  26341. name: "Sheath",
  26342. image: {
  26343. source: "./media/characters/draekon-sylviar/sheath.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Small",
  26350. height: math.unit(4.53 / 2, "meters"),
  26351. default: true
  26352. },
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(4.53, "meters"),
  26356. default: true
  26357. },
  26358. {
  26359. name: "Large",
  26360. height: math.unit(4.53 * 2, "meters"),
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26366. {
  26367. front: {
  26368. height: math.unit(6 + 2 / 12, "feet"),
  26369. weight: math.unit(180, "lb"),
  26370. name: "Front",
  26371. image: {
  26372. source: "./media/characters/brawler/front.svg",
  26373. extra: 3301 / 3027,
  26374. bottom: 138 / 3439
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(6 + 2 / 12, "feet"),
  26382. default: true
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26388. {
  26389. front: {
  26390. height: math.unit(11, "feet"),
  26391. weight: math.unit(1000, "lb"),
  26392. name: "Front",
  26393. image: {
  26394. source: "./media/characters/alex/front.svg",
  26395. bottom: 44.5 / 620
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Micro",
  26402. height: math.unit(5, "inches")
  26403. },
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(11, "feet"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Macro",
  26411. height: math.unit(9.5e9, "feet")
  26412. },
  26413. {
  26414. name: "Max Size",
  26415. height: math.unit(1.4e283, "yottameters")
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26421. {
  26422. female: {
  26423. height: math.unit(29.9, "m"),
  26424. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26425. name: "Female",
  26426. image: {
  26427. source: "./media/characters/zenari/female.svg",
  26428. extra: 3281.6 / 3217,
  26429. bottom: 72.2 / 3353
  26430. }
  26431. },
  26432. male: {
  26433. height: math.unit(27.7, "m"),
  26434. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26435. name: "Male",
  26436. image: {
  26437. source: "./media/characters/zenari/male.svg",
  26438. extra: 3008 / 2991,
  26439. bottom: 54.6 / 3069
  26440. }
  26441. },
  26442. },
  26443. [
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(29.7, "meters"),
  26447. default: true
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26453. {
  26454. female: {
  26455. height: math.unit(23.8, "m"),
  26456. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26457. name: "Female",
  26458. image: {
  26459. source: "./media/characters/mactarian/female.svg",
  26460. extra: 2662 / 2569,
  26461. bottom: 73 / 2736
  26462. }
  26463. },
  26464. male: {
  26465. height: math.unit(23.8, "m"),
  26466. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26467. name: "Male",
  26468. image: {
  26469. source: "./media/characters/mactarian/male.svg",
  26470. extra: 2673 / 2600,
  26471. bottom: 76 / 2750
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Macro",
  26478. height: math.unit(23.8, "meters"),
  26479. default: true
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26485. {
  26486. female: {
  26487. height: math.unit(19.3, "m"),
  26488. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26489. name: "Female",
  26490. image: {
  26491. source: "./media/characters/umok/female.svg",
  26492. extra: 2186 / 2078,
  26493. bottom: 87 / 2277
  26494. }
  26495. },
  26496. male: {
  26497. height: math.unit(19.5, "m"),
  26498. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26499. name: "Male",
  26500. image: {
  26501. source: "./media/characters/umok/male.svg",
  26502. extra: 2233 / 2140,
  26503. bottom: 24.4 / 2258
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Macro",
  26510. height: math.unit(19.3, "meters"),
  26511. default: true
  26512. },
  26513. ]
  26514. ))
  26515. characterMakers.push(() => makeCharacter(
  26516. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26517. {
  26518. female: {
  26519. height: math.unit(26.15, "m"),
  26520. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26521. name: "Female",
  26522. image: {
  26523. source: "./media/characters/joraxian/female.svg",
  26524. extra: 2912 / 2824,
  26525. bottom: 36 / 2956
  26526. }
  26527. },
  26528. male: {
  26529. height: math.unit(25.4, "m"),
  26530. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26531. name: "Male",
  26532. image: {
  26533. source: "./media/characters/joraxian/male.svg",
  26534. extra: 2877 / 2721,
  26535. bottom: 82 / 2967
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Macro",
  26542. height: math.unit(26.15, "meters"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26549. {
  26550. female: {
  26551. height: math.unit(21.6, "m"),
  26552. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26553. name: "Female",
  26554. image: {
  26555. source: "./media/characters/sthara/female.svg",
  26556. extra: 2516 / 2347,
  26557. bottom: 21.5 / 2537
  26558. }
  26559. },
  26560. male: {
  26561. height: math.unit(24, "m"),
  26562. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26563. name: "Male",
  26564. image: {
  26565. source: "./media/characters/sthara/male.svg",
  26566. extra: 2732 / 2607,
  26567. bottom: 23 / 2732
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Macro",
  26574. height: math.unit(21.6, "meters"),
  26575. default: true
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(6 + 4 / 12, "feet"),
  26584. weight: math.unit(175, "lb"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/luka-bryzant/front.svg",
  26588. extra: 311 / 289,
  26589. bottom: 4 / 315
  26590. }
  26591. },
  26592. back: {
  26593. height: math.unit(6 + 4 / 12, "feet"),
  26594. weight: math.unit(175, "lb"),
  26595. name: "Back",
  26596. image: {
  26597. source: "./media/characters/luka-bryzant/back.svg",
  26598. extra: 311 / 289,
  26599. bottom: 3.8 / 313.7
  26600. }
  26601. },
  26602. },
  26603. [
  26604. {
  26605. name: "Micro",
  26606. height: math.unit(10, "inches")
  26607. },
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(6 + 4 / 12, "feet"),
  26611. default: true
  26612. },
  26613. {
  26614. name: "Large",
  26615. height: math.unit(12, "feet")
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(5 + 7 / 12, "feet"),
  26624. weight: math.unit(185, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/aman-aquila/front.svg",
  26628. extra: 1013 / 976,
  26629. bottom: 45.6 / 1057
  26630. }
  26631. },
  26632. side: {
  26633. height: math.unit(5 + 7 / 12, "feet"),
  26634. weight: math.unit(185, "lb"),
  26635. name: "Side",
  26636. image: {
  26637. source: "./media/characters/aman-aquila/side.svg",
  26638. extra: 1054 / 1011,
  26639. bottom: 15 / 1070
  26640. }
  26641. },
  26642. back: {
  26643. height: math.unit(5 + 7 / 12, "feet"),
  26644. weight: math.unit(185, "lb"),
  26645. name: "Back",
  26646. image: {
  26647. source: "./media/characters/aman-aquila/back.svg",
  26648. extra: 1026 / 970,
  26649. bottom: 12 / 1039
  26650. }
  26651. },
  26652. head: {
  26653. height: math.unit(1.211, "feet"),
  26654. name: "Head",
  26655. image: {
  26656. source: "./media/characters/aman-aquila/head.svg",
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Minimicro",
  26663. height: math.unit(0.057, "inches")
  26664. },
  26665. {
  26666. name: "Micro",
  26667. height: math.unit(7, "inches")
  26668. },
  26669. {
  26670. name: "Mini",
  26671. height: math.unit(3 + 7 / 12, "feet")
  26672. },
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(5 + 7 / 12, "feet"),
  26676. default: true
  26677. },
  26678. {
  26679. name: "Macro",
  26680. height: math.unit(157 + 7 / 12, "feet")
  26681. },
  26682. {
  26683. name: "Megamacro",
  26684. height: math.unit(1557 + 7 / 12, "feet")
  26685. },
  26686. {
  26687. name: "Gigamacro",
  26688. height: math.unit(15557 + 7 / 12, "feet")
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(3 + 2 / 12, "inches"),
  26697. weight: math.unit(0.3, "ounces"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/hiphae/front.svg",
  26701. extra: 1931 / 1683,
  26702. bottom: 24 / 1955
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(3 + 1 / 2, "inches"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(5 + 10 / 12, "feet"),
  26719. weight: math.unit(165, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/nicky/front.svg",
  26723. extra: 3144 / 2886,
  26724. bottom: 45.6 / 3192
  26725. }
  26726. },
  26727. back: {
  26728. height: math.unit(5 + 10 / 12, "feet"),
  26729. weight: math.unit(165, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/nicky/back.svg",
  26733. extra: 3055 / 2804,
  26734. bottom: 28.4 / 3087
  26735. }
  26736. },
  26737. frontclothed: {
  26738. height: math.unit(5 + 10 / 12, "feet"),
  26739. weight: math.unit(165, "lb"),
  26740. name: "Front-clothed",
  26741. image: {
  26742. source: "./media/characters/nicky/front-clothed.svg",
  26743. extra: 3184.9 / 2926.9,
  26744. bottom: 86.5 / 3239.9
  26745. }
  26746. },
  26747. foot: {
  26748. height: math.unit(1.16, "feet"),
  26749. name: "Foot",
  26750. image: {
  26751. source: "./media/characters/nicky/foot.svg"
  26752. }
  26753. },
  26754. feet: {
  26755. height: math.unit(1.34, "feet"),
  26756. name: "Feet",
  26757. image: {
  26758. source: "./media/characters/nicky/feet.svg"
  26759. }
  26760. },
  26761. maw: {
  26762. height: math.unit(0.9, "feet"),
  26763. name: "Maw",
  26764. image: {
  26765. source: "./media/characters/nicky/maw.svg"
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(5 + 10 / 12, "feet"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Macro",
  26777. height: math.unit(60, "feet")
  26778. },
  26779. {
  26780. name: "Megamacro",
  26781. height: math.unit(1, "mile")
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26787. {
  26788. side: {
  26789. height: math.unit(10, "feet"),
  26790. weight: math.unit(600, "lb"),
  26791. name: "Side",
  26792. image: {
  26793. source: "./media/characters/blair/side.svg",
  26794. bottom: 16.6 / 475,
  26795. extra: 458 / 431
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Micro",
  26802. height: math.unit(8, "inches")
  26803. },
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(10, "feet"),
  26807. default: true
  26808. },
  26809. {
  26810. name: "Macro",
  26811. height: math.unit(180, "feet")
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(5 + 4 / 12, "feet"),
  26820. weight: math.unit(125, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/fisher/front.svg",
  26824. extra: 444 / 390,
  26825. bottom: 2 / 444.8
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Micro",
  26832. height: math.unit(4, "inches")
  26833. },
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(5 + 4 / 12, "feet"),
  26837. default: true
  26838. },
  26839. {
  26840. name: "Macro",
  26841. height: math.unit(100, "feet")
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(6.71, "feet"),
  26850. weight: math.unit(200, "lb"),
  26851. preyCapacity: math.unit(1000000, "people"),
  26852. name: "Front",
  26853. image: {
  26854. source: "./media/characters/gliss/front.svg",
  26855. extra: 2347 / 2231,
  26856. bottom: 113 / 2462
  26857. }
  26858. },
  26859. hammerspaceSize: {
  26860. height: math.unit(6.71 * 717, "feet"),
  26861. weight: math.unit(200, "lb"),
  26862. preyCapacity: math.unit(1000000, "people"),
  26863. name: "Hammerspace Size",
  26864. image: {
  26865. source: "./media/characters/gliss/front.svg",
  26866. extra: 2347 / 2231,
  26867. bottom: 113 / 2462
  26868. }
  26869. },
  26870. },
  26871. [
  26872. {
  26873. name: "Normal",
  26874. height: math.unit(6.71, "feet"),
  26875. default: true
  26876. },
  26877. ]
  26878. ))
  26879. characterMakers.push(() => makeCharacter(
  26880. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26881. {
  26882. side: {
  26883. height: math.unit(1.44, "m"),
  26884. weight: math.unit(80, "kg"),
  26885. name: "Side",
  26886. image: {
  26887. source: "./media/characters/dune-anderson/side.svg",
  26888. bottom: 49 / 1426
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Wolf-sized",
  26895. height: math.unit(1.44, "meters")
  26896. },
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(5.05, "meters"),
  26900. default: true
  26901. },
  26902. {
  26903. name: "Big",
  26904. height: math.unit(14.4, "meters")
  26905. },
  26906. {
  26907. name: "Huge",
  26908. height: math.unit(144, "meters")
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(7, "feet"),
  26917. weight: math.unit(425, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/hind/front.svg",
  26921. extra: 2091 / 1860,
  26922. bottom: 129 / 2220
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(7, "feet"),
  26927. weight: math.unit(425, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/hind/back.svg",
  26931. extra: 2091 / 1860,
  26932. bottom: 24.6 / 2309
  26933. }
  26934. },
  26935. tail: {
  26936. height: math.unit(2.8, "feet"),
  26937. name: "Tail",
  26938. image: {
  26939. source: "./media/characters/hind/tail.svg"
  26940. }
  26941. },
  26942. head: {
  26943. height: math.unit(2.55, "feet"),
  26944. name: "Head",
  26945. image: {
  26946. source: "./media/characters/hind/head.svg"
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "XS",
  26953. height: math.unit(0.7, "feet")
  26954. },
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(7, "feet"),
  26958. default: true
  26959. },
  26960. {
  26961. name: "XL",
  26962. height: math.unit(70, "feet")
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(2.1, "meters"),
  26971. weight: math.unit(150, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/tharquench-sizestealer/front.svg",
  26975. extra: 1605/1470,
  26976. bottom: 36/1641
  26977. }
  26978. },
  26979. frontAlt: {
  26980. height: math.unit(2.1, "meters"),
  26981. weight: math.unit(150, "lb"),
  26982. name: "Front (Alt)",
  26983. image: {
  26984. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26985. extra: 2318 / 2063,
  26986. bottom: 93.4 / 2410
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Nano",
  26993. height: math.unit(1, "mm")
  26994. },
  26995. {
  26996. name: "Micro",
  26997. height: math.unit(1, "cm")
  26998. },
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(2.1, "meters"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27008. {
  27009. front: {
  27010. height: math.unit(7 + 5 / 12, "feet"),
  27011. weight: math.unit(357, "lb"),
  27012. name: "Front",
  27013. image: {
  27014. source: "./media/characters/solex-draconov/front.svg",
  27015. extra: 1993 / 1865,
  27016. bottom: 117 / 2111
  27017. }
  27018. },
  27019. },
  27020. [
  27021. {
  27022. name: "Natural Height",
  27023. height: math.unit(7 + 5 / 12, "feet"),
  27024. default: true
  27025. },
  27026. {
  27027. name: "Macro",
  27028. height: math.unit(350, "feet")
  27029. },
  27030. {
  27031. name: "Macro+",
  27032. height: math.unit(1000, "feet")
  27033. },
  27034. {
  27035. name: "Megamacro",
  27036. height: math.unit(20, "km")
  27037. },
  27038. {
  27039. name: "Megamacro+",
  27040. height: math.unit(1000, "km")
  27041. },
  27042. {
  27043. name: "Gigamacro",
  27044. height: math.unit(2.5, "Gm")
  27045. },
  27046. {
  27047. name: "Teramacro",
  27048. height: math.unit(15, "Tm")
  27049. },
  27050. {
  27051. name: "Galactic",
  27052. height: math.unit(30, "Zm")
  27053. },
  27054. {
  27055. name: "Universal",
  27056. height: math.unit(21000, "Ym")
  27057. },
  27058. {
  27059. name: "Omniversal",
  27060. height: math.unit(9.861e50, "Ym")
  27061. },
  27062. {
  27063. name: "Existential",
  27064. height: math.unit(1e300, "meters")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27070. {
  27071. side: {
  27072. height: math.unit(25, "feet"),
  27073. weight: math.unit(90000, "lb"),
  27074. name: "Side",
  27075. image: {
  27076. source: "./media/characters/mandarax/side.svg",
  27077. extra: 614 / 332,
  27078. bottom: 55 / 630
  27079. }
  27080. },
  27081. lounging: {
  27082. height: math.unit(15.4, "feet"),
  27083. weight: math.unit(90000, "lb"),
  27084. name: "Lounging",
  27085. image: {
  27086. source: "./media/characters/mandarax/lounging.svg",
  27087. extra: 817/609,
  27088. bottom: 685/1502
  27089. }
  27090. },
  27091. head: {
  27092. height: math.unit(11.4, "feet"),
  27093. name: "Head",
  27094. image: {
  27095. source: "./media/characters/mandarax/head.svg"
  27096. }
  27097. },
  27098. belly: {
  27099. height: math.unit(33, "feet"),
  27100. name: "Belly",
  27101. preyCapacity: math.unit(500, "people"),
  27102. image: {
  27103. source: "./media/characters/mandarax/belly.svg"
  27104. }
  27105. },
  27106. dick: {
  27107. height: math.unit(8.46, "feet"),
  27108. name: "Dick",
  27109. image: {
  27110. source: "./media/characters/mandarax/dick.svg"
  27111. }
  27112. },
  27113. top: {
  27114. height: math.unit(28, "meters"),
  27115. name: "Top",
  27116. image: {
  27117. source: "./media/characters/mandarax/top.svg"
  27118. }
  27119. },
  27120. },
  27121. [
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(25, "feet"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(5, "feet"),
  27134. weight: math.unit(90, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/pixil/front.svg",
  27138. extra: 2000 / 1618,
  27139. bottom: 12.3 / 2011
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(5, "feet"),
  27147. default: true
  27148. },
  27149. {
  27150. name: "Megamacro",
  27151. height: math.unit(10, "miles"),
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(7 + 2 / 12, "feet"),
  27160. weight: math.unit(200, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/angel/front.svg",
  27164. extra: 1830 / 1737,
  27165. bottom: 22.6 / 1854,
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(7 + 2 / 12, "feet"),
  27173. default: true
  27174. },
  27175. {
  27176. name: "Macro",
  27177. height: math.unit(1000, "feet")
  27178. },
  27179. {
  27180. name: "Megamacro",
  27181. height: math.unit(2, "miles")
  27182. },
  27183. {
  27184. name: "Gigamacro",
  27185. height: math.unit(20, "earths")
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(5, "feet"),
  27194. weight: math.unit(180, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/mekana/front.svg",
  27198. extra: 1671 / 1605,
  27199. bottom: 3.5 / 1691
  27200. }
  27201. },
  27202. side: {
  27203. height: math.unit(5, "feet"),
  27204. weight: math.unit(180, "lb"),
  27205. name: "Side",
  27206. image: {
  27207. source: "./media/characters/mekana/side.svg",
  27208. extra: 1671 / 1605,
  27209. bottom: 3.5 / 1691
  27210. }
  27211. },
  27212. back: {
  27213. height: math.unit(5, "feet"),
  27214. weight: math.unit(180, "lb"),
  27215. name: "Back",
  27216. image: {
  27217. source: "./media/characters/mekana/back.svg",
  27218. extra: 1671 / 1605,
  27219. bottom: 3.5 / 1691
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(5, "feet"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(4 + 6 / 12, "feet"),
  27236. weight: math.unit(80, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/pixie/front.svg",
  27240. extra: 1924 / 1825,
  27241. bottom: 22.4 / 1946
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(4 + 6 / 12, "feet"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Macro",
  27253. height: math.unit(40, "feet")
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(2.1, "meters"),
  27262. weight: math.unit(200, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/the-lascivious/front.svg",
  27266. extra: 1 / 0.893,
  27267. bottom: 3.5 / 573.7
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Human Scale",
  27274. height: math.unit(2.1, "meters")
  27275. },
  27276. {
  27277. name: "Wolxi Scale",
  27278. height: math.unit(46.2, "m"),
  27279. default: true
  27280. },
  27281. {
  27282. name: "Boinker of Buildings",
  27283. height: math.unit(10, "km")
  27284. },
  27285. {
  27286. name: "Shagger of Skyscrapers",
  27287. height: math.unit(40, "km")
  27288. },
  27289. {
  27290. name: "Banger of Boroughs",
  27291. height: math.unit(4000, "km")
  27292. },
  27293. {
  27294. name: "Screwer of States",
  27295. height: math.unit(100000, "km")
  27296. },
  27297. {
  27298. name: "Pounder of Planets",
  27299. height: math.unit(2000000, "km")
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(6, "feet"),
  27308. weight: math.unit(150, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/aj/front.svg",
  27312. extra: 2039 / 1562,
  27313. bottom: 40 / 2079
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(11 + 6 / 12, "feet"),
  27321. default: true
  27322. },
  27323. {
  27324. name: "Megamacro",
  27325. height: math.unit(60, "megameters")
  27326. },
  27327. ]
  27328. ))
  27329. characterMakers.push(() => makeCharacter(
  27330. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27331. {
  27332. side: {
  27333. height: math.unit(31 + 8 / 12, "feet"),
  27334. weight: math.unit(75000, "kg"),
  27335. name: "Side",
  27336. image: {
  27337. source: "./media/characters/koros/side.svg",
  27338. extra: 1442 / 1297,
  27339. bottom: 122.7 / 1562
  27340. }
  27341. },
  27342. dicksKingsCrown: {
  27343. height: math.unit(6, "feet"),
  27344. name: "Dicks (King's Crown)",
  27345. image: {
  27346. source: "./media/characters/koros/dicks-kings-crown.svg"
  27347. }
  27348. },
  27349. dicksTailSet: {
  27350. height: math.unit(3, "feet"),
  27351. name: "Dicks (Tail Set)",
  27352. image: {
  27353. source: "./media/characters/koros/dicks-tail-set.svg"
  27354. }
  27355. },
  27356. dickCumming: {
  27357. height: math.unit(7.98, "feet"),
  27358. name: "Dick (Cumming)",
  27359. image: {
  27360. source: "./media/characters/koros/dick-cumming.svg"
  27361. }
  27362. },
  27363. dicksBack: {
  27364. height: math.unit(5.9, "feet"),
  27365. name: "Dicks (Back)",
  27366. image: {
  27367. source: "./media/characters/koros/dicks-back.svg"
  27368. }
  27369. },
  27370. dicksFront: {
  27371. height: math.unit(3.72, "feet"),
  27372. name: "Dicks (Front)",
  27373. image: {
  27374. source: "./media/characters/koros/dicks-front.svg"
  27375. }
  27376. },
  27377. dicksPeeking: {
  27378. height: math.unit(3.0, "feet"),
  27379. name: "Dicks (Peeking)",
  27380. image: {
  27381. source: "./media/characters/koros/dicks-peeking.svg"
  27382. }
  27383. },
  27384. eye: {
  27385. height: math.unit(1.7, "feet"),
  27386. name: "Eye",
  27387. image: {
  27388. source: "./media/characters/koros/eye.svg"
  27389. }
  27390. },
  27391. headFront: {
  27392. height: math.unit(11.69, "feet"),
  27393. name: "Head (Front)",
  27394. image: {
  27395. source: "./media/characters/koros/head-front.svg"
  27396. }
  27397. },
  27398. headSide: {
  27399. height: math.unit(14, "feet"),
  27400. name: "Head (Side)",
  27401. image: {
  27402. source: "./media/characters/koros/head-side.svg"
  27403. }
  27404. },
  27405. leg: {
  27406. height: math.unit(17, "feet"),
  27407. name: "Leg",
  27408. image: {
  27409. source: "./media/characters/koros/leg.svg"
  27410. }
  27411. },
  27412. mawSide: {
  27413. height: math.unit(12.8, "feet"),
  27414. name: "Maw (Side)",
  27415. image: {
  27416. source: "./media/characters/koros/maw-side.svg"
  27417. }
  27418. },
  27419. mawSpitting: {
  27420. height: math.unit(17, "feet"),
  27421. name: "Maw (Spitting)",
  27422. image: {
  27423. source: "./media/characters/koros/maw-spitting.svg"
  27424. }
  27425. },
  27426. slit: {
  27427. height: math.unit(2.8, "feet"),
  27428. name: "Slit",
  27429. image: {
  27430. source: "./media/characters/koros/slit.svg"
  27431. }
  27432. },
  27433. stomach: {
  27434. height: math.unit(6.8, "feet"),
  27435. preyCapacity: math.unit(20, "people"),
  27436. name: "Stomach",
  27437. image: {
  27438. source: "./media/characters/koros/stomach.svg"
  27439. }
  27440. },
  27441. wingspanBottom: {
  27442. height: math.unit(114, "feet"),
  27443. name: "Wingspan (Bottom)",
  27444. image: {
  27445. source: "./media/characters/koros/wingspan-bottom.svg"
  27446. }
  27447. },
  27448. wingspanTop: {
  27449. height: math.unit(104, "feet"),
  27450. name: "Wingspan (Top)",
  27451. image: {
  27452. source: "./media/characters/koros/wingspan-top.svg"
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(31 + 8 / 12, "feet"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(18 + 5 / 12, "feet"),
  27469. weight: math.unit(3750, "kg"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/vexx/front.svg",
  27473. extra: 426 / 396,
  27474. bottom: 31.5 / 458
  27475. }
  27476. },
  27477. maw: {
  27478. height: math.unit(6, "feet"),
  27479. name: "Maw",
  27480. image: {
  27481. source: "./media/characters/vexx/maw.svg"
  27482. }
  27483. },
  27484. },
  27485. [
  27486. {
  27487. name: "Normal",
  27488. height: math.unit(18 + 5 / 12, "feet"),
  27489. default: true
  27490. },
  27491. ]
  27492. ))
  27493. characterMakers.push(() => makeCharacter(
  27494. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27495. {
  27496. front: {
  27497. height: math.unit(17 + 6 / 12, "feet"),
  27498. weight: math.unit(150, "lb"),
  27499. name: "Front",
  27500. image: {
  27501. source: "./media/characters/baadra/front.svg",
  27502. extra: 1694/1553,
  27503. bottom: 179/1873
  27504. }
  27505. },
  27506. frontAlt: {
  27507. height: math.unit(17 + 6 / 12, "feet"),
  27508. weight: math.unit(150, "lb"),
  27509. name: "Front (Alt)",
  27510. image: {
  27511. source: "./media/characters/baadra/front-alt.svg",
  27512. extra: 3137 / 2890,
  27513. bottom: 168.4 / 3305
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(17 + 6 / 12, "feet"),
  27518. weight: math.unit(150, "lb"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/baadra/back.svg",
  27522. extra: 3142 / 2890,
  27523. bottom: 220 / 3371
  27524. }
  27525. },
  27526. head: {
  27527. height: math.unit(5.45, "feet"),
  27528. name: "Head",
  27529. image: {
  27530. source: "./media/characters/baadra/head.svg"
  27531. }
  27532. },
  27533. headAngry: {
  27534. height: math.unit(4.95, "feet"),
  27535. name: "Head (Angry)",
  27536. image: {
  27537. source: "./media/characters/baadra/head-angry.svg"
  27538. }
  27539. },
  27540. headOpen: {
  27541. height: math.unit(6, "feet"),
  27542. name: "Head (Open)",
  27543. image: {
  27544. source: "./media/characters/baadra/head-open.svg"
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(17 + 6 / 12, "feet"),
  27552. default: true
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(7 + 3 / 12, "feet"),
  27561. weight: math.unit(180, "lb"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/juri/front.svg",
  27565. extra: 1401 / 1237,
  27566. bottom: 18.5 / 1418
  27567. }
  27568. },
  27569. side: {
  27570. height: math.unit(7 + 3 / 12, "feet"),
  27571. weight: math.unit(180, "lb"),
  27572. name: "Side",
  27573. image: {
  27574. source: "./media/characters/juri/side.svg",
  27575. extra: 1424 / 1242,
  27576. bottom: 18.5 / 1447
  27577. }
  27578. },
  27579. sitting: {
  27580. height: math.unit(6, "feet"),
  27581. weight: math.unit(180, "lb"),
  27582. name: "Sitting",
  27583. image: {
  27584. source: "./media/characters/juri/sitting.svg",
  27585. extra: 1270 / 1143,
  27586. bottom: 100 / 1343
  27587. }
  27588. },
  27589. back: {
  27590. height: math.unit(7 + 3 / 12, "feet"),
  27591. weight: math.unit(180, "lb"),
  27592. name: "Back",
  27593. image: {
  27594. source: "./media/characters/juri/back.svg",
  27595. extra: 1377 / 1240,
  27596. bottom: 23.7 / 1405
  27597. }
  27598. },
  27599. maw: {
  27600. height: math.unit(2.8, "feet"),
  27601. name: "Maw",
  27602. image: {
  27603. source: "./media/characters/juri/maw.svg"
  27604. }
  27605. },
  27606. stomach: {
  27607. height: math.unit(0.89, "feet"),
  27608. preyCapacity: math.unit(4, "liters"),
  27609. name: "Stomach",
  27610. image: {
  27611. source: "./media/characters/juri/stomach.svg"
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(7 + 3 / 12, "feet"),
  27619. default: true
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27625. {
  27626. fox: {
  27627. height: math.unit(5 + 6 / 12, "feet"),
  27628. weight: math.unit(140, "lb"),
  27629. name: "Fox",
  27630. image: {
  27631. source: "./media/characters/maxene-sita/fox.svg",
  27632. extra: 146 / 138,
  27633. bottom: 2.1 / 148.19
  27634. }
  27635. },
  27636. foxLaying: {
  27637. height: math.unit(1.70, "feet"),
  27638. weight: math.unit(140, "lb"),
  27639. name: "Fox (Laying)",
  27640. image: {
  27641. source: "./media/characters/maxene-sita/fox-laying.svg",
  27642. extra: 910 / 572,
  27643. bottom: 71 / 981
  27644. }
  27645. },
  27646. kitsune: {
  27647. height: math.unit(10, "feet"),
  27648. weight: math.unit(800, "lb"),
  27649. name: "Kitsune",
  27650. image: {
  27651. source: "./media/characters/maxene-sita/kitsune.svg",
  27652. extra: 185 / 176,
  27653. bottom: 4.7 / 189.9
  27654. }
  27655. },
  27656. hellhound: {
  27657. height: math.unit(10, "feet"),
  27658. weight: math.unit(700, "lb"),
  27659. name: "Hellhound",
  27660. image: {
  27661. source: "./media/characters/maxene-sita/hellhound.svg",
  27662. extra: 1600 / 1545,
  27663. bottom: 81 / 1681
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(5 + 6 / 12, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27677. {
  27678. front: {
  27679. height: math.unit(3 + 4 / 12, "feet"),
  27680. weight: math.unit(70, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/maia/front.svg",
  27684. extra: 227 / 219.5,
  27685. bottom: 40 / 267
  27686. }
  27687. },
  27688. back: {
  27689. height: math.unit(3 + 4 / 12, "feet"),
  27690. weight: math.unit(70, "lb"),
  27691. name: "Back",
  27692. image: {
  27693. source: "./media/characters/maia/back.svg",
  27694. extra: 237 / 225
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(3 + 4 / 12, "feet"),
  27702. default: true
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(5 + 10 / 12, "feet"),
  27711. weight: math.unit(197, "lb"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/jabaro/front.svg",
  27715. extra: 225 / 216,
  27716. bottom: 5.06 / 230
  27717. }
  27718. },
  27719. back: {
  27720. height: math.unit(5 + 10 / 12, "feet"),
  27721. weight: math.unit(197, "lb"),
  27722. name: "Back",
  27723. image: {
  27724. source: "./media/characters/jabaro/back.svg",
  27725. extra: 225 / 219,
  27726. bottom: 1.9 / 227
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(5 + 10 / 12, "feet"),
  27734. default: true
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(5 + 8 / 12, "feet"),
  27743. weight: math.unit(139, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/risa/front.svg",
  27747. extra: 270 / 260,
  27748. bottom: 11.2 / 282
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(5 + 8 / 12, "feet"),
  27753. weight: math.unit(139, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/risa/back.svg",
  27757. extra: 264 / 255,
  27758. bottom: 4 / 268
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(5 + 8 / 12, "feet"),
  27766. default: true
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27772. {
  27773. front: {
  27774. height: math.unit(2 + 11 / 12, "feet"),
  27775. weight: math.unit(30, "lb"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/weatley/front.svg",
  27779. bottom: 10.7 / 414,
  27780. extra: 403.5 / 362
  27781. }
  27782. },
  27783. back: {
  27784. height: math.unit(2 + 11 / 12, "feet"),
  27785. weight: math.unit(30, "lb"),
  27786. name: "Back",
  27787. image: {
  27788. source: "./media/characters/weatley/back.svg",
  27789. bottom: 10.7 / 414,
  27790. extra: 403.5 / 362
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(2 + 11 / 12, "feet"),
  27798. default: true
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(5 + 2 / 12, "feet"),
  27807. weight: math.unit(50, "kg"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/mercury-crescent/front.svg",
  27811. extra: 1088 / 1033,
  27812. bottom: 18.9 / 1109
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(5 + 2 / 12, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(2, "feet"),
  27829. weight: math.unit(15, "kg"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/diamond-jones/front.svg",
  27833. extra: 727/723,
  27834. bottom: 46/773
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Normal",
  27841. height: math.unit(2, "feet"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(3, "feet"),
  27851. weight: math.unit(30, "kg"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/sweet-bit/front.svg",
  27855. extra: 675 / 567,
  27856. bottom: 27.7 / 703
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(3, "feet"),
  27864. default: true
  27865. },
  27866. ]
  27867. ))
  27868. characterMakers.push(() => makeCharacter(
  27869. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27870. {
  27871. side: {
  27872. height: math.unit(9.178, "feet"),
  27873. weight: math.unit(500, "lb"),
  27874. name: "Side",
  27875. image: {
  27876. source: "./media/characters/umbrazen/side.svg",
  27877. extra: 1730 / 1473,
  27878. bottom: 34.6 / 1765
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(9.178, "feet"),
  27886. default: true
  27887. },
  27888. ]
  27889. ))
  27890. characterMakers.push(() => makeCharacter(
  27891. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27892. {
  27893. front: {
  27894. height: math.unit(10, "feet"),
  27895. weight: math.unit(750, "lb"),
  27896. name: "Front",
  27897. image: {
  27898. source: "./media/characters/arlist/front.svg",
  27899. extra: 961 / 778,
  27900. bottom: 6.2 / 986
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(10, "feet"),
  27908. default: true
  27909. },
  27910. ]
  27911. ))
  27912. characterMakers.push(() => makeCharacter(
  27913. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27914. {
  27915. front: {
  27916. height: math.unit(5 + 1 / 12, "feet"),
  27917. weight: math.unit(110, "lb"),
  27918. name: "Front",
  27919. image: {
  27920. source: "./media/characters/aradel/front.svg",
  27921. extra: 324 / 303,
  27922. bottom: 3.6 / 329.4
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(5 + 1 / 12, "feet"),
  27930. default: true
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27936. {
  27937. dressed: {
  27938. height: math.unit(3 + 8 / 12, "feet"),
  27939. weight: math.unit(50, "lb"),
  27940. name: "Dressed",
  27941. image: {
  27942. source: "./media/characters/serryn/dressed.svg",
  27943. extra: 1792 / 1656,
  27944. bottom: 43.5 / 1840
  27945. }
  27946. },
  27947. nude: {
  27948. height: math.unit(3 + 8 / 12, "feet"),
  27949. weight: math.unit(50, "lb"),
  27950. name: "Nude",
  27951. image: {
  27952. source: "./media/characters/serryn/nude.svg",
  27953. extra: 1792 / 1656,
  27954. bottom: 43.5 / 1840
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(3 + 8 / 12, "feet"),
  27962. default: true
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27968. {
  27969. front: {
  27970. height: math.unit(7 + 10 / 12, "feet"),
  27971. weight: math.unit(255, "lb"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/xavier-thyme/front.svg",
  27975. extra: 3733 / 3642,
  27976. bottom: 131 / 3869
  27977. }
  27978. },
  27979. frontRaven: {
  27980. height: math.unit(7 + 10 / 12, "feet"),
  27981. weight: math.unit(255, "lb"),
  27982. name: "Front (Raven)",
  27983. image: {
  27984. source: "./media/characters/xavier-thyme/front-raven.svg",
  27985. extra: 4385 / 3642,
  27986. bottom: 131 / 4517
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(7 + 10 / 12, "feet"),
  27994. default: true
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(1.6, "m"),
  28003. weight: math.unit(50, "kg"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/kiki/front.svg",
  28007. extra: 4682 / 3610,
  28008. bottom: 115 / 4777
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Normal",
  28015. height: math.unit(1.6, "meters"),
  28016. default: true
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(50, "m"),
  28025. weight: math.unit(500, "tonnes"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/ryoko/front.svg",
  28029. extra: 4632 / 3926,
  28030. bottom: 193 / 4823
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(50, "meters"),
  28038. default: true
  28039. },
  28040. ]
  28041. ))
  28042. characterMakers.push(() => makeCharacter(
  28043. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28044. {
  28045. front: {
  28046. height: math.unit(30, "m"),
  28047. weight: math.unit(22, "tonnes"),
  28048. name: "Front",
  28049. image: {
  28050. source: "./media/characters/elio/front.svg",
  28051. extra: 4582 / 3720,
  28052. bottom: 236 / 4828
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(30, "meters"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(6 + 3 / 12, "feet"),
  28069. weight: math.unit(120, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/azura/front.svg",
  28073. extra: 1149 / 1135,
  28074. bottom: 45 / 1194
  28075. }
  28076. },
  28077. frontClothed: {
  28078. height: math.unit(6 + 3 / 12, "feet"),
  28079. weight: math.unit(120, "lb"),
  28080. name: "Front (Clothed)",
  28081. image: {
  28082. source: "./media/characters/azura/front-clothed.svg",
  28083. extra: 1149 / 1135,
  28084. bottom: 45 / 1194
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(6 + 3 / 12, "feet"),
  28092. default: true
  28093. },
  28094. {
  28095. name: "Macro",
  28096. height: math.unit(20 + 6 / 12, "feet")
  28097. },
  28098. {
  28099. name: "Megamacro",
  28100. height: math.unit(12, "miles")
  28101. },
  28102. {
  28103. name: "Gigamacro",
  28104. height: math.unit(10000, "miles")
  28105. },
  28106. {
  28107. name: "Teramacro",
  28108. height: math.unit(900000, "miles")
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(12, "feet"),
  28117. weight: math.unit(1, "ton"),
  28118. capacity: math.unit(660000, "gallons"),
  28119. name: "Front",
  28120. image: {
  28121. source: "./media/characters/zeus/front.svg",
  28122. extra: 5005 / 4717,
  28123. bottom: 363 / 5388
  28124. }
  28125. },
  28126. },
  28127. [
  28128. {
  28129. name: "Normal",
  28130. height: math.unit(12, "feet")
  28131. },
  28132. {
  28133. name: "Preferred Size",
  28134. height: math.unit(0.5, "miles"),
  28135. default: true
  28136. },
  28137. {
  28138. name: "Giga Horse",
  28139. height: math.unit(300, "miles")
  28140. },
  28141. {
  28142. name: "Riding Planets",
  28143. height: math.unit(30, "megameters")
  28144. },
  28145. {
  28146. name: "Cosmic Giant",
  28147. height: math.unit(3, "zettameters")
  28148. },
  28149. {
  28150. name: "Breeding God",
  28151. height: math.unit(9.92e22, "yottameters")
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28157. {
  28158. side: {
  28159. height: math.unit(9, "feet"),
  28160. weight: math.unit(1500, "kg"),
  28161. name: "Side",
  28162. image: {
  28163. source: "./media/characters/fang/side.svg",
  28164. extra: 924 / 866,
  28165. bottom: 47.5 / 972.3
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Normal",
  28172. height: math.unit(9, "feet"),
  28173. default: true
  28174. },
  28175. {
  28176. name: "Macro",
  28177. height: math.unit(75 + 6 / 12, "feet")
  28178. },
  28179. {
  28180. name: "Teramacro",
  28181. height: math.unit(50000, "miles")
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28187. {
  28188. front: {
  28189. height: math.unit(10, "feet"),
  28190. weight: math.unit(2, "tons"),
  28191. name: "Front",
  28192. image: {
  28193. source: "./media/characters/rekhit/front.svg",
  28194. extra: 2796 / 2590,
  28195. bottom: 225 / 3022
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(10, "feet"),
  28203. default: true
  28204. },
  28205. {
  28206. name: "Macro",
  28207. height: math.unit(500, "feet")
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(7 + 6.451 / 12, "feet"),
  28216. weight: math.unit(310, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/dahlia-verrick/front.svg",
  28220. extra: 1488 / 1365,
  28221. bottom: 6.2 / 1495
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(7 + 6.451 / 12, "feet"),
  28226. weight: math.unit(310, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/dahlia-verrick/back.svg",
  28230. extra: 1472 / 1351,
  28231. bottom: 5.28 / 1477
  28232. }
  28233. },
  28234. frontBusiness: {
  28235. height: math.unit(7 + 6.451 / 12, "feet"),
  28236. weight: math.unit(200, "lb"),
  28237. name: "Front (Business)",
  28238. image: {
  28239. source: "./media/characters/dahlia-verrick/front-business.svg",
  28240. extra: 1478 / 1381,
  28241. bottom: 5.5 / 1484
  28242. }
  28243. },
  28244. frontCasual: {
  28245. height: math.unit(7 + 6.451 / 12, "feet"),
  28246. weight: math.unit(200, "lb"),
  28247. name: "Front (Casual)",
  28248. image: {
  28249. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28250. extra: 1478 / 1381,
  28251. bottom: 5.5 / 1484
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Travel-Sized",
  28258. height: math.unit(7.45, "inches")
  28259. },
  28260. {
  28261. name: "Normal",
  28262. height: math.unit(7 + 6.451 / 12, "feet"),
  28263. default: true
  28264. },
  28265. {
  28266. name: "Hitting the Town",
  28267. height: math.unit(37 + 8 / 12, "feet")
  28268. },
  28269. {
  28270. name: "Stomp in the Suburbs",
  28271. height: math.unit(964 + 9.728 / 12, "feet")
  28272. },
  28273. {
  28274. name: "Sit on the City",
  28275. height: math.unit(61747 + 10.592 / 12, "feet")
  28276. },
  28277. {
  28278. name: "Glomp the Globe",
  28279. height: math.unit(252919327 + 4.832 / 12, "feet")
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(6 + 4 / 12, "feet"),
  28288. weight: math.unit(320, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/balina-mahigan/front.svg",
  28292. extra: 447 / 428,
  28293. bottom: 18 / 466
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(6 + 4 / 12, "feet"),
  28298. weight: math.unit(320, "lb"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/balina-mahigan/back.svg",
  28302. extra: 445 / 428,
  28303. bottom: 4.07 / 448
  28304. }
  28305. },
  28306. arm: {
  28307. height: math.unit(1.88, "feet"),
  28308. name: "Arm",
  28309. image: {
  28310. source: "./media/characters/balina-mahigan/arm.svg"
  28311. }
  28312. },
  28313. backPort: {
  28314. height: math.unit(0.685, "feet"),
  28315. name: "Back Port",
  28316. image: {
  28317. source: "./media/characters/balina-mahigan/back-port.svg"
  28318. }
  28319. },
  28320. hoofpaw: {
  28321. height: math.unit(1.41, "feet"),
  28322. name: "Hoofpaw",
  28323. image: {
  28324. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28325. }
  28326. },
  28327. leftHandBack: {
  28328. height: math.unit(0.938, "feet"),
  28329. name: "Left Hand (Back)",
  28330. image: {
  28331. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28332. }
  28333. },
  28334. leftHandFront: {
  28335. height: math.unit(0.938, "feet"),
  28336. name: "Left Hand (Front)",
  28337. image: {
  28338. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28339. }
  28340. },
  28341. rightHandBack: {
  28342. height: math.unit(0.95, "feet"),
  28343. name: "Right Hand (Back)",
  28344. image: {
  28345. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28346. }
  28347. },
  28348. rightHandFront: {
  28349. height: math.unit(0.95, "feet"),
  28350. name: "Right Hand (Front)",
  28351. image: {
  28352. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(6 + 4 / 12, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(6, "feet"),
  28369. weight: math.unit(320, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/balina-mejeri/front.svg",
  28373. extra: 517 / 488,
  28374. bottom: 44.2 / 561
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(6 + 4 / 12, "feet")
  28382. },
  28383. {
  28384. name: "Business",
  28385. height: math.unit(155, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28392. {
  28393. kneeling: {
  28394. height: math.unit(6 + 4 / 12, "feet"),
  28395. weight: math.unit(300 * 20, "lb"),
  28396. name: "Kneeling",
  28397. image: {
  28398. source: "./media/characters/balbarian/kneeling.svg",
  28399. extra: 922 / 862,
  28400. bottom: 42.4 / 965
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(6 + 4 / 12, "feet")
  28408. },
  28409. {
  28410. name: "Treasured",
  28411. height: math.unit(18 + 9 / 12, "feet"),
  28412. default: true
  28413. },
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(900, "feet")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(6 + 4 / 12, "feet"),
  28425. weight: math.unit(325, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/balina-amarini/front.svg",
  28429. extra: 415 / 403,
  28430. bottom: 19 / 433.4
  28431. }
  28432. },
  28433. back: {
  28434. height: math.unit(6 + 4 / 12, "feet"),
  28435. weight: math.unit(325, "lb"),
  28436. name: "Back",
  28437. image: {
  28438. source: "./media/characters/balina-amarini/back.svg",
  28439. extra: 415 / 403,
  28440. bottom: 13.5 / 432
  28441. }
  28442. },
  28443. overdrive: {
  28444. height: math.unit(6 + 4 / 12, "feet"),
  28445. weight: math.unit(400, "lb"),
  28446. name: "Overdrive",
  28447. image: {
  28448. source: "./media/characters/balina-amarini/overdrive.svg",
  28449. extra: 269 / 259,
  28450. bottom: 12 / 282
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Boom",
  28457. height: math.unit(9 + 10 / 12, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Macro",
  28462. height: math.unit(280, "feet")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28468. {
  28469. goddess: {
  28470. height: math.unit(600, "feet"),
  28471. weight: math.unit(2000000, "tons"),
  28472. name: "Goddess",
  28473. image: {
  28474. source: "./media/characters/lady-kubwa/goddess.svg",
  28475. extra: 1240.5 / 1223,
  28476. bottom: 22 / 1263
  28477. }
  28478. },
  28479. goddesser: {
  28480. height: math.unit(900, "feet"),
  28481. weight: math.unit(20000000, "lb"),
  28482. name: "Goddess-er",
  28483. image: {
  28484. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28485. extra: 899 / 888,
  28486. bottom: 12.6 / 912
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Macro",
  28493. height: math.unit(600, "feet"),
  28494. default: true
  28495. },
  28496. {
  28497. name: "Megamacro",
  28498. height: math.unit(250, "miles")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(7 + 7 / 12, "feet"),
  28507. weight: math.unit(250, "lb"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/tala-grovehorn/front.svg",
  28511. extra: 2636 / 2525,
  28512. bottom: 147 / 2781
  28513. }
  28514. },
  28515. back: {
  28516. height: math.unit(7 + 7 / 12, "feet"),
  28517. weight: math.unit(250, "lb"),
  28518. name: "Back",
  28519. image: {
  28520. source: "./media/characters/tala-grovehorn/back.svg",
  28521. extra: 2635 / 2539,
  28522. bottom: 100 / 2732.8
  28523. }
  28524. },
  28525. mouth: {
  28526. height: math.unit(1.15, "feet"),
  28527. name: "Mouth",
  28528. image: {
  28529. source: "./media/characters/tala-grovehorn/mouth.svg"
  28530. }
  28531. },
  28532. dick: {
  28533. height: math.unit(2.36, "feet"),
  28534. name: "Dick",
  28535. image: {
  28536. source: "./media/characters/tala-grovehorn/dick.svg"
  28537. }
  28538. },
  28539. slit: {
  28540. height: math.unit(0.61, "feet"),
  28541. name: "Slit",
  28542. image: {
  28543. source: "./media/characters/tala-grovehorn/slit.svg"
  28544. }
  28545. },
  28546. },
  28547. [
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(7 + 7 / 12, "feet"),
  28555. weight: math.unit(225, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/epona/front.svg",
  28559. extra: 2445 / 2290,
  28560. bottom: 251 / 2696
  28561. }
  28562. },
  28563. back: {
  28564. height: math.unit(7 + 7 / 12, "feet"),
  28565. weight: math.unit(225, "lb"),
  28566. name: "Back",
  28567. image: {
  28568. source: "./media/characters/epona/back.svg",
  28569. extra: 2546 / 2408,
  28570. bottom: 44 / 2589
  28571. }
  28572. },
  28573. genitals: {
  28574. height: math.unit(1.5, "feet"),
  28575. name: "Genitals",
  28576. image: {
  28577. source: "./media/characters/epona/genitals.svg"
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Normal",
  28584. height: math.unit(7 + 7 / 12, "feet"),
  28585. default: true
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(7, "feet"),
  28594. weight: math.unit(518, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/avia-bloodbourn/front.svg",
  28598. extra: 1466 / 1350,
  28599. bottom: 65 / 1527
  28600. }
  28601. },
  28602. },
  28603. [
  28604. ]
  28605. ))
  28606. characterMakers.push(() => makeCharacter(
  28607. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28608. {
  28609. front: {
  28610. height: math.unit(9.35, "feet"),
  28611. weight: math.unit(600, "lb"),
  28612. name: "Front",
  28613. image: {
  28614. source: "./media/characters/amera/front.svg",
  28615. extra: 891 / 818,
  28616. bottom: 30 / 922.7
  28617. }
  28618. },
  28619. back: {
  28620. height: math.unit(9.35, "feet"),
  28621. weight: math.unit(600, "lb"),
  28622. name: "Back",
  28623. image: {
  28624. source: "./media/characters/amera/back.svg",
  28625. extra: 876 / 824,
  28626. bottom: 6.8 / 884
  28627. }
  28628. },
  28629. dick: {
  28630. height: math.unit(2.14, "feet"),
  28631. name: "Dick",
  28632. image: {
  28633. source: "./media/characters/amera/dick.svg"
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Normal",
  28640. height: math.unit(9.35, "feet"),
  28641. default: true
  28642. },
  28643. ]
  28644. ))
  28645. characterMakers.push(() => makeCharacter(
  28646. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28647. {
  28648. kneeling: {
  28649. height: math.unit(3 + 4 / 12, "feet"),
  28650. weight: math.unit(90, "lb"),
  28651. name: "Kneeling",
  28652. image: {
  28653. source: "./media/characters/rosewen/kneeling.svg",
  28654. extra: 1835 / 1571,
  28655. bottom: 27.7 / 1862
  28656. }
  28657. },
  28658. },
  28659. [
  28660. {
  28661. name: "Normal",
  28662. height: math.unit(3 + 4 / 12, "feet"),
  28663. default: true
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(5 + 10 / 12, "feet"),
  28672. weight: math.unit(200, "lb"),
  28673. name: "Front",
  28674. image: {
  28675. source: "./media/characters/sabah/front.svg",
  28676. extra: 849 / 763,
  28677. bottom: 33.9 / 881
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(5 + 10 / 12, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28691. {
  28692. front: {
  28693. height: math.unit(3 + 5 / 12, "feet"),
  28694. weight: math.unit(40, "kg"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/purple-flame/front.svg",
  28698. extra: 1577 / 1412,
  28699. bottom: 97 / 1694
  28700. }
  28701. },
  28702. frontDressed: {
  28703. height: math.unit(3 + 5 / 12, "feet"),
  28704. weight: math.unit(40, "kg"),
  28705. name: "Front (Dressed)",
  28706. image: {
  28707. source: "./media/characters/purple-flame/front-dressed.svg",
  28708. extra: 1577 / 1412,
  28709. bottom: 97 / 1694
  28710. }
  28711. },
  28712. headphones: {
  28713. height: math.unit(0.85, "feet"),
  28714. name: "Headphones",
  28715. image: {
  28716. source: "./media/characters/purple-flame/headphones.svg"
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Really Small",
  28723. height: math.unit(5, "cm")
  28724. },
  28725. {
  28726. name: "Micro",
  28727. height: math.unit(1 + 5 / 12, "feet")
  28728. },
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(3 + 5 / 12, "feet"),
  28732. default: true
  28733. },
  28734. {
  28735. name: "Minimacro",
  28736. height: math.unit(125, "feet")
  28737. },
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(0.5, "miles")
  28741. },
  28742. {
  28743. name: "Megamacro",
  28744. height: math.unit(50, "miles")
  28745. },
  28746. {
  28747. name: "Gigantic",
  28748. height: math.unit(750, "miles")
  28749. },
  28750. {
  28751. name: "Planetary",
  28752. height: math.unit(15000, "miles")
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(14, "feet"),
  28761. weight: math.unit(959, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/arsenal/front.svg",
  28765. extra: 2357 / 2157,
  28766. bottom: 93 / 2458
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(14, "feet"),
  28774. default: true
  28775. },
  28776. ]
  28777. ))
  28778. characterMakers.push(() => makeCharacter(
  28779. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28780. {
  28781. front: {
  28782. height: math.unit(6, "feet"),
  28783. weight: math.unit(150, "lb"),
  28784. name: "Front",
  28785. image: {
  28786. source: "./media/characters/adira/front.svg",
  28787. extra: 1078 / 1029,
  28788. bottom: 87 / 1166
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Micro",
  28795. height: math.unit(4, "inches"),
  28796. default: true
  28797. },
  28798. {
  28799. name: "Macro",
  28800. height: math.unit(50, "feet")
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(16, "feet"),
  28809. weight: math.unit(1000, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/grim/front.svg",
  28813. extra: 622 / 614,
  28814. bottom: 18.1 / 642
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(16, "feet"),
  28819. weight: math.unit(1000, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/grim/back.svg",
  28823. extra: 610.6 / 602,
  28824. bottom: 40.8 / 652
  28825. }
  28826. },
  28827. hunched: {
  28828. height: math.unit(9.75, "feet"),
  28829. weight: math.unit(1000, "lb"),
  28830. name: "Hunched",
  28831. image: {
  28832. source: "./media/characters/grim/hunched.svg",
  28833. extra: 304 / 297,
  28834. bottom: 35.4 / 394
  28835. }
  28836. },
  28837. },
  28838. [
  28839. {
  28840. name: "Normal",
  28841. height: math.unit(16, "feet"),
  28842. default: true
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(2.3, "meters"),
  28851. weight: math.unit(300, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/sinja/front-sfw.svg",
  28855. extra: 1393 / 1294,
  28856. bottom: 70 / 1463
  28857. }
  28858. },
  28859. frontNsfw: {
  28860. height: math.unit(2.3, "meters"),
  28861. weight: math.unit(300, "lb"),
  28862. name: "Front (NSFW)",
  28863. image: {
  28864. source: "./media/characters/sinja/front-nsfw.svg",
  28865. extra: 1393 / 1294,
  28866. bottom: 70 / 1463
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(2.3, "meters"),
  28871. weight: math.unit(300, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/sinja/back.svg",
  28875. extra: 1393 / 1294,
  28876. bottom: 70 / 1463
  28877. }
  28878. },
  28879. head: {
  28880. height: math.unit(1.771, "feet"),
  28881. name: "Head",
  28882. image: {
  28883. source: "./media/characters/sinja/head.svg"
  28884. }
  28885. },
  28886. slit: {
  28887. height: math.unit(0.8, "feet"),
  28888. name: "Slit",
  28889. image: {
  28890. source: "./media/characters/sinja/slit.svg"
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(2.3, "meters")
  28898. },
  28899. {
  28900. name: "Macro",
  28901. height: math.unit(91, "meters"),
  28902. default: true
  28903. },
  28904. {
  28905. name: "Megamacro",
  28906. height: math.unit(91440, "meters")
  28907. },
  28908. {
  28909. name: "Gigamacro",
  28910. height: math.unit(60960000, "meters")
  28911. },
  28912. {
  28913. name: "Teramacro",
  28914. height: math.unit(9144000000, "meters")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(1.7, "meters"),
  28923. weight: math.unit(130, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/kyu/front.svg",
  28927. extra: 415 / 395,
  28928. bottom: 5 / 420
  28929. }
  28930. },
  28931. head: {
  28932. height: math.unit(1.75, "feet"),
  28933. name: "Head",
  28934. image: {
  28935. source: "./media/characters/kyu/head.svg"
  28936. }
  28937. },
  28938. foot: {
  28939. height: math.unit(0.81, "feet"),
  28940. name: "Foot",
  28941. image: {
  28942. source: "./media/characters/kyu/foot.svg"
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(1.7, "meters")
  28950. },
  28951. {
  28952. name: "Macro",
  28953. height: math.unit(131, "feet"),
  28954. default: true
  28955. },
  28956. {
  28957. name: "Megamacro",
  28958. height: math.unit(91440, "meters")
  28959. },
  28960. {
  28961. name: "Gigamacro",
  28962. height: math.unit(60960000, "meters")
  28963. },
  28964. {
  28965. name: "Teramacro",
  28966. height: math.unit(9144000000, "meters")
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28972. {
  28973. front: {
  28974. height: math.unit(7 + 1 / 12, "feet"),
  28975. weight: math.unit(250, "lb"),
  28976. name: "Front",
  28977. image: {
  28978. source: "./media/characters/joey/front.svg",
  28979. extra: 1791 / 1537,
  28980. bottom: 28 / 1816
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Micro",
  28987. height: math.unit(3, "inches")
  28988. },
  28989. {
  28990. name: "Normal",
  28991. height: math.unit(7 + 1 / 12, "feet"),
  28992. default: true
  28993. },
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(165, "cm"),
  29001. weight: math.unit(140, "lb"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/sam-evans/front.svg",
  29005. extra: 3417 / 3230,
  29006. bottom: 41.3 / 3417
  29007. }
  29008. },
  29009. frontSixTails: {
  29010. height: math.unit(165, "cm"),
  29011. weight: math.unit(140, "lb"),
  29012. name: "Front-six-tails",
  29013. image: {
  29014. source: "./media/characters/sam-evans/front-six-tails.svg",
  29015. extra: 3417 / 3230,
  29016. bottom: 41.3 / 3417
  29017. }
  29018. },
  29019. back: {
  29020. height: math.unit(165, "cm"),
  29021. weight: math.unit(140, "lb"),
  29022. name: "Back",
  29023. image: {
  29024. source: "./media/characters/sam-evans/back.svg",
  29025. extra: 3227 / 3032,
  29026. bottom: 6.8 / 3234
  29027. }
  29028. },
  29029. face: {
  29030. height: math.unit(0.68, "feet"),
  29031. name: "Face",
  29032. image: {
  29033. source: "./media/characters/sam-evans/face.svg"
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(165, "cm"),
  29041. default: true
  29042. },
  29043. {
  29044. name: "Macro",
  29045. height: math.unit(100, "meters")
  29046. },
  29047. {
  29048. name: "Macro+",
  29049. height: math.unit(800, "meters")
  29050. },
  29051. {
  29052. name: "Macro++",
  29053. height: math.unit(3, "km")
  29054. },
  29055. {
  29056. name: "Macro+++",
  29057. height: math.unit(30, "km")
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29063. {
  29064. front: {
  29065. height: math.unit(10, "feet"),
  29066. weight: math.unit(750, "lb"),
  29067. name: "Front",
  29068. image: {
  29069. source: "./media/characters/juliet-a/front.svg",
  29070. extra: 1766 / 1720,
  29071. bottom: 43 / 1809
  29072. }
  29073. },
  29074. back: {
  29075. height: math.unit(10, "feet"),
  29076. weight: math.unit(750, "lb"),
  29077. name: "Back",
  29078. image: {
  29079. source: "./media/characters/juliet-a/back.svg",
  29080. extra: 1781 / 1734,
  29081. bottom: 35 / 1810,
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(10, "feet"),
  29089. default: true
  29090. },
  29091. {
  29092. name: "Dragon Form",
  29093. height: math.unit(250, "feet")
  29094. },
  29095. {
  29096. name: "Macro",
  29097. height: math.unit(1000, "feet")
  29098. },
  29099. {
  29100. name: "Megamacro",
  29101. height: math.unit(10000, "feet")
  29102. }
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29107. {
  29108. regular: {
  29109. height: math.unit(7 + 3 / 12, "feet"),
  29110. weight: math.unit(260, "lb"),
  29111. name: "Regular",
  29112. image: {
  29113. source: "./media/characters/wild/regular.svg",
  29114. extra: 97.45 / 92,
  29115. bottom: 6.8 / 104.3
  29116. }
  29117. },
  29118. biggums: {
  29119. height: math.unit(8 + 6 / 12, "feet"),
  29120. weight: math.unit(425, "lb"),
  29121. name: "Biggums",
  29122. image: {
  29123. source: "./media/characters/wild/biggums.svg",
  29124. extra: 97.45 / 92,
  29125. bottom: 7.5 / 132.34
  29126. }
  29127. },
  29128. mawRegular: {
  29129. height: math.unit(1.24, "feet"),
  29130. name: "Maw (Regular)",
  29131. image: {
  29132. source: "./media/characters/wild/maw.svg"
  29133. }
  29134. },
  29135. mawBiggums: {
  29136. height: math.unit(1.47, "feet"),
  29137. name: "Maw (Biggums)",
  29138. image: {
  29139. source: "./media/characters/wild/maw.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(7 + 3 / 12, "feet"),
  29147. default: true
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29153. {
  29154. front: {
  29155. height: math.unit(2.5, "meters"),
  29156. weight: math.unit(200, "kg"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/vidar/front.svg",
  29160. extra: 2994 / 2795,
  29161. bottom: 56 / 3061
  29162. }
  29163. },
  29164. back: {
  29165. height: math.unit(2.5, "meters"),
  29166. weight: math.unit(200, "kg"),
  29167. name: "Back",
  29168. image: {
  29169. source: "./media/characters/vidar/back.svg",
  29170. extra: 3131 / 2928,
  29171. bottom: 13.5 / 3141.5
  29172. }
  29173. },
  29174. feral: {
  29175. height: math.unit(2.5, "meters"),
  29176. weight: math.unit(2000, "kg"),
  29177. name: "Feral",
  29178. image: {
  29179. source: "./media/characters/vidar/feral.svg",
  29180. extra: 2790 / 1765,
  29181. bottom: 6 / 2796
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(2.5, "meters"),
  29189. default: true
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(100, "meters")
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(5 + 9 / 12, "feet"),
  29202. weight: math.unit(120, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/ash/front.svg",
  29206. extra: 2189 / 1961,
  29207. bottom: 5.2 / 2194
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(5 + 9 / 12, "feet"),
  29215. default: true
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(9, "feet"),
  29224. weight: math.unit(10000, "lb"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/gygabite/front.svg",
  29228. bottom: 31.7 / 537.8,
  29229. extra: 505 / 370
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(9, "feet"),
  29237. default: true
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(12, "feet"),
  29246. weight: math.unit(4000, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/p0tat0/front.svg",
  29250. extra: 1065 / 921,
  29251. bottom: 55.7 / 1121.25
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(12, "feet"),
  29259. default: true
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29265. {
  29266. side: {
  29267. height: math.unit(6.5, "feet"),
  29268. weight: math.unit(800, "lb"),
  29269. name: "Side",
  29270. image: {
  29271. source: "./media/characters/dusk/side.svg",
  29272. extra: 615 / 373,
  29273. bottom: 53 / 664
  29274. }
  29275. },
  29276. sitting: {
  29277. height: math.unit(7, "feet"),
  29278. weight: math.unit(800, "lb"),
  29279. name: "Sitting",
  29280. image: {
  29281. source: "./media/characters/dusk/sitting.svg",
  29282. extra: 753 / 425,
  29283. bottom: 33 / 774
  29284. }
  29285. },
  29286. head: {
  29287. height: math.unit(6.1, "feet"),
  29288. name: "Head",
  29289. image: {
  29290. source: "./media/characters/dusk/head.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(7, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(15, "feet"),
  29307. weight: math.unit(7000, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/jay-direwolf/front.svg",
  29311. extra: 1810 / 1732,
  29312. bottom: 66 / 1892
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(15, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(4 + 9 / 12, "feet"),
  29329. weight: math.unit(130, "lb"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/anchovie/front.svg",
  29333. extra: 382 / 350,
  29334. bottom: 25 / 409
  29335. }
  29336. },
  29337. back: {
  29338. height: math.unit(4 + 9 / 12, "feet"),
  29339. weight: math.unit(130, "lb"),
  29340. name: "Back",
  29341. image: {
  29342. source: "./media/characters/anchovie/back.svg",
  29343. extra: 385 / 352,
  29344. bottom: 16.6 / 402
  29345. }
  29346. },
  29347. frontDressed: {
  29348. height: math.unit(4 + 9 / 12, "feet"),
  29349. weight: math.unit(130, "lb"),
  29350. name: "Front (Dressed)",
  29351. image: {
  29352. source: "./media/characters/anchovie/front-dressed.svg",
  29353. extra: 382 / 350,
  29354. bottom: 25 / 409
  29355. }
  29356. },
  29357. backDressed: {
  29358. height: math.unit(4 + 9 / 12, "feet"),
  29359. weight: math.unit(130, "lb"),
  29360. name: "Back (Dressed)",
  29361. image: {
  29362. source: "./media/characters/anchovie/back-dressed.svg",
  29363. extra: 385 / 352,
  29364. bottom: 16.6 / 402
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Micro",
  29371. height: math.unit(6.4, "inches")
  29372. },
  29373. {
  29374. name: "Normal",
  29375. height: math.unit(4 + 9 / 12, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29382. {
  29383. front: {
  29384. height: math.unit(2, "meters"),
  29385. weight: math.unit(180, "lb"),
  29386. name: "Front",
  29387. image: {
  29388. source: "./media/characters/acidrenamon/front.svg",
  29389. extra: 987 / 890,
  29390. bottom: 22.8 / 1009
  29391. }
  29392. },
  29393. back: {
  29394. height: math.unit(2, "meters"),
  29395. weight: math.unit(180, "lb"),
  29396. name: "Back",
  29397. image: {
  29398. source: "./media/characters/acidrenamon/back.svg",
  29399. extra: 983 / 891,
  29400. bottom: 8.4 / 992
  29401. }
  29402. },
  29403. head: {
  29404. height: math.unit(1.92, "feet"),
  29405. name: "Head",
  29406. image: {
  29407. source: "./media/characters/acidrenamon/head.svg"
  29408. }
  29409. },
  29410. rump: {
  29411. height: math.unit(1.72, "feet"),
  29412. name: "Rump",
  29413. image: {
  29414. source: "./media/characters/acidrenamon/rump.svg"
  29415. }
  29416. },
  29417. tail: {
  29418. height: math.unit(4.2, "feet"),
  29419. name: "Tail",
  29420. image: {
  29421. source: "./media/characters/acidrenamon/tail.svg"
  29422. }
  29423. },
  29424. },
  29425. [
  29426. {
  29427. name: "Normal",
  29428. height: math.unit(2, "meters"),
  29429. default: true
  29430. },
  29431. {
  29432. name: "Minimacro",
  29433. height: math.unit(7, "meters")
  29434. },
  29435. {
  29436. name: "Macro",
  29437. height: math.unit(200, "meters")
  29438. },
  29439. {
  29440. name: "Gigamacro",
  29441. height: math.unit(0.2, "earths")
  29442. },
  29443. ]
  29444. ))
  29445. characterMakers.push(() => makeCharacter(
  29446. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29447. {
  29448. front: {
  29449. height: math.unit(152, "feet"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/kenzie-lee/front.svg",
  29453. extra: 1869/1774,
  29454. bottom: 128/1997
  29455. }
  29456. },
  29457. side: {
  29458. height: math.unit(86, "feet"),
  29459. name: "Side",
  29460. image: {
  29461. source: "./media/characters/kenzie-lee/side.svg",
  29462. extra: 930/815,
  29463. bottom: 177/1107
  29464. }
  29465. },
  29466. paw: {
  29467. height: math.unit(15, "feet"),
  29468. name: "Paw",
  29469. image: {
  29470. source: "./media/characters/kenzie-lee/paw.svg"
  29471. }
  29472. },
  29473. },
  29474. [
  29475. {
  29476. name: "Kenzie Flea",
  29477. height: math.unit(2, "mm"),
  29478. default: true
  29479. },
  29480. {
  29481. name: "Micro",
  29482. height: math.unit(2, "inches")
  29483. },
  29484. {
  29485. name: "Normal",
  29486. height: math.unit(152, "feet")
  29487. },
  29488. {
  29489. name: "Megamacro",
  29490. height: math.unit(7, "miles")
  29491. },
  29492. {
  29493. name: "Gigamacro",
  29494. height: math.unit(8000, "miles")
  29495. },
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(6, "feet"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/withers/front.svg",
  29506. extra: 1935/1760,
  29507. bottom: 72/2007
  29508. }
  29509. },
  29510. back: {
  29511. height: math.unit(6, "feet"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/withers/back.svg",
  29515. extra: 1944/1792,
  29516. bottom: 12/1956
  29517. }
  29518. },
  29519. dressed: {
  29520. height: math.unit(6, "feet"),
  29521. name: "Dressed",
  29522. image: {
  29523. source: "./media/characters/withers/dressed.svg",
  29524. extra: 1937/1765,
  29525. bottom: 73/2010
  29526. }
  29527. },
  29528. phase1: {
  29529. height: math.unit(1.1, "feet"),
  29530. name: "Phase 1",
  29531. image: {
  29532. source: "./media/characters/withers/phase-1.svg",
  29533. extra: 1885/1232,
  29534. bottom: 0/1885
  29535. }
  29536. },
  29537. phase2: {
  29538. height: math.unit(1.05, "feet"),
  29539. name: "Phase 2",
  29540. image: {
  29541. source: "./media/characters/withers/phase-2.svg",
  29542. extra: 1792/1090,
  29543. bottom: 0/1792
  29544. }
  29545. },
  29546. partyWipe: {
  29547. height: math.unit(1.1, "feet"),
  29548. name: "Party Wipe",
  29549. image: {
  29550. source: "./media/characters/withers/party-wipe.svg",
  29551. extra: 1864/1207,
  29552. bottom: 0/1864
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Macro",
  29559. height: math.unit(167, "feet"),
  29560. default: true
  29561. },
  29562. {
  29563. name: "Megamacro",
  29564. height: math.unit(15, "miles")
  29565. }
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(6 + 7 / 12, "feet"),
  29573. weight: math.unit(250, "lb"),
  29574. name: "Front",
  29575. image: {
  29576. source: "./media/characters/nemoskii/front.svg",
  29577. extra: 2270 / 1734,
  29578. bottom: 86 / 2354
  29579. }
  29580. },
  29581. back: {
  29582. height: math.unit(6 + 7 / 12, "feet"),
  29583. weight: math.unit(250, "lb"),
  29584. name: "Back",
  29585. image: {
  29586. source: "./media/characters/nemoskii/back.svg",
  29587. extra: 1845 / 1788,
  29588. bottom: 10.5 / 1852
  29589. }
  29590. },
  29591. head: {
  29592. height: math.unit(1.31, "feet"),
  29593. name: "Head",
  29594. image: {
  29595. source: "./media/characters/nemoskii/head.svg"
  29596. }
  29597. },
  29598. },
  29599. [
  29600. {
  29601. name: "Micro",
  29602. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29603. },
  29604. {
  29605. name: "Normal",
  29606. height: math.unit(6 + 7 / 12, "feet"),
  29607. default: true
  29608. },
  29609. {
  29610. name: "Macro",
  29611. height: math.unit((6 + 7 / 12) * 150, "feet")
  29612. },
  29613. {
  29614. name: "Macro+",
  29615. height: math.unit((6 + 7 / 12) * 500, "feet")
  29616. },
  29617. {
  29618. name: "Megamacro",
  29619. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(1, "mile"),
  29628. weight: math.unit(265261.9, "lb"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/shui/front.svg",
  29632. extra: 1633 / 1564,
  29633. bottom: 91.5 / 1726
  29634. }
  29635. },
  29636. },
  29637. [
  29638. {
  29639. name: "Macro",
  29640. height: math.unit(1, "mile"),
  29641. default: true
  29642. },
  29643. ]
  29644. ))
  29645. characterMakers.push(() => makeCharacter(
  29646. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29647. {
  29648. front: {
  29649. height: math.unit(12 + 6 / 12, "feet"),
  29650. weight: math.unit(1342, "lb"),
  29651. name: "Front",
  29652. image: {
  29653. source: "./media/characters/arokh-takakura/front.svg",
  29654. extra: 1089 / 1043,
  29655. bottom: 77.4 / 1176.7
  29656. }
  29657. },
  29658. back: {
  29659. height: math.unit(12 + 6 / 12, "feet"),
  29660. weight: math.unit(1342, "lb"),
  29661. name: "Back",
  29662. image: {
  29663. source: "./media/characters/arokh-takakura/back.svg",
  29664. extra: 1046 / 1019,
  29665. bottom: 102 / 1150
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Big",
  29672. height: math.unit(12 + 6 / 12, "feet"),
  29673. default: true
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29679. {
  29680. front: {
  29681. height: math.unit(5 + 6 / 12, "feet"),
  29682. weight: math.unit(150, "lb"),
  29683. name: "Front",
  29684. image: {
  29685. source: "./media/characters/theo/front.svg",
  29686. extra: 1184 / 1131,
  29687. bottom: 7.4 / 1191
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Micro",
  29694. height: math.unit(5, "inches")
  29695. },
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(5 + 6 / 12, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(5 + 9 / 12, "feet"),
  29708. weight: math.unit(130, "lb"),
  29709. name: "Front",
  29710. image: {
  29711. source: "./media/characters/cecelia-swift/front.svg",
  29712. extra: 502 / 484,
  29713. bottom: 23 / 523
  29714. }
  29715. },
  29716. back: {
  29717. height: math.unit(5 + 9 / 12, "feet"),
  29718. weight: math.unit(130, "lb"),
  29719. name: "Back",
  29720. image: {
  29721. source: "./media/characters/cecelia-swift/back.svg",
  29722. extra: 499 / 485,
  29723. bottom: 12 / 511
  29724. }
  29725. },
  29726. head: {
  29727. height: math.unit(0.90, "feet"),
  29728. name: "Head",
  29729. image: {
  29730. source: "./media/characters/cecelia-swift/head.svg"
  29731. }
  29732. },
  29733. rump: {
  29734. height: math.unit(1.75, "feet"),
  29735. name: "Rump",
  29736. image: {
  29737. source: "./media/characters/cecelia-swift/rump.svg"
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Normal",
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. default: true
  29746. },
  29747. {
  29748. name: "Big",
  29749. height: math.unit(50, "feet")
  29750. },
  29751. {
  29752. name: "Macro",
  29753. height: math.unit(100, "feet")
  29754. },
  29755. {
  29756. name: "Macro+",
  29757. height: math.unit(500, "feet")
  29758. },
  29759. {
  29760. name: "Macro++",
  29761. height: math.unit(1000, "feet")
  29762. },
  29763. ]
  29764. ))
  29765. characterMakers.push(() => makeCharacter(
  29766. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29767. {
  29768. front: {
  29769. height: math.unit(6, "feet"),
  29770. weight: math.unit(150, "lb"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/kaunan/front.svg",
  29774. extra: 2890 / 2523,
  29775. bottom: 49 / 2939
  29776. }
  29777. },
  29778. },
  29779. [
  29780. {
  29781. name: "Macro",
  29782. height: math.unit(150, "feet"),
  29783. default: true
  29784. },
  29785. ]
  29786. ))
  29787. characterMakers.push(() => makeCharacter(
  29788. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29789. {
  29790. dressed: {
  29791. height: math.unit(175, "cm"),
  29792. weight: math.unit(60, "kg"),
  29793. name: "Dressed",
  29794. image: {
  29795. source: "./media/characters/fei/dressed.svg",
  29796. extra: 1402/1278,
  29797. bottom: 27/1429
  29798. }
  29799. },
  29800. nude: {
  29801. height: math.unit(175, "cm"),
  29802. weight: math.unit(60, "kg"),
  29803. name: "Nude",
  29804. image: {
  29805. source: "./media/characters/fei/nude.svg",
  29806. extra: 1402/1278,
  29807. bottom: 27/1429
  29808. }
  29809. },
  29810. heels: {
  29811. height: math.unit(0.466, "feet"),
  29812. name: "Heels",
  29813. image: {
  29814. source: "./media/characters/fei/heels.svg",
  29815. extra: 156/152,
  29816. bottom: 28/184
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Mortal",
  29823. height: math.unit(175, "cm")
  29824. },
  29825. {
  29826. name: "Normal",
  29827. height: math.unit(3500, "m")
  29828. },
  29829. {
  29830. name: "Stroll",
  29831. height: math.unit(18.4, "km"),
  29832. default: true
  29833. },
  29834. {
  29835. name: "Showoff",
  29836. height: math.unit(175, "km")
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(7, "feet"),
  29845. weight: math.unit(1000, "kg"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/edrax/front.svg",
  29849. extra: 2838 / 2550,
  29850. bottom: 130 / 2968
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Small",
  29857. height: math.unit(7, "feet")
  29858. },
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(1500, "meters")
  29862. },
  29863. {
  29864. name: "Mega",
  29865. height: math.unit(12000000, "km"),
  29866. default: true
  29867. },
  29868. {
  29869. name: "Megamacro",
  29870. height: math.unit(10600000, "lightyears")
  29871. },
  29872. {
  29873. name: "Hypermacro",
  29874. height: math.unit(256, "yottameters")
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(10, "feet"),
  29883. weight: math.unit(750, "lb"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/clove/front.svg",
  29887. extra: 1918/1751,
  29888. bottom: 52/1970
  29889. }
  29890. },
  29891. back: {
  29892. height: math.unit(10, "feet"),
  29893. weight: math.unit(750, "lb"),
  29894. name: "Back",
  29895. image: {
  29896. source: "./media/characters/clove/back.svg",
  29897. extra: 1912/1747,
  29898. bottom: 50/1962
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Normal",
  29905. height: math.unit(10, "feet"),
  29906. default: true
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29912. {
  29913. front: {
  29914. height: math.unit(4, "feet"),
  29915. weight: math.unit(50, "lb"),
  29916. name: "Front",
  29917. image: {
  29918. source: "./media/characters/alex-rabbit/front.svg",
  29919. extra: 507 / 458,
  29920. bottom: 18.5 / 527
  29921. }
  29922. },
  29923. back: {
  29924. height: math.unit(4, "feet"),
  29925. weight: math.unit(50, "lb"),
  29926. name: "Back",
  29927. image: {
  29928. source: "./media/characters/alex-rabbit/back.svg",
  29929. extra: 502 / 460,
  29930. bottom: 18.9 / 521
  29931. }
  29932. },
  29933. },
  29934. [
  29935. {
  29936. name: "Normal",
  29937. height: math.unit(4, "feet"),
  29938. default: true
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(1 + 3 / 12, "feet"),
  29947. weight: math.unit(80, "lb"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/zander-rose/front.svg",
  29951. extra: 916 / 797,
  29952. bottom: 17 / 933
  29953. }
  29954. },
  29955. back: {
  29956. height: math.unit(1 + 3 / 12, "feet"),
  29957. weight: math.unit(80, "lb"),
  29958. name: "Back",
  29959. image: {
  29960. source: "./media/characters/zander-rose/back.svg",
  29961. extra: 903 / 779,
  29962. bottom: 31 / 934
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(1 + 3 / 12, "feet"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29976. {
  29977. anthro: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Anthro",
  29981. image: {
  29982. source: "./media/characters/razz/anthro.svg",
  29983. extra: 1437 / 1343,
  29984. bottom: 48 / 1485
  29985. }
  29986. },
  29987. feral: {
  29988. height: math.unit(6, "feet"),
  29989. weight: math.unit(150, "lb"),
  29990. name: "Feral",
  29991. image: {
  29992. source: "./media/characters/razz/feral.svg",
  29993. extra: 2569 / 1385,
  29994. bottom: 95 / 2664
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Normal",
  30001. height: math.unit(6, "feet"),
  30002. default: true
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30008. {
  30009. front: {
  30010. height: math.unit(9 + 4 / 12, "feet"),
  30011. weight: math.unit(500, "lb"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/morrigan/front.svg",
  30015. extra: 2707 / 2579,
  30016. bottom: 156 / 2863
  30017. }
  30018. },
  30019. },
  30020. [
  30021. {
  30022. name: "Normal",
  30023. height: math.unit(9 + 4 / 12, "feet"),
  30024. default: true
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(5, "stories"),
  30033. weight: math.unit(4000, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/jenene/front.svg",
  30037. extra: 1780 / 1710,
  30038. bottom: 57 / 1837
  30039. }
  30040. },
  30041. },
  30042. [
  30043. {
  30044. name: "Normal",
  30045. height: math.unit(5, "stories"),
  30046. default: true
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30052. {
  30053. taurSfw: {
  30054. height: math.unit(10, "meters"),
  30055. weight: math.unit(17500, "kg"),
  30056. name: "Taur",
  30057. image: {
  30058. source: "./media/characters/faey/taur-sfw.svg",
  30059. extra: 1200 / 968,
  30060. bottom: 41 / 1241
  30061. }
  30062. },
  30063. chestmaw: {
  30064. height: math.unit(2.01, "meters"),
  30065. name: "Chestmaw",
  30066. image: {
  30067. source: "./media/characters/faey/chestmaw.svg"
  30068. }
  30069. },
  30070. foot: {
  30071. height: math.unit(2.43, "meters"),
  30072. name: "Foot",
  30073. image: {
  30074. source: "./media/characters/faey/foot.svg"
  30075. }
  30076. },
  30077. jaws: {
  30078. height: math.unit(1.66, "meters"),
  30079. name: "Jaws",
  30080. image: {
  30081. source: "./media/characters/faey/jaws.svg"
  30082. }
  30083. },
  30084. tongues: {
  30085. height: math.unit(2.01, "meters"),
  30086. name: "Tongues",
  30087. image: {
  30088. source: "./media/characters/faey/tongues.svg"
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Small",
  30095. height: math.unit(10, "meters"),
  30096. default: true
  30097. },
  30098. {
  30099. name: "Big",
  30100. height: math.unit(500000, "km")
  30101. },
  30102. ]
  30103. ))
  30104. characterMakers.push(() => makeCharacter(
  30105. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30106. {
  30107. front: {
  30108. height: math.unit(7, "feet"),
  30109. weight: math.unit(275, "lb"),
  30110. name: "Front",
  30111. image: {
  30112. source: "./media/characters/roku/front.svg",
  30113. extra: 903 / 878,
  30114. bottom: 37 / 940
  30115. }
  30116. },
  30117. },
  30118. [
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(7, "feet"),
  30122. default: true
  30123. },
  30124. {
  30125. name: "Macro",
  30126. height: math.unit(500, "feet")
  30127. },
  30128. {
  30129. name: "Megamacro",
  30130. height: math.unit(200, "miles")
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(6 + 2 / 12, "feet"),
  30139. weight: math.unit(150, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/lira/front.svg",
  30143. extra: 1727 / 1605,
  30144. bottom: 26 / 1753
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(6 + 2 / 12, "feet"),
  30149. weight: math.unit(150, "lb"),
  30150. name: "Back",
  30151. image: {
  30152. source: "./media/characters/lira/back.svg",
  30153. extra: 1713/1621,
  30154. bottom: 20/1733
  30155. }
  30156. },
  30157. hand: {
  30158. height: math.unit(0.75, "feet"),
  30159. name: "Hand",
  30160. image: {
  30161. source: "./media/characters/lira/hand.svg"
  30162. }
  30163. },
  30164. maw: {
  30165. height: math.unit(0.65, "feet"),
  30166. name: "Maw",
  30167. image: {
  30168. source: "./media/characters/lira/maw.svg"
  30169. }
  30170. },
  30171. pawDigi: {
  30172. height: math.unit(1.6, "feet"),
  30173. name: "Paw Digi",
  30174. image: {
  30175. source: "./media/characters/lira/paw-digi.svg"
  30176. }
  30177. },
  30178. pawPlanti: {
  30179. height: math.unit(1.4, "feet"),
  30180. name: "Paw Planti",
  30181. image: {
  30182. source: "./media/characters/lira/paw-planti.svg"
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(6 + 2 / 12, "feet"),
  30190. default: true
  30191. },
  30192. {
  30193. name: "Macro",
  30194. height: math.unit(100, "feet")
  30195. },
  30196. {
  30197. name: "Macro²",
  30198. height: math.unit(1600, "feet")
  30199. },
  30200. {
  30201. name: "Planetary",
  30202. height: math.unit(20, "earths")
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/hadjet/front.svg",
  30215. extra: 1480 / 1346,
  30216. bottom: 26 / 1506
  30217. }
  30218. },
  30219. frontNsfw: {
  30220. height: math.unit(6, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Front (NSFW)",
  30223. image: {
  30224. source: "./media/characters/hadjet/front-nsfw.svg",
  30225. extra: 1440 / 1358,
  30226. bottom: 52 / 1492
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Macro",
  30233. height: math.unit(10, "stories"),
  30234. default: true
  30235. },
  30236. {
  30237. name: "Megamacro",
  30238. height: math.unit(1.5, "miles")
  30239. },
  30240. {
  30241. name: "Megamacro+",
  30242. height: math.unit(5, "miles")
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30248. {
  30249. side: {
  30250. height: math.unit(106, "feet"),
  30251. weight: math.unit(500, "tonnes"),
  30252. name: "Side",
  30253. image: {
  30254. source: "./media/characters/kodran/side.svg",
  30255. extra: 553 / 480,
  30256. bottom: 33 / 586
  30257. }
  30258. },
  30259. front: {
  30260. height: math.unit(132, "feet"),
  30261. weight: math.unit(500, "tonnes"),
  30262. name: "Front",
  30263. image: {
  30264. source: "./media/characters/kodran/front.svg",
  30265. extra: 667 / 643,
  30266. bottom: 42 / 709
  30267. }
  30268. },
  30269. flying: {
  30270. height: math.unit(350, "feet"),
  30271. weight: math.unit(500, "tonnes"),
  30272. name: "Flying",
  30273. image: {
  30274. source: "./media/characters/kodran/flying.svg"
  30275. }
  30276. },
  30277. foot: {
  30278. height: math.unit(33, "feet"),
  30279. name: "Foot",
  30280. image: {
  30281. source: "./media/characters/kodran/foot.svg"
  30282. }
  30283. },
  30284. footFront: {
  30285. height: math.unit(19, "feet"),
  30286. name: "Foot (Front)",
  30287. image: {
  30288. source: "./media/characters/kodran/foot-front.svg",
  30289. extra: 261 / 261,
  30290. bottom: 91 / 352
  30291. }
  30292. },
  30293. headFront: {
  30294. height: math.unit(53, "feet"),
  30295. name: "Head (Front)",
  30296. image: {
  30297. source: "./media/characters/kodran/head-front.svg"
  30298. }
  30299. },
  30300. headSide: {
  30301. height: math.unit(65, "feet"),
  30302. name: "Head (Side)",
  30303. image: {
  30304. source: "./media/characters/kodran/head-side.svg"
  30305. }
  30306. },
  30307. throat: {
  30308. height: math.unit(79, "feet"),
  30309. name: "Throat",
  30310. image: {
  30311. source: "./media/characters/kodran/throat.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Large",
  30318. height: math.unit(106, "feet"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30325. {
  30326. side: {
  30327. height: math.unit(11, "feet"),
  30328. weight: math.unit(150, "lb"),
  30329. name: "Side",
  30330. image: {
  30331. source: "./media/characters/pyxaron/side.svg",
  30332. extra: 305 / 195,
  30333. bottom: 17 / 322
  30334. }
  30335. },
  30336. },
  30337. [
  30338. {
  30339. name: "Normal",
  30340. height: math.unit(11, "feet"),
  30341. default: true
  30342. },
  30343. ]
  30344. ))
  30345. characterMakers.push(() => makeCharacter(
  30346. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30347. {
  30348. front: {
  30349. height: math.unit(6, "feet"),
  30350. weight: math.unit(150, "lb"),
  30351. name: "Front",
  30352. image: {
  30353. source: "./media/characters/meep/front.svg",
  30354. extra: 88 / 80,
  30355. bottom: 6 / 94
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Fun Sized",
  30362. height: math.unit(2, "inches"),
  30363. default: true
  30364. },
  30365. {
  30366. name: "Friend Sized",
  30367. height: math.unit(8, "inches")
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(15, "feet"),
  30376. weight: math.unit(2500, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/holly-rabbit/front.svg",
  30380. extra: 1433 / 1233,
  30381. bottom: 125 / 1558
  30382. }
  30383. },
  30384. dick: {
  30385. height: math.unit(4.6, "feet"),
  30386. name: "Dick",
  30387. image: {
  30388. source: "./media/characters/holly-rabbit/dick.svg"
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Normal",
  30395. height: math.unit(15, "feet"),
  30396. default: true
  30397. },
  30398. {
  30399. name: "Macro",
  30400. height: math.unit(250, "feet")
  30401. },
  30402. {
  30403. name: "Macro+",
  30404. height: math.unit(2500, "feet")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(3.02, "meters"),
  30413. weight: math.unit(500, "kg"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/drena/front.svg",
  30417. extra: 282 / 243,
  30418. bottom: 8 / 290
  30419. }
  30420. },
  30421. side: {
  30422. height: math.unit(3.02, "meters"),
  30423. weight: math.unit(500, "kg"),
  30424. name: "Side",
  30425. image: {
  30426. source: "./media/characters/drena/side.svg",
  30427. extra: 280 / 245,
  30428. bottom: 10 / 290
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(3.02, "meters"),
  30433. weight: math.unit(500, "kg"),
  30434. name: "Back",
  30435. image: {
  30436. source: "./media/characters/drena/back.svg",
  30437. extra: 278 / 243,
  30438. bottom: 2 / 280
  30439. }
  30440. },
  30441. foot: {
  30442. height: math.unit(0.75, "meters"),
  30443. name: "Foot",
  30444. image: {
  30445. source: "./media/characters/drena/foot.svg"
  30446. }
  30447. },
  30448. maw: {
  30449. height: math.unit(0.82, "meters"),
  30450. name: "Maw",
  30451. image: {
  30452. source: "./media/characters/drena/maw.svg"
  30453. }
  30454. },
  30455. eating: {
  30456. height: math.unit(0.75, "meters"),
  30457. name: "Eating",
  30458. image: {
  30459. source: "./media/characters/drena/eating.svg"
  30460. }
  30461. },
  30462. rump: {
  30463. height: math.unit(0.93, "meters"),
  30464. name: "Rump",
  30465. image: {
  30466. source: "./media/characters/drena/rump.svg"
  30467. }
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Normal",
  30473. height: math.unit(3.02, "meters"),
  30474. default: true
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(6 + 4 / 12, "feet"),
  30483. weight: math.unit(250, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/remmyzilla/front.svg",
  30487. extra: 4033 / 3588,
  30488. bottom: 123 / 4156
  30489. }
  30490. },
  30491. back: {
  30492. height: math.unit(6 + 4 / 12, "feet"),
  30493. weight: math.unit(250, "lb"),
  30494. name: "Back",
  30495. image: {
  30496. source: "./media/characters/remmyzilla/back.svg",
  30497. extra: 2687 / 2555,
  30498. bottom: 48 / 2735
  30499. }
  30500. },
  30501. paw: {
  30502. height: math.unit(1.73, "feet"),
  30503. name: "Paw",
  30504. image: {
  30505. source: "./media/characters/remmyzilla/paw.svg"
  30506. },
  30507. extraAttributes: {
  30508. "toeSize": {
  30509. name: "Toe Size",
  30510. power: 2,
  30511. type: "area",
  30512. base: math.unit(0.0035, "m^2")
  30513. },
  30514. "padSize": {
  30515. name: "Pad Size",
  30516. power: 2,
  30517. type: "area",
  30518. base: math.unit(0.015, "m^2")
  30519. },
  30520. "pawsize": {
  30521. name: "Paw Size",
  30522. power: 2,
  30523. type: "area",
  30524. base: math.unit(0.072, "m^2")
  30525. },
  30526. }
  30527. },
  30528. maw: {
  30529. height: math.unit(1.73, "feet"),
  30530. name: "Maw",
  30531. image: {
  30532. source: "./media/characters/remmyzilla/maw.svg"
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(6 + 4 / 12, "feet")
  30540. },
  30541. {
  30542. name: "Minimacro",
  30543. height: math.unit(12 + 8 / 12, "feet")
  30544. },
  30545. {
  30546. name: "Normal",
  30547. height: math.unit(640, "feet"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "Megamacro",
  30552. height: math.unit(6400, "feet")
  30553. },
  30554. {
  30555. name: "Gigamacro",
  30556. height: math.unit(64000, "miles")
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(2.5, "meters"),
  30565. weight: math.unit(300, "lb"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/lawrence/front.svg",
  30569. extra: 357 / 335,
  30570. bottom: 30 / 387
  30571. }
  30572. },
  30573. back: {
  30574. height: math.unit(2.5, "meters"),
  30575. weight: math.unit(300, "lb"),
  30576. name: "Back",
  30577. image: {
  30578. source: "./media/characters/lawrence/back.svg",
  30579. extra: 357 / 338,
  30580. bottom: 16 / 373
  30581. }
  30582. },
  30583. head: {
  30584. height: math.unit(0.9, "meter"),
  30585. name: "Head",
  30586. image: {
  30587. source: "./media/characters/lawrence/head.svg"
  30588. }
  30589. },
  30590. maw: {
  30591. height: math.unit(0.7, "meter"),
  30592. name: "Maw",
  30593. image: {
  30594. source: "./media/characters/lawrence/maw.svg"
  30595. }
  30596. },
  30597. footBottom: {
  30598. height: math.unit(0.5, "meter"),
  30599. name: "Foot (Bottom)",
  30600. image: {
  30601. source: "./media/characters/lawrence/foot-bottom.svg"
  30602. }
  30603. },
  30604. footTop: {
  30605. height: math.unit(0.5, "meter"),
  30606. name: "Foot (Top)",
  30607. image: {
  30608. source: "./media/characters/lawrence/foot-top.svg"
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(2.5, "meters"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Macro",
  30620. height: math.unit(95, "meters")
  30621. },
  30622. {
  30623. name: "Megamacro",
  30624. height: math.unit(150, "km")
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30630. {
  30631. front: {
  30632. height: math.unit(4.2, "meters"),
  30633. name: "Front",
  30634. image: {
  30635. source: "./media/characters/sydney/front.svg",
  30636. extra: 1323 / 1277,
  30637. bottom: 111 / 1434
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Normal",
  30644. height: math.unit(4.2, "meters"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30651. {
  30652. back: {
  30653. height: math.unit(201, "feet"),
  30654. name: "Back",
  30655. image: {
  30656. source: "./media/characters/jessica/back.svg",
  30657. extra: 273 / 259,
  30658. bottom: 7 / 280
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Normal",
  30665. height: math.unit(201, "feet"),
  30666. default: true
  30667. },
  30668. {
  30669. name: "Megamacro",
  30670. height: math.unit(8, "miles")
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30676. {
  30677. side: {
  30678. height: math.unit(5.6, "m"),
  30679. weight: math.unit(8000, "kg"),
  30680. name: "Side",
  30681. image: {
  30682. source: "./media/characters/victoria/side.svg",
  30683. extra: 1542/1229,
  30684. bottom: 124/1666
  30685. }
  30686. },
  30687. maw: {
  30688. height: math.unit(7.14, "feet"),
  30689. name: "Maw",
  30690. image: {
  30691. source: "./media/characters/victoria/maw.svg"
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(5.6, "m"),
  30699. default: true
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30705. {
  30706. front: {
  30707. height: math.unit(5 + 6 / 12, "feet"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/cat/front.svg",
  30711. extra: 1449/1295,
  30712. bottom: 34/1483
  30713. },
  30714. form: "cat",
  30715. default: true
  30716. },
  30717. back: {
  30718. height: math.unit(5 + 6 / 12, "feet"),
  30719. name: "Back",
  30720. image: {
  30721. source: "./media/characters/cat/back.svg",
  30722. extra: 1466/1301,
  30723. bottom: 19/1485
  30724. },
  30725. form: "cat"
  30726. },
  30727. taur: {
  30728. height: math.unit(7, "feet"),
  30729. name: "Taur",
  30730. image: {
  30731. source: "./media/characters/cat/taur.svg",
  30732. extra: 1389/1233,
  30733. bottom: 83/1472
  30734. },
  30735. form: "taur",
  30736. default: true
  30737. },
  30738. lucarioFront: {
  30739. height: math.unit(4, "feet"),
  30740. name: "Lucario (Front)",
  30741. image: {
  30742. source: "./media/characters/cat/lucario-front.svg",
  30743. extra: 1149/1019,
  30744. bottom: 84/1233
  30745. },
  30746. form: "lucario",
  30747. default: true
  30748. },
  30749. lucarioBack: {
  30750. height: math.unit(4, "feet"),
  30751. name: "Lucario (Back)",
  30752. image: {
  30753. source: "./media/characters/cat/lucario-back.svg",
  30754. extra: 1190/1059,
  30755. bottom: 33/1223
  30756. },
  30757. form: "lucario"
  30758. },
  30759. megaLucario: {
  30760. height: math.unit(4, "feet"),
  30761. name: "Mega Lucario",
  30762. image: {
  30763. source: "./media/characters/cat/mega-lucario.svg",
  30764. extra: 1515 / 1319,
  30765. bottom: 63 / 1578
  30766. },
  30767. form: "lucario"
  30768. },
  30769. nickit: {
  30770. height: math.unit(2, "feet"),
  30771. name: "Nickit",
  30772. image: {
  30773. source: "./media/characters/cat/nickit.svg",
  30774. extra: 1980 / 1585,
  30775. bottom: 102 / 2082
  30776. },
  30777. form: "nickit",
  30778. default: true
  30779. },
  30780. lopunnyFront: {
  30781. height: math.unit(5, "feet"),
  30782. name: "Lopunny (Front)",
  30783. image: {
  30784. source: "./media/characters/cat/lopunny-front.svg",
  30785. extra: 1782 / 1469,
  30786. bottom: 38 / 1820
  30787. },
  30788. form: "lopunny",
  30789. default: true
  30790. },
  30791. lopunnyBack: {
  30792. height: math.unit(5, "feet"),
  30793. name: "Lopunny (Back)",
  30794. image: {
  30795. source: "./media/characters/cat/lopunny-back.svg",
  30796. extra: 1660 / 1490,
  30797. bottom: 25 / 1685
  30798. },
  30799. form: "lopunny"
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Really small",
  30805. height: math.unit(1, "nm")
  30806. },
  30807. {
  30808. name: "Micro",
  30809. height: math.unit(5, "inches")
  30810. },
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(5 + 6 / 12, "feet"),
  30814. default: true
  30815. },
  30816. {
  30817. name: "Macro",
  30818. height: math.unit(50, "feet")
  30819. },
  30820. {
  30821. name: "Macro+",
  30822. height: math.unit(150, "feet")
  30823. },
  30824. {
  30825. name: "Megamacro",
  30826. height: math.unit(100, "miles")
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(63.4, "meters"),
  30835. weight: math.unit(3.28349e+6, "kilograms"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/kirina-violet/front.svg",
  30839. extra: 2812 / 2725,
  30840. bottom: 0 / 2812
  30841. }
  30842. },
  30843. back: {
  30844. height: math.unit(63.4, "meters"),
  30845. weight: math.unit(3.28349e+6, "kilograms"),
  30846. name: "Back",
  30847. image: {
  30848. source: "./media/characters/kirina-violet/back.svg",
  30849. extra: 2812 / 2725,
  30850. bottom: 0 / 2812
  30851. }
  30852. },
  30853. mouth: {
  30854. height: math.unit(4.35, "meters"),
  30855. name: "Mouth",
  30856. image: {
  30857. source: "./media/characters/kirina-violet/mouth.svg"
  30858. }
  30859. },
  30860. paw: {
  30861. height: math.unit(5.6, "meters"),
  30862. name: "Paw",
  30863. image: {
  30864. source: "./media/characters/kirina-violet/paw.svg"
  30865. }
  30866. },
  30867. tail: {
  30868. height: math.unit(18, "meters"),
  30869. name: "Tail",
  30870. image: {
  30871. source: "./media/characters/kirina-violet/tail.svg"
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Macro",
  30878. height: math.unit(63.4, "meters"),
  30879. default: true
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(75, "feet"),
  30888. name: "Front",
  30889. image: {
  30890. source: "./media/characters/cat-gigachu/front.svg",
  30891. extra: 1239/1027,
  30892. bottom: 32/1271
  30893. }
  30894. },
  30895. back: {
  30896. height: math.unit(75, "feet"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/cat-gigachu/back.svg",
  30900. extra: 1229/1030,
  30901. bottom: 9/1238
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Dynamax",
  30908. height: math.unit(75, "feet"),
  30909. default: true
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(6, "feet"),
  30918. weight: math.unit(150, "lb"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/sfaiyan/front.svg",
  30922. extra: 999 / 978,
  30923. bottom: 5 / 1004
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Normal",
  30930. height: math.unit(1.82, "meters")
  30931. },
  30932. {
  30933. name: "Giant",
  30934. height: math.unit(2.27, "km"),
  30935. default: true
  30936. },
  30937. ]
  30938. ))
  30939. characterMakers.push(() => makeCharacter(
  30940. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30941. {
  30942. front: {
  30943. height: math.unit(179, "cm"),
  30944. weight: math.unit(100, "kg"),
  30945. name: "Front",
  30946. image: {
  30947. source: "./media/characters/raunehkeli/front.svg",
  30948. extra: 1934 / 1926,
  30949. bottom: 0 / 1934
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(179, "cm")
  30957. },
  30958. {
  30959. name: "Maximum",
  30960. height: math.unit(575, "meters"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30967. {
  30968. front: {
  30969. height: math.unit(6, "feet"),
  30970. weight: math.unit(150, "lb"),
  30971. name: "Front",
  30972. image: {
  30973. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30974. extra: 2625 / 2518,
  30975. bottom: 60 / 2685
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(6 + 2 / 12, "feet")
  30983. },
  30984. {
  30985. name: "Macro",
  30986. height: math.unit(1180, "feet"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(5 + 6 / 12, "feet"),
  30996. weight: math.unit(108, "lb"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/lilith-zott/front.svg",
  31000. extra: 2510 / 2238,
  31001. bottom: 100 / 2610
  31002. }
  31003. },
  31004. frontDressed: {
  31005. height: math.unit(5 + 6 / 12, "feet"),
  31006. weight: math.unit(108, "lb"),
  31007. name: "Front (Dressed)",
  31008. image: {
  31009. source: "./media/characters/lilith-zott/front-dressed.svg",
  31010. extra: 2510 / 2238,
  31011. bottom: 100 / 2610
  31012. }
  31013. },
  31014. },
  31015. [
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(5 + 6 / 12, "feet")
  31019. },
  31020. {
  31021. name: "Macro",
  31022. height: math.unit(1030, "feet"),
  31023. default: true
  31024. },
  31025. ]
  31026. ))
  31027. characterMakers.push(() => makeCharacter(
  31028. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31029. {
  31030. front: {
  31031. height: math.unit(6, "feet"),
  31032. weight: math.unit(150, "lb"),
  31033. name: "Front",
  31034. image: {
  31035. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31036. extra: 2567 / 2435,
  31037. bottom: 39 / 2606
  31038. }
  31039. },
  31040. frontSuper: {
  31041. height: math.unit(6, "feet"),
  31042. name: "Front (Super)",
  31043. image: {
  31044. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31045. extra: 2567 / 2435,
  31046. bottom: 39 / 2606
  31047. }
  31048. },
  31049. },
  31050. [
  31051. {
  31052. name: "Normal",
  31053. height: math.unit(5 + 10 / 12, "feet")
  31054. },
  31055. {
  31056. name: "Macro",
  31057. height: math.unit(1100, "feet"),
  31058. default: true
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(100, "miles"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/sona/front.svg",
  31070. extra: 2433 / 2201,
  31071. bottom: 53 / 2486
  31072. }
  31073. },
  31074. foot: {
  31075. height: math.unit(16.1, "miles"),
  31076. name: "Foot",
  31077. image: {
  31078. source: "./media/characters/sona/foot.svg"
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Macro",
  31085. height: math.unit(100, "miles"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(150, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/bailey/front.svg",
  31099. extra: 1778 / 1724,
  31100. bottom: 30 / 1808
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Micro",
  31107. height: math.unit(4, "inches")
  31108. },
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(5 + 5 / 12, "feet"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Macro",
  31116. height: math.unit(250, "feet")
  31117. },
  31118. {
  31119. name: "Megamacro",
  31120. height: math.unit(100, "miles")
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(5 + 2 / 12, "feet"),
  31129. weight: math.unit(120, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/snaps/front.svg",
  31133. extra: 2370 / 2177,
  31134. bottom: 48 / 2418
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(5 + 2 / 12, "feet"),
  31139. weight: math.unit(120, "lb"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/snaps/back.svg",
  31143. extra: 2408 / 2258,
  31144. bottom: 15 / 2423
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Micro",
  31151. height: math.unit(9, "inches")
  31152. },
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(5 + 2 / 12, "feet"),
  31156. default: true
  31157. },
  31158. {
  31159. name: "Mini Macro",
  31160. height: math.unit(10, "feet")
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(1.8, "meters"),
  31169. weight: math.unit(85, "kg"),
  31170. name: "Front",
  31171. image: {
  31172. source: "./media/characters/azteck/front.svg",
  31173. extra: 2815 / 2625,
  31174. bottom: 89 / 2904
  31175. }
  31176. },
  31177. back: {
  31178. height: math.unit(1.8, "meters"),
  31179. weight: math.unit(85, "kg"),
  31180. name: "Back",
  31181. image: {
  31182. source: "./media/characters/azteck/back.svg",
  31183. extra: 2856 / 2648,
  31184. bottom: 85 / 2941
  31185. }
  31186. },
  31187. frontDressed: {
  31188. height: math.unit(1.8, "meters"),
  31189. weight: math.unit(85, "kg"),
  31190. name: "Front (Dressed)",
  31191. image: {
  31192. source: "./media/characters/azteck/front-dressed.svg",
  31193. extra: 2147 / 2003,
  31194. bottom: 68 / 2215
  31195. }
  31196. },
  31197. head: {
  31198. height: math.unit(0.47, "meters"),
  31199. weight: math.unit(85, "kg"),
  31200. name: "Head",
  31201. image: {
  31202. source: "./media/characters/azteck/head.svg"
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Bite sized",
  31209. height: math.unit(16, "cm")
  31210. },
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(1.8, "meters"),
  31214. default: true
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31220. {
  31221. front: {
  31222. height: math.unit(6, "feet"),
  31223. weight: math.unit(150, "lb"),
  31224. name: "Front",
  31225. image: {
  31226. source: "./media/characters/pidge/front.svg",
  31227. extra: 1936/1820,
  31228. bottom: 0/1936
  31229. }
  31230. },
  31231. back: {
  31232. height: math.unit(6, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/pidge/back.svg",
  31237. extra: 1938/1843,
  31238. bottom: 0/1938
  31239. }
  31240. },
  31241. casual: {
  31242. height: math.unit(6, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Casual",
  31245. image: {
  31246. source: "./media/characters/pidge/casual.svg",
  31247. extra: 1936/1820,
  31248. bottom: 0/1936
  31249. }
  31250. },
  31251. tech: {
  31252. height: math.unit(6, "feet"),
  31253. weight: math.unit(150, "lb"),
  31254. name: "Tech",
  31255. image: {
  31256. source: "./media/characters/pidge/tech.svg",
  31257. extra: 1802/1682,
  31258. bottom: 0/1802
  31259. }
  31260. },
  31261. head: {
  31262. height: math.unit(1.61, "feet"),
  31263. name: "Head",
  31264. image: {
  31265. source: "./media/characters/pidge/head.svg"
  31266. }
  31267. },
  31268. collar: {
  31269. height: math.unit(0.82, "feet"),
  31270. name: "Collar",
  31271. image: {
  31272. source: "./media/characters/pidge/collar.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Macro",
  31279. height: math.unit(2, "mile"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "PUPPY",
  31284. height: math.unit(20, "miles")
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(6, "feet"),
  31293. weight: math.unit(150, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/en/front.svg",
  31297. extra: 1697 / 1563,
  31298. bottom: 103 / 1800
  31299. }
  31300. },
  31301. back: {
  31302. height: math.unit(6, "feet"),
  31303. weight: math.unit(150, "lb"),
  31304. name: "Back",
  31305. image: {
  31306. source: "./media/characters/en/back.svg",
  31307. extra: 1700 / 1570,
  31308. bottom: 51 / 1751
  31309. }
  31310. },
  31311. frontDressed: {
  31312. height: math.unit(6, "feet"),
  31313. weight: math.unit(150, "lb"),
  31314. name: "Front (Dressed)",
  31315. image: {
  31316. source: "./media/characters/en/front-dressed.svg",
  31317. extra: 1697 / 1563,
  31318. bottom: 103 / 1800
  31319. }
  31320. },
  31321. backDressed: {
  31322. height: math.unit(6, "feet"),
  31323. weight: math.unit(150, "lb"),
  31324. name: "Back (Dressed)",
  31325. image: {
  31326. source: "./media/characters/en/back-dressed.svg",
  31327. extra: 1700 / 1570,
  31328. bottom: 51 / 1751
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(210, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(6, "feet"),
  31345. weight: math.unit(150, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/haze-orris/front.svg",
  31349. extra: 3975 / 3525,
  31350. bottom: 137 / 4112
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Micro",
  31357. height: math.unit(150, "mm"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(6, "feet"),
  31367. weight: math.unit(150, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/casselene-yaro/front.svg",
  31371. extra: 4721 / 4541,
  31372. bottom: 82 / 4803
  31373. }
  31374. },
  31375. back: {
  31376. height: math.unit(6, "feet"),
  31377. weight: math.unit(150, "lb"),
  31378. name: "Back",
  31379. image: {
  31380. source: "./media/characters/casselene-yaro/back.svg",
  31381. extra: 4569 / 4377,
  31382. bottom: 69 / 4638
  31383. }
  31384. },
  31385. dressed: {
  31386. height: math.unit(6, "feet"),
  31387. weight: math.unit(150, "lb"),
  31388. name: "Dressed",
  31389. image: {
  31390. source: "./media/characters/casselene-yaro/dressed.svg",
  31391. extra: 4721 / 4541,
  31392. bottom: 82 / 4803
  31393. }
  31394. },
  31395. maw: {
  31396. height: math.unit(1, "feet"),
  31397. name: "Maw",
  31398. image: {
  31399. source: "./media/characters/casselene-yaro/maw.svg"
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Macro",
  31406. height: math.unit(190, "feet"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31413. {
  31414. front: {
  31415. height: math.unit(10, "feet"),
  31416. weight: math.unit(15015, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/platine/front.svg",
  31420. extra: 1741/1650,
  31421. bottom: 84/1825
  31422. }
  31423. },
  31424. side: {
  31425. height: math.unit(10, "feet"),
  31426. weight: math.unit(15015, "lb"),
  31427. name: "Side",
  31428. image: {
  31429. source: "./media/characters/platine/side.svg",
  31430. extra: 1790/1705,
  31431. bottom: 29/1819
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(10, "feet"),
  31439. default: true
  31440. },
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(100, "feet")
  31444. },
  31445. {
  31446. name: "Megamacro",
  31447. height: math.unit(1000, "feet")
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(15 + 5 / 12, "feet"),
  31456. weight: math.unit(4600, "lb"),
  31457. name: "Front",
  31458. image: {
  31459. source: "./media/characters/neapolitan-ananassa/front.svg",
  31460. extra: 2903 / 2736,
  31461. bottom: 0 / 2903
  31462. }
  31463. },
  31464. side: {
  31465. height: math.unit(15 + 5 / 12, "feet"),
  31466. weight: math.unit(4600, "lb"),
  31467. name: "Side",
  31468. image: {
  31469. source: "./media/characters/neapolitan-ananassa/side.svg",
  31470. extra: 2925 / 2719,
  31471. bottom: 0 / 2925
  31472. }
  31473. },
  31474. back: {
  31475. height: math.unit(15 + 5 / 12, "feet"),
  31476. weight: math.unit(4600, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/neapolitan-ananassa/back.svg",
  31480. extra: 2903 / 2736,
  31481. bottom: 0 / 2903
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Normal",
  31488. height: math.unit(15 + 5 / 12, "feet"),
  31489. default: true
  31490. },
  31491. {
  31492. name: "Post-Millenium",
  31493. height: math.unit(35 + 5 / 12, "feet")
  31494. },
  31495. {
  31496. name: "Post-Era",
  31497. height: math.unit(450 + 5 / 12, "feet")
  31498. },
  31499. ]
  31500. ))
  31501. characterMakers.push(() => makeCharacter(
  31502. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31503. {
  31504. front: {
  31505. height: math.unit(300, "meters"),
  31506. weight: math.unit(125000, "tonnes"),
  31507. name: "Front",
  31508. image: {
  31509. source: "./media/characters/pazuzu/front.svg",
  31510. extra: 877 / 794,
  31511. bottom: 47 / 924
  31512. }
  31513. },
  31514. },
  31515. [
  31516. {
  31517. name: "Macro",
  31518. height: math.unit(300, "meters"),
  31519. default: true
  31520. },
  31521. ]
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31525. {
  31526. side: {
  31527. height: math.unit(10 + 7 / 12, "feet"),
  31528. weight: math.unit(2.5, "tons"),
  31529. name: "Side",
  31530. image: {
  31531. source: "./media/characters/aasha/side.svg",
  31532. extra: 1345 / 1245,
  31533. bottom: 111 / 1456
  31534. }
  31535. },
  31536. back: {
  31537. height: math.unit(10 + 7 / 12, "feet"),
  31538. weight: math.unit(2.5, "tons"),
  31539. name: "Back",
  31540. image: {
  31541. source: "./media/characters/aasha/back.svg",
  31542. extra: 1133 / 1057,
  31543. bottom: 257 / 1390
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(10 + 7 / 12, "feet"),
  31551. default: true
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(6 + 3 / 12, "feet"),
  31560. name: "Front",
  31561. image: {
  31562. source: "./media/characters/nevan/front.svg",
  31563. extra: 704 / 704,
  31564. bottom: 28 / 732
  31565. }
  31566. },
  31567. back: {
  31568. height: math.unit(6 + 3 / 12, "feet"),
  31569. name: "Back",
  31570. image: {
  31571. source: "./media/characters/nevan/back.svg",
  31572. extra: 714 / 714,
  31573. bottom: 21 / 735
  31574. }
  31575. },
  31576. frontFlaccid: {
  31577. height: math.unit(6 + 3 / 12, "feet"),
  31578. name: "Front (Flaccid)",
  31579. image: {
  31580. source: "./media/characters/nevan/front-flaccid.svg",
  31581. extra: 704 / 704,
  31582. bottom: 28 / 732
  31583. }
  31584. },
  31585. frontErect: {
  31586. height: math.unit(6 + 3 / 12, "feet"),
  31587. name: "Front (Erect)",
  31588. image: {
  31589. source: "./media/characters/nevan/front-erect.svg",
  31590. extra: 704 / 704,
  31591. bottom: 28 / 732
  31592. }
  31593. },
  31594. backFlaccid: {
  31595. height: math.unit(6 + 3 / 12, "feet"),
  31596. name: "Back (Flaccid)",
  31597. image: {
  31598. source: "./media/characters/nevan/back-flaccid.svg",
  31599. extra: 714 / 714,
  31600. bottom: 21 / 735
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Normal",
  31607. height: math.unit(6 + 3 / 12, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(4, "feet"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/arhan/front.svg",
  31620. extra: 3368 / 3133,
  31621. bottom: 0 / 3368
  31622. }
  31623. },
  31624. side: {
  31625. height: math.unit(4, "feet"),
  31626. name: "Side",
  31627. image: {
  31628. source: "./media/characters/arhan/side.svg",
  31629. extra: 3347 / 3105,
  31630. bottom: 0 / 3347
  31631. }
  31632. },
  31633. tongue: {
  31634. height: math.unit(1.42, "feet"),
  31635. name: "Tongue",
  31636. image: {
  31637. source: "./media/characters/arhan/tongue.svg"
  31638. }
  31639. },
  31640. head: {
  31641. height: math.unit(0.85, "feet"),
  31642. name: "Head",
  31643. image: {
  31644. source: "./media/characters/arhan/head.svg"
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Normal",
  31651. height: math.unit(4, "feet"),
  31652. default: true
  31653. },
  31654. ]
  31655. ))
  31656. characterMakers.push(() => makeCharacter(
  31657. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31658. {
  31659. front: {
  31660. height: math.unit(5 + 7.5 / 12, "feet"),
  31661. weight: math.unit(120, "lb"),
  31662. name: "Front",
  31663. image: {
  31664. source: "./media/characters/digi-duncan/front.svg",
  31665. extra: 330 / 326,
  31666. bottom: 16 / 346
  31667. }
  31668. },
  31669. side: {
  31670. height: math.unit(5 + 7.5 / 12, "feet"),
  31671. weight: math.unit(120, "lb"),
  31672. name: "Side",
  31673. image: {
  31674. source: "./media/characters/digi-duncan/side.svg",
  31675. extra: 341 / 337,
  31676. bottom: 1 / 342
  31677. }
  31678. },
  31679. back: {
  31680. height: math.unit(5 + 7.5 / 12, "feet"),
  31681. weight: math.unit(120, "lb"),
  31682. name: "Back",
  31683. image: {
  31684. source: "./media/characters/digi-duncan/back.svg",
  31685. extra: 330 / 326,
  31686. bottom: 12 / 342
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Speck",
  31693. height: math.unit(0.25, "mm")
  31694. },
  31695. {
  31696. name: "Micro",
  31697. height: math.unit(5, "mm")
  31698. },
  31699. {
  31700. name: "Tiny",
  31701. height: math.unit(0.5, "inches"),
  31702. default: true
  31703. },
  31704. {
  31705. name: "Human",
  31706. height: math.unit(5 + 7.5 / 12, "feet")
  31707. },
  31708. {
  31709. name: "Minigiant",
  31710. height: math.unit(8 + 5.25, "feet")
  31711. },
  31712. {
  31713. name: "Giant",
  31714. height: math.unit(2000, "feet")
  31715. },
  31716. {
  31717. name: "Mega",
  31718. height: math.unit(371.1, "miles")
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(2, "meters"),
  31727. weight: math.unit(350, "kg"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31731. extra: 898 / 838,
  31732. bottom: 9 / 907
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Micro",
  31739. height: math.unit(8, "meters")
  31740. },
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(50, "meters"),
  31744. default: true
  31745. },
  31746. {
  31747. name: "Macro",
  31748. height: math.unit(500, "meters")
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(6 + 6 / 12, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/khardesh/front.svg",
  31760. extra: 1788/1596,
  31761. bottom: 66/1854
  31762. }
  31763. },
  31764. back: {
  31765. height: math.unit(6 + 6 / 12, "feet"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/khardesh/back.svg",
  31769. extra: 1781/1584,
  31770. bottom: 68/1849
  31771. }
  31772. },
  31773. },
  31774. [
  31775. {
  31776. name: "Normal",
  31777. height: math.unit(6 + 6 / 12, "feet"),
  31778. default: true
  31779. },
  31780. {
  31781. name: "Normal+",
  31782. height: math.unit(4, "meters")
  31783. },
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(50, "meters")
  31787. },
  31788. {
  31789. name: "Macro+",
  31790. height: math.unit(100, "meters")
  31791. },
  31792. {
  31793. name: "Megamacro",
  31794. height: math.unit(20, "km")
  31795. },
  31796. ]
  31797. ))
  31798. characterMakers.push(() => makeCharacter(
  31799. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31800. {
  31801. front: {
  31802. height: math.unit(6, "feet"),
  31803. weight: math.unit(150, "lb"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/kosho/front.svg",
  31807. extra: 1847 / 1847,
  31808. bottom: 86 / 1933
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Second-stage micro",
  31815. height: math.unit(0.5, "inches")
  31816. },
  31817. {
  31818. name: "First-stage micro",
  31819. height: math.unit(6, "inches")
  31820. },
  31821. {
  31822. name: "Normal",
  31823. height: math.unit(6, "feet"),
  31824. default: true
  31825. },
  31826. {
  31827. name: "First-stage macro",
  31828. height: math.unit(72, "feet")
  31829. },
  31830. {
  31831. name: "Second-stage macro",
  31832. height: math.unit(864, "feet")
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31838. {
  31839. normal: {
  31840. height: math.unit(4 + 6 / 12, "feet"),
  31841. name: "Normal",
  31842. image: {
  31843. source: "./media/characters/hydra/normal.svg",
  31844. extra: 2833 / 2634,
  31845. bottom: 68 / 2901
  31846. }
  31847. },
  31848. smol: {
  31849. height: math.unit(0.705, "inches"),
  31850. name: "Smol",
  31851. image: {
  31852. source: "./media/characters/hydra/smol.svg",
  31853. extra: 2715 / 2540,
  31854. bottom: 0 / 2715
  31855. }
  31856. },
  31857. },
  31858. [
  31859. {
  31860. name: "Normal",
  31861. height: math.unit(4 + 6 / 12, "feet"),
  31862. default: true
  31863. }
  31864. ]
  31865. ))
  31866. characterMakers.push(() => makeCharacter(
  31867. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31868. {
  31869. front: {
  31870. height: math.unit(0.6, "cm"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/daz/front.svg",
  31874. extra: 1682 / 1164,
  31875. bottom: 42 / 1724
  31876. }
  31877. },
  31878. },
  31879. [
  31880. {
  31881. name: "Normal",
  31882. height: math.unit(0.6, "cm"),
  31883. default: true
  31884. },
  31885. ]
  31886. ))
  31887. characterMakers.push(() => makeCharacter(
  31888. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31889. {
  31890. front: {
  31891. height: math.unit(6, "feet"),
  31892. weight: math.unit(235, "lb"),
  31893. name: "Front",
  31894. image: {
  31895. source: "./media/characters/theo-pangolin/front.svg",
  31896. extra: 1996 / 1969,
  31897. bottom: 115 / 2111
  31898. }
  31899. },
  31900. back: {
  31901. height: math.unit(6, "feet"),
  31902. weight: math.unit(235, "lb"),
  31903. name: "Back",
  31904. image: {
  31905. source: "./media/characters/theo-pangolin/back.svg",
  31906. extra: 1979 / 1979,
  31907. bottom: 40 / 2019
  31908. }
  31909. },
  31910. feral: {
  31911. height: math.unit(2, "feet"),
  31912. weight: math.unit(30, "lb"),
  31913. name: "Feral",
  31914. image: {
  31915. source: "./media/characters/theo-pangolin/feral.svg",
  31916. extra: 803 / 791,
  31917. bottom: 181 / 984
  31918. }
  31919. },
  31920. footFive: {
  31921. height: math.unit(1.43, "feet"),
  31922. name: "Foot (Five Toes)",
  31923. image: {
  31924. source: "./media/characters/theo-pangolin/foot-five.svg"
  31925. }
  31926. },
  31927. footFour: {
  31928. height: math.unit(1.43, "feet"),
  31929. name: "Foot (Four Toes)",
  31930. image: {
  31931. source: "./media/characters/theo-pangolin/foot-four.svg"
  31932. }
  31933. },
  31934. handFour: {
  31935. height: math.unit(0.81, "feet"),
  31936. name: "Hand (Four Fingers)",
  31937. image: {
  31938. source: "./media/characters/theo-pangolin/hand-four.svg"
  31939. }
  31940. },
  31941. handThree: {
  31942. height: math.unit(0.81, "feet"),
  31943. name: "Hand (Three Fingers)",
  31944. image: {
  31945. source: "./media/characters/theo-pangolin/hand-three.svg"
  31946. }
  31947. },
  31948. headFront: {
  31949. height: math.unit(1.37, "feet"),
  31950. name: "Head (Front)",
  31951. image: {
  31952. source: "./media/characters/theo-pangolin/head-front.svg"
  31953. }
  31954. },
  31955. headSide: {
  31956. height: math.unit(1.43, "feet"),
  31957. name: "Head (Side)",
  31958. image: {
  31959. source: "./media/characters/theo-pangolin/head-side.svg"
  31960. }
  31961. },
  31962. tongue: {
  31963. height: math.unit(2.29, "feet"),
  31964. name: "Tongue",
  31965. image: {
  31966. source: "./media/characters/theo-pangolin/tongue.svg"
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(6, "feet")
  31974. },
  31975. {
  31976. name: "Macro",
  31977. height: math.unit(400, "feet"),
  31978. default: true
  31979. },
  31980. ]
  31981. ))
  31982. characterMakers.push(() => makeCharacter(
  31983. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31984. {
  31985. front: {
  31986. height: math.unit(6, "inches"),
  31987. weight: math.unit(0.036, "kg"),
  31988. name: "Front",
  31989. image: {
  31990. source: "./media/characters/renée/front.svg",
  31991. extra: 900 / 886,
  31992. bottom: 8 / 908
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Nano",
  31999. height: math.unit(1, "nm")
  32000. },
  32001. {
  32002. name: "Micro",
  32003. height: math.unit(1, "mm")
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(6, "inches")
  32008. },
  32009. {
  32010. name: "Macro",
  32011. height: math.unit(2000, "feet"),
  32012. default: true
  32013. },
  32014. {
  32015. name: "Megamacro",
  32016. height: math.unit(2, "km")
  32017. },
  32018. {
  32019. name: "Gigamacro",
  32020. height: math.unit(2000, "km")
  32021. },
  32022. {
  32023. name: "Teramacro",
  32024. height: math.unit(250000, "km")
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(4, "meters"),
  32033. weight: math.unit(150, "kg"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/caledvwlch/front.svg",
  32037. extra: 1760 / 1551,
  32038. bottom: 28 / 1788
  32039. }
  32040. },
  32041. side: {
  32042. height: math.unit(4, "meters"),
  32043. weight: math.unit(150, "kg"),
  32044. name: "Side",
  32045. image: {
  32046. source: "./media/characters/caledvwlch/side.svg",
  32047. extra: 1605 / 1536,
  32048. bottom: 31 / 1636
  32049. }
  32050. },
  32051. back: {
  32052. height: math.unit(4, "meters"),
  32053. weight: math.unit(150, "kg"),
  32054. name: "Back",
  32055. image: {
  32056. source: "./media/characters/caledvwlch/back.svg",
  32057. extra: 1635 / 1565,
  32058. bottom: 27 / 1662
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "\"Incognito\"",
  32065. height: math.unit(4, "meters")
  32066. },
  32067. {
  32068. name: "Small rampage",
  32069. height: math.unit(600, "meters")
  32070. },
  32071. {
  32072. name: "Mega",
  32073. height: math.unit(30, "km")
  32074. },
  32075. {
  32076. name: "Home-size",
  32077. height: math.unit(50, "km"),
  32078. default: true
  32079. },
  32080. {
  32081. name: "Giga",
  32082. height: math.unit(300, "km")
  32083. },
  32084. {
  32085. name: "Lounging",
  32086. height: math.unit(11000, "km")
  32087. },
  32088. {
  32089. name: "Planet snacking",
  32090. height: math.unit(2000000, "km")
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(6, "feet"),
  32099. weight: math.unit(215, "lb"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/sapphire-svell/front.svg",
  32103. extra: 495 / 455,
  32104. bottom: 20 / 515
  32105. }
  32106. },
  32107. back: {
  32108. height: math.unit(6, "feet"),
  32109. weight: math.unit(216, "lb"),
  32110. name: "Back",
  32111. image: {
  32112. source: "./media/characters/sapphire-svell/back.svg",
  32113. extra: 497 / 477,
  32114. bottom: 7 / 504
  32115. }
  32116. },
  32117. maw: {
  32118. height: math.unit(1.57, "feet"),
  32119. name: "Maw",
  32120. image: {
  32121. source: "./media/characters/sapphire-svell/maw.svg"
  32122. }
  32123. },
  32124. foot: {
  32125. height: math.unit(1.07, "feet"),
  32126. name: "Foot",
  32127. image: {
  32128. source: "./media/characters/sapphire-svell/foot.svg"
  32129. }
  32130. },
  32131. toering: {
  32132. height: math.unit(1.7, "inch"),
  32133. name: "Toering",
  32134. image: {
  32135. source: "./media/characters/sapphire-svell/toering.svg"
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Normal",
  32142. height: math.unit(300, "feet"),
  32143. default: true
  32144. },
  32145. {
  32146. name: "Augmented",
  32147. height: math.unit(1250, "feet")
  32148. },
  32149. {
  32150. name: "Unleashed",
  32151. height: math.unit(3000, "feet")
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32157. {
  32158. side: {
  32159. height: math.unit(2 + 3 / 12, "feet"),
  32160. weight: math.unit(110, "lb"),
  32161. name: "Side",
  32162. image: {
  32163. source: "./media/characters/glitch-flux/side.svg",
  32164. extra: 997 / 805,
  32165. bottom: 20 / 1017
  32166. }
  32167. },
  32168. },
  32169. [
  32170. {
  32171. name: "Normal",
  32172. height: math.unit(2 + 3 / 12, "feet"),
  32173. default: true
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32179. {
  32180. front: {
  32181. height: math.unit(4, "meters"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/mid/front.svg",
  32185. extra: 507 / 476,
  32186. bottom: 17 / 524
  32187. }
  32188. },
  32189. back: {
  32190. height: math.unit(4, "meters"),
  32191. name: "Back",
  32192. image: {
  32193. source: "./media/characters/mid/back.svg",
  32194. extra: 519 / 487,
  32195. bottom: 7 / 526
  32196. }
  32197. },
  32198. stuck: {
  32199. height: math.unit(2.2, "meters"),
  32200. name: "Stuck",
  32201. image: {
  32202. source: "./media/characters/mid/stuck.svg",
  32203. extra: 1951 / 1869,
  32204. bottom: 88 / 2039
  32205. }
  32206. }
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(4, "meters"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Big",
  32216. height: math.unit(10, "meters")
  32217. },
  32218. {
  32219. name: "Macro",
  32220. height: math.unit(800, "meters")
  32221. },
  32222. {
  32223. name: "Megamacro",
  32224. height: math.unit(100, "km")
  32225. },
  32226. {
  32227. name: "Overgrown",
  32228. height: math.unit(1, "parsec")
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(2.5, "meters"),
  32237. weight: math.unit(225, "kg"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/iris/front.svg",
  32241. extra: 3348 / 3251,
  32242. bottom: 205 / 3553
  32243. }
  32244. },
  32245. maw: {
  32246. height: math.unit(0.56, "meter"),
  32247. name: "Maw",
  32248. image: {
  32249. source: "./media/characters/iris/maw.svg"
  32250. }
  32251. },
  32252. },
  32253. [
  32254. {
  32255. name: "Mewter cat",
  32256. height: math.unit(1.2, "meters")
  32257. },
  32258. {
  32259. name: "Normal",
  32260. height: math.unit(2.5, "meters"),
  32261. default: true
  32262. },
  32263. {
  32264. name: "Minimacro",
  32265. height: math.unit(18, "feet")
  32266. },
  32267. {
  32268. name: "Macro",
  32269. height: math.unit(140, "feet")
  32270. },
  32271. {
  32272. name: "Macro+",
  32273. height: math.unit(180, "meters")
  32274. },
  32275. {
  32276. name: "Megamacro",
  32277. height: math.unit(2746, "meters")
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(6, "feet"),
  32286. weight: math.unit(135, "lb"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/axel/front.svg",
  32290. extra: 908 / 908,
  32291. bottom: 58 / 966
  32292. }
  32293. },
  32294. side: {
  32295. height: math.unit(6, "feet"),
  32296. weight: math.unit(135, "lb"),
  32297. name: "Side",
  32298. image: {
  32299. source: "./media/characters/axel/side.svg",
  32300. extra: 958 / 958,
  32301. bottom: 11 / 969
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(6, "feet"),
  32306. weight: math.unit(135, "lb"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/axel/back.svg",
  32310. extra: 887 / 887,
  32311. bottom: 34 / 921
  32312. }
  32313. },
  32314. head: {
  32315. height: math.unit(1.07, "feet"),
  32316. name: "Head",
  32317. image: {
  32318. source: "./media/characters/axel/head.svg"
  32319. }
  32320. },
  32321. beak: {
  32322. height: math.unit(1.4, "feet"),
  32323. name: "Beak",
  32324. image: {
  32325. source: "./media/characters/axel/beak.svg"
  32326. }
  32327. },
  32328. beakSide: {
  32329. height: math.unit(1.4, "feet"),
  32330. name: "Beak Side",
  32331. image: {
  32332. source: "./media/characters/axel/beak-side.svg"
  32333. }
  32334. },
  32335. sheath: {
  32336. height: math.unit(0.5, "feet"),
  32337. name: "Sheath",
  32338. image: {
  32339. source: "./media/characters/axel/sheath.svg"
  32340. }
  32341. },
  32342. dick: {
  32343. height: math.unit(0.98, "feet"),
  32344. name: "Dick",
  32345. image: {
  32346. source: "./media/characters/axel/dick.svg"
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Macro",
  32353. height: math.unit(68, "meters"),
  32354. default: true
  32355. },
  32356. ]
  32357. ))
  32358. characterMakers.push(() => makeCharacter(
  32359. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32360. {
  32361. front: {
  32362. height: math.unit(3.5, "meters"),
  32363. weight: math.unit(1200, "kg"),
  32364. name: "Front",
  32365. image: {
  32366. source: "./media/characters/joanna/front.svg",
  32367. extra: 1596 / 1488,
  32368. bottom: 29 / 1625
  32369. }
  32370. },
  32371. back: {
  32372. height: math.unit(3.5, "meters"),
  32373. weight: math.unit(1200, "kg"),
  32374. name: "Back",
  32375. image: {
  32376. source: "./media/characters/joanna/back.svg",
  32377. extra: 1594 / 1495,
  32378. bottom: 26 / 1620
  32379. }
  32380. },
  32381. frontShorts: {
  32382. height: math.unit(3.5, "meters"),
  32383. weight: math.unit(1200, "kg"),
  32384. name: "Front (Shorts)",
  32385. image: {
  32386. source: "./media/characters/joanna/front-shorts.svg",
  32387. extra: 1596 / 1488,
  32388. bottom: 29 / 1625
  32389. }
  32390. },
  32391. frontBiker: {
  32392. height: math.unit(3.5, "meters"),
  32393. weight: math.unit(1200, "kg"),
  32394. name: "Front (Biker)",
  32395. image: {
  32396. source: "./media/characters/joanna/front-biker.svg",
  32397. extra: 1596 / 1488,
  32398. bottom: 29 / 1625
  32399. }
  32400. },
  32401. backBiker: {
  32402. height: math.unit(3.5, "meters"),
  32403. weight: math.unit(1200, "kg"),
  32404. name: "Back (Biker)",
  32405. image: {
  32406. source: "./media/characters/joanna/back-biker.svg",
  32407. extra: 1594 / 1495,
  32408. bottom: 88 / 1682
  32409. }
  32410. },
  32411. bikeLeft: {
  32412. height: math.unit(2.4, "meters"),
  32413. weight: math.unit(1600, "kg"),
  32414. name: "Bike (Left)",
  32415. image: {
  32416. source: "./media/characters/joanna/bike-left.svg",
  32417. extra: 720 / 720,
  32418. bottom: 8 / 728
  32419. }
  32420. },
  32421. bikeRight: {
  32422. height: math.unit(2.4, "meters"),
  32423. weight: math.unit(1600, "kg"),
  32424. name: "Bike (Right)",
  32425. image: {
  32426. source: "./media/characters/joanna/bike-right.svg",
  32427. extra: 720 / 720,
  32428. bottom: 8 / 728
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Incognito",
  32435. height: math.unit(3.5, "meters")
  32436. },
  32437. {
  32438. name: "Casual Big",
  32439. height: math.unit(200, "meters")
  32440. },
  32441. {
  32442. name: "Macro",
  32443. height: math.unit(600, "meters")
  32444. },
  32445. {
  32446. name: "Original",
  32447. height: math.unit(20, "km"),
  32448. default: true
  32449. },
  32450. {
  32451. name: "Giga",
  32452. height: math.unit(400, "km")
  32453. },
  32454. {
  32455. name: "Lounging",
  32456. height: math.unit(1500, "km")
  32457. },
  32458. {
  32459. name: "Planetary",
  32460. height: math.unit(200000, "km")
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32466. {
  32467. front: {
  32468. height: math.unit(6, "feet"),
  32469. weight: math.unit(150, "lb"),
  32470. name: "Front",
  32471. image: {
  32472. source: "./media/characters/hugo-sigil/front.svg",
  32473. extra: 522 / 500,
  32474. bottom: 2 / 524
  32475. }
  32476. },
  32477. back: {
  32478. height: math.unit(6, "feet"),
  32479. weight: math.unit(150, "lb"),
  32480. name: "Back",
  32481. image: {
  32482. source: "./media/characters/hugo-sigil/back.svg",
  32483. extra: 519 / 495,
  32484. bottom: 5 / 524
  32485. }
  32486. },
  32487. maw: {
  32488. height: math.unit(1.4, "feet"),
  32489. weight: math.unit(150, "lb"),
  32490. name: "Maw",
  32491. image: {
  32492. source: "./media/characters/hugo-sigil/maw.svg"
  32493. }
  32494. },
  32495. feet: {
  32496. height: math.unit(1.56, "feet"),
  32497. weight: math.unit(150, "lb"),
  32498. name: "Feet",
  32499. image: {
  32500. source: "./media/characters/hugo-sigil/feet.svg",
  32501. extra: 177 / 177,
  32502. bottom: 12 / 189
  32503. }
  32504. },
  32505. },
  32506. [
  32507. {
  32508. name: "Normal",
  32509. height: math.unit(6, "feet")
  32510. },
  32511. {
  32512. name: "Macro",
  32513. height: math.unit(200, "feet"),
  32514. default: true
  32515. },
  32516. ]
  32517. ))
  32518. characterMakers.push(() => makeCharacter(
  32519. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32520. {
  32521. front: {
  32522. height: math.unit(6, "feet"),
  32523. weight: math.unit(150, "lb"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/peri/front.svg",
  32527. extra: 2354 / 2233,
  32528. bottom: 49 / 2403
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Really Small",
  32535. height: math.unit(1, "nm")
  32536. },
  32537. {
  32538. name: "Micro",
  32539. height: math.unit(4, "inches")
  32540. },
  32541. {
  32542. name: "Normal",
  32543. height: math.unit(7, "inches"),
  32544. default: true
  32545. },
  32546. {
  32547. name: "Macro",
  32548. height: math.unit(400, "feet")
  32549. },
  32550. {
  32551. name: "Megamacro",
  32552. height: math.unit(100, "miles")
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32558. {
  32559. frontSlim: {
  32560. height: math.unit(7, "feet"),
  32561. name: "Front (Slim)",
  32562. image: {
  32563. source: "./media/characters/issilora/front-slim.svg",
  32564. extra: 529 / 449,
  32565. bottom: 53 / 582
  32566. }
  32567. },
  32568. sideSlim: {
  32569. height: math.unit(7, "feet"),
  32570. name: "Side (Slim)",
  32571. image: {
  32572. source: "./media/characters/issilora/side-slim.svg",
  32573. extra: 570 / 480,
  32574. bottom: 30 / 600
  32575. }
  32576. },
  32577. backSlim: {
  32578. height: math.unit(7, "feet"),
  32579. name: "Back (Slim)",
  32580. image: {
  32581. source: "./media/characters/issilora/back-slim.svg",
  32582. extra: 537 / 455,
  32583. bottom: 46 / 583
  32584. }
  32585. },
  32586. frontBuff: {
  32587. height: math.unit(7, "feet"),
  32588. name: "Front (Buff)",
  32589. image: {
  32590. source: "./media/characters/issilora/front-buff.svg",
  32591. extra: 2310 / 2035,
  32592. bottom: 335 / 2645
  32593. }
  32594. },
  32595. head: {
  32596. height: math.unit(1.94, "feet"),
  32597. name: "Head",
  32598. image: {
  32599. source: "./media/characters/issilora/head.svg"
  32600. }
  32601. },
  32602. },
  32603. [
  32604. {
  32605. name: "Minimum",
  32606. height: math.unit(7, "feet")
  32607. },
  32608. {
  32609. name: "Comfortable",
  32610. height: math.unit(17, "feet")
  32611. },
  32612. {
  32613. name: "Fun Size",
  32614. height: math.unit(47, "feet")
  32615. },
  32616. {
  32617. name: "Natural Macro",
  32618. height: math.unit(137, "feet"),
  32619. default: true
  32620. },
  32621. {
  32622. name: "Maximum Kaiju",
  32623. height: math.unit(397, "feet")
  32624. },
  32625. ]
  32626. ))
  32627. characterMakers.push(() => makeCharacter(
  32628. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32629. {
  32630. front: {
  32631. height: math.unit(50 + 9/12, "feet"),
  32632. weight: math.unit(32.8, "tons"),
  32633. name: "Front",
  32634. image: {
  32635. source: "./media/characters/irb'iiritaahn/front.svg",
  32636. extra: 1878/1826,
  32637. bottom: 326/2204
  32638. }
  32639. },
  32640. back: {
  32641. height: math.unit(50 + 9/12, "feet"),
  32642. weight: math.unit(32.8, "tons"),
  32643. name: "Back",
  32644. image: {
  32645. source: "./media/characters/irb'iiritaahn/back.svg",
  32646. extra: 2052/2018,
  32647. bottom: 152/2204
  32648. }
  32649. },
  32650. head: {
  32651. height: math.unit(12.86, "feet"),
  32652. name: "Head",
  32653. image: {
  32654. source: "./media/characters/irb'iiritaahn/head.svg"
  32655. }
  32656. },
  32657. maw: {
  32658. height: math.unit(9.66, "feet"),
  32659. name: "Maw",
  32660. image: {
  32661. source: "./media/characters/irb'iiritaahn/maw.svg"
  32662. }
  32663. },
  32664. frontDick: {
  32665. height: math.unit(8.78461, "feet"),
  32666. name: "Front Dick",
  32667. image: {
  32668. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32669. }
  32670. },
  32671. rearDick: {
  32672. height: math.unit(8.78461, "feet"),
  32673. name: "Rear Dick",
  32674. image: {
  32675. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32676. }
  32677. },
  32678. rearDickUnfolded: {
  32679. height: math.unit(8.78, "feet"),
  32680. name: "Rear Dick (Unfolded)",
  32681. image: {
  32682. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32683. }
  32684. },
  32685. wings: {
  32686. height: math.unit(43, "feet"),
  32687. name: "Wings",
  32688. image: {
  32689. source: "./media/characters/irb'iiritaahn/wings.svg"
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Macro",
  32696. height: math.unit(50 + 9/12, "feet"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32703. {
  32704. front: {
  32705. height: math.unit(205, "cm"),
  32706. weight: math.unit(102, "kg"),
  32707. name: "Front",
  32708. image: {
  32709. source: "./media/characters/irbisgreif/front.svg",
  32710. extra: 785/706,
  32711. bottom: 13/798
  32712. }
  32713. },
  32714. back: {
  32715. height: math.unit(205, "cm"),
  32716. weight: math.unit(102, "kg"),
  32717. name: "Back",
  32718. image: {
  32719. source: "./media/characters/irbisgreif/back.svg",
  32720. extra: 713/701,
  32721. bottom: 26/739
  32722. }
  32723. },
  32724. frontDressed: {
  32725. height: math.unit(216, "cm"),
  32726. weight: math.unit(102, "kg"),
  32727. name: "Front-dressed",
  32728. image: {
  32729. source: "./media/characters/irbisgreif/front-dressed.svg",
  32730. extra: 902/776,
  32731. bottom: 14/916
  32732. }
  32733. },
  32734. sideDressed: {
  32735. height: math.unit(195, "cm"),
  32736. weight: math.unit(102, "kg"),
  32737. name: "Side-dressed",
  32738. image: {
  32739. source: "./media/characters/irbisgreif/side-dressed.svg",
  32740. extra: 788/688,
  32741. bottom: 21/809
  32742. }
  32743. },
  32744. backDressed: {
  32745. height: math.unit(216, "cm"),
  32746. weight: math.unit(102, "kg"),
  32747. name: "Back-dressed",
  32748. image: {
  32749. source: "./media/characters/irbisgreif/back-dressed.svg",
  32750. extra: 901/783,
  32751. bottom: 10/911
  32752. }
  32753. },
  32754. dick: {
  32755. height: math.unit(0.49, "feet"),
  32756. name: "Dick",
  32757. image: {
  32758. source: "./media/characters/irbisgreif/dick.svg"
  32759. }
  32760. },
  32761. wingTop: {
  32762. height: math.unit(1.93 , "feet"),
  32763. name: "Wing-top",
  32764. image: {
  32765. source: "./media/characters/irbisgreif/wing-top.svg"
  32766. }
  32767. },
  32768. wingBottom: {
  32769. height: math.unit(1.93 , "feet"),
  32770. name: "Wing-bottom",
  32771. image: {
  32772. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32773. }
  32774. },
  32775. },
  32776. [
  32777. {
  32778. name: "Normal",
  32779. height: math.unit(216, "cm"),
  32780. default: true
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(6, "feet"),
  32789. weight: math.unit(150, "lb"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/pride/front.svg",
  32793. extra: 1299/1230,
  32794. bottom: 18/1317
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(7, "feet")
  32802. },
  32803. {
  32804. name: "Mini-macro",
  32805. height: math.unit(11, "feet")
  32806. },
  32807. {
  32808. name: "Macro",
  32809. height: math.unit(15, "meters"),
  32810. default: true
  32811. },
  32812. {
  32813. name: "Macro+",
  32814. height: math.unit(40, "meters")
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32820. {
  32821. front: {
  32822. height: math.unit(4 + 2 / 12, "feet"),
  32823. weight: math.unit(95, "lb"),
  32824. name: "Front",
  32825. image: {
  32826. source: "./media/characters/vaelophis-nyx/front.svg",
  32827. extra: 2532/2330,
  32828. bottom: 0/2532
  32829. }
  32830. },
  32831. back: {
  32832. height: math.unit(4 + 2 / 12, "feet"),
  32833. weight: math.unit(95, "lb"),
  32834. name: "Back",
  32835. image: {
  32836. source: "./media/characters/vaelophis-nyx/back.svg",
  32837. extra: 2484/2361,
  32838. bottom: 0/2484
  32839. }
  32840. },
  32841. feralSide: {
  32842. height: math.unit(2 + 1/12, "feet"),
  32843. weight: math.unit(20, "lb"),
  32844. name: "Feral (Side)",
  32845. image: {
  32846. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32847. extra: 1721/1581,
  32848. bottom: 70/1791
  32849. }
  32850. },
  32851. feralLazing: {
  32852. height: math.unit(1.08, "feet"),
  32853. weight: math.unit(20, "lb"),
  32854. name: "Feral (Lazing)",
  32855. image: {
  32856. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32857. extra: 822/822,
  32858. bottom: 248/1070
  32859. }
  32860. },
  32861. ear: {
  32862. height: math.unit(0.416, "feet"),
  32863. name: "Ear",
  32864. image: {
  32865. source: "./media/characters/vaelophis-nyx/ear.svg"
  32866. }
  32867. },
  32868. eye: {
  32869. height: math.unit(0.0748, "feet"),
  32870. name: "Eye",
  32871. image: {
  32872. source: "./media/characters/vaelophis-nyx/eye.svg"
  32873. }
  32874. },
  32875. mouth: {
  32876. height: math.unit(0.378, "feet"),
  32877. name: "Mouth",
  32878. image: {
  32879. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32880. }
  32881. },
  32882. spade: {
  32883. height: math.unit(0.55, "feet"),
  32884. name: "Spade",
  32885. image: {
  32886. source: "./media/characters/vaelophis-nyx/spade.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Normal",
  32893. height: math.unit(4 + 2/12, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32900. {
  32901. front: {
  32902. height: math.unit(7, "feet"),
  32903. weight: math.unit(231, "lb"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/flux/front.svg",
  32907. extra: 919/871,
  32908. bottom: 0/919
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(7, "feet"),
  32913. weight: math.unit(231, "lb"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/flux/back.svg",
  32917. extra: 1040/992,
  32918. bottom: 0/1040
  32919. }
  32920. },
  32921. frontDressed: {
  32922. height: math.unit(7, "feet"),
  32923. weight: math.unit(231, "lb"),
  32924. name: "Front (Dressed)",
  32925. image: {
  32926. source: "./media/characters/flux/front-dressed.svg",
  32927. extra: 919/871,
  32928. bottom: 0/919
  32929. }
  32930. },
  32931. feralSide: {
  32932. height: math.unit(5, "feet"),
  32933. weight: math.unit(150, "lb"),
  32934. name: "Feral (Side)",
  32935. image: {
  32936. source: "./media/characters/flux/feral-side.svg",
  32937. extra: 598/528,
  32938. bottom: 28/626
  32939. }
  32940. },
  32941. head: {
  32942. height: math.unit(1.585, "feet"),
  32943. name: "Head",
  32944. image: {
  32945. source: "./media/characters/flux/head.svg"
  32946. }
  32947. },
  32948. headSide: {
  32949. height: math.unit(1.74, "feet"),
  32950. name: "Head (Side)",
  32951. image: {
  32952. source: "./media/characters/flux/head-side.svg"
  32953. }
  32954. },
  32955. headSideFire: {
  32956. height: math.unit(1.76, "feet"),
  32957. name: "Head (Side, Fire)",
  32958. image: {
  32959. source: "./media/characters/flux/head-side-fire.svg"
  32960. }
  32961. },
  32962. },
  32963. [
  32964. {
  32965. name: "Normal",
  32966. height: math.unit(7, "feet"),
  32967. default: true
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(9, "feet"),
  32976. weight: math.unit(1012, "lb"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/ulfra-lupae/front.svg",
  32980. extra: 1083/1011,
  32981. bottom: 67/1150
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Micro",
  32988. height: math.unit(6, "inches")
  32989. },
  32990. {
  32991. name: "Socializing",
  32992. height: math.unit(6 + 5/12, "feet")
  32993. },
  32994. {
  32995. name: "Normal",
  32996. height: math.unit(9, "feet"),
  32997. default: true
  32998. },
  32999. {
  33000. name: "Macro",
  33001. height: math.unit(150, "feet")
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33007. {
  33008. front: {
  33009. height: math.unit(5 + 2/12, "feet"),
  33010. weight: math.unit(120, "lb"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/timber/front.svg",
  33014. extra: 2814/2705,
  33015. bottom: 181/2995
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Normal",
  33022. height: math.unit(5 + 2/12, "feet"),
  33023. default: true
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33029. {
  33030. front: {
  33031. height: math.unit(9, "feet"),
  33032. name: "Front",
  33033. image: {
  33034. source: "./media/characters/nicki/front.svg",
  33035. extra: 1240/990,
  33036. bottom: 45/1285
  33037. },
  33038. form: "anthro",
  33039. default: true
  33040. },
  33041. side: {
  33042. height: math.unit(9, "feet"),
  33043. name: "Side",
  33044. image: {
  33045. source: "./media/characters/nicki/side.svg",
  33046. extra: 1047/973,
  33047. bottom: 61/1108
  33048. },
  33049. form: "anthro"
  33050. },
  33051. back: {
  33052. height: math.unit(9, "feet"),
  33053. name: "Back",
  33054. image: {
  33055. source: "./media/characters/nicki/back.svg",
  33056. extra: 1006/965,
  33057. bottom: 39/1045
  33058. },
  33059. form: "anthro"
  33060. },
  33061. taur: {
  33062. height: math.unit(15, "feet"),
  33063. name: "Taur",
  33064. image: {
  33065. source: "./media/characters/nicki/taur.svg",
  33066. extra: 1592/1347,
  33067. bottom: 0/1592
  33068. },
  33069. form: "taur",
  33070. default: true
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Normal",
  33076. height: math.unit(9, "feet"),
  33077. form: "anthro",
  33078. default: true
  33079. },
  33080. {
  33081. name: "Normal",
  33082. height: math.unit(15, "feet"),
  33083. form: "taur",
  33084. default: true
  33085. }
  33086. ],
  33087. {
  33088. "anthro": {
  33089. name: "Anthro",
  33090. default: true
  33091. },
  33092. "taur": {
  33093. name: "Taur"
  33094. }
  33095. }
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(7 + 10/12, "feet"),
  33102. weight: math.unit(3.5, "tons"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/lee/front.svg",
  33106. extra: 1773/1615,
  33107. bottom: 86/1859
  33108. }
  33109. },
  33110. hand: {
  33111. height: math.unit(1.78, "feet"),
  33112. name: "Hand",
  33113. image: {
  33114. source: "./media/characters/lee/hand.svg"
  33115. }
  33116. },
  33117. maw: {
  33118. height: math.unit(1.18, "feet"),
  33119. name: "Maw",
  33120. image: {
  33121. source: "./media/characters/lee/maw.svg"
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(7 + 10/12, "feet"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33135. {
  33136. front: {
  33137. height: math.unit(9, "feet"),
  33138. name: "Front",
  33139. image: {
  33140. source: "./media/characters/guti/front.svg",
  33141. extra: 4551/4355,
  33142. bottom: 123/4674
  33143. }
  33144. },
  33145. tongue: {
  33146. height: math.unit(1, "feet"),
  33147. name: "Tongue",
  33148. image: {
  33149. source: "./media/characters/guti/tongue.svg"
  33150. }
  33151. },
  33152. paw: {
  33153. height: math.unit(1.18, "feet"),
  33154. name: "Paw",
  33155. image: {
  33156. source: "./media/characters/guti/paw.svg"
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(9, "feet"),
  33164. default: true
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33170. {
  33171. side: {
  33172. height: math.unit(5, "meters"),
  33173. name: "Side",
  33174. image: {
  33175. source: "./media/characters/vesper/side.svg",
  33176. extra: 1605/1518,
  33177. bottom: 0/1605
  33178. }
  33179. },
  33180. },
  33181. [
  33182. {
  33183. name: "Small",
  33184. height: math.unit(5, "meters")
  33185. },
  33186. {
  33187. name: "Sage",
  33188. height: math.unit(100, "meters"),
  33189. default: true
  33190. },
  33191. {
  33192. name: "Fun Size",
  33193. height: math.unit(600, "meters")
  33194. },
  33195. {
  33196. name: "Goddess",
  33197. height: math.unit(20000, "km")
  33198. },
  33199. {
  33200. name: "Maximum",
  33201. height: math.unit(5, "galaxies")
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33207. {
  33208. front: {
  33209. height: math.unit(6 + 3/12, "feet"),
  33210. weight: math.unit(190, "lb"),
  33211. name: "Front",
  33212. image: {
  33213. source: "./media/characters/gawain/front.svg",
  33214. extra: 2222/2139,
  33215. bottom: 90/2312
  33216. }
  33217. },
  33218. back: {
  33219. height: math.unit(6 + 3/12, "feet"),
  33220. weight: math.unit(190, "lb"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/gawain/back.svg",
  33224. extra: 2199/2111,
  33225. bottom: 73/2272
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(6 + 3/12, "feet"),
  33233. default: true
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33239. {
  33240. side: {
  33241. height: math.unit(3.5, "meters"),
  33242. weight: math.unit(16000, "lb"),
  33243. name: "Side",
  33244. image: {
  33245. source: "./media/characters/dascalti/side.svg",
  33246. extra: 392/273,
  33247. bottom: 47/439
  33248. }
  33249. },
  33250. breath: {
  33251. height: math.unit(7.4, "feet"),
  33252. name: "Breath",
  33253. image: {
  33254. source: "./media/characters/dascalti/breath.svg"
  33255. }
  33256. },
  33257. fed: {
  33258. height: math.unit(3.6, "meters"),
  33259. weight: math.unit(16000, "lb"),
  33260. name: "Fed",
  33261. image: {
  33262. source: "./media/characters/dascalti/fed.svg",
  33263. extra: 1419/820,
  33264. bottom: 95/1514
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(3.5, "meters"),
  33272. default: true
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33278. {
  33279. front: {
  33280. height: math.unit(3 + 5/12, "feet"),
  33281. name: "Front",
  33282. image: {
  33283. source: "./media/characters/mauve/front.svg",
  33284. extra: 1126/1033,
  33285. bottom: 65/1191
  33286. }
  33287. },
  33288. side: {
  33289. height: math.unit(3 + 5/12, "feet"),
  33290. name: "Side",
  33291. image: {
  33292. source: "./media/characters/mauve/side.svg",
  33293. extra: 1089/1001,
  33294. bottom: 29/1118
  33295. }
  33296. },
  33297. back: {
  33298. height: math.unit(3 + 5/12, "feet"),
  33299. name: "Back",
  33300. image: {
  33301. source: "./media/characters/mauve/back.svg",
  33302. extra: 1173/1053,
  33303. bottom: 109/1282
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(3 + 5/12, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(6 + 3/12, "feet"),
  33320. weight: math.unit(430, "lb"),
  33321. name: "Front",
  33322. image: {
  33323. source: "./media/characters/carlos/front.svg",
  33324. extra: 1964/1913,
  33325. bottom: 70/2034
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(6 + 3/12, "feet"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33339. {
  33340. back: {
  33341. height: math.unit(5 + 10/12, "feet"),
  33342. weight: math.unit(200, "lb"),
  33343. name: "Back",
  33344. image: {
  33345. source: "./media/characters/jax/back.svg",
  33346. extra: 764/739,
  33347. bottom: 25/789
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(5 + 10/12, "feet"),
  33355. default: true
  33356. },
  33357. ]
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33361. {
  33362. front: {
  33363. height: math.unit(8, "feet"),
  33364. weight: math.unit(250, "lb"),
  33365. name: "Front",
  33366. image: {
  33367. source: "./media/characters/eikthynir/front.svg",
  33368. extra: 1332/1166,
  33369. bottom: 82/1414
  33370. }
  33371. },
  33372. back: {
  33373. height: math.unit(8, "feet"),
  33374. weight: math.unit(250, "lb"),
  33375. name: "Back",
  33376. image: {
  33377. source: "./media/characters/eikthynir/back.svg",
  33378. extra: 1342/1190,
  33379. bottom: 19/1361
  33380. }
  33381. },
  33382. dick: {
  33383. height: math.unit(2.35, "feet"),
  33384. name: "Dick",
  33385. image: {
  33386. source: "./media/characters/eikthynir/dick.svg"
  33387. }
  33388. },
  33389. },
  33390. [
  33391. {
  33392. name: "Normal",
  33393. height: math.unit(8, "feet"),
  33394. default: true
  33395. },
  33396. ]
  33397. ))
  33398. characterMakers.push(() => makeCharacter(
  33399. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33400. {
  33401. front: {
  33402. height: math.unit(99, "meters"),
  33403. weight: math.unit(13000, "tons"),
  33404. name: "Front",
  33405. image: {
  33406. source: "./media/characters/zlmos/front.svg",
  33407. extra: 2202/1992,
  33408. bottom: 315/2517
  33409. }
  33410. },
  33411. },
  33412. [
  33413. {
  33414. name: "Macro",
  33415. height: math.unit(99, "meters"),
  33416. default: true
  33417. },
  33418. ]
  33419. ))
  33420. characterMakers.push(() => makeCharacter(
  33421. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33422. {
  33423. front: {
  33424. height: math.unit(6 + 5/12, "feet"),
  33425. name: "Front",
  33426. image: {
  33427. source: "./media/characters/purri/front.svg",
  33428. extra: 1698/1610,
  33429. bottom: 32/1730
  33430. }
  33431. },
  33432. frontAlt: {
  33433. height: math.unit(6 + 5/12, "feet"),
  33434. name: "Front (Alt)",
  33435. image: {
  33436. source: "./media/characters/purri/front-alt.svg",
  33437. extra: 450/420,
  33438. bottom: 26/476
  33439. }
  33440. },
  33441. boots: {
  33442. height: math.unit(5.5, "feet"),
  33443. name: "Boots",
  33444. image: {
  33445. source: "./media/characters/purri/boots.svg",
  33446. extra: 905/853,
  33447. bottom: 18/923
  33448. }
  33449. },
  33450. lying: {
  33451. height: math.unit(2, "feet"),
  33452. name: "Lying",
  33453. image: {
  33454. source: "./media/characters/purri/lying.svg",
  33455. extra: 940/843,
  33456. bottom: 146/1086
  33457. }
  33458. },
  33459. devious: {
  33460. height: math.unit(1.77, "feet"),
  33461. name: "Devious",
  33462. image: {
  33463. source: "./media/characters/purri/devious.svg",
  33464. extra: 1440/1155,
  33465. bottom: 147/1587
  33466. }
  33467. },
  33468. bean: {
  33469. height: math.unit(1.94, "feet"),
  33470. name: "Bean",
  33471. image: {
  33472. source: "./media/characters/purri/bean.svg"
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Micro",
  33479. height: math.unit(1, "mm")
  33480. },
  33481. {
  33482. name: "Normal",
  33483. height: math.unit(6 + 5/12, "feet"),
  33484. default: true
  33485. },
  33486. {
  33487. name: "Macro :3c",
  33488. height: math.unit(2, "miles")
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(6 + 2/12, "feet"),
  33497. weight: math.unit(250, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/moonlight/front.svg",
  33501. extra: 1044/908,
  33502. bottom: 56/1100
  33503. }
  33504. },
  33505. feral: {
  33506. height: math.unit(3 + 1/12, "feet"),
  33507. weight: math.unit(50, "kg"),
  33508. name: "Feral",
  33509. image: {
  33510. source: "./media/characters/moonlight/feral.svg",
  33511. extra: 3705/2791,
  33512. bottom: 145/3850
  33513. }
  33514. },
  33515. paw: {
  33516. height: math.unit(1, "feet"),
  33517. name: "Paw",
  33518. image: {
  33519. source: "./media/characters/moonlight/paw.svg"
  33520. }
  33521. },
  33522. paws: {
  33523. height: math.unit(0.98, "feet"),
  33524. name: "Paws",
  33525. image: {
  33526. source: "./media/characters/moonlight/paws.svg",
  33527. extra: 939/939,
  33528. bottom: 50/989
  33529. }
  33530. },
  33531. mouth: {
  33532. height: math.unit(0.48, "feet"),
  33533. name: "Mouth",
  33534. image: {
  33535. source: "./media/characters/moonlight/mouth.svg"
  33536. }
  33537. },
  33538. dick: {
  33539. height: math.unit(1.46, "feet"),
  33540. name: "Dick",
  33541. image: {
  33542. source: "./media/characters/moonlight/dick.svg"
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(6 + 2/12, "feet"),
  33550. default: true
  33551. },
  33552. {
  33553. name: "Macro",
  33554. height: math.unit(300, "feet")
  33555. },
  33556. {
  33557. name: "Macro+",
  33558. height: math.unit(1, "mile")
  33559. },
  33560. {
  33561. name: "Mt. Moon",
  33562. height: math.unit(5, "miles")
  33563. },
  33564. {
  33565. name: "Megamacro",
  33566. height: math.unit(15, "miles")
  33567. },
  33568. ]
  33569. ))
  33570. characterMakers.push(() => makeCharacter(
  33571. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33572. {
  33573. back: {
  33574. height: math.unit(6, "feet"),
  33575. weight: math.unit(150, "lb"),
  33576. name: "Back",
  33577. image: {
  33578. source: "./media/characters/sylen/back.svg",
  33579. extra: 1335/1273,
  33580. bottom: 107/1442
  33581. }
  33582. },
  33583. },
  33584. [
  33585. {
  33586. name: "Normal",
  33587. height: math.unit(5 + 5/12, "feet")
  33588. },
  33589. {
  33590. name: "Megamacro",
  33591. height: math.unit(3, "miles"),
  33592. default: true
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(6, "feet"),
  33601. weight: math.unit(190, "lb"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/huttser/front.svg",
  33605. extra: 1152/1058,
  33606. bottom: 23/1175
  33607. }
  33608. },
  33609. side: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(190, "lb"),
  33612. name: "Side",
  33613. image: {
  33614. source: "./media/characters/huttser/side.svg",
  33615. extra: 1174/1065,
  33616. bottom: 18/1192
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(190, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/huttser/back.svg",
  33625. extra: 1158/1056,
  33626. bottom: 12/1170
  33627. }
  33628. },
  33629. },
  33630. [
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33635. {
  33636. side: {
  33637. height: math.unit(12 + 9/12, "feet"),
  33638. weight: math.unit(15000, "lb"),
  33639. name: "Side",
  33640. image: {
  33641. source: "./media/characters/faan/side.svg",
  33642. extra: 2747/2697,
  33643. bottom: 0/2747
  33644. }
  33645. },
  33646. front: {
  33647. height: math.unit(12 + 9/12, "feet"),
  33648. weight: math.unit(15000, "lb"),
  33649. name: "Front",
  33650. image: {
  33651. source: "./media/characters/faan/front.svg",
  33652. extra: 607/571,
  33653. bottom: 24/631
  33654. }
  33655. },
  33656. head: {
  33657. height: math.unit(2.85, "feet"),
  33658. name: "Head",
  33659. image: {
  33660. source: "./media/characters/faan/head.svg"
  33661. }
  33662. },
  33663. headAlt: {
  33664. height: math.unit(3.13, "feet"),
  33665. name: "Head-alt",
  33666. image: {
  33667. source: "./media/characters/faan/head-alt.svg"
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(12 + 9/12, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33681. {
  33682. front: {
  33683. height: math.unit(6, "feet"),
  33684. weight: math.unit(300, "lb"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/tanio/front.svg",
  33688. extra: 711/673,
  33689. bottom: 25/736
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Normal",
  33696. height: math.unit(6, "feet"),
  33697. default: true
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(3, "inches"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/noboru/front.svg",
  33709. extra: 1039/932,
  33710. bottom: 18/1057
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Micro",
  33717. height: math.unit(3, "inches"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(1.85, "meters"),
  33727. weight: math.unit(80, "kg"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/daniel-barrett/front.svg",
  33731. extra: 355/337,
  33732. bottom: 9/364
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Pico",
  33739. height: math.unit(0.0433, "mm")
  33740. },
  33741. {
  33742. name: "Nano",
  33743. height: math.unit(1.5, "mm")
  33744. },
  33745. {
  33746. name: "Micro",
  33747. height: math.unit(5.3, "cm"),
  33748. default: true
  33749. },
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(1.85, "meters")
  33753. },
  33754. {
  33755. name: "Macro",
  33756. height: math.unit(64.7, "meters")
  33757. },
  33758. {
  33759. name: "Megamacro",
  33760. height: math.unit(2.26, "km")
  33761. },
  33762. {
  33763. name: "Gigamacro",
  33764. height: math.unit(79, "km")
  33765. },
  33766. {
  33767. name: "Teramacro",
  33768. height: math.unit(2765, "km")
  33769. },
  33770. {
  33771. name: "Petamacro",
  33772. height: math.unit(96678, "km")
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(30, "meters"),
  33781. weight: math.unit(400, "tons"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/zeel/front.svg",
  33785. extra: 2599/2599,
  33786. bottom: 226/2825
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(30, "meters"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(6 + 7/12, "feet"),
  33803. weight: math.unit(210, "lb"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/tarn/front.svg",
  33807. extra: 3517/3220,
  33808. bottom: 91/3608
  33809. }
  33810. },
  33811. back: {
  33812. height: math.unit(6 + 7/12, "feet"),
  33813. weight: math.unit(210, "lb"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/tarn/back.svg",
  33817. extra: 3566/3241,
  33818. bottom: 34/3600
  33819. }
  33820. },
  33821. dick: {
  33822. height: math.unit(1.65, "feet"),
  33823. name: "Dick",
  33824. image: {
  33825. source: "./media/characters/tarn/dick.svg"
  33826. }
  33827. },
  33828. paw: {
  33829. height: math.unit(1.80, "feet"),
  33830. name: "Paw",
  33831. image: {
  33832. source: "./media/characters/tarn/paw.svg"
  33833. }
  33834. },
  33835. tongue: {
  33836. height: math.unit(0.97, "feet"),
  33837. name: "Tongue",
  33838. image: {
  33839. source: "./media/characters/tarn/tongue.svg"
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Micro",
  33846. height: math.unit(4, "inches")
  33847. },
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(6 + 7/12, "feet"),
  33851. default: true
  33852. },
  33853. {
  33854. name: "Macro",
  33855. height: math.unit(300, "feet")
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(5 + 7/12, "feet"),
  33864. weight: math.unit(80, "kg"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33868. extra: 3023/2865,
  33869. bottom: 33/3056
  33870. }
  33871. },
  33872. back: {
  33873. height: math.unit(5 + 7/12, "feet"),
  33874. weight: math.unit(80, "kg"),
  33875. name: "Back",
  33876. image: {
  33877. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33878. extra: 3020/2886,
  33879. bottom: 30/3050
  33880. }
  33881. },
  33882. dick: {
  33883. height: math.unit(0.98, "feet"),
  33884. name: "Dick",
  33885. image: {
  33886. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33887. }
  33888. },
  33889. anatomy: {
  33890. height: math.unit(2.86, "feet"),
  33891. name: "Anatomy",
  33892. image: {
  33893. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33894. }
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Really Small",
  33900. height: math.unit(2, "inches")
  33901. },
  33902. {
  33903. name: "Micro",
  33904. height: math.unit(5.583, "inches")
  33905. },
  33906. {
  33907. name: "Normal",
  33908. height: math.unit(5 + 7/12, "feet"),
  33909. default: true
  33910. },
  33911. {
  33912. name: "Macro",
  33913. height: math.unit(67, "feet")
  33914. },
  33915. {
  33916. name: "Megamacro",
  33917. height: math.unit(134, "feet")
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33923. {
  33924. front: {
  33925. height: math.unit(9, "feet"),
  33926. weight: math.unit(120, "lb"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/sally/front.svg",
  33930. extra: 1506/1349,
  33931. bottom: 66/1572
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Normal",
  33938. height: math.unit(9, "feet"),
  33939. default: true
  33940. },
  33941. ]
  33942. ))
  33943. characterMakers.push(() => makeCharacter(
  33944. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33945. {
  33946. front: {
  33947. height: math.unit(8, "feet"),
  33948. weight: math.unit(900, "lb"),
  33949. name: "Front",
  33950. image: {
  33951. source: "./media/characters/owen/front.svg",
  33952. extra: 1761/1657,
  33953. bottom: 74/1835
  33954. }
  33955. },
  33956. side: {
  33957. height: math.unit(8, "feet"),
  33958. weight: math.unit(900, "lb"),
  33959. name: "Side",
  33960. image: {
  33961. source: "./media/characters/owen/side.svg",
  33962. extra: 1797/1734,
  33963. bottom: 30/1827
  33964. }
  33965. },
  33966. back: {
  33967. height: math.unit(8, "feet"),
  33968. weight: math.unit(900, "lb"),
  33969. name: "Back",
  33970. image: {
  33971. source: "./media/characters/owen/back.svg",
  33972. extra: 1796/1706,
  33973. bottom: 59/1855
  33974. }
  33975. },
  33976. maw: {
  33977. height: math.unit(1.76, "feet"),
  33978. name: "Maw",
  33979. image: {
  33980. source: "./media/characters/owen/maw.svg"
  33981. }
  33982. },
  33983. },
  33984. [
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(8, "feet"),
  33988. default: true
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33994. {
  33995. front: {
  33996. height: math.unit(4, "feet"),
  33997. weight: math.unit(400, "lb"),
  33998. name: "Front",
  33999. image: {
  34000. source: "./media/characters/ryth/front.svg",
  34001. extra: 1920/1748,
  34002. bottom: 42/1962
  34003. }
  34004. },
  34005. back: {
  34006. height: math.unit(4, "feet"),
  34007. weight: math.unit(400, "lb"),
  34008. name: "Back",
  34009. image: {
  34010. source: "./media/characters/ryth/back.svg",
  34011. extra: 1897/1690,
  34012. bottom: 89/1986
  34013. }
  34014. },
  34015. mouth: {
  34016. height: math.unit(1.39, "feet"),
  34017. name: "Mouth",
  34018. image: {
  34019. source: "./media/characters/ryth/mouth.svg"
  34020. }
  34021. },
  34022. tailmaw: {
  34023. height: math.unit(1.23, "feet"),
  34024. name: "Tailmaw",
  34025. image: {
  34026. source: "./media/characters/ryth/tailmaw.svg"
  34027. }
  34028. },
  34029. goia: {
  34030. height: math.unit(4, "meters"),
  34031. weight: math.unit(10800, "lb"),
  34032. name: "Goia",
  34033. image: {
  34034. source: "./media/characters/ryth/goia.svg",
  34035. extra: 745/640,
  34036. bottom: 107/852
  34037. }
  34038. },
  34039. goiaFront: {
  34040. height: math.unit(4, "meters"),
  34041. weight: math.unit(10800, "lb"),
  34042. name: "Goia (Front)",
  34043. image: {
  34044. source: "./media/characters/ryth/goia-front.svg",
  34045. extra: 750/586,
  34046. bottom: 114/864
  34047. }
  34048. },
  34049. goiaMaw: {
  34050. height: math.unit(5.55, "feet"),
  34051. name: "Goia Maw",
  34052. image: {
  34053. source: "./media/characters/ryth/goia-maw.svg"
  34054. }
  34055. },
  34056. goiaForepaw: {
  34057. height: math.unit(3.5, "feet"),
  34058. name: "Goia Forepaw",
  34059. image: {
  34060. source: "./media/characters/ryth/goia-forepaw.svg"
  34061. }
  34062. },
  34063. goiaHindpaw: {
  34064. height: math.unit(5.55, "feet"),
  34065. name: "Goia Hindpaw",
  34066. image: {
  34067. source: "./media/characters/ryth/goia-hindpaw.svg"
  34068. }
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(4, "feet"),
  34075. default: true
  34076. },
  34077. ]
  34078. ))
  34079. characterMakers.push(() => makeCharacter(
  34080. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34081. {
  34082. front: {
  34083. height: math.unit(7, "feet"),
  34084. weight: math.unit(180, "lb"),
  34085. name: "Front",
  34086. image: {
  34087. source: "./media/characters/necrolance/front.svg",
  34088. extra: 1062/947,
  34089. bottom: 41/1103
  34090. }
  34091. },
  34092. back: {
  34093. height: math.unit(7, "feet"),
  34094. weight: math.unit(180, "lb"),
  34095. name: "Back",
  34096. image: {
  34097. source: "./media/characters/necrolance/back.svg",
  34098. extra: 1045/984,
  34099. bottom: 14/1059
  34100. }
  34101. },
  34102. wing: {
  34103. height: math.unit(2.67, "feet"),
  34104. name: "Wing",
  34105. image: {
  34106. source: "./media/characters/necrolance/wing.svg"
  34107. }
  34108. },
  34109. },
  34110. [
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(7, "feet"),
  34114. default: true
  34115. },
  34116. ]
  34117. ))
  34118. characterMakers.push(() => makeCharacter(
  34119. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34120. {
  34121. front: {
  34122. height: math.unit(76, "meters"),
  34123. weight: math.unit(30000, "tons"),
  34124. name: "Front",
  34125. image: {
  34126. source: "./media/characters/tyler/front.svg",
  34127. extra: 1640/1640,
  34128. bottom: 114/1754
  34129. }
  34130. },
  34131. },
  34132. [
  34133. {
  34134. name: "Macro",
  34135. height: math.unit(76, "meters"),
  34136. default: true
  34137. },
  34138. ]
  34139. ))
  34140. characterMakers.push(() => makeCharacter(
  34141. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34142. {
  34143. front: {
  34144. height: math.unit(4 + 11/12, "feet"),
  34145. weight: math.unit(132, "lb"),
  34146. name: "Front",
  34147. image: {
  34148. source: "./media/characters/icey/front.svg",
  34149. extra: 2750/2550,
  34150. bottom: 33/2783
  34151. }
  34152. },
  34153. back: {
  34154. height: math.unit(4 + 11/12, "feet"),
  34155. weight: math.unit(132, "lb"),
  34156. name: "Back",
  34157. image: {
  34158. source: "./media/characters/icey/back.svg",
  34159. extra: 2624/2481,
  34160. bottom: 35/2659
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(4 + 11/12, "feet"),
  34168. default: true
  34169. },
  34170. ]
  34171. ))
  34172. characterMakers.push(() => makeCharacter(
  34173. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34174. {
  34175. front: {
  34176. height: math.unit(100, "feet"),
  34177. weight: math.unit(0, "lb"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/smile/front.svg",
  34181. extra: 2983/2912,
  34182. bottom: 162/3145
  34183. }
  34184. },
  34185. back: {
  34186. height: math.unit(100, "feet"),
  34187. weight: math.unit(0, "lb"),
  34188. name: "Back",
  34189. image: {
  34190. source: "./media/characters/smile/back.svg",
  34191. extra: 3143/3031,
  34192. bottom: 91/3234
  34193. }
  34194. },
  34195. head: {
  34196. height: math.unit(26.3, "feet"),
  34197. weight: math.unit(0, "lb"),
  34198. name: "Head",
  34199. image: {
  34200. source: "./media/characters/smile/head.svg"
  34201. }
  34202. },
  34203. collar: {
  34204. height: math.unit(5.3, "feet"),
  34205. weight: math.unit(0, "lb"),
  34206. name: "Collar",
  34207. image: {
  34208. source: "./media/characters/smile/collar.svg"
  34209. }
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Macro",
  34215. height: math.unit(100, "feet"),
  34216. default: true
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34222. {
  34223. dragon: {
  34224. height: math.unit(26, "feet"),
  34225. weight: math.unit(36, "tons"),
  34226. name: "Dragon",
  34227. image: {
  34228. source: "./media/characters/arimphae/dragon.svg",
  34229. extra: 1574/983,
  34230. bottom: 357/1931
  34231. }
  34232. },
  34233. drake: {
  34234. height: math.unit(9, "feet"),
  34235. weight: math.unit(1.5, "tons"),
  34236. name: "Drake",
  34237. image: {
  34238. source: "./media/characters/arimphae/drake.svg",
  34239. extra: 1120/925,
  34240. bottom: 435/1555
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Small",
  34247. height: math.unit(26*5/9, "feet")
  34248. },
  34249. {
  34250. name: "Normal",
  34251. height: math.unit(26, "feet"),
  34252. default: true
  34253. },
  34254. ]
  34255. ))
  34256. characterMakers.push(() => makeCharacter(
  34257. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34258. {
  34259. front: {
  34260. height: math.unit(8 + 9/12, "feet"),
  34261. name: "Front",
  34262. image: {
  34263. source: "./media/characters/xander/front.svg",
  34264. extra: 1237/974,
  34265. bottom: 94/1331
  34266. }
  34267. },
  34268. },
  34269. [
  34270. {
  34271. name: "Normal",
  34272. height: math.unit(8 + 9/12, "feet"),
  34273. default: true
  34274. },
  34275. {
  34276. name: "Gaze Grabber",
  34277. height: math.unit(13 + 8/12, "feet")
  34278. },
  34279. {
  34280. name: "Jaw Dropper",
  34281. height: math.unit(27, "feet")
  34282. },
  34283. {
  34284. name: "Show Stopper",
  34285. height: math.unit(136, "feet")
  34286. },
  34287. {
  34288. name: "Superstar",
  34289. height: math.unit(1.9e6, "miles")
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34295. {
  34296. side: {
  34297. height: math.unit(2100, "feet"),
  34298. name: "Side",
  34299. image: {
  34300. source: "./media/characters/osiris/side.svg",
  34301. extra: 1105/939,
  34302. bottom: 167/1272
  34303. }
  34304. },
  34305. },
  34306. [
  34307. {
  34308. name: "Macro",
  34309. height: math.unit(2100, "feet"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34316. {
  34317. front: {
  34318. height: math.unit(6 + 8/12, "feet"),
  34319. weight: math.unit(225, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/rhys-londe/front.svg",
  34323. extra: 2258/2141,
  34324. bottom: 188/2446
  34325. }
  34326. },
  34327. back: {
  34328. height: math.unit(6 + 8/12, "feet"),
  34329. weight: math.unit(225, "lb"),
  34330. name: "Back",
  34331. image: {
  34332. source: "./media/characters/rhys-londe/back.svg",
  34333. extra: 2237/2137,
  34334. bottom: 63/2300
  34335. }
  34336. },
  34337. frontNsfw: {
  34338. height: math.unit(6 + 8/12, "feet"),
  34339. weight: math.unit(225, "lb"),
  34340. name: "Front (NSFW)",
  34341. image: {
  34342. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34343. extra: 2258/2141,
  34344. bottom: 188/2446
  34345. }
  34346. },
  34347. backNsfw: {
  34348. height: math.unit(6 + 8/12, "feet"),
  34349. weight: math.unit(225, "lb"),
  34350. name: "Back (NSFW)",
  34351. image: {
  34352. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34353. extra: 2237/2137,
  34354. bottom: 63/2300
  34355. }
  34356. },
  34357. dick: {
  34358. height: math.unit(30, "inches"),
  34359. name: "Dick",
  34360. image: {
  34361. source: "./media/characters/rhys-londe/dick.svg"
  34362. }
  34363. },
  34364. maw: {
  34365. height: math.unit(1.6, "feet"),
  34366. name: "Maw",
  34367. image: {
  34368. source: "./media/characters/rhys-londe/maw.svg"
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(6 + 8/12, "feet"),
  34376. default: true
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(3 + 10/12, "feet"),
  34385. weight: math.unit(90, "lb"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/taivas-ensim/front.svg",
  34389. extra: 1327/1216,
  34390. bottom: 96/1423
  34391. }
  34392. },
  34393. back: {
  34394. height: math.unit(3 + 10/12, "feet"),
  34395. weight: math.unit(90, "lb"),
  34396. name: "Back",
  34397. image: {
  34398. source: "./media/characters/taivas-ensim/back.svg",
  34399. extra: 1355/1247,
  34400. bottom: 11/1366
  34401. }
  34402. },
  34403. frontNsfw: {
  34404. height: math.unit(3 + 10/12, "feet"),
  34405. weight: math.unit(90, "lb"),
  34406. name: "Front (NSFW)",
  34407. image: {
  34408. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34409. extra: 1327/1216,
  34410. bottom: 96/1423
  34411. }
  34412. },
  34413. backNsfw: {
  34414. height: math.unit(3 + 10/12, "feet"),
  34415. weight: math.unit(90, "lb"),
  34416. name: "Back (NSFW)",
  34417. image: {
  34418. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34419. extra: 1355/1247,
  34420. bottom: 11/1366
  34421. }
  34422. },
  34423. },
  34424. [
  34425. {
  34426. name: "Normal",
  34427. height: math.unit(3 + 10/12, "feet"),
  34428. default: true
  34429. },
  34430. ]
  34431. ))
  34432. characterMakers.push(() => makeCharacter(
  34433. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34434. {
  34435. front: {
  34436. height: math.unit(9 + 6/12, "feet"),
  34437. weight: math.unit(940, "lb"),
  34438. name: "Front",
  34439. image: {
  34440. source: "./media/characters/byliss/front.svg",
  34441. extra: 1327/1290,
  34442. bottom: 82/1409
  34443. }
  34444. },
  34445. back: {
  34446. height: math.unit(9 + 6/12, "feet"),
  34447. weight: math.unit(940, "lb"),
  34448. name: "Back",
  34449. image: {
  34450. source: "./media/characters/byliss/back.svg",
  34451. extra: 1376/1349,
  34452. bottom: 9/1385
  34453. }
  34454. },
  34455. frontNsfw: {
  34456. height: math.unit(9 + 6/12, "feet"),
  34457. weight: math.unit(940, "lb"),
  34458. name: "Front (NSFW)",
  34459. image: {
  34460. source: "./media/characters/byliss/front-nsfw.svg",
  34461. extra: 1327/1290,
  34462. bottom: 82/1409
  34463. }
  34464. },
  34465. backNsfw: {
  34466. height: math.unit(9 + 6/12, "feet"),
  34467. weight: math.unit(940, "lb"),
  34468. name: "Back (NSFW)",
  34469. image: {
  34470. source: "./media/characters/byliss/back-nsfw.svg",
  34471. extra: 1376/1349,
  34472. bottom: 9/1385
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(9 + 6/12, "feet"),
  34480. default: true
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34486. {
  34487. front: {
  34488. height: math.unit(5 + 2/12, "feet"),
  34489. weight: math.unit(200, "lb"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/noraly/front.svg",
  34493. extra: 4985/4773,
  34494. bottom: 150/5135
  34495. }
  34496. },
  34497. full: {
  34498. height: math.unit(5 + 2/12, "feet"),
  34499. weight: math.unit(164, "lb"),
  34500. name: "Full",
  34501. image: {
  34502. source: "./media/characters/noraly/full.svg",
  34503. extra: 1114/1059,
  34504. bottom: 35/1149
  34505. }
  34506. },
  34507. fuller: {
  34508. height: math.unit(5 + 2/12, "feet"),
  34509. weight: math.unit(230, "lb"),
  34510. name: "Fuller",
  34511. image: {
  34512. source: "./media/characters/noraly/fuller.svg",
  34513. extra: 1114/1059,
  34514. bottom: 35/1149
  34515. }
  34516. },
  34517. fullest: {
  34518. height: math.unit(5 + 2/12, "feet"),
  34519. weight: math.unit(300, "lb"),
  34520. name: "Fullest",
  34521. image: {
  34522. source: "./media/characters/noraly/fullest.svg",
  34523. extra: 1114/1059,
  34524. bottom: 35/1149
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(5 + 2/12, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34538. {
  34539. front: {
  34540. height: math.unit(5 + 2/12, "feet"),
  34541. weight: math.unit(210, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/pera/front.svg",
  34545. extra: 1560/1531,
  34546. bottom: 165/1725
  34547. }
  34548. },
  34549. back: {
  34550. height: math.unit(5 + 2/12, "feet"),
  34551. weight: math.unit(210, "lb"),
  34552. name: "Back",
  34553. image: {
  34554. source: "./media/characters/pera/back.svg",
  34555. extra: 1523/1493,
  34556. bottom: 152/1675
  34557. }
  34558. },
  34559. dick: {
  34560. height: math.unit(2.4, "feet"),
  34561. name: "Dick",
  34562. image: {
  34563. source: "./media/characters/pera/dick.svg"
  34564. }
  34565. },
  34566. },
  34567. [
  34568. {
  34569. name: "Normal",
  34570. height: math.unit(5 + 2/12, "feet"),
  34571. default: true
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34577. {
  34578. front: {
  34579. height: math.unit(12, "feet"),
  34580. weight: math.unit(3200, "lb"),
  34581. name: "Front",
  34582. image: {
  34583. source: "./media/characters/julian/front.svg",
  34584. extra: 2962/2701,
  34585. bottom: 184/3146
  34586. }
  34587. },
  34588. maw: {
  34589. height: math.unit(5.35, "feet"),
  34590. name: "Maw",
  34591. image: {
  34592. source: "./media/characters/julian/maw.svg"
  34593. }
  34594. },
  34595. paw: {
  34596. height: math.unit(3.07, "feet"),
  34597. name: "Paw",
  34598. image: {
  34599. source: "./media/characters/julian/paw.svg"
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Default",
  34606. height: math.unit(12, "feet"),
  34607. default: true
  34608. },
  34609. {
  34610. name: "Big",
  34611. height: math.unit(50, "feet")
  34612. },
  34613. {
  34614. name: "Really Big",
  34615. height: math.unit(1, "mile")
  34616. },
  34617. {
  34618. name: "Extremely Big",
  34619. height: math.unit(100, "miles")
  34620. },
  34621. {
  34622. name: "Planet Hugger",
  34623. height: math.unit(200, "megameters")
  34624. },
  34625. {
  34626. name: "Unreasonably Big",
  34627. height: math.unit(1e300, "meters")
  34628. },
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34633. {
  34634. solgooleo: {
  34635. height: math.unit(4, "meters"),
  34636. weight: math.unit(6000*1.5, "kg"),
  34637. volume: math.unit(6000, "liters"),
  34638. name: "Solgooleo",
  34639. image: {
  34640. source: "./media/characters/pi/solgooleo.svg",
  34641. extra: 388/331,
  34642. bottom: 29/417
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(4, "meters"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(8, "feet"),
  34659. weight: math.unit(4, "tons"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/shaun/front.svg",
  34663. extra: 503/495,
  34664. bottom: 20/523
  34665. }
  34666. },
  34667. back: {
  34668. height: math.unit(8, "feet"),
  34669. weight: math.unit(4, "tons"),
  34670. name: "Back",
  34671. image: {
  34672. source: "./media/characters/shaun/back.svg",
  34673. extra: 487/480,
  34674. bottom: 20/507
  34675. }
  34676. },
  34677. },
  34678. [
  34679. {
  34680. name: "Lorg",
  34681. height: math.unit(8, "feet"),
  34682. default: true
  34683. },
  34684. ]
  34685. ))
  34686. characterMakers.push(() => makeCharacter(
  34687. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34688. {
  34689. frontAnthro: {
  34690. height: math.unit(7, "feet"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/sini/front-anthro.svg",
  34694. extra: 726/678,
  34695. bottom: 35/761
  34696. },
  34697. form: "anthro",
  34698. default: true
  34699. },
  34700. backAnthro: {
  34701. height: math.unit(7, "feet"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/sini/back-anthro.svg",
  34705. extra: 743/701,
  34706. bottom: 12/755
  34707. },
  34708. form: "anthro",
  34709. },
  34710. frontAnthroNsfw: {
  34711. height: math.unit(7, "feet"),
  34712. name: "Front (NSFW)",
  34713. image: {
  34714. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34715. extra: 726/678,
  34716. bottom: 35/761
  34717. },
  34718. form: "anthro"
  34719. },
  34720. backAnthroNsfw: {
  34721. height: math.unit(7, "feet"),
  34722. name: "Back (NSFW)",
  34723. image: {
  34724. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34725. extra: 743/701,
  34726. bottom: 12/755
  34727. },
  34728. form: "anthro",
  34729. },
  34730. mawAnthro: {
  34731. height: math.unit(2.14, "feet"),
  34732. name: "Maw",
  34733. image: {
  34734. source: "./media/characters/sini/maw-anthro.svg"
  34735. },
  34736. form: "anthro"
  34737. },
  34738. dick: {
  34739. height: math.unit(1.45, "feet"),
  34740. name: "Dick",
  34741. image: {
  34742. source: "./media/characters/sini/dick-anthro.svg"
  34743. },
  34744. form: "anthro"
  34745. },
  34746. feral: {
  34747. height: math.unit(16, "feet"),
  34748. name: "Feral",
  34749. image: {
  34750. source: "./media/characters/sini/feral.svg",
  34751. extra: 814/605,
  34752. bottom: 11/825
  34753. },
  34754. form: "feral",
  34755. default: true
  34756. },
  34757. feralNsfw: {
  34758. height: math.unit(16, "feet"),
  34759. name: "Feral (NSFW)",
  34760. image: {
  34761. source: "./media/characters/sini/feral-nsfw.svg",
  34762. extra: 814/605,
  34763. bottom: 11/825
  34764. },
  34765. form: "feral"
  34766. },
  34767. mawFeral: {
  34768. height: math.unit(5.66, "feet"),
  34769. name: "Maw",
  34770. image: {
  34771. source: "./media/characters/sini/maw-feral.svg"
  34772. },
  34773. form: "feral",
  34774. },
  34775. pawFeral: {
  34776. height: math.unit(5.17, "feet"),
  34777. name: "Paw",
  34778. image: {
  34779. source: "./media/characters/sini/paw-feral.svg"
  34780. },
  34781. form: "feral",
  34782. },
  34783. rumpFeral: {
  34784. height: math.unit(13.11, "feet"),
  34785. name: "Rump",
  34786. image: {
  34787. source: "./media/characters/sini/rump-feral.svg"
  34788. },
  34789. form: "feral",
  34790. },
  34791. dickFeral: {
  34792. height: math.unit(1, "feet"),
  34793. name: "Dick",
  34794. image: {
  34795. source: "./media/characters/sini/dick-feral.svg"
  34796. },
  34797. form: "feral",
  34798. },
  34799. eyeFeral: {
  34800. height: math.unit(1.23, "feet"),
  34801. name: "Eye",
  34802. image: {
  34803. source: "./media/characters/sini/eye-feral.svg"
  34804. },
  34805. form: "feral",
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Normal",
  34811. height: math.unit(7, "feet"),
  34812. default: true,
  34813. form: "anthro"
  34814. },
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(16, "feet"),
  34818. default: true,
  34819. form: "feral"
  34820. },
  34821. ],
  34822. {
  34823. "anthro": {
  34824. name: "Anthro",
  34825. default: true
  34826. },
  34827. "feral": {
  34828. name: "Feral",
  34829. }
  34830. }
  34831. ))
  34832. characterMakers.push(() => makeCharacter(
  34833. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34834. {
  34835. side: {
  34836. height: math.unit(47.2, "meters"),
  34837. weight: math.unit(10000, "tons"),
  34838. name: "Side",
  34839. image: {
  34840. source: "./media/characters/raylldo/side.svg",
  34841. extra: 2363/642,
  34842. bottom: 221/2584
  34843. }
  34844. },
  34845. top: {
  34846. height: math.unit(240, "meters"),
  34847. weight: math.unit(10000, "tons"),
  34848. name: "Top",
  34849. image: {
  34850. source: "./media/characters/raylldo/top.svg"
  34851. }
  34852. },
  34853. bottom: {
  34854. height: math.unit(240, "meters"),
  34855. weight: math.unit(10000, "tons"),
  34856. name: "Bottom",
  34857. image: {
  34858. source: "./media/characters/raylldo/bottom.svg"
  34859. }
  34860. },
  34861. head: {
  34862. height: math.unit(38.6, "meters"),
  34863. name: "Head",
  34864. image: {
  34865. source: "./media/characters/raylldo/head.svg",
  34866. extra: 1335/1112,
  34867. bottom: 0/1335
  34868. }
  34869. },
  34870. maw: {
  34871. height: math.unit(16.37, "meters"),
  34872. name: "Maw",
  34873. image: {
  34874. source: "./media/characters/raylldo/maw.svg",
  34875. extra: 883/660,
  34876. bottom: 0/883
  34877. },
  34878. extraAttributes: {
  34879. preyCapacity: {
  34880. name: "Capacity",
  34881. power: 3,
  34882. type: "volume",
  34883. base: math.unit(1000, "people")
  34884. },
  34885. tongueSize: {
  34886. name: "Tongue Size",
  34887. power: 2,
  34888. type: "area",
  34889. base: math.unit(21, "m^2")
  34890. }
  34891. }
  34892. },
  34893. forepaw: {
  34894. height: math.unit(18, "meters"),
  34895. name: "Forepaw",
  34896. image: {
  34897. source: "./media/characters/raylldo/forepaw.svg"
  34898. }
  34899. },
  34900. hindpaw: {
  34901. height: math.unit(23, "meters"),
  34902. name: "Hindpaw",
  34903. image: {
  34904. source: "./media/characters/raylldo/hindpaw.svg"
  34905. }
  34906. },
  34907. genitals: {
  34908. height: math.unit(42, "meters"),
  34909. name: "Genitals",
  34910. image: {
  34911. source: "./media/characters/raylldo/genitals.svg"
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(47.2, "meters"),
  34919. default: true
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34925. {
  34926. anthroFront: {
  34927. height: math.unit(9, "feet"),
  34928. weight: math.unit(600, "lb"),
  34929. name: "Anthro (Front)",
  34930. image: {
  34931. source: "./media/characters/glint/anthro-front.svg",
  34932. extra: 1097/1018,
  34933. bottom: 28/1125
  34934. }
  34935. },
  34936. anthroBack: {
  34937. height: math.unit(9, "feet"),
  34938. weight: math.unit(600, "lb"),
  34939. name: "Anthro (Back)",
  34940. image: {
  34941. source: "./media/characters/glint/anthro-back.svg",
  34942. extra: 1154/997,
  34943. bottom: 36/1190
  34944. }
  34945. },
  34946. feral: {
  34947. height: math.unit(11, "feet"),
  34948. weight: math.unit(50000, "lb"),
  34949. name: "Feral",
  34950. image: {
  34951. source: "./media/characters/glint/feral.svg",
  34952. extra: 3035/1585,
  34953. bottom: 1169/4204
  34954. }
  34955. },
  34956. dickAnthro: {
  34957. height: math.unit(0.7, "meters"),
  34958. name: "Dick (Anthro)",
  34959. image: {
  34960. source: "./media/characters/glint/dick-anthro.svg"
  34961. }
  34962. },
  34963. dickFeral: {
  34964. height: math.unit(2.65, "meters"),
  34965. name: "Dick (Feral)",
  34966. image: {
  34967. source: "./media/characters/glint/dick-feral.svg"
  34968. }
  34969. },
  34970. slitHidden: {
  34971. height: math.unit(5.85, "meters"),
  34972. name: "Slit (Hidden)",
  34973. image: {
  34974. source: "./media/characters/glint/slit-hidden.svg"
  34975. }
  34976. },
  34977. slitErect: {
  34978. height: math.unit(5.85, "meters"),
  34979. name: "Slit (Erect)",
  34980. image: {
  34981. source: "./media/characters/glint/slit-erect.svg"
  34982. }
  34983. },
  34984. mawAnthro: {
  34985. height: math.unit(0.63, "meters"),
  34986. name: "Maw (Anthro)",
  34987. image: {
  34988. source: "./media/characters/glint/maw.svg"
  34989. }
  34990. },
  34991. mawFeral: {
  34992. height: math.unit(2.89, "meters"),
  34993. name: "Maw (Feral)",
  34994. image: {
  34995. source: "./media/characters/glint/maw.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(9, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35009. {
  35010. side: {
  35011. height: math.unit(15, "feet"),
  35012. weight: math.unit(5000, "kg"),
  35013. name: "Side",
  35014. image: {
  35015. source: "./media/characters/kairne/side.svg",
  35016. extra: 979/811,
  35017. bottom: 13/992
  35018. }
  35019. },
  35020. front: {
  35021. height: math.unit(15, "feet"),
  35022. weight: math.unit(5000, "kg"),
  35023. name: "Front",
  35024. image: {
  35025. source: "./media/characters/kairne/front.svg",
  35026. extra: 908/814,
  35027. bottom: 26/934
  35028. }
  35029. },
  35030. sideNsfw: {
  35031. height: math.unit(15, "feet"),
  35032. weight: math.unit(5000, "kg"),
  35033. name: "Side (NSFW)",
  35034. image: {
  35035. source: "./media/characters/kairne/side-nsfw.svg",
  35036. extra: 979/811,
  35037. bottom: 13/992
  35038. }
  35039. },
  35040. frontNsfw: {
  35041. height: math.unit(15, "feet"),
  35042. weight: math.unit(5000, "kg"),
  35043. name: "Front (NSFW)",
  35044. image: {
  35045. source: "./media/characters/kairne/front-nsfw.svg",
  35046. extra: 908/814,
  35047. bottom: 26/934
  35048. }
  35049. },
  35050. dickCaged: {
  35051. height: math.unit(0.65, "meters"),
  35052. name: "Dick-caged",
  35053. image: {
  35054. source: "./media/characters/kairne/dick-caged.svg"
  35055. }
  35056. },
  35057. dick: {
  35058. height: math.unit(0.79, "meters"),
  35059. name: "Dick",
  35060. image: {
  35061. source: "./media/characters/kairne/dick.svg"
  35062. }
  35063. },
  35064. genitals: {
  35065. height: math.unit(1.29, "meters"),
  35066. name: "Genitals",
  35067. image: {
  35068. source: "./media/characters/kairne/genitals.svg"
  35069. }
  35070. },
  35071. maw: {
  35072. height: math.unit(1.73, "meters"),
  35073. name: "Maw",
  35074. image: {
  35075. source: "./media/characters/kairne/maw.svg"
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(15, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(5 + 8/12, "feet"),
  35092. weight: math.unit(139, "lb"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/biscuit-jackal/front.svg",
  35096. extra: 2106/1961,
  35097. bottom: 58/2164
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(5 + 8/12, "feet"),
  35102. weight: math.unit(139, "lb"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/biscuit-jackal/back.svg",
  35106. extra: 2132/1976,
  35107. bottom: 57/2189
  35108. }
  35109. },
  35110. werejackal: {
  35111. height: math.unit(6 + 3/12, "feet"),
  35112. weight: math.unit(188, "lb"),
  35113. name: "Werejackal",
  35114. image: {
  35115. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35116. extra: 2373/2178,
  35117. bottom: 53/2426
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(5 + 8/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(140, "cm"),
  35134. weight: math.unit(45, "kg"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/tayra-white/front.svg",
  35138. extra: 2229/2192,
  35139. bottom: 75/2304
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(140, "cm"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(4 + 5/12, "feet"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/scoop/front.svg",
  35159. extra: 1257/1136,
  35160. bottom: 69/1326
  35161. }
  35162. },
  35163. back: {
  35164. height: math.unit(4 + 5/12, "feet"),
  35165. name: "Back",
  35166. image: {
  35167. source: "./media/characters/scoop/back.svg",
  35168. extra: 1321/1152,
  35169. bottom: 32/1353
  35170. }
  35171. },
  35172. maw: {
  35173. height: math.unit(0.68, "feet"),
  35174. name: "Maw",
  35175. image: {
  35176. source: "./media/characters/scoop/maw.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Really Small",
  35183. height: math.unit(1, "mm")
  35184. },
  35185. {
  35186. name: "Micro",
  35187. height: math.unit(1, "inch")
  35188. },
  35189. {
  35190. name: "Normal",
  35191. height: math.unit(4 + 5/12, "feet"),
  35192. default: true
  35193. },
  35194. {
  35195. name: "Macro",
  35196. height: math.unit(200, "feet")
  35197. },
  35198. {
  35199. name: "Megamacro",
  35200. height: math.unit(3240, "feet")
  35201. },
  35202. {
  35203. name: "Teramacro",
  35204. height: math.unit(2500, "miles")
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(15 + 7/12, "feet"),
  35213. weight: math.unit(1150, "tons"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/saphinara/front.svg",
  35217. extra: 1837/1643,
  35218. bottom: 84/1921
  35219. },
  35220. form: "normal",
  35221. default: true
  35222. },
  35223. side: {
  35224. height: math.unit(15 + 7/12, "feet"),
  35225. weight: math.unit(1150, "tons"),
  35226. name: "Side",
  35227. image: {
  35228. source: "./media/characters/saphinara/side.svg",
  35229. extra: 605/547,
  35230. bottom: 6/611
  35231. },
  35232. form: "normal"
  35233. },
  35234. back: {
  35235. height: math.unit(15 + 7/12, "feet"),
  35236. weight: math.unit(1150, "tons"),
  35237. name: "Back",
  35238. image: {
  35239. source: "./media/characters/saphinara/back.svg",
  35240. extra: 591/531,
  35241. bottom: 13/604
  35242. },
  35243. form: "normal"
  35244. },
  35245. frontTail: {
  35246. height: math.unit(15 + 7/12, "feet"),
  35247. weight: math.unit(1150, "tons"),
  35248. name: "Front (Full Tail)",
  35249. image: {
  35250. source: "./media/characters/saphinara/front-tail.svg",
  35251. extra: 2256/1630,
  35252. bottom: 261/2517
  35253. },
  35254. form: "normal"
  35255. },
  35256. insides: {
  35257. height: math.unit(11.92, "feet"),
  35258. name: "Insides",
  35259. image: {
  35260. source: "./media/characters/saphinara/insides.svg"
  35261. },
  35262. form: "normal"
  35263. },
  35264. head: {
  35265. height: math.unit(4.17, "feet"),
  35266. name: "Head",
  35267. image: {
  35268. source: "./media/characters/saphinara/head.svg"
  35269. },
  35270. form: "normal"
  35271. },
  35272. tongue: {
  35273. height: math.unit(4.60, "feet"),
  35274. name: "Tongue",
  35275. image: {
  35276. source: "./media/characters/saphinara/tongue.svg"
  35277. },
  35278. form: "normal"
  35279. },
  35280. headEnraged: {
  35281. height: math.unit(5.55, "feet"),
  35282. name: "Head (Enraged)",
  35283. image: {
  35284. source: "./media/characters/saphinara/head-enraged.svg"
  35285. },
  35286. form: "normal"
  35287. },
  35288. wings: {
  35289. height: math.unit(11.95, "feet"),
  35290. name: "Wings",
  35291. image: {
  35292. source: "./media/characters/saphinara/wings.svg"
  35293. },
  35294. form: "normal"
  35295. },
  35296. feathers: {
  35297. height: math.unit(8.92, "feet"),
  35298. name: "Feathers",
  35299. image: {
  35300. source: "./media/characters/saphinara/feathers.svg"
  35301. },
  35302. form: "normal"
  35303. },
  35304. shackles: {
  35305. height: math.unit(2, "feet"),
  35306. name: "Shackles",
  35307. image: {
  35308. source: "./media/characters/saphinara/shackles.svg"
  35309. },
  35310. form: "normal"
  35311. },
  35312. eyes: {
  35313. height: math.unit(1.331, "feet"),
  35314. name: "Eyes",
  35315. image: {
  35316. source: "./media/characters/saphinara/eyes.svg"
  35317. },
  35318. form: "normal"
  35319. },
  35320. eyesEnraged: {
  35321. height: math.unit(1.331, "feet"),
  35322. name: "Eyes (Enraged)",
  35323. image: {
  35324. source: "./media/characters/saphinara/eyes-enraged.svg"
  35325. },
  35326. form: "normal"
  35327. },
  35328. trueFormSide: {
  35329. height: math.unit(200, "feet"),
  35330. weight: math.unit(1e7, "tons"),
  35331. name: "Side",
  35332. image: {
  35333. source: "./media/characters/saphinara/true-form-side.svg",
  35334. extra: 1399/770,
  35335. bottom: 97/1496
  35336. },
  35337. form: "true-form",
  35338. default: true
  35339. },
  35340. trueFormMaw: {
  35341. height: math.unit(71.5, "feet"),
  35342. name: "Maw",
  35343. image: {
  35344. source: "./media/characters/saphinara/true-form-maw.svg",
  35345. extra: 2302/1453,
  35346. bottom: 0/2302
  35347. },
  35348. form: "true-form"
  35349. },
  35350. meowberusSide: {
  35351. height: math.unit(75, "feet"),
  35352. weight: math.unit(180000, "kg"),
  35353. preyCapacity: math.unit(50000, "people"),
  35354. name: "Side",
  35355. image: {
  35356. source: "./media/characters/saphinara/meowberus-side.svg",
  35357. extra: 1400/711,
  35358. bottom: 126/1526
  35359. },
  35360. form: "meowberus",
  35361. extraAttributes: {
  35362. "pawArea": {
  35363. name: "Paw Size",
  35364. power: 2,
  35365. type: "area",
  35366. base: math.unit(35, "m^2")
  35367. }
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(15 + 7/12, "feet"),
  35375. default: true,
  35376. form: "normal"
  35377. },
  35378. {
  35379. name: "Angry",
  35380. height: math.unit(30 + 6/12, "feet"),
  35381. form: "normal"
  35382. },
  35383. {
  35384. name: "Enraged",
  35385. height: math.unit(102 + 1/12, "feet"),
  35386. form: "normal"
  35387. },
  35388. {
  35389. name: "True",
  35390. height: math.unit(200, "feet"),
  35391. default: true,
  35392. form: "true-form"
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(75, "feet"),
  35397. default: true,
  35398. form: "meowberus"
  35399. },
  35400. ],
  35401. {
  35402. "normal": {
  35403. name: "Normal",
  35404. default: true
  35405. },
  35406. "true-form": {
  35407. name: "True Form"
  35408. },
  35409. "meowberus": {
  35410. name: "Meowberus",
  35411. },
  35412. }
  35413. ))
  35414. characterMakers.push(() => makeCharacter(
  35415. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35416. {
  35417. front: {
  35418. height: math.unit(6 + 8/12, "feet"),
  35419. weight: math.unit(300, "lb"),
  35420. name: "Front",
  35421. image: {
  35422. source: "./media/characters/jrain/front.svg",
  35423. extra: 3039/2865,
  35424. bottom: 399/3438
  35425. }
  35426. },
  35427. back: {
  35428. height: math.unit(6 + 8/12, "feet"),
  35429. weight: math.unit(300, "lb"),
  35430. name: "Back",
  35431. image: {
  35432. source: "./media/characters/jrain/back.svg",
  35433. extra: 3089/2938,
  35434. bottom: 172/3261
  35435. }
  35436. },
  35437. head: {
  35438. height: math.unit(2.14, "feet"),
  35439. name: "Head",
  35440. image: {
  35441. source: "./media/characters/jrain/head.svg"
  35442. }
  35443. },
  35444. maw: {
  35445. height: math.unit(1.77, "feet"),
  35446. name: "Maw",
  35447. image: {
  35448. source: "./media/characters/jrain/maw.svg"
  35449. }
  35450. },
  35451. leftHand: {
  35452. height: math.unit(1.1, "feet"),
  35453. name: "Left Hand",
  35454. image: {
  35455. source: "./media/characters/jrain/left-hand.svg"
  35456. }
  35457. },
  35458. rightHand: {
  35459. height: math.unit(1.1, "feet"),
  35460. name: "Right Hand",
  35461. image: {
  35462. source: "./media/characters/jrain/right-hand.svg"
  35463. }
  35464. },
  35465. eye: {
  35466. height: math.unit(0.35, "feet"),
  35467. name: "Eye",
  35468. image: {
  35469. source: "./media/characters/jrain/eye.svg"
  35470. }
  35471. },
  35472. },
  35473. [
  35474. {
  35475. name: "Normal",
  35476. height: math.unit(6 + 8/12, "feet"),
  35477. default: true
  35478. },
  35479. {
  35480. name: "Casually Large",
  35481. height: math.unit(25, "feet")
  35482. },
  35483. {
  35484. name: "Giant",
  35485. height: math.unit(100, "feet")
  35486. },
  35487. {
  35488. name: "Kaiju",
  35489. height: math.unit(300, "feet")
  35490. },
  35491. ]
  35492. ))
  35493. characterMakers.push(() => makeCharacter(
  35494. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35495. {
  35496. dragon: {
  35497. height: math.unit(5, "meters"),
  35498. name: "Dragon",
  35499. image: {
  35500. source: "./media/characters/sabrina/dragon.svg",
  35501. extra: 3670 / 2365,
  35502. bottom: 333 / 4003
  35503. }
  35504. },
  35505. gryphon: {
  35506. height: math.unit(3, "meters"),
  35507. name: "Gryphon",
  35508. image: {
  35509. source: "./media/characters/sabrina/gryphon.svg",
  35510. extra: 1576 / 945,
  35511. bottom: 71 / 1647
  35512. }
  35513. },
  35514. snake: {
  35515. height: math.unit(12, "meters"),
  35516. name: "Snake",
  35517. image: {
  35518. source: "./media/characters/sabrina/snake.svg",
  35519. extra: 1758 / 1320,
  35520. bottom: 186 / 1944
  35521. }
  35522. },
  35523. collar: {
  35524. height: math.unit(1.86, "meters"),
  35525. name: "Collar",
  35526. image: {
  35527. source: "./media/characters/sabrina/collar.svg"
  35528. }
  35529. },
  35530. eye: {
  35531. height: math.unit(0.53, "meters"),
  35532. name: "Eye",
  35533. image: {
  35534. source: "./media/characters/sabrina/eye.svg"
  35535. }
  35536. },
  35537. foot: {
  35538. height: math.unit(1.86, "meters"),
  35539. name: "Foot",
  35540. image: {
  35541. source: "./media/characters/sabrina/foot.svg"
  35542. }
  35543. },
  35544. hand: {
  35545. height: math.unit(1.32, "meters"),
  35546. name: "Hand",
  35547. image: {
  35548. source: "./media/characters/sabrina/hand.svg"
  35549. }
  35550. },
  35551. head: {
  35552. height: math.unit(2.44, "meters"),
  35553. name: "Head",
  35554. image: {
  35555. source: "./media/characters/sabrina/head.svg"
  35556. }
  35557. },
  35558. headAngry: {
  35559. height: math.unit(2.44, "meters"),
  35560. name: "Head (Angry))",
  35561. image: {
  35562. source: "./media/characters/sabrina/head-angry.svg"
  35563. }
  35564. },
  35565. maw: {
  35566. height: math.unit(1.65, "meters"),
  35567. name: "Maw",
  35568. image: {
  35569. source: "./media/characters/sabrina/maw.svg"
  35570. }
  35571. },
  35572. spikes: {
  35573. height: math.unit(1.69, "meters"),
  35574. name: "Spikes",
  35575. image: {
  35576. source: "./media/characters/sabrina/spikes.svg"
  35577. }
  35578. },
  35579. stomach: {
  35580. height: math.unit(1.15, "meters"),
  35581. name: "Stomach",
  35582. image: {
  35583. source: "./media/characters/sabrina/stomach.svg"
  35584. }
  35585. },
  35586. tongue: {
  35587. height: math.unit(1.27, "meters"),
  35588. name: "Tongue",
  35589. image: {
  35590. source: "./media/characters/sabrina/tongue.svg"
  35591. }
  35592. },
  35593. wingDorsal: {
  35594. height: math.unit(4.85, "meters"),
  35595. name: "Wing (Dorsal)",
  35596. image: {
  35597. source: "./media/characters/sabrina/wing-dorsal.svg"
  35598. }
  35599. },
  35600. wingVentral: {
  35601. height: math.unit(4.85, "meters"),
  35602. name: "Wing (Ventral)",
  35603. image: {
  35604. source: "./media/characters/sabrina/wing-ventral.svg"
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(5, "meters"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35618. {
  35619. frontMaid: {
  35620. height: math.unit(5 + 5/12, "feet"),
  35621. weight: math.unit(130, "lb"),
  35622. name: "Front (Maid)",
  35623. image: {
  35624. source: "./media/characters/midnight-tales/front-maid.svg",
  35625. extra: 489/454,
  35626. bottom: 61/550
  35627. }
  35628. },
  35629. frontFormal: {
  35630. height: math.unit(5 + 5/12, "feet"),
  35631. weight: math.unit(130, "lb"),
  35632. name: "Front (Formal)",
  35633. image: {
  35634. source: "./media/characters/midnight-tales/front-formal.svg",
  35635. extra: 489/454,
  35636. bottom: 61/550
  35637. }
  35638. },
  35639. back: {
  35640. height: math.unit(5 + 5/12, "feet"),
  35641. weight: math.unit(130, "lb"),
  35642. name: "Back",
  35643. image: {
  35644. source: "./media/characters/midnight-tales/back.svg",
  35645. extra: 498/456,
  35646. bottom: 33/531
  35647. }
  35648. },
  35649. frontBeast: {
  35650. height: math.unit(40, "feet"),
  35651. weight: math.unit(64000, "lb"),
  35652. name: "Front (Beast)",
  35653. image: {
  35654. source: "./media/characters/midnight-tales/front-beast.svg",
  35655. extra: 927/860,
  35656. bottom: 53/980
  35657. }
  35658. },
  35659. backBeast: {
  35660. height: math.unit(40, "feet"),
  35661. weight: math.unit(64000, "lb"),
  35662. name: "Back (Beast)",
  35663. image: {
  35664. source: "./media/characters/midnight-tales/back-beast.svg",
  35665. extra: 929/855,
  35666. bottom: 16/945
  35667. }
  35668. },
  35669. footBeast: {
  35670. height: math.unit(6.7, "feet"),
  35671. name: "Foot (Beast)",
  35672. image: {
  35673. source: "./media/characters/midnight-tales/foot-beast.svg"
  35674. }
  35675. },
  35676. headBeast: {
  35677. height: math.unit(8, "feet"),
  35678. name: "Head (Beast)",
  35679. image: {
  35680. source: "./media/characters/midnight-tales/head-beast.svg"
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(5 + 5 / 12, "feet"),
  35688. default: true
  35689. },
  35690. {
  35691. name: "Macro",
  35692. height: math.unit(25, "feet")
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35698. {
  35699. front: {
  35700. height: math.unit(5 + 10/12, "feet"),
  35701. name: "Front",
  35702. image: {
  35703. source: "./media/characters/argon/front.svg",
  35704. extra: 2009/1935,
  35705. bottom: 118/2127
  35706. }
  35707. },
  35708. back: {
  35709. height: math.unit(5 + 10/12, "feet"),
  35710. name: "Back",
  35711. image: {
  35712. source: "./media/characters/argon/back.svg",
  35713. extra: 2047/1992,
  35714. bottom: 20/2067
  35715. }
  35716. },
  35717. frontDressed: {
  35718. height: math.unit(5 + 10/12, "feet"),
  35719. name: "Front (Dressed)",
  35720. image: {
  35721. source: "./media/characters/argon/front-dressed.svg",
  35722. extra: 2009/1935,
  35723. bottom: 118/2127
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(5 + 10/12, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35737. {
  35738. front: {
  35739. height: math.unit(8 + 6/12, "feet"),
  35740. weight: math.unit(1150, "lb"),
  35741. name: "Front",
  35742. image: {
  35743. source: "./media/characters/kichi/front.svg",
  35744. extra: 1267/1164,
  35745. bottom: 61/1328
  35746. }
  35747. },
  35748. back: {
  35749. height: math.unit(8 + 6/12, "feet"),
  35750. weight: math.unit(1150, "lb"),
  35751. name: "Back",
  35752. image: {
  35753. source: "./media/characters/kichi/back.svg",
  35754. extra: 1273/1166,
  35755. bottom: 33/1306
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal",
  35762. height: math.unit(8 + 6/12, "feet"),
  35763. default: true
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(6, "feet"),
  35772. weight: math.unit(210, "lb"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/manetel-greyscale/front.svg",
  35776. extra: 350/312,
  35777. bottom: 8/358
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Micro",
  35784. height: math.unit(2, "inches")
  35785. },
  35786. {
  35787. name: "Normal",
  35788. height: math.unit(6, "feet"),
  35789. default: true
  35790. },
  35791. {
  35792. name: "Minimacro",
  35793. height: math.unit(17, "feet")
  35794. },
  35795. {
  35796. name: "Macro",
  35797. height: math.unit(117, "feet")
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35803. {
  35804. side: {
  35805. height: math.unit(5 + 1/12, "feet"),
  35806. weight: math.unit(418, "lb"),
  35807. name: "Side",
  35808. image: {
  35809. source: "./media/characters/softpurr/side.svg",
  35810. extra: 1993/1945,
  35811. bottom: 134/2127
  35812. }
  35813. },
  35814. front: {
  35815. height: math.unit(5 + 1/12, "feet"),
  35816. weight: math.unit(418, "lb"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/softpurr/front.svg",
  35820. extra: 1950/1856,
  35821. bottom: 174/2124
  35822. }
  35823. },
  35824. paw: {
  35825. height: math.unit(1, "feet"),
  35826. name: "Paw",
  35827. image: {
  35828. source: "./media/characters/softpurr/paw.svg"
  35829. }
  35830. },
  35831. },
  35832. [
  35833. {
  35834. name: "Normal",
  35835. height: math.unit(5 + 1/12, "feet"),
  35836. default: true
  35837. },
  35838. ]
  35839. ))
  35840. characterMakers.push(() => makeCharacter(
  35841. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35842. {
  35843. front: {
  35844. height: math.unit(260, "meters"),
  35845. name: "Front",
  35846. image: {
  35847. source: "./media/characters/anahita/front.svg",
  35848. extra: 665/635,
  35849. bottom: 89/754
  35850. }
  35851. },
  35852. },
  35853. [
  35854. {
  35855. name: "Macro",
  35856. height: math.unit(260, "meters"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(4 + 10/12, "feet"),
  35866. weight: math.unit(160, "lb"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/chip-mouse/front.svg",
  35870. extra: 3528/3408,
  35871. bottom: 0/3528
  35872. }
  35873. },
  35874. frontNsfw: {
  35875. height: math.unit(4 + 10/12, "feet"),
  35876. weight: math.unit(160, "lb"),
  35877. name: "Front (NSFW)",
  35878. image: {
  35879. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35880. extra: 3528/3408,
  35881. bottom: 0/3528
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(4 + 10/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35895. {
  35896. side: {
  35897. height: math.unit(10, "feet"),
  35898. weight: math.unit(14000, "lb"),
  35899. name: "Side",
  35900. image: {
  35901. source: "./media/characters/kremm/side.svg",
  35902. extra: 1390/1053,
  35903. bottom: 90/1480
  35904. }
  35905. },
  35906. gut: {
  35907. height: math.unit(5.8, "feet"),
  35908. name: "Gut",
  35909. image: {
  35910. source: "./media/characters/kremm/gut.svg"
  35911. }
  35912. },
  35913. ass: {
  35914. height: math.unit(6.1, "feet"),
  35915. name: "Ass",
  35916. image: {
  35917. source: "./media/characters/kremm/ass.svg"
  35918. }
  35919. },
  35920. jaws: {
  35921. height: math.unit(2.2, "feet"),
  35922. name: "Jaws",
  35923. image: {
  35924. source: "./media/characters/kremm/jaws.svg"
  35925. }
  35926. },
  35927. dick: {
  35928. height: math.unit(4.26, "feet"),
  35929. name: "Dick",
  35930. image: {
  35931. source: "./media/characters/kremm/dick.svg"
  35932. }
  35933. },
  35934. },
  35935. [
  35936. {
  35937. name: "Normal",
  35938. height: math.unit(10, "feet"),
  35939. default: true
  35940. },
  35941. ]
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(30, "stories"),
  35948. name: "Front",
  35949. image: {
  35950. source: "./media/characters/kai/front.svg",
  35951. extra: 1892/1718,
  35952. bottom: 162/2054
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Macro",
  35959. height: math.unit(30, "stories"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35966. {
  35967. front: {
  35968. height: math.unit(6 + 4/12, "feet"),
  35969. weight: math.unit(145, "lb"),
  35970. name: "Front",
  35971. image: {
  35972. source: "./media/characters/sykes/front.svg",
  35973. extra: 1321 / 1187,
  35974. bottom: 66 / 1387
  35975. }
  35976. },
  35977. back: {
  35978. height: math.unit(6 + 4/12, "feet"),
  35979. weight: math.unit(145, "lb"),
  35980. name: "Back",
  35981. image: {
  35982. source: "./media/characters/sykes/back.svg",
  35983. extra: 1326/1181,
  35984. bottom: 31/1357
  35985. }
  35986. },
  35987. traditionalOutfit: {
  35988. height: math.unit(6 + 4/12, "feet"),
  35989. weight: math.unit(145, "lb"),
  35990. name: "Traditional Outfit",
  35991. image: {
  35992. source: "./media/characters/sykes/traditional-outfit.svg",
  35993. extra: 1321 / 1187,
  35994. bottom: 66 / 1387
  35995. }
  35996. },
  35997. adventureOutfit: {
  35998. height: math.unit(6 + 4/12, "feet"),
  35999. weight: math.unit(145, "lb"),
  36000. name: "Adventure Outfit",
  36001. image: {
  36002. source: "./media/characters/sykes/adventure-outfit.svg",
  36003. extra: 1321 / 1187,
  36004. bottom: 66 / 1387
  36005. }
  36006. },
  36007. handLeft: {
  36008. height: math.unit(0.9, "feet"),
  36009. name: "Hand (Left)",
  36010. image: {
  36011. source: "./media/characters/sykes/hand-left.svg"
  36012. }
  36013. },
  36014. handRight: {
  36015. height: math.unit(0.839, "feet"),
  36016. name: "Hand (Right)",
  36017. image: {
  36018. source: "./media/characters/sykes/hand-right.svg"
  36019. }
  36020. },
  36021. leftFoot: {
  36022. height: math.unit(1.2, "feet"),
  36023. name: "Foot (Left)",
  36024. image: {
  36025. source: "./media/characters/sykes/foot-left.svg"
  36026. }
  36027. },
  36028. rightFoot: {
  36029. height: math.unit(1.2, "feet"),
  36030. name: "Foot (Right)",
  36031. image: {
  36032. source: "./media/characters/sykes/foot-right.svg"
  36033. }
  36034. },
  36035. maw: {
  36036. height: math.unit(1.93, "feet"),
  36037. name: "Maw",
  36038. image: {
  36039. source: "./media/characters/sykes/maw.svg"
  36040. }
  36041. },
  36042. teeth: {
  36043. height: math.unit(0.51, "feet"),
  36044. name: "Teeth",
  36045. image: {
  36046. source: "./media/characters/sykes/teeth.svg"
  36047. }
  36048. },
  36049. tongue: {
  36050. height: math.unit(2.13, "feet"),
  36051. name: "Tongue",
  36052. image: {
  36053. source: "./media/characters/sykes/tongue.svg"
  36054. }
  36055. },
  36056. uvula: {
  36057. height: math.unit(0.16, "feet"),
  36058. name: "Uvula",
  36059. image: {
  36060. source: "./media/characters/sykes/uvula.svg"
  36061. }
  36062. },
  36063. collar: {
  36064. height: math.unit(0.287, "feet"),
  36065. name: "Collar",
  36066. image: {
  36067. source: "./media/characters/sykes/collar.svg"
  36068. }
  36069. },
  36070. tail: {
  36071. height: math.unit(3.8, "feet"),
  36072. name: "Tail",
  36073. image: {
  36074. source: "./media/characters/sykes/tail.svg"
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Shrunken",
  36081. height: math.unit(5, "inches")
  36082. },
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(6 + 4 / 12, "feet"),
  36086. default: true
  36087. },
  36088. {
  36089. name: "Big",
  36090. height: math.unit(15, "feet")
  36091. },
  36092. ]
  36093. ))
  36094. characterMakers.push(() => makeCharacter(
  36095. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36096. {
  36097. front: {
  36098. height: math.unit(5 + 8/12, "feet"),
  36099. weight: math.unit(190, "lb"),
  36100. name: "Front",
  36101. image: {
  36102. source: "./media/characters/oven-otter/front.svg",
  36103. extra: 1809/1740,
  36104. bottom: 181/1990
  36105. }
  36106. },
  36107. back: {
  36108. height: math.unit(5 + 8/12, "feet"),
  36109. weight: math.unit(190, "lb"),
  36110. name: "Back",
  36111. image: {
  36112. source: "./media/characters/oven-otter/back.svg",
  36113. extra: 1709/1635,
  36114. bottom: 118/1827
  36115. }
  36116. },
  36117. hand: {
  36118. height: math.unit(1.07, "feet"),
  36119. name: "Hand",
  36120. image: {
  36121. source: "./media/characters/oven-otter/hand.svg"
  36122. }
  36123. },
  36124. beans: {
  36125. height: math.unit(1.74, "feet"),
  36126. name: "Beans",
  36127. image: {
  36128. source: "./media/characters/oven-otter/beans.svg"
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Micro",
  36135. height: math.unit(0.5, "inches")
  36136. },
  36137. {
  36138. name: "Normal",
  36139. height: math.unit(5 + 8/12, "feet"),
  36140. default: true
  36141. },
  36142. {
  36143. name: "Macro",
  36144. height: math.unit(250, "feet")
  36145. },
  36146. {
  36147. name: "Really High",
  36148. height: math.unit(420, "feet")
  36149. },
  36150. ]
  36151. ))
  36152. characterMakers.push(() => makeCharacter(
  36153. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36154. {
  36155. front: {
  36156. height: math.unit(5, "meters"),
  36157. weight: math.unit(292000000000000, "kg"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/devourer/front.svg",
  36161. extra: 1800/1733,
  36162. bottom: 211/2011
  36163. }
  36164. },
  36165. maw: {
  36166. height: math.unit(1.1, "meter"),
  36167. name: "Maw",
  36168. image: {
  36169. source: "./media/characters/devourer/maw.svg"
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Small",
  36176. height: math.unit(3, "meters")
  36177. },
  36178. {
  36179. name: "Large",
  36180. height: math.unit(5, "meters"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36187. {
  36188. front: {
  36189. height: math.unit(6, "feet"),
  36190. weight: math.unit(400, "lb"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/ellarby/front.svg",
  36194. extra: 1909/1763,
  36195. bottom: 80/1989
  36196. }
  36197. },
  36198. back: {
  36199. height: math.unit(6, "feet"),
  36200. weight: math.unit(400, "lb"),
  36201. name: "Back",
  36202. image: {
  36203. source: "./media/characters/ellarby/back.svg",
  36204. extra: 1914/1784,
  36205. bottom: 172/2086
  36206. }
  36207. },
  36208. },
  36209. [
  36210. {
  36211. name: "Mischief",
  36212. height: math.unit(18, "inches")
  36213. },
  36214. {
  36215. name: "Trouble",
  36216. height: math.unit(12, "feet")
  36217. },
  36218. {
  36219. name: "Havoc",
  36220. height: math.unit(200, "feet"),
  36221. default: true
  36222. },
  36223. {
  36224. name: "Pandemonium",
  36225. height: math.unit(1, "mile")
  36226. },
  36227. {
  36228. name: "Catastrophe",
  36229. height: math.unit(100, "miles")
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36235. {
  36236. front: {
  36237. height: math.unit(4.7, "meters"),
  36238. weight: math.unit(6500, "kg"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/vex/front.svg",
  36242. extra: 1288/1140,
  36243. bottom: 100/1388
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(4.7, "meters"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36257. {
  36258. normal: {
  36259. height: math.unit(6, "feet"),
  36260. weight: math.unit(350, "lb"),
  36261. name: "Normal",
  36262. image: {
  36263. source: "./media/characters/teshy/normal.svg",
  36264. extra: 1795/1735,
  36265. bottom: 16/1811
  36266. }
  36267. },
  36268. monsterFront: {
  36269. height: math.unit(12, "feet"),
  36270. weight: math.unit(4700, "lb"),
  36271. name: "Monster (Front)",
  36272. image: {
  36273. source: "./media/characters/teshy/monster-front.svg",
  36274. extra: 2042/2034,
  36275. bottom: 128/2170
  36276. }
  36277. },
  36278. monsterSide: {
  36279. height: math.unit(12, "feet"),
  36280. weight: math.unit(4700, "lb"),
  36281. name: "Monster (Side)",
  36282. image: {
  36283. source: "./media/characters/teshy/monster-side.svg",
  36284. extra: 2067/2056,
  36285. bottom: 70/2137
  36286. }
  36287. },
  36288. monsterBack: {
  36289. height: math.unit(12, "feet"),
  36290. weight: math.unit(4700, "lb"),
  36291. name: "Monster (Back)",
  36292. image: {
  36293. source: "./media/characters/teshy/monster-back.svg",
  36294. extra: 1921/1914,
  36295. bottom: 171/2092
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(6, "feet"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(6, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/ramey/front.svg",
  36315. extra: 790/787,
  36316. bottom: 27/817
  36317. }
  36318. },
  36319. },
  36320. [
  36321. {
  36322. name: "Normal",
  36323. height: math.unit(6, "feet"),
  36324. default: true
  36325. },
  36326. ]
  36327. ))
  36328. characterMakers.push(() => makeCharacter(
  36329. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36330. {
  36331. front: {
  36332. height: math.unit(5 + 5/12, "feet"),
  36333. weight: math.unit(120, "lb"),
  36334. name: "Front",
  36335. image: {
  36336. source: "./media/characters/phirae/front.svg",
  36337. extra: 2491/2436,
  36338. bottom: 38/2529
  36339. }
  36340. },
  36341. },
  36342. [
  36343. {
  36344. name: "Normal",
  36345. height: math.unit(5 + 5/12, "feet"),
  36346. default: true
  36347. },
  36348. ]
  36349. ))
  36350. characterMakers.push(() => makeCharacter(
  36351. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36352. {
  36353. front: {
  36354. height: math.unit(5 + 3/12, "feet"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/stagglas/front.svg",
  36358. extra: 962/882,
  36359. bottom: 53/1015
  36360. }
  36361. },
  36362. feral: {
  36363. height: math.unit(335, "cm"),
  36364. name: "Feral",
  36365. image: {
  36366. source: "./media/characters/stagglas/feral.svg",
  36367. extra: 1732/1090,
  36368. bottom: 48/1780
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(5 + 3/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(5 + 4/12, "feet"),
  36385. weight: math.unit(145, "lb"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/starra/front.svg",
  36389. extra: 1790/1691,
  36390. bottom: 91/1881
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Normal",
  36397. height: math.unit(5 + 4/12, "feet"),
  36398. default: true
  36399. },
  36400. ]
  36401. ))
  36402. characterMakers.push(() => makeCharacter(
  36403. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36404. {
  36405. front: {
  36406. height: math.unit(2.2, "meters"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36410. extra: 1248/972,
  36411. bottom: 38/1286
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(2.2, "meters"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36425. {
  36426. side: {
  36427. height: math.unit(8 + 2/12, "feet"),
  36428. weight: math.unit(1240, "lb"),
  36429. name: "Side",
  36430. image: {
  36431. source: "./media/characters/mika-valentine/side.svg",
  36432. extra: 2670/2501,
  36433. bottom: 250/2920
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(8 + 2/12, "feet"),
  36441. default: true
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36447. {
  36448. front: {
  36449. height: math.unit(7 + 2/12, "feet"),
  36450. name: "Front",
  36451. image: {
  36452. source: "./media/characters/xoltol/front.svg",
  36453. extra: 2212/2124,
  36454. bottom: 84/2296
  36455. }
  36456. },
  36457. side: {
  36458. height: math.unit(7 + 2/12, "feet"),
  36459. name: "Side",
  36460. image: {
  36461. source: "./media/characters/xoltol/side.svg",
  36462. extra: 2273/2197,
  36463. bottom: 26/2299
  36464. }
  36465. },
  36466. hand: {
  36467. height: math.unit(2.5, "feet"),
  36468. name: "Hand",
  36469. image: {
  36470. source: "./media/characters/xoltol/hand.svg"
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Small-ish",
  36477. height: math.unit(5 + 11/12, "feet")
  36478. },
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(7 + 2/12, "feet")
  36482. },
  36483. {
  36484. name: "\"Macro\"",
  36485. height: math.unit(14 + 9/12, "feet"),
  36486. default: true
  36487. },
  36488. {
  36489. name: "Alternate Height",
  36490. height: math.unit(20, "feet")
  36491. },
  36492. {
  36493. name: "Actually Macro",
  36494. height: math.unit(100, "feet")
  36495. },
  36496. ]
  36497. ))
  36498. characterMakers.push(() => makeCharacter(
  36499. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36500. {
  36501. front: {
  36502. height: math.unit(5 + 2/12, "feet"),
  36503. name: "Front",
  36504. image: {
  36505. source: "./media/characters/kotetsu-redwood/front.svg",
  36506. extra: 1053/942,
  36507. bottom: 60/1113
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(5 + 2/12, "feet"),
  36515. default: true
  36516. },
  36517. ]
  36518. ))
  36519. characterMakers.push(() => makeCharacter(
  36520. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36521. {
  36522. front: {
  36523. height: math.unit(2.4, "meters"),
  36524. weight: math.unit(125, "kg"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/lilith/front.svg",
  36528. extra: 1590/1513,
  36529. bottom: 203/1793
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Humanoid",
  36536. height: math.unit(2.4, "meters")
  36537. },
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(6, "meters"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Largest",
  36545. height: math.unit(55, "meters")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(8 + 4/12, "feet"),
  36554. weight: math.unit(535, "lb"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/beh'kah-bolger/front.svg",
  36558. extra: 1660/1603,
  36559. bottom: 37/1697
  36560. }
  36561. },
  36562. },
  36563. [
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(8 + 4/12, "feet"),
  36567. default: true
  36568. },
  36569. {
  36570. name: "Kaiju",
  36571. height: math.unit(250, "feet")
  36572. },
  36573. {
  36574. name: "Still Growing",
  36575. height: math.unit(10, "miles")
  36576. },
  36577. {
  36578. name: "Continental",
  36579. height: math.unit(5000, "miles")
  36580. },
  36581. {
  36582. name: "Final Form",
  36583. height: math.unit(2500000, "miles")
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(7 + 2/12, "feet"),
  36592. weight: math.unit(230, "kg"),
  36593. name: "Front",
  36594. image: {
  36595. source: "./media/characters/tatyana-milewska/front.svg",
  36596. extra: 1199/1150,
  36597. bottom: 86/1285
  36598. }
  36599. },
  36600. },
  36601. [
  36602. {
  36603. name: "Normal",
  36604. height: math.unit(7 + 2/12, "feet"),
  36605. default: true
  36606. },
  36607. {
  36608. name: "Big",
  36609. height: math.unit(12, "feet")
  36610. },
  36611. {
  36612. name: "Minimacro",
  36613. height: math.unit(20, "feet")
  36614. },
  36615. {
  36616. name: "Macro",
  36617. height: math.unit(120, "feet")
  36618. },
  36619. ]
  36620. ))
  36621. characterMakers.push(() => makeCharacter(
  36622. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36623. {
  36624. front: {
  36625. height: math.unit(7 + 8/12, "feet"),
  36626. weight: math.unit(152, "kg"),
  36627. name: "Front",
  36628. image: {
  36629. source: "./media/characters/helen-arri/front.svg",
  36630. extra: 440/423,
  36631. bottom: 14/454
  36632. }
  36633. },
  36634. back: {
  36635. height: math.unit(7 + 8/12, "feet"),
  36636. weight: math.unit(152, "kg"),
  36637. name: "Back",
  36638. image: {
  36639. source: "./media/characters/helen-arri/back.svg",
  36640. extra: 443/426,
  36641. bottom: 8/451
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Normal",
  36648. height: math.unit(7 + 8/12, "feet"),
  36649. default: true
  36650. },
  36651. {
  36652. name: "Big",
  36653. height: math.unit(14, "feet")
  36654. },
  36655. {
  36656. name: "Minimacro",
  36657. height: math.unit(24, "feet")
  36658. },
  36659. {
  36660. name: "Macro",
  36661. height: math.unit(140, "feet")
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(6, "meters"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/ehanu-rehu/front.svg",
  36673. extra: 1800/1800,
  36674. bottom: 59/1859
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(6, "meters"),
  36682. default: true
  36683. },
  36684. ]
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(7 + 3/12, "feet"),
  36691. name: "Front",
  36692. image: {
  36693. source: "./media/characters/renholder/front.svg",
  36694. extra: 3096/2960,
  36695. bottom: 250/3346
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Normal Bat",
  36702. height: math.unit(7 + 3/12, "feet"),
  36703. default: true
  36704. },
  36705. {
  36706. name: "Slightly Tall Bat",
  36707. height: math.unit(100, "feet")
  36708. },
  36709. {
  36710. name: "Big Bat",
  36711. height: math.unit(1000, "feet")
  36712. },
  36713. {
  36714. name: "City-Sized Bat",
  36715. height: math.unit(200000, "feet")
  36716. },
  36717. {
  36718. name: "Bigger Bat",
  36719. height: math.unit(10000, "miles")
  36720. },
  36721. {
  36722. name: "Solar Sized Bat",
  36723. height: math.unit(100, "AU")
  36724. },
  36725. {
  36726. name: "Galactic Bat",
  36727. height: math.unit(200000, "lightyears")
  36728. },
  36729. {
  36730. name: "Universally Known Bat",
  36731. height: math.unit(1, "universe")
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(6 + 11/12, "feet"),
  36740. weight: math.unit(250, "lb"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/cookiecat/front.svg",
  36744. extra: 893/827,
  36745. bottom: 14/907
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Micro",
  36752. height: math.unit(3, "inches")
  36753. },
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(6 + 11/12, "feet"),
  36757. default: true
  36758. },
  36759. {
  36760. name: "Macro",
  36761. height: math.unit(100, "feet")
  36762. },
  36763. {
  36764. name: "Macro+",
  36765. height: math.unit(404, "feet")
  36766. },
  36767. {
  36768. name: "Megamacro",
  36769. height: math.unit(165, "miles")
  36770. },
  36771. {
  36772. name: "Planetary",
  36773. height: math.unit(4600, "miles")
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(10 + 3/12, "feet"),
  36782. weight: math.unit(1500, "lb"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/tux-kusanagi/front.svg",
  36786. extra: 944/840,
  36787. bottom: 39/983
  36788. }
  36789. },
  36790. back: {
  36791. height: math.unit(10 + 3/12, "feet"),
  36792. weight: math.unit(1500, "lb"),
  36793. name: "Back",
  36794. image: {
  36795. source: "./media/characters/tux-kusanagi/back.svg",
  36796. extra: 941/842,
  36797. bottom: 28/969
  36798. }
  36799. },
  36800. rump: {
  36801. height: math.unit(5.25, "feet"),
  36802. name: "Rump",
  36803. image: {
  36804. source: "./media/characters/tux-kusanagi/rump.svg"
  36805. }
  36806. },
  36807. beak: {
  36808. height: math.unit(1.54, "feet"),
  36809. name: "Beak",
  36810. image: {
  36811. source: "./media/characters/tux-kusanagi/beak.svg"
  36812. }
  36813. },
  36814. },
  36815. [
  36816. {
  36817. name: "Normal",
  36818. height: math.unit(10 + 3/12, "feet"),
  36819. default: true
  36820. },
  36821. ]
  36822. ))
  36823. characterMakers.push(() => makeCharacter(
  36824. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36825. {
  36826. front: {
  36827. height: math.unit(58, "feet"),
  36828. weight: math.unit(200, "tons"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/uzarmazari/front.svg",
  36832. extra: 1575/1455,
  36833. bottom: 152/1727
  36834. }
  36835. },
  36836. back: {
  36837. height: math.unit(58, "feet"),
  36838. weight: math.unit(200, "tons"),
  36839. name: "Back",
  36840. image: {
  36841. source: "./media/characters/uzarmazari/back.svg",
  36842. extra: 1585/1510,
  36843. bottom: 157/1742
  36844. }
  36845. },
  36846. head: {
  36847. height: math.unit(26, "feet"),
  36848. name: "Head",
  36849. image: {
  36850. source: "./media/characters/uzarmazari/head.svg"
  36851. }
  36852. },
  36853. },
  36854. [
  36855. {
  36856. name: "Normal",
  36857. height: math.unit(58, "feet"),
  36858. default: true
  36859. },
  36860. ]
  36861. ))
  36862. characterMakers.push(() => makeCharacter(
  36863. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36864. {
  36865. side: {
  36866. height: math.unit(15, "feet"),
  36867. name: "Side",
  36868. image: {
  36869. source: "./media/characters/akitu/side.svg",
  36870. extra: 1421/1321,
  36871. bottom: 157/1578
  36872. }
  36873. },
  36874. front: {
  36875. height: math.unit(15, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/akitu/front.svg",
  36879. extra: 1435/1326,
  36880. bottom: 232/1667
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(15, "feet"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36894. {
  36895. front: {
  36896. height: math.unit(10 + 8/12, "feet"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/azalie-croixland/front.svg",
  36900. extra: 1972/1856,
  36901. bottom: 31/2003
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Original Height",
  36908. height: math.unit(5 + 4/12, "feet")
  36909. },
  36910. {
  36911. name: "Normal Height",
  36912. height: math.unit(10 + 8/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36919. {
  36920. side: {
  36921. height: math.unit(7 + 1/12, "feet"),
  36922. weight: math.unit(245, "lb"),
  36923. name: "Side",
  36924. image: {
  36925. source: "./media/characters/kavus-kazian/side.svg",
  36926. extra: 349/342,
  36927. bottom: 15/364
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(7 + 1/12, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36941. {
  36942. normalFront: {
  36943. height: math.unit(5 + 11/12, "feet"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/moonlight-rose/normal-front.svg",
  36947. extra: 1980/1825,
  36948. bottom: 18/1998
  36949. },
  36950. form: "normal",
  36951. default: true
  36952. },
  36953. normalBack: {
  36954. height: math.unit(5 + 11/12, "feet"),
  36955. name: "Back",
  36956. image: {
  36957. source: "./media/characters/moonlight-rose/normal-back.svg",
  36958. extra: 2010/1839,
  36959. bottom: 10/2020
  36960. },
  36961. form: "normal"
  36962. },
  36963. demonFront: {
  36964. height: math.unit(1.5, "earths"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/moonlight-rose/demon.svg",
  36968. extra: 1400/1294,
  36969. bottom: 45/1445
  36970. },
  36971. form: "demon",
  36972. default: true
  36973. },
  36974. terraFront: {
  36975. height: math.unit(1.5, "earths"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/moonlight-rose/terra.svg"
  36979. },
  36980. form: "terra",
  36981. default: true
  36982. },
  36983. jupiterFront: {
  36984. height: math.unit(69911*2, "km"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36988. extra: 1367/1286,
  36989. bottom: 55/1422
  36990. },
  36991. form: "jupiter",
  36992. default: true
  36993. },
  36994. neptuneFront: {
  36995. height: math.unit(24622*2, "feet"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36999. extra: 1851/1712,
  37000. bottom: 0/1851
  37001. },
  37002. form: "neptune",
  37003. default: true
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "\"Natural\" Height",
  37009. height: math.unit(5 + 11/12, "feet"),
  37010. form: "normal"
  37011. },
  37012. {
  37013. name: "Smallest comfortable size",
  37014. height: math.unit(40, "meters"),
  37015. form: "normal"
  37016. },
  37017. {
  37018. name: "Common size",
  37019. height: math.unit(50, "km"),
  37020. form: "normal",
  37021. default: true
  37022. },
  37023. {
  37024. name: "Normal",
  37025. height: math.unit(1.5, "earths"),
  37026. form: "demon",
  37027. default: true
  37028. },
  37029. {
  37030. name: "Universal",
  37031. height: math.unit(15, "universes"),
  37032. form: "demon"
  37033. },
  37034. {
  37035. name: "Earth",
  37036. height: math.unit(1.5, "earths"),
  37037. form: "terra",
  37038. default: true
  37039. },
  37040. {
  37041. name: "Super Earth",
  37042. height: math.unit(67.5, "earths"),
  37043. form: "terra"
  37044. },
  37045. {
  37046. name: "Doesn't fit in a solar system...",
  37047. height: math.unit(1, "galaxy"),
  37048. form: "terra"
  37049. },
  37050. {
  37051. name: "Saturn",
  37052. height: math.unit(58232*2, "km"),
  37053. form: "jupiter"
  37054. },
  37055. {
  37056. name: "Jupiter",
  37057. height: math.unit(69911*2, "km"),
  37058. form: "jupiter",
  37059. default: true
  37060. },
  37061. {
  37062. name: "HD 100546 b",
  37063. height: math.unit(482938, "km"),
  37064. form: "jupiter"
  37065. },
  37066. {
  37067. name: "Enceladus",
  37068. height: math.unit(513*2, "km"),
  37069. form: "neptune"
  37070. },
  37071. {
  37072. name: "Europe",
  37073. height: math.unit(1560*2, "km"),
  37074. form: "neptune"
  37075. },
  37076. {
  37077. name: "Neptune",
  37078. height: math.unit(24622*2, "km"),
  37079. form: "neptune",
  37080. default: true
  37081. },
  37082. {
  37083. name: "CoRoT-9b",
  37084. height: math.unit(75067*2, "km"),
  37085. form: "neptune"
  37086. },
  37087. ],
  37088. {
  37089. "normal": {
  37090. name: "Normal",
  37091. default: true
  37092. },
  37093. "demon": {
  37094. name: "Demon"
  37095. },
  37096. "terra": {
  37097. name: "Terra"
  37098. },
  37099. "jupiter": {
  37100. name: "Jupiter"
  37101. },
  37102. "neptune": {
  37103. name: "Neptune"
  37104. }
  37105. }
  37106. ))
  37107. characterMakers.push(() => makeCharacter(
  37108. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37109. {
  37110. front: {
  37111. height: math.unit(16, "feet"),
  37112. weight: math.unit(610, "kg"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/huckle/front.svg",
  37116. extra: 1731/1625,
  37117. bottom: 33/1764
  37118. }
  37119. },
  37120. back: {
  37121. height: math.unit(16, "feet"),
  37122. weight: math.unit(610, "kg"),
  37123. name: "Back",
  37124. image: {
  37125. source: "./media/characters/huckle/back.svg",
  37126. extra: 1738/1651,
  37127. bottom: 37/1775
  37128. }
  37129. },
  37130. laughing: {
  37131. height: math.unit(3.75, "feet"),
  37132. name: "Laughing",
  37133. image: {
  37134. source: "./media/characters/huckle/laughing.svg"
  37135. }
  37136. },
  37137. angry: {
  37138. height: math.unit(4.15, "feet"),
  37139. name: "Angry",
  37140. image: {
  37141. source: "./media/characters/huckle/angry.svg"
  37142. }
  37143. },
  37144. },
  37145. [
  37146. {
  37147. name: "Normal",
  37148. height: math.unit(16, "feet"),
  37149. default: true
  37150. },
  37151. {
  37152. name: "Mini Macro",
  37153. height: math.unit(463, "feet")
  37154. },
  37155. {
  37156. name: "Macro",
  37157. height: math.unit(1680, "meters")
  37158. },
  37159. {
  37160. name: "Mega Macro",
  37161. height: math.unit(175, "km")
  37162. },
  37163. {
  37164. name: "Terra Macro",
  37165. height: math.unit(32, "gigameters")
  37166. },
  37167. {
  37168. name: "Multiverse+",
  37169. height: math.unit(2.56e23, "yottameters")
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37175. {
  37176. front: {
  37177. height: math.unit(6 + 9/12, "feet"),
  37178. weight: math.unit(280, "lb"),
  37179. name: "Front",
  37180. image: {
  37181. source: "./media/characters/candy/front.svg",
  37182. extra: 234/217,
  37183. bottom: 11/245
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Really Small",
  37190. height: math.unit(0.1, "nm")
  37191. },
  37192. {
  37193. name: "Micro",
  37194. height: math.unit(2, "inches")
  37195. },
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(6 + 9/12, "feet"),
  37199. default: true
  37200. },
  37201. {
  37202. name: "Small Macro",
  37203. height: math.unit(69, "feet")
  37204. },
  37205. {
  37206. name: "Macro",
  37207. height: math.unit(160, "feet")
  37208. },
  37209. {
  37210. name: "Megamacro",
  37211. height: math.unit(22000, "miles")
  37212. },
  37213. {
  37214. name: "Gigamacro",
  37215. height: math.unit(50000, "miles")
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(4, "feet"),
  37224. weight: math.unit(90, "lb"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/joey-mcdonald/front.svg",
  37228. extra: 1059/852,
  37229. bottom: 33/1092
  37230. }
  37231. },
  37232. back: {
  37233. height: math.unit(4, "feet"),
  37234. weight: math.unit(90, "lb"),
  37235. name: "Back",
  37236. image: {
  37237. source: "./media/characters/joey-mcdonald/back.svg",
  37238. extra: 1077/879,
  37239. bottom: 5/1082
  37240. }
  37241. },
  37242. frontKobold: {
  37243. height: math.unit(4, "feet"),
  37244. weight: math.unit(100, "lb"),
  37245. name: "Front-kobold",
  37246. image: {
  37247. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37248. extra: 1480/1367,
  37249. bottom: 0/1480
  37250. }
  37251. },
  37252. backKobold: {
  37253. height: math.unit(4, "feet"),
  37254. weight: math.unit(100, "lb"),
  37255. name: "Back-kobold",
  37256. image: {
  37257. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37258. extra: 1449/1361,
  37259. bottom: 0/1449
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Normal",
  37266. height: math.unit(4, "feet"),
  37267. default: true
  37268. },
  37269. ]
  37270. ))
  37271. characterMakers.push(() => makeCharacter(
  37272. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37273. {
  37274. front: {
  37275. height: math.unit(12 + 6/12, "feet"),
  37276. name: "Front",
  37277. image: {
  37278. source: "./media/characters/kass-lockheed/front.svg",
  37279. extra: 354/343,
  37280. bottom: 9/363
  37281. }
  37282. },
  37283. back: {
  37284. height: math.unit(12 + 6/12, "feet"),
  37285. name: "Back",
  37286. image: {
  37287. source: "./media/characters/kass-lockheed/back.svg",
  37288. extra: 364/352,
  37289. bottom: 3/367
  37290. }
  37291. },
  37292. dick: {
  37293. height: math.unit(3.12, "feet"),
  37294. name: "Dick",
  37295. image: {
  37296. source: "./media/characters/kass-lockheed/dick.svg"
  37297. }
  37298. },
  37299. head: {
  37300. height: math.unit(2.6, "feet"),
  37301. name: "Head",
  37302. image: {
  37303. source: "./media/characters/kass-lockheed/head.svg"
  37304. }
  37305. },
  37306. bleh: {
  37307. height: math.unit(2.85, "feet"),
  37308. name: "Bleh",
  37309. image: {
  37310. source: "./media/characters/kass-lockheed/bleh.svg"
  37311. }
  37312. },
  37313. smug: {
  37314. height: math.unit(2.85, "feet"),
  37315. name: "Smug",
  37316. image: {
  37317. source: "./media/characters/kass-lockheed/smug.svg"
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(12 + 6/12, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(6 + 2/12, "feet"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/taylor/front.svg",
  37337. extra: 639/495,
  37338. bottom: 12/651
  37339. }
  37340. },
  37341. },
  37342. [
  37343. {
  37344. name: "Normal",
  37345. height: math.unit(6 + 2/12, "feet"),
  37346. default: true
  37347. },
  37348. {
  37349. name: "Big",
  37350. height: math.unit(15, "feet")
  37351. },
  37352. {
  37353. name: "Lorg",
  37354. height: math.unit(80, "feet")
  37355. },
  37356. {
  37357. name: "Too Lorg",
  37358. height: math.unit(120, "feet")
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37364. {
  37365. front: {
  37366. height: math.unit(15, "feet"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/kaizer/front.svg",
  37370. extra: 1612/1436,
  37371. bottom: 43/1655
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Normal",
  37378. height: math.unit(15, "feet"),
  37379. default: true
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37385. {
  37386. front: {
  37387. height: math.unit(2, "feet"),
  37388. weight: math.unit(30, "lb"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/sandy/front.svg",
  37392. extra: 1439/1307,
  37393. bottom: 194/1633
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(2, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(3, "feet"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/mellvi/front.svg",
  37413. extra: 1831/1630,
  37414. bottom: 58/1889
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(3, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37428. {
  37429. front: {
  37430. height: math.unit(5 + 11/12, "feet"),
  37431. weight: math.unit(200, "lb"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/shirou/front.svg",
  37435. extra: 2491/2383,
  37436. bottom: 189/2680
  37437. }
  37438. },
  37439. back: {
  37440. height: math.unit(5 + 11/12, "feet"),
  37441. weight: math.unit(200, "lb"),
  37442. name: "Back",
  37443. image: {
  37444. source: "./media/characters/shirou/back.svg",
  37445. extra: 2554/2450,
  37446. bottom: 76/2630
  37447. }
  37448. },
  37449. },
  37450. [
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(5 + 11/12, "feet"),
  37454. default: true
  37455. },
  37456. ]
  37457. ))
  37458. characterMakers.push(() => makeCharacter(
  37459. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37460. {
  37461. front: {
  37462. height: math.unit(6 + 3/12, "feet"),
  37463. weight: math.unit(177, "lb"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/noryu/front.svg",
  37467. extra: 973/885,
  37468. bottom: 10/983
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Normal",
  37475. height: math.unit(6 + 3/12, "feet"),
  37476. default: true
  37477. },
  37478. ]
  37479. ))
  37480. characterMakers.push(() => makeCharacter(
  37481. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37482. {
  37483. front: {
  37484. height: math.unit(5 + 6/12, "feet"),
  37485. weight: math.unit(170, "lb"),
  37486. name: "Front",
  37487. image: {
  37488. source: "./media/characters/mevolas-rubenido/front.svg",
  37489. extra: 2109/1901,
  37490. bottom: 96/2205
  37491. }
  37492. },
  37493. },
  37494. [
  37495. {
  37496. name: "Normal",
  37497. height: math.unit(5 + 6/12, "feet"),
  37498. default: true
  37499. },
  37500. ]
  37501. ))
  37502. characterMakers.push(() => makeCharacter(
  37503. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37504. {
  37505. front: {
  37506. height: math.unit(100, "feet"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/dee/front.svg",
  37510. extra: 2153/2036,
  37511. bottom: 59/2212
  37512. }
  37513. },
  37514. back: {
  37515. height: math.unit(100, "feet"),
  37516. name: "Back",
  37517. image: {
  37518. source: "./media/characters/dee/back.svg",
  37519. extra: 2183/2058,
  37520. bottom: 75/2258
  37521. }
  37522. },
  37523. foot: {
  37524. height: math.unit(19.43, "feet"),
  37525. name: "Foot",
  37526. image: {
  37527. source: "./media/characters/dee/foot.svg"
  37528. }
  37529. },
  37530. hoof: {
  37531. height: math.unit(20.6, "feet"),
  37532. name: "Hoof",
  37533. image: {
  37534. source: "./media/characters/dee/hoof.svg"
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Macro",
  37541. height: math.unit(100, "feet"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37548. {
  37549. front: {
  37550. height: math.unit(5 + 6/12, "feet"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/teh/front.svg",
  37554. extra: 1002/847,
  37555. bottom: 62/1064
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(5 + 6/12, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37569. {
  37570. side: {
  37571. height: math.unit(6 + 1/12, "feet"),
  37572. weight: math.unit(204, "lb"),
  37573. name: "Side",
  37574. image: {
  37575. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37576. extra: 974/775,
  37577. bottom: 169/1143
  37578. }
  37579. },
  37580. sitting: {
  37581. height: math.unit(6 + 2/12, "feet"),
  37582. weight: math.unit(204, "lb"),
  37583. name: "Sitting",
  37584. image: {
  37585. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37586. extra: 1175/964,
  37587. bottom: 378/1553
  37588. }
  37589. },
  37590. },
  37591. [
  37592. {
  37593. name: "Normal",
  37594. height: math.unit(6 + 1/12, "feet"),
  37595. default: true
  37596. },
  37597. ]
  37598. ))
  37599. characterMakers.push(() => makeCharacter(
  37600. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37601. {
  37602. front: {
  37603. height: math.unit(6, "inches"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/tululi/front.svg",
  37607. extra: 1997/1876,
  37608. bottom: 20/2017
  37609. }
  37610. },
  37611. },
  37612. [
  37613. {
  37614. name: "Normal",
  37615. height: math.unit(6, "inches"),
  37616. default: true
  37617. },
  37618. ]
  37619. ))
  37620. characterMakers.push(() => makeCharacter(
  37621. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37622. {
  37623. front: {
  37624. height: math.unit(4 + 1/12, "feet"),
  37625. name: "Front",
  37626. image: {
  37627. source: "./media/characters/star/front.svg",
  37628. extra: 1493/1189,
  37629. bottom: 48/1541
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(4 + 1/12, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(6 + 3/12, "feet"),
  37646. name: "Front",
  37647. image: {
  37648. source: "./media/characters/comet/front.svg",
  37649. extra: 1681/1462,
  37650. bottom: 26/1707
  37651. }
  37652. },
  37653. },
  37654. [
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(6 + 3/12, "feet"),
  37658. default: true
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(950, "feet"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/vortex/front.svg",
  37670. extra: 1497/1434,
  37671. bottom: 56/1553
  37672. }
  37673. },
  37674. maw: {
  37675. height: math.unit(285, "feet"),
  37676. name: "Maw",
  37677. image: {
  37678. source: "./media/characters/vortex/maw.svg"
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Macro",
  37685. height: math.unit(950, "feet"),
  37686. default: true
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(600, "feet"),
  37695. weight: math.unit(0.02, "grams"),
  37696. name: "Front",
  37697. image: {
  37698. source: "./media/characters/doodle/front.svg",
  37699. extra: 1578/1413,
  37700. bottom: 37/1615
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Macro",
  37707. height: math.unit(600, "feet"),
  37708. default: true
  37709. },
  37710. ]
  37711. ))
  37712. characterMakers.push(() => makeCharacter(
  37713. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37714. {
  37715. front: {
  37716. height: math.unit(6 + 6/12, "feet"),
  37717. name: "Front",
  37718. image: {
  37719. source: "./media/characters/jai/front.svg",
  37720. extra: 1645/1534,
  37721. bottom: 115/1760
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(6 + 6/12, "feet"),
  37729. default: true
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37735. {
  37736. front: {
  37737. height: math.unit(6 + 8/12, "feet"),
  37738. name: "Front",
  37739. image: {
  37740. source: "./media/characters/pixel/front.svg",
  37741. extra: 1900/1735,
  37742. bottom: 63/1963
  37743. }
  37744. },
  37745. },
  37746. [
  37747. {
  37748. name: "Normal",
  37749. height: math.unit(6 + 8/12, "feet"),
  37750. default: true
  37751. },
  37752. ]
  37753. ))
  37754. characterMakers.push(() => makeCharacter(
  37755. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37756. {
  37757. back: {
  37758. height: math.unit(4 + 1/12, "feet"),
  37759. weight: math.unit(75, "lb"),
  37760. name: "Back",
  37761. image: {
  37762. source: "./media/characters/rhett/back.svg",
  37763. extra: 930/878,
  37764. bottom: 25/955
  37765. }
  37766. },
  37767. front: {
  37768. height: math.unit(4 + 1/12, "feet"),
  37769. weight: math.unit(75, "lb"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/rhett/front.svg",
  37773. extra: 1682/1586,
  37774. bottom: 92/1774
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Micro",
  37781. height: math.unit(8, "inches")
  37782. },
  37783. {
  37784. name: "Tiny",
  37785. height: math.unit(2, "feet")
  37786. },
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(4 + 1/12, "feet"),
  37790. default: true
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(3 + 3/12, "feet"),
  37799. name: "Front",
  37800. image: {
  37801. source: "./media/characters/penny/front.svg",
  37802. extra: 1406/1311,
  37803. bottom: 26/1432
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Normal",
  37810. height: math.unit(3 + 3/12, "feet"),
  37811. default: true
  37812. },
  37813. ]
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(4 + 11/12, "feet"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/monty/front.svg",
  37823. extra: 1479/1209,
  37824. bottom: 0/1479
  37825. }
  37826. },
  37827. },
  37828. [
  37829. {
  37830. name: "Normal",
  37831. height: math.unit(4 + 11/12, "feet"),
  37832. default: true
  37833. },
  37834. ]
  37835. ))
  37836. characterMakers.push(() => makeCharacter(
  37837. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37838. {
  37839. front: {
  37840. height: math.unit(8 + 4/12, "feet"),
  37841. name: "Front",
  37842. image: {
  37843. source: "./media/characters/sterling/front.svg",
  37844. extra: 1420/1236,
  37845. bottom: 27/1447
  37846. }
  37847. },
  37848. },
  37849. [
  37850. {
  37851. name: "Normal",
  37852. height: math.unit(8 + 4/12, "feet"),
  37853. default: true
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(15, "feet"),
  37862. name: "Front",
  37863. image: {
  37864. source: "./media/characters/marble/front.svg",
  37865. extra: 973/937,
  37866. bottom: 32/1005
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(15, "feet"),
  37874. default: true
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37880. {
  37881. front: {
  37882. height: math.unit(3, "inches"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/powder/front.svg",
  37886. extra: 1504/1334,
  37887. bottom: 518/2022
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(3, "inches"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(4 + 5/12, "feet"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/joey-raccoon/front.svg",
  37907. extra: 1273/1197,
  37908. bottom: 0/1273
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(4 + 5/12, "feet"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37922. {
  37923. front: {
  37924. height: math.unit(8 + 4/12, "feet"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/vick/front.svg",
  37928. extra: 2187/2118,
  37929. bottom: 47/2234
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(8 + 4/12, "feet"),
  37937. default: true
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(5 + 5/12, "feet"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/mitsy/front.svg",
  37949. extra: 1842/1695,
  37950. bottom: 0/1842
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Normal",
  37957. height: math.unit(5 + 5/12, "feet"),
  37958. default: true
  37959. },
  37960. ]
  37961. ))
  37962. characterMakers.push(() => makeCharacter(
  37963. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37964. {
  37965. front: {
  37966. height: math.unit(6 + 3/12, "feet"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/silvy/front.svg",
  37970. extra: 1995/1836,
  37971. bottom: 225/2220
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(6 + 3/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(3 + 8/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/rodney/front.svg",
  37991. extra: 1956/1747,
  37992. bottom: 31/1987
  37993. }
  37994. },
  37995. frontDressed: {
  37996. height: math.unit(2.9, "feet"),
  37997. name: "Front (Dressed)",
  37998. image: {
  37999. source: "./media/characters/rodney/front-dressed.svg",
  38000. extra: 1382/1241,
  38001. bottom: 385/1767
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(3 + 8/12, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38015. {
  38016. front: {
  38017. height: math.unit(5 + 9/12, "feet"),
  38018. weight: math.unit(194, "lbs"),
  38019. name: "Front",
  38020. image: {
  38021. source: "./media/characters/zakail-sudekai/front.svg",
  38022. extra: 2696/2533,
  38023. bottom: 248/2944
  38024. }
  38025. },
  38026. maw: {
  38027. height: math.unit(1.35, "feet"),
  38028. name: "Maw",
  38029. image: {
  38030. source: "./media/characters/zakail-sudekai/maw.svg"
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(5 + 9/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(8 + 4/12, "feet"),
  38047. weight: math.unit(1200, "lb"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/eleanor/front.svg",
  38051. extra: 1226/1192,
  38052. bottom: 52/1278
  38053. }
  38054. },
  38055. back: {
  38056. height: math.unit(8 + 4/12, "feet"),
  38057. weight: math.unit(1200, "lb"),
  38058. name: "Back",
  38059. image: {
  38060. source: "./media/characters/eleanor/back.svg",
  38061. extra: 1242/1184,
  38062. bottom: 60/1302
  38063. }
  38064. },
  38065. head: {
  38066. height: math.unit(2.62, "feet"),
  38067. name: "Head",
  38068. image: {
  38069. source: "./media/characters/eleanor/head.svg"
  38070. }
  38071. },
  38072. },
  38073. [
  38074. {
  38075. name: "Normal",
  38076. height: math.unit(8 + 4/12, "feet"),
  38077. default: true
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(8 + 4/12, "feet"),
  38086. weight: math.unit(750, "lb"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/tanya/front.svg",
  38090. extra: 1749/1615,
  38091. bottom: 33/1782
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(8 + 4/12, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(5, "feet"),
  38108. weight: math.unit(225, "lb"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/cindy/front.svg",
  38112. extra: 1320/1250,
  38113. bottom: 42/1362
  38114. }
  38115. },
  38116. frontDressed: {
  38117. height: math.unit(5, "feet"),
  38118. weight: math.unit(225, "lb"),
  38119. name: "Front (Dressed)",
  38120. image: {
  38121. source: "./media/characters/cindy/front-dressed.svg",
  38122. extra: 1320/1250,
  38123. bottom: 42/1362
  38124. }
  38125. },
  38126. back: {
  38127. height: math.unit(5, "feet"),
  38128. weight: math.unit(225, "lb"),
  38129. name: "Back",
  38130. image: {
  38131. source: "./media/characters/cindy/back.svg",
  38132. extra: 1384/1346,
  38133. bottom: 14/1398
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Normal",
  38140. height: math.unit(5, "feet"),
  38141. default: true
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38147. {
  38148. front: {
  38149. height: math.unit(6 + 9/12, "feet"),
  38150. weight: math.unit(440, "lb"),
  38151. name: "Front",
  38152. image: {
  38153. source: "./media/characters/wilbur-owen/front.svg",
  38154. extra: 1575/1448,
  38155. bottom: 72/1647
  38156. }
  38157. },
  38158. back: {
  38159. height: math.unit(6 + 9/12, "feet"),
  38160. weight: math.unit(440, "lb"),
  38161. name: "Back",
  38162. image: {
  38163. source: "./media/characters/wilbur-owen/back.svg",
  38164. extra: 1578/1445,
  38165. bottom: 36/1614
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(6 + 9/12, "feet"),
  38173. default: true
  38174. },
  38175. ]
  38176. ))
  38177. characterMakers.push(() => makeCharacter(
  38178. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38179. {
  38180. front: {
  38181. height: math.unit(6 + 5/12, "feet"),
  38182. weight: math.unit(650, "lb"),
  38183. name: "Front",
  38184. image: {
  38185. source: "./media/characters/keegan/front.svg",
  38186. extra: 2387/2198,
  38187. bottom: 33/2420
  38188. }
  38189. },
  38190. side: {
  38191. height: math.unit(6 + 5/12, "feet"),
  38192. weight: math.unit(650, "lb"),
  38193. name: "Side",
  38194. image: {
  38195. source: "./media/characters/keegan/side.svg",
  38196. extra: 2390/2202,
  38197. bottom: 47/2437
  38198. }
  38199. },
  38200. back: {
  38201. height: math.unit(6 + 5/12, "feet"),
  38202. weight: math.unit(650, "lb"),
  38203. name: "Back",
  38204. image: {
  38205. source: "./media/characters/keegan/back.svg",
  38206. extra: 2418/2268,
  38207. bottom: 15/2433
  38208. }
  38209. },
  38210. frontSfw: {
  38211. height: math.unit(6 + 5/12, "feet"),
  38212. weight: math.unit(650, "lb"),
  38213. name: "Front (SFW)",
  38214. image: {
  38215. source: "./media/characters/keegan/front-sfw.svg",
  38216. extra: 2387/2198,
  38217. bottom: 33/2420
  38218. }
  38219. },
  38220. beans: {
  38221. height: math.unit(1.85, "feet"),
  38222. name: "Beans",
  38223. image: {
  38224. source: "./media/characters/keegan/beans.svg"
  38225. }
  38226. },
  38227. },
  38228. [
  38229. {
  38230. name: "Normal",
  38231. height: math.unit(6 + 5/12, "feet"),
  38232. default: true
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(9, "feet"),
  38241. name: "Front",
  38242. image: {
  38243. source: "./media/characters/colton/front.svg",
  38244. extra: 1589/1326,
  38245. bottom: 139/1728
  38246. }
  38247. },
  38248. },
  38249. [
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(9, "feet"),
  38253. default: true
  38254. },
  38255. ]
  38256. ))
  38257. characterMakers.push(() => makeCharacter(
  38258. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38259. {
  38260. front: {
  38261. height: math.unit(2 + 9/12, "feet"),
  38262. name: "Front",
  38263. image: {
  38264. source: "./media/characters/bora/front.svg",
  38265. extra: 1265/1250,
  38266. bottom: 24/1289
  38267. }
  38268. },
  38269. },
  38270. [
  38271. {
  38272. name: "Normal",
  38273. height: math.unit(2 + 9/12, "feet"),
  38274. default: true
  38275. },
  38276. ]
  38277. ))
  38278. characterMakers.push(() => makeCharacter(
  38279. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38280. {
  38281. front: {
  38282. height: math.unit(8, "feet"),
  38283. name: "Front",
  38284. image: {
  38285. source: "./media/characters/myu-myu/front.svg",
  38286. extra: 1949/1857,
  38287. bottom: 90/2039
  38288. }
  38289. },
  38290. },
  38291. [
  38292. {
  38293. name: "Normal",
  38294. height: math.unit(8, "feet"),
  38295. default: true
  38296. },
  38297. {
  38298. name: "Big",
  38299. height: math.unit(15, "feet")
  38300. },
  38301. {
  38302. name: "BIG",
  38303. height: math.unit(25, "feet")
  38304. },
  38305. ]
  38306. ))
  38307. characterMakers.push(() => makeCharacter(
  38308. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38309. {
  38310. side: {
  38311. height: math.unit(7 + 5/12, "feet"),
  38312. weight: math.unit(2800, "lb"),
  38313. name: "Side",
  38314. image: {
  38315. source: "./media/characters/haloren/side.svg",
  38316. extra: 1793/409,
  38317. bottom: 59/1852
  38318. }
  38319. },
  38320. frontPaw: {
  38321. height: math.unit(2.36, "feet"),
  38322. name: "Front paw",
  38323. image: {
  38324. source: "./media/characters/haloren/front-paw.svg"
  38325. }
  38326. },
  38327. hindPaw: {
  38328. height: math.unit(3.18, "feet"),
  38329. name: "Hind paw",
  38330. image: {
  38331. source: "./media/characters/haloren/hind-paw.svg"
  38332. }
  38333. },
  38334. maw: {
  38335. height: math.unit(5.05, "feet"),
  38336. name: "Maw",
  38337. image: {
  38338. source: "./media/characters/haloren/maw.svg"
  38339. }
  38340. },
  38341. dick: {
  38342. height: math.unit(2.90, "feet"),
  38343. name: "Dick",
  38344. image: {
  38345. source: "./media/characters/haloren/dick.svg"
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Normal",
  38352. height: math.unit(7 + 5/12, "feet"),
  38353. default: true
  38354. },
  38355. {
  38356. name: "Enhanced",
  38357. height: math.unit(14 + 3/12, "feet")
  38358. },
  38359. ]
  38360. ))
  38361. characterMakers.push(() => makeCharacter(
  38362. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38363. {
  38364. front: {
  38365. height: math.unit(171, "cm"),
  38366. name: "Front",
  38367. image: {
  38368. source: "./media/characters/kimmy/front.svg",
  38369. extra: 1491/1435,
  38370. bottom: 53/1544
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Small",
  38377. height: math.unit(9, "cm")
  38378. },
  38379. {
  38380. name: "Normal",
  38381. height: math.unit(171, "cm"),
  38382. default: true
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(8, "feet"),
  38391. weight: math.unit(300, "lb"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/galeboomer/front.svg",
  38395. extra: 4651/4415,
  38396. bottom: 162/4813
  38397. }
  38398. },
  38399. back: {
  38400. height: math.unit(8, "feet"),
  38401. weight: math.unit(300, "lb"),
  38402. name: "Back",
  38403. image: {
  38404. source: "./media/characters/galeboomer/back.svg",
  38405. extra: 4544/4314,
  38406. bottom: 16/4560
  38407. }
  38408. },
  38409. frontAlt: {
  38410. height: math.unit(8, "feet"),
  38411. weight: math.unit(300, "lb"),
  38412. name: "Front (Alt)",
  38413. image: {
  38414. source: "./media/characters/galeboomer/front-alt.svg",
  38415. extra: 4458/4228,
  38416. bottom: 68/4526
  38417. }
  38418. },
  38419. maw: {
  38420. height: math.unit(1.2, "feet"),
  38421. name: "Maw",
  38422. image: {
  38423. source: "./media/characters/galeboomer/maw.svg"
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(8, "feet"),
  38431. default: true
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(5 + 9/12, "feet"),
  38440. weight: math.unit(120, "lb"),
  38441. name: "Front",
  38442. image: {
  38443. source: "./media/characters/chyr/front.svg",
  38444. extra: 1323/1254,
  38445. bottom: 63/1386
  38446. }
  38447. },
  38448. back: {
  38449. height: math.unit(5 + 9/12, "feet"),
  38450. weight: math.unit(120, "lb"),
  38451. name: "Back",
  38452. image: {
  38453. source: "./media/characters/chyr/back.svg",
  38454. extra: 1323/1252,
  38455. bottom: 48/1371
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(5 + 9/12, "feet"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(7, "feet"),
  38472. weight: math.unit(310, "lb"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/solarus/front.svg",
  38476. extra: 2415/2021,
  38477. bottom: 103/2518
  38478. }
  38479. },
  38480. back: {
  38481. height: math.unit(7, "feet"),
  38482. weight: math.unit(310, "lb"),
  38483. name: "Back",
  38484. image: {
  38485. source: "./media/characters/solarus/back.svg",
  38486. extra: 2463/2089,
  38487. bottom: 79/2542
  38488. }
  38489. },
  38490. },
  38491. [
  38492. {
  38493. name: "Normal",
  38494. height: math.unit(7, "feet"),
  38495. default: true
  38496. },
  38497. ]
  38498. ))
  38499. characterMakers.push(() => makeCharacter(
  38500. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38501. {
  38502. front: {
  38503. height: math.unit(16, "feet"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38507. extra: 1844/1780,
  38508. bottom: 58/1902
  38509. }
  38510. },
  38511. winterCoat: {
  38512. height: math.unit(16, "feet"),
  38513. name: "Winter Coat",
  38514. image: {
  38515. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38516. extra: 1807/1775,
  38517. bottom: 69/1876
  38518. }
  38519. },
  38520. },
  38521. [
  38522. {
  38523. name: "Normal",
  38524. height: math.unit(16, "feet"),
  38525. default: true
  38526. },
  38527. {
  38528. name: "Chicago Size",
  38529. height: math.unit(560, "feet")
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38535. {
  38536. front: {
  38537. height: math.unit(11 + 6/12, "feet"),
  38538. weight: math.unit(1366, "lb"),
  38539. name: "Front",
  38540. image: {
  38541. source: "./media/characters/lexor/front.svg",
  38542. extra: 1560/1481,
  38543. bottom: 211/1771
  38544. }
  38545. },
  38546. back: {
  38547. height: math.unit(11 + 6/12, "feet"),
  38548. weight: math.unit(1366, "lb"),
  38549. name: "Back",
  38550. image: {
  38551. source: "./media/characters/lexor/back.svg",
  38552. extra: 1614/1533,
  38553. bottom: 76/1690
  38554. }
  38555. },
  38556. maw: {
  38557. height: math.unit(3, "feet"),
  38558. name: "Maw",
  38559. image: {
  38560. source: "./media/characters/lexor/maw.svg"
  38561. }
  38562. },
  38563. dick: {
  38564. height: math.unit(2.59, "feet"),
  38565. name: "Dick",
  38566. image: {
  38567. source: "./media/characters/lexor/dick.svg"
  38568. }
  38569. },
  38570. },
  38571. [
  38572. {
  38573. name: "Normal",
  38574. height: math.unit(11 + 6/12, "feet"),
  38575. default: true
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38581. {
  38582. front: {
  38583. height: math.unit(5 + 8/12, "feet"),
  38584. name: "Front",
  38585. image: {
  38586. source: "./media/characters/magnum/front.svg",
  38587. extra: 942/855,
  38588. bottom: 26/968
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Normal",
  38595. height: math.unit(5 + 8/12, "feet"),
  38596. default: true
  38597. },
  38598. ]
  38599. ))
  38600. characterMakers.push(() => makeCharacter(
  38601. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38602. {
  38603. front: {
  38604. height: math.unit(18 + 4/12, "feet"),
  38605. weight: math.unit(1500, "kg"),
  38606. name: "Front",
  38607. image: {
  38608. source: "./media/characters/solas-sharpsman/front.svg",
  38609. extra: 1698/1589,
  38610. bottom: 0/1698
  38611. }
  38612. },
  38613. },
  38614. [
  38615. {
  38616. name: "Normal",
  38617. height: math.unit(18 + 4/12, "feet"),
  38618. default: true
  38619. },
  38620. ]
  38621. ))
  38622. characterMakers.push(() => makeCharacter(
  38623. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38624. {
  38625. front: {
  38626. height: math.unit(5 + 5/12, "feet"),
  38627. weight: math.unit(180, "lb"),
  38628. name: "Front",
  38629. image: {
  38630. source: "./media/characters/october/front.svg",
  38631. extra: 1800/1650,
  38632. bottom: 0/1800
  38633. }
  38634. },
  38635. frontNsfw: {
  38636. height: math.unit(5 + 5/12, "feet"),
  38637. weight: math.unit(180, "lb"),
  38638. name: "Front (NSFW)",
  38639. image: {
  38640. source: "./media/characters/october/front-nsfw.svg",
  38641. extra: 1392/1307,
  38642. bottom: 42/1434
  38643. }
  38644. },
  38645. },
  38646. [
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(5 + 5/12, "feet"),
  38650. default: true
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(8 + 6/12, "feet"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/essynkardi/front.svg",
  38662. extra: 1914/1846,
  38663. bottom: 22/1936
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(8 + 6/12, "feet"),
  38671. default: true
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38677. {
  38678. front: {
  38679. height: math.unit(6 + 6/12, "feet"),
  38680. weight: math.unit(7, "lb"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/icky/front.svg",
  38684. extra: 813/782,
  38685. bottom: 66/879
  38686. }
  38687. },
  38688. back: {
  38689. height: math.unit(6 + 6/12, "feet"),
  38690. weight: math.unit(7, "lb"),
  38691. name: "Back",
  38692. image: {
  38693. source: "./media/characters/icky/back.svg",
  38694. extra: 754/735,
  38695. bottom: 56/810
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(6 + 6/12, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(15, "feet"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/rojas/front.svg",
  38715. extra: 1462/1408,
  38716. bottom: 95/1557
  38717. }
  38718. },
  38719. back: {
  38720. height: math.unit(15, "feet"),
  38721. name: "Back",
  38722. image: {
  38723. source: "./media/characters/rojas/back.svg",
  38724. extra: 1023/954,
  38725. bottom: 28/1051
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(15, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38739. {
  38740. frontHuman: {
  38741. height: math.unit(5 + 7/12, "feet"),
  38742. name: "Front (Human)",
  38743. image: {
  38744. source: "./media/characters/alek-dryagan/front-human.svg",
  38745. extra: 1687/1667,
  38746. bottom: 69/1756
  38747. }
  38748. },
  38749. backHuman: {
  38750. height: math.unit(5 + 7/12, "feet"),
  38751. name: "Back (Human)",
  38752. image: {
  38753. source: "./media/characters/alek-dryagan/back-human.svg",
  38754. extra: 1670/1649,
  38755. bottom: 65/1735
  38756. }
  38757. },
  38758. frontDemi: {
  38759. height: math.unit(65, "feet"),
  38760. name: "Front (Demi)",
  38761. image: {
  38762. source: "./media/characters/alek-dryagan/front-demi.svg",
  38763. extra: 1669/1642,
  38764. bottom: 49/1718
  38765. }
  38766. },
  38767. backDemi: {
  38768. height: math.unit(65, "feet"),
  38769. name: "Back (Demi)",
  38770. image: {
  38771. source: "./media/characters/alek-dryagan/back-demi.svg",
  38772. extra: 1658/1637,
  38773. bottom: 40/1698
  38774. }
  38775. },
  38776. mawHuman: {
  38777. height: math.unit(0.3, "feet"),
  38778. name: "Maw (Human)",
  38779. image: {
  38780. source: "./media/characters/alek-dryagan/maw-human.svg"
  38781. }
  38782. },
  38783. mawDemi: {
  38784. height: math.unit(3.8, "feet"),
  38785. name: "Maw (Demi)",
  38786. image: {
  38787. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(5 + 7/12, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38801. {
  38802. frontHuman: {
  38803. height: math.unit(5 + 2/12, "feet"),
  38804. name: "Front (Human)",
  38805. image: {
  38806. source: "./media/characters/gen/front-human.svg",
  38807. extra: 1627/1538,
  38808. bottom: 71/1698
  38809. }
  38810. },
  38811. backHuman: {
  38812. height: math.unit(5 + 2/12, "feet"),
  38813. name: "Back (Human)",
  38814. image: {
  38815. source: "./media/characters/gen/back-human.svg",
  38816. extra: 1638/1548,
  38817. bottom: 69/1707
  38818. }
  38819. },
  38820. frontDemi: {
  38821. height: math.unit(5 + 2/12, "feet"),
  38822. name: "Front (Demi)",
  38823. image: {
  38824. source: "./media/characters/gen/front-demi.svg",
  38825. extra: 1627/1538,
  38826. bottom: 71/1698
  38827. }
  38828. },
  38829. backDemi: {
  38830. height: math.unit(5 + 2/12, "feet"),
  38831. name: "Back (Demi)",
  38832. image: {
  38833. source: "./media/characters/gen/back-demi.svg",
  38834. extra: 1638/1548,
  38835. bottom: 69/1707
  38836. }
  38837. },
  38838. },
  38839. [
  38840. {
  38841. name: "Normal",
  38842. height: math.unit(5 + 2/12, "feet"),
  38843. default: true
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38849. {
  38850. frontImp: {
  38851. height: math.unit(1 + 11/12, "feet"),
  38852. name: "Front (Imp)",
  38853. image: {
  38854. source: "./media/characters/max-kobold/front-imp.svg",
  38855. extra: 1238/1134,
  38856. bottom: 81/1319
  38857. }
  38858. },
  38859. backImp: {
  38860. height: math.unit(1 + 11/12, "feet"),
  38861. name: "Back (Imp)",
  38862. image: {
  38863. source: "./media/characters/max-kobold/back-imp.svg",
  38864. extra: 1334/1175,
  38865. bottom: 34/1368
  38866. }
  38867. },
  38868. frontDemi: {
  38869. height: math.unit(5 + 9/12, "feet"),
  38870. name: "Front (Demi)",
  38871. image: {
  38872. source: "./media/characters/max-kobold/front-demi.svg",
  38873. extra: 1715/1685,
  38874. bottom: 54/1769
  38875. }
  38876. },
  38877. backDemi: {
  38878. height: math.unit(5 + 9/12, "feet"),
  38879. name: "Back (Demi)",
  38880. image: {
  38881. source: "./media/characters/max-kobold/back-demi.svg",
  38882. extra: 1752/1729,
  38883. bottom: 41/1793
  38884. }
  38885. },
  38886. handImp: {
  38887. height: math.unit(0.45, "feet"),
  38888. name: "Hand (Imp)",
  38889. image: {
  38890. source: "./media/characters/max-kobold/hand.svg"
  38891. }
  38892. },
  38893. pawImp: {
  38894. height: math.unit(0.46, "feet"),
  38895. name: "Paw (Imp)",
  38896. image: {
  38897. source: "./media/characters/max-kobold/paw.svg"
  38898. }
  38899. },
  38900. handDemi: {
  38901. height: math.unit(0.80, "feet"),
  38902. name: "Hand (Demi)",
  38903. image: {
  38904. source: "./media/characters/max-kobold/hand.svg"
  38905. }
  38906. },
  38907. pawDemi: {
  38908. height: math.unit(1.1, "feet"),
  38909. name: "Paw (Demi)",
  38910. image: {
  38911. source: "./media/characters/max-kobold/paw.svg"
  38912. }
  38913. },
  38914. headImp: {
  38915. height: math.unit(1.33, "feet"),
  38916. name: "Head (Imp)",
  38917. image: {
  38918. source: "./media/characters/max-kobold/head-imp.svg"
  38919. }
  38920. },
  38921. mawImp: {
  38922. height: math.unit(0.75, "feet"),
  38923. name: "Maw (Imp)",
  38924. image: {
  38925. source: "./media/characters/max-kobold/maw-imp.svg"
  38926. }
  38927. },
  38928. mawDemi: {
  38929. height: math.unit(0.42, "feet"),
  38930. name: "Maw (Demi)",
  38931. image: {
  38932. source: "./media/characters/max-kobold/maw-demi.svg"
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(1 + 11/12, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(7 + 5/12, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/carbon/front.svg",
  38952. extra: 1754/1689,
  38953. bottom: 65/1819
  38954. }
  38955. },
  38956. back: {
  38957. height: math.unit(7 + 5/12, "feet"),
  38958. name: "Back",
  38959. image: {
  38960. source: "./media/characters/carbon/back.svg",
  38961. extra: 1762/1695,
  38962. bottom: 24/1786
  38963. }
  38964. },
  38965. frontGigantamax: {
  38966. height: math.unit(150, "feet"),
  38967. name: "Front (Gigantamax)",
  38968. image: {
  38969. source: "./media/characters/carbon/front-gigantamax.svg",
  38970. extra: 1826/1669,
  38971. bottom: 59/1885
  38972. }
  38973. },
  38974. backGigantamax: {
  38975. height: math.unit(150, "feet"),
  38976. name: "Back (Gigantamax)",
  38977. image: {
  38978. source: "./media/characters/carbon/back-gigantamax.svg",
  38979. extra: 1796/1653,
  38980. bottom: 53/1849
  38981. }
  38982. },
  38983. maw: {
  38984. height: math.unit(0.48, "feet"),
  38985. name: "Maw",
  38986. image: {
  38987. source: "./media/characters/carbon/maw.svg"
  38988. }
  38989. },
  38990. mawGigantamax: {
  38991. height: math.unit(7.5, "feet"),
  38992. name: "Maw (Gigantamax)",
  38993. image: {
  38994. source: "./media/characters/carbon/maw-gigantamax.svg"
  38995. }
  38996. },
  38997. },
  38998. [
  38999. {
  39000. name: "Normal",
  39001. height: math.unit(7 + 5/12, "feet"),
  39002. default: true
  39003. },
  39004. ]
  39005. ))
  39006. characterMakers.push(() => makeCharacter(
  39007. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39008. {
  39009. front: {
  39010. height: math.unit(6, "feet"),
  39011. name: "Front",
  39012. image: {
  39013. source: "./media/characters/maverick/front.svg",
  39014. extra: 1672/1661,
  39015. bottom: 85/1757
  39016. }
  39017. },
  39018. back: {
  39019. height: math.unit(6, "feet"),
  39020. name: "Back",
  39021. image: {
  39022. source: "./media/characters/maverick/back.svg",
  39023. extra: 1642/1631,
  39024. bottom: 38/1680
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(6, "feet"),
  39032. default: true
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(15, "feet"),
  39041. weight: math.unit(615, "lb"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/grockle/front.svg",
  39045. extra: 1535/1427,
  39046. bottom: 56/1591
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(15, "feet"),
  39054. default: true
  39055. },
  39056. {
  39057. name: "Large",
  39058. height: math.unit(150, "feet")
  39059. },
  39060. {
  39061. name: "Macro",
  39062. height: math.unit(1876, "feet")
  39063. },
  39064. {
  39065. name: "Mega Macro",
  39066. height: math.unit(121940, "feet")
  39067. },
  39068. {
  39069. name: "Giga Macro",
  39070. height: math.unit(750, "km")
  39071. },
  39072. {
  39073. name: "Tera Macro",
  39074. height: math.unit(750000, "km")
  39075. },
  39076. {
  39077. name: "Galactic",
  39078. height: math.unit(1.4e5, "km")
  39079. },
  39080. {
  39081. name: "Godlike",
  39082. height: math.unit(9.8e280, "galaxies")
  39083. },
  39084. ]
  39085. ))
  39086. characterMakers.push(() => makeCharacter(
  39087. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39088. {
  39089. front: {
  39090. height: math.unit(11, "meters"),
  39091. weight: math.unit(20, "tonnes"),
  39092. name: "Front",
  39093. image: {
  39094. source: "./media/characters/alistair/front.svg",
  39095. extra: 1265/1009,
  39096. bottom: 93/1358
  39097. }
  39098. },
  39099. },
  39100. [
  39101. {
  39102. name: "Normal",
  39103. height: math.unit(11, "meters"),
  39104. default: true
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(5 + 8/12, "feet"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/haruka/front.svg",
  39116. extra: 2012/1952,
  39117. bottom: 0/2012
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(5 + 8/12, "feet"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39131. {
  39132. back: {
  39133. height: math.unit(9, "feet"),
  39134. name: "Back",
  39135. image: {
  39136. source: "./media/characters/vivian-sylveon/back.svg",
  39137. extra: 1853/1714,
  39138. bottom: 0/1853
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(9, "feet"),
  39146. default: true
  39147. },
  39148. {
  39149. name: "Macro",
  39150. height: math.unit(500, "feet")
  39151. },
  39152. {
  39153. name: "Megamacro",
  39154. height: math.unit(600, "miles")
  39155. },
  39156. {
  39157. name: "Gigamacro",
  39158. height: math.unit(30000, "miles")
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39164. {
  39165. anthro: {
  39166. height: math.unit(5 + 10/12, "feet"),
  39167. weight: math.unit(100, "lb"),
  39168. name: "Anthro",
  39169. image: {
  39170. source: "./media/characters/daiki/anthro.svg",
  39171. extra: 1115/1027,
  39172. bottom: 69/1184
  39173. }
  39174. },
  39175. feral: {
  39176. height: math.unit(200, "feet"),
  39177. name: "Feral",
  39178. image: {
  39179. source: "./media/characters/daiki/feral.svg",
  39180. extra: 1256/313,
  39181. bottom: 39/1295
  39182. }
  39183. },
  39184. feralHead: {
  39185. height: math.unit(171, "feet"),
  39186. name: "Feral Head",
  39187. image: {
  39188. source: "./media/characters/daiki/feral-head.svg"
  39189. }
  39190. },
  39191. manaDragon: {
  39192. height: math.unit(170, "meters"),
  39193. name: "Mana-dragon",
  39194. image: {
  39195. source: "./media/characters/daiki/mana-dragon.svg",
  39196. extra: 763/420,
  39197. bottom: 97/860
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(5 + 10/12, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39211. {
  39212. fullyEquippedFront: {
  39213. height: math.unit(3 + 1/12, "feet"),
  39214. weight: math.unit(24, "lb"),
  39215. name: "Fully Equipped (Front)",
  39216. image: {
  39217. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39218. extra: 687/605,
  39219. bottom: 18/705
  39220. }
  39221. },
  39222. fullyEquippedBack: {
  39223. height: math.unit(3 + 1/12, "feet"),
  39224. weight: math.unit(24, "lb"),
  39225. name: "Fully Equipped (Back)",
  39226. image: {
  39227. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39228. extra: 689/590,
  39229. bottom: 18/707
  39230. }
  39231. },
  39232. dailyWear: {
  39233. height: math.unit(3 + 1/12, "feet"),
  39234. weight: math.unit(24, "lb"),
  39235. name: "Daily Wear",
  39236. image: {
  39237. source: "./media/characters/tea-spot/daily-wear.svg",
  39238. extra: 701/620,
  39239. bottom: 21/722
  39240. }
  39241. },
  39242. maidWork: {
  39243. height: math.unit(3 + 1/12, "feet"),
  39244. weight: math.unit(24, "lb"),
  39245. name: "Maid Work",
  39246. image: {
  39247. source: "./media/characters/tea-spot/maid-work.svg",
  39248. extra: 693/609,
  39249. bottom: 15/708
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Normal",
  39256. height: math.unit(3 + 1/12, "feet"),
  39257. default: true
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39263. {
  39264. front: {
  39265. height: math.unit(175, "cm"),
  39266. weight: math.unit(75, "kg"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/chee/front.svg",
  39270. extra: 1796/1740,
  39271. bottom: 40/1836
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Micro-Micro",
  39278. height: math.unit(1, "nm")
  39279. },
  39280. {
  39281. name: "Micro-erst",
  39282. height: math.unit(1, "micrometer")
  39283. },
  39284. {
  39285. name: "Micro-er",
  39286. height: math.unit(1, "cm")
  39287. },
  39288. {
  39289. name: "Normal",
  39290. height: math.unit(175, "cm"),
  39291. default: true
  39292. },
  39293. {
  39294. name: "Macro",
  39295. height: math.unit(100, "m")
  39296. },
  39297. {
  39298. name: "Macro-er",
  39299. height: math.unit(1, "km")
  39300. },
  39301. {
  39302. name: "Macro-erst",
  39303. height: math.unit(10, "km")
  39304. },
  39305. {
  39306. name: "Macro-Macro",
  39307. height: math.unit(100, "km")
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39313. {
  39314. front: {
  39315. height: math.unit(11 + 9/12, "feet"),
  39316. weight: math.unit(935, "lb"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/kingsley/front.svg",
  39320. extra: 1803/1674,
  39321. bottom: 127/1930
  39322. }
  39323. },
  39324. frontNude: {
  39325. height: math.unit(11 + 9/12, "feet"),
  39326. weight: math.unit(935, "lb"),
  39327. name: "Front (Nude)",
  39328. image: {
  39329. source: "./media/characters/kingsley/front-nude.svg",
  39330. extra: 1803/1674,
  39331. bottom: 127/1930
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(11 + 9/12, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39345. {
  39346. side: {
  39347. height: math.unit(9, "feet"),
  39348. name: "Side",
  39349. image: {
  39350. source: "./media/characters/rymel/side.svg",
  39351. extra: 792/469,
  39352. bottom: 121/913
  39353. }
  39354. },
  39355. maw: {
  39356. height: math.unit(2.4, "meters"),
  39357. name: "Maw",
  39358. image: {
  39359. source: "./media/characters/rymel/maw.svg"
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "House Drake",
  39366. height: math.unit(2, "feet")
  39367. },
  39368. {
  39369. name: "Reduced",
  39370. height: math.unit(4.5, "feet")
  39371. },
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(9, "feet"),
  39375. default: true
  39376. },
  39377. ]
  39378. ))
  39379. characterMakers.push(() => makeCharacter(
  39380. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39381. {
  39382. front: {
  39383. height: math.unit(1.74, "meters"),
  39384. weight: math.unit(55, "kg"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/rubus/front.svg",
  39388. extra: 1894/1742,
  39389. bottom: 44/1938
  39390. }
  39391. },
  39392. },
  39393. [
  39394. {
  39395. name: "Normal",
  39396. height: math.unit(1.74, "meters"),
  39397. default: true
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(5 + 2/12, "feet"),
  39406. weight: math.unit(112, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/cassie-kingston/front.svg",
  39410. extra: 1438/1390,
  39411. bottom: 47/1485
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(5 + 2/12, "feet"),
  39419. default: true
  39420. },
  39421. {
  39422. name: "Macro",
  39423. height: math.unit(128, "feet")
  39424. },
  39425. {
  39426. name: "Megamacro",
  39427. height: math.unit(2.56, "miles")
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(7, "feet"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/fox/front.svg",
  39439. extra: 1798/1703,
  39440. bottom: 55/1853
  39441. }
  39442. },
  39443. back: {
  39444. height: math.unit(7, "feet"),
  39445. name: "Back",
  39446. image: {
  39447. source: "./media/characters/fox/back.svg",
  39448. extra: 1748/1649,
  39449. bottom: 32/1780
  39450. }
  39451. },
  39452. head: {
  39453. height: math.unit(1.95, "feet"),
  39454. name: "Head",
  39455. image: {
  39456. source: "./media/characters/fox/head.svg"
  39457. }
  39458. },
  39459. dick: {
  39460. height: math.unit(1.33, "feet"),
  39461. name: "Dick",
  39462. image: {
  39463. source: "./media/characters/fox/dick.svg"
  39464. }
  39465. },
  39466. foot: {
  39467. height: math.unit(1, "feet"),
  39468. name: "Foot",
  39469. image: {
  39470. source: "./media/characters/fox/foot.svg"
  39471. }
  39472. },
  39473. paw: {
  39474. height: math.unit(0.92, "feet"),
  39475. name: "Paw",
  39476. image: {
  39477. source: "./media/characters/fox/paw.svg"
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Small",
  39484. height: math.unit(3, "inches")
  39485. },
  39486. {
  39487. name: "\"Realistic\"",
  39488. height: math.unit(7, "feet")
  39489. },
  39490. {
  39491. name: "Normal",
  39492. height: math.unit(150, "feet"),
  39493. default: true
  39494. },
  39495. {
  39496. name: "BIG",
  39497. height: math.unit(1200, "feet")
  39498. },
  39499. {
  39500. name: "👀",
  39501. height: math.unit(5, "miles")
  39502. },
  39503. {
  39504. name: "👀👀👀",
  39505. height: math.unit(64, "miles")
  39506. },
  39507. ]
  39508. ))
  39509. characterMakers.push(() => makeCharacter(
  39510. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39511. {
  39512. front: {
  39513. height: math.unit(625, "feet"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/asonja-rossa/front.svg",
  39517. extra: 1833/1686,
  39518. bottom: 24/1857
  39519. }
  39520. },
  39521. back: {
  39522. height: math.unit(625, "feet"),
  39523. name: "Back",
  39524. image: {
  39525. source: "./media/characters/asonja-rossa/back.svg",
  39526. extra: 1852/1753,
  39527. bottom: 26/1878
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(625, "feet"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39541. {
  39542. side: {
  39543. height: math.unit(8, "feet"),
  39544. name: "Side",
  39545. image: {
  39546. source: "./media/characters/rezukii/side.svg",
  39547. extra: 979/542,
  39548. bottom: 87/1066
  39549. }
  39550. },
  39551. sitting: {
  39552. height: math.unit(14.6, "feet"),
  39553. name: "Sitting",
  39554. image: {
  39555. source: "./media/characters/rezukii/sitting.svg",
  39556. extra: 1023/813,
  39557. bottom: 45/1068
  39558. }
  39559. },
  39560. },
  39561. [
  39562. {
  39563. name: "Tiny",
  39564. height: math.unit(2, "feet")
  39565. },
  39566. {
  39567. name: "Smol",
  39568. height: math.unit(4, "feet")
  39569. },
  39570. {
  39571. name: "Normal",
  39572. height: math.unit(8, "feet"),
  39573. default: true
  39574. },
  39575. {
  39576. name: "Big",
  39577. height: math.unit(12, "feet")
  39578. },
  39579. {
  39580. name: "Macro",
  39581. height: math.unit(30, "feet")
  39582. },
  39583. ]
  39584. ))
  39585. characterMakers.push(() => makeCharacter(
  39586. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39587. {
  39588. front: {
  39589. height: math.unit(14, "feet"),
  39590. weight: math.unit(9.5, "tonnes"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/dawnheart/front.svg",
  39594. extra: 2792/2675,
  39595. bottom: 64/2856
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Normal",
  39602. height: math.unit(14, "feet"),
  39603. default: true
  39604. },
  39605. ]
  39606. ))
  39607. characterMakers.push(() => makeCharacter(
  39608. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39609. {
  39610. front: {
  39611. height: math.unit(1.7, "m"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/gladi/front.svg",
  39615. extra: 1460/1362,
  39616. bottom: 19/1479
  39617. }
  39618. },
  39619. back: {
  39620. height: math.unit(1.7, "m"),
  39621. name: "Back",
  39622. image: {
  39623. source: "./media/characters/gladi/back.svg",
  39624. extra: 1459/1357,
  39625. bottom: 12/1471
  39626. }
  39627. },
  39628. feral: {
  39629. height: math.unit(2.05, "m"),
  39630. name: "Feral",
  39631. image: {
  39632. source: "./media/characters/gladi/feral.svg",
  39633. extra: 821/557,
  39634. bottom: 91/912
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Shortest",
  39641. height: math.unit(70, "cm")
  39642. },
  39643. {
  39644. name: "Normal",
  39645. height: math.unit(1.7, "m")
  39646. },
  39647. {
  39648. name: "Macro",
  39649. height: math.unit(10, "m"),
  39650. default: true
  39651. },
  39652. {
  39653. name: "Tallest",
  39654. height: math.unit(200, "m")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(5 + 7/12, "feet"),
  39663. weight: math.unit(2, "tons"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/erdno/front.svg",
  39667. extra: 1234/1129,
  39668. bottom: 35/1269
  39669. }
  39670. },
  39671. angled: {
  39672. height: math.unit(5 + 7/12, "feet"),
  39673. weight: math.unit(2, "tons"),
  39674. name: "Angled",
  39675. image: {
  39676. source: "./media/characters/erdno/angled.svg",
  39677. extra: 1185/1139,
  39678. bottom: 36/1221
  39679. }
  39680. },
  39681. side: {
  39682. height: math.unit(5 + 7/12, "feet"),
  39683. weight: math.unit(2, "tons"),
  39684. name: "Side",
  39685. image: {
  39686. source: "./media/characters/erdno/side.svg",
  39687. extra: 1191/1144,
  39688. bottom: 40/1231
  39689. }
  39690. },
  39691. back: {
  39692. height: math.unit(5 + 7/12, "feet"),
  39693. weight: math.unit(2, "tons"),
  39694. name: "Back",
  39695. image: {
  39696. source: "./media/characters/erdno/back.svg",
  39697. extra: 1202/1146,
  39698. bottom: 17/1219
  39699. }
  39700. },
  39701. frontNsfw: {
  39702. height: math.unit(5 + 7/12, "feet"),
  39703. weight: math.unit(2, "tons"),
  39704. name: "Front (NSFW)",
  39705. image: {
  39706. source: "./media/characters/erdno/front-nsfw.svg",
  39707. extra: 1234/1129,
  39708. bottom: 35/1269
  39709. }
  39710. },
  39711. angledNsfw: {
  39712. height: math.unit(5 + 7/12, "feet"),
  39713. weight: math.unit(2, "tons"),
  39714. name: "Angled (NSFW)",
  39715. image: {
  39716. source: "./media/characters/erdno/angled-nsfw.svg",
  39717. extra: 1185/1139,
  39718. bottom: 36/1221
  39719. }
  39720. },
  39721. sideNsfw: {
  39722. height: math.unit(5 + 7/12, "feet"),
  39723. weight: math.unit(2, "tons"),
  39724. name: "Side (NSFW)",
  39725. image: {
  39726. source: "./media/characters/erdno/side-nsfw.svg",
  39727. extra: 1191/1144,
  39728. bottom: 40/1231
  39729. }
  39730. },
  39731. backNsfw: {
  39732. height: math.unit(5 + 7/12, "feet"),
  39733. weight: math.unit(2, "tons"),
  39734. name: "Back (NSFW)",
  39735. image: {
  39736. source: "./media/characters/erdno/back-nsfw.svg",
  39737. extra: 1202/1146,
  39738. bottom: 17/1219
  39739. }
  39740. },
  39741. frontHyper: {
  39742. height: math.unit(5 + 7/12, "feet"),
  39743. weight: math.unit(2, "tons"),
  39744. name: "Front (Hyper)",
  39745. image: {
  39746. source: "./media/characters/erdno/front-hyper.svg",
  39747. extra: 1298/1136,
  39748. bottom: 35/1333
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Normal",
  39755. height: math.unit(5 + 7/12, "feet"),
  39756. default: true
  39757. },
  39758. {
  39759. name: "Big",
  39760. height: math.unit(5.7, "meters")
  39761. },
  39762. {
  39763. name: "Macro",
  39764. height: math.unit(5.7, "kilometers")
  39765. },
  39766. {
  39767. name: "Megamacro",
  39768. height: math.unit(5.7, "earths")
  39769. },
  39770. ]
  39771. ))
  39772. characterMakers.push(() => makeCharacter(
  39773. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39774. {
  39775. front: {
  39776. height: math.unit(5 + 10/12, "feet"),
  39777. weight: math.unit(150, "lb"),
  39778. name: "Front",
  39779. image: {
  39780. source: "./media/characters/jamie/front.svg",
  39781. extra: 1908/1768,
  39782. bottom: 19/1927
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Minimum",
  39789. height: math.unit(2, "cm")
  39790. },
  39791. {
  39792. name: "Micro",
  39793. height: math.unit(3, "inches")
  39794. },
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(5 + 10/12, "feet"),
  39798. default: true
  39799. },
  39800. {
  39801. name: "Macro",
  39802. height: math.unit(150, "feet")
  39803. },
  39804. {
  39805. name: "Megamacro",
  39806. height: math.unit(10000, "m")
  39807. },
  39808. ]
  39809. ))
  39810. characterMakers.push(() => makeCharacter(
  39811. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39812. {
  39813. front: {
  39814. height: math.unit(2, "meters"),
  39815. weight: math.unit(100, "kg"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/shiron/front.svg",
  39819. extra: 2103/1985,
  39820. bottom: 98/2201
  39821. }
  39822. },
  39823. back: {
  39824. height: math.unit(2, "meters"),
  39825. weight: math.unit(100, "kg"),
  39826. name: "Back",
  39827. image: {
  39828. source: "./media/characters/shiron/back.svg",
  39829. extra: 2110/2015,
  39830. bottom: 89/2199
  39831. }
  39832. },
  39833. hand: {
  39834. height: math.unit(0.96, "feet"),
  39835. name: "Hand",
  39836. image: {
  39837. source: "./media/characters/shiron/hand.svg"
  39838. }
  39839. },
  39840. foot: {
  39841. height: math.unit(1.464, "feet"),
  39842. name: "Foot",
  39843. image: {
  39844. source: "./media/characters/shiron/foot.svg"
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(2, "meters")
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(500, "meters"),
  39856. default: true
  39857. },
  39858. {
  39859. name: "Megamacro",
  39860. height: math.unit(20, "km")
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39866. {
  39867. front: {
  39868. height: math.unit(6, "feet"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/sam/front.svg",
  39872. extra: 849/826,
  39873. bottom: 19/868
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(6, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39887. {
  39888. front: {
  39889. height: math.unit(8 + 4/12, "feet"),
  39890. weight: math.unit(122, "kg"),
  39891. name: "Front",
  39892. image: {
  39893. source: "./media/characters/namori-kurogawa/front.svg",
  39894. extra: 1894/1576,
  39895. bottom: 34/1928
  39896. }
  39897. },
  39898. },
  39899. [
  39900. {
  39901. name: "Normal",
  39902. height: math.unit(8 + 4/12, "feet"),
  39903. default: true
  39904. },
  39905. ]
  39906. ))
  39907. characterMakers.push(() => makeCharacter(
  39908. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39909. {
  39910. front: {
  39911. height: math.unit(9, "feet"),
  39912. weight: math.unit(621, "lb"),
  39913. name: "Front",
  39914. image: {
  39915. source: "./media/characters/unmru/front.svg",
  39916. extra: 1853/1747,
  39917. bottom: 73/1926
  39918. }
  39919. },
  39920. side: {
  39921. height: math.unit(9, "feet"),
  39922. weight: math.unit(621, "lb"),
  39923. name: "Side",
  39924. image: {
  39925. source: "./media/characters/unmru/side.svg",
  39926. extra: 1781/1671,
  39927. bottom: 127/1908
  39928. }
  39929. },
  39930. back: {
  39931. height: math.unit(9, "feet"),
  39932. weight: math.unit(621, "lb"),
  39933. name: "Back",
  39934. image: {
  39935. source: "./media/characters/unmru/back.svg",
  39936. extra: 1894/1765,
  39937. bottom: 75/1969
  39938. }
  39939. },
  39940. dick: {
  39941. height: math.unit(3, "feet"),
  39942. weight: math.unit(35, "lb"),
  39943. name: "Dick",
  39944. image: {
  39945. source: "./media/characters/unmru/dick.svg"
  39946. }
  39947. },
  39948. },
  39949. [
  39950. {
  39951. name: "Normal",
  39952. height: math.unit(9, "feet")
  39953. },
  39954. {
  39955. name: "Natural",
  39956. height: math.unit(27, "feet"),
  39957. default: true
  39958. },
  39959. {
  39960. name: "Giant",
  39961. height: math.unit(90, "feet")
  39962. },
  39963. {
  39964. name: "Kaiju",
  39965. height: math.unit(270, "feet")
  39966. },
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(900, "feet")
  39970. },
  39971. {
  39972. name: "Macro+",
  39973. height: math.unit(2700, "feet")
  39974. },
  39975. {
  39976. name: "Megamacro",
  39977. height: math.unit(9000, "feet")
  39978. },
  39979. {
  39980. name: "City-Crushing",
  39981. height: math.unit(27000, "feet")
  39982. },
  39983. {
  39984. name: "Mountain-Mashing",
  39985. height: math.unit(90000, "feet")
  39986. },
  39987. {
  39988. name: "Earth-Eclipsing",
  39989. height: math.unit(2.7e8, "feet")
  39990. },
  39991. {
  39992. name: "Sol-Swallowing",
  39993. height: math.unit(9e10, "feet")
  39994. },
  39995. {
  39996. name: "Majoris-Munching",
  39997. height: math.unit(2.7e13, "feet")
  39998. },
  39999. ]
  40000. ))
  40001. characterMakers.push(() => makeCharacter(
  40002. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40003. {
  40004. front: {
  40005. height: math.unit(1, "inch"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/squeaks-mouse/front.svg",
  40009. extra: 352/308,
  40010. bottom: 25/377
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Micro",
  40017. height: math.unit(1, "inch"),
  40018. default: true
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40024. {
  40025. side: {
  40026. height: math.unit(35, "feet"),
  40027. name: "Side",
  40028. image: {
  40029. source: "./media/characters/sayko/side.svg",
  40030. extra: 1697/1021,
  40031. bottom: 82/1779
  40032. }
  40033. },
  40034. head: {
  40035. height: math.unit(16, "feet"),
  40036. name: "Head",
  40037. image: {
  40038. source: "./media/characters/sayko/head.svg"
  40039. }
  40040. },
  40041. forepaw: {
  40042. height: math.unit(7.85, "feet"),
  40043. name: "Forepaw",
  40044. image: {
  40045. source: "./media/characters/sayko/forepaw.svg"
  40046. }
  40047. },
  40048. hindpaw: {
  40049. height: math.unit(8.8, "feet"),
  40050. name: "Hindpaw",
  40051. image: {
  40052. source: "./media/characters/sayko/hindpaw.svg"
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(35, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Colossus",
  40064. height: math.unit(100, "meters")
  40065. },
  40066. {
  40067. name: "\"Small\" Deity",
  40068. height: math.unit(1, "km")
  40069. },
  40070. {
  40071. name: "\"Large\" Deity",
  40072. height: math.unit(15, "km")
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(6, "feet"),
  40081. weight: math.unit(250, "lb"),
  40082. name: "Front",
  40083. image: {
  40084. source: "./media/characters/mukiro/front.svg",
  40085. extra: 1368/1310,
  40086. bottom: 34/1402
  40087. }
  40088. },
  40089. },
  40090. [
  40091. {
  40092. name: "Normal",
  40093. height: math.unit(6, "feet"),
  40094. default: true
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(12 + 4/12, "feet"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40106. extra: 1346/1311,
  40107. bottom: 65/1411
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Base",
  40114. height: math.unit(12 + 4/12, "feet"),
  40115. default: true
  40116. },
  40117. {
  40118. name: "Macro",
  40119. height: math.unit(150, "feet")
  40120. },
  40121. {
  40122. name: "Mega",
  40123. height: math.unit(2, "miles")
  40124. },
  40125. {
  40126. name: "Demi God",
  40127. height: math.unit(4, "AU")
  40128. },
  40129. {
  40130. name: "God Size",
  40131. height: math.unit(1, "universe")
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40137. {
  40138. front: {
  40139. height: math.unit(3 + 3/12, "feet"),
  40140. weight: math.unit(88, "lb"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/trey/front.svg",
  40144. extra: 1815/1509,
  40145. bottom: 60/1875
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(3 + 3/12, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40159. {
  40160. front: {
  40161. height: math.unit(4, "meters"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/adelonda/front.svg",
  40165. extra: 1077/982,
  40166. bottom: 39/1116
  40167. }
  40168. },
  40169. back: {
  40170. height: math.unit(4, "meters"),
  40171. name: "Back",
  40172. image: {
  40173. source: "./media/characters/adelonda/back.svg",
  40174. extra: 1105/1003,
  40175. bottom: 25/1130
  40176. }
  40177. },
  40178. feral: {
  40179. height: math.unit(40/1.5, "meters"),
  40180. name: "Feral",
  40181. image: {
  40182. source: "./media/characters/adelonda/feral.svg",
  40183. extra: 597/271,
  40184. bottom: 387/984
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(4, "meters"),
  40192. default: true
  40193. },
  40194. ]
  40195. ))
  40196. characterMakers.push(() => makeCharacter(
  40197. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40198. {
  40199. front: {
  40200. height: math.unit(8 + 4/12, "feet"),
  40201. weight: math.unit(670, "lb"),
  40202. name: "Front",
  40203. image: {
  40204. source: "./media/characters/acadiel/front.svg",
  40205. extra: 1901/1595,
  40206. bottom: 142/2043
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Normal",
  40213. height: math.unit(8 + 4/12, "feet"),
  40214. default: true
  40215. },
  40216. {
  40217. name: "Macro",
  40218. height: math.unit(200, "feet")
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40224. {
  40225. front: {
  40226. height: math.unit(6 + 2/12, "feet"),
  40227. weight: math.unit(185, "lb"),
  40228. name: "Front",
  40229. image: {
  40230. source: "./media/characters/kayne-ein/front.svg",
  40231. extra: 1780/1560,
  40232. bottom: 81/1861
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(6 + 2/12, "feet"),
  40240. default: true
  40241. },
  40242. {
  40243. name: "Transformation Stage",
  40244. height: math.unit(15, "feet")
  40245. },
  40246. {
  40247. name: "Macro",
  40248. height: math.unit(150, "feet")
  40249. },
  40250. {
  40251. name: "Earth's Shadow",
  40252. height: math.unit(6200, "miles")
  40253. },
  40254. {
  40255. name: "Universal Demon",
  40256. height: math.unit(28e9, "parsecs")
  40257. },
  40258. {
  40259. name: "Multiverse God",
  40260. height: math.unit(3, "multiverses")
  40261. },
  40262. ]
  40263. ))
  40264. characterMakers.push(() => makeCharacter(
  40265. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40266. {
  40267. front: {
  40268. height: math.unit(5 + 5/12, "feet"),
  40269. name: "Front",
  40270. image: {
  40271. source: "./media/characters/fawn/front.svg",
  40272. extra: 1873/1731,
  40273. bottom: 95/1968
  40274. }
  40275. },
  40276. back: {
  40277. height: math.unit(5 + 5/12, "feet"),
  40278. name: "Back",
  40279. image: {
  40280. source: "./media/characters/fawn/back.svg",
  40281. extra: 1813/1700,
  40282. bottom: 14/1827
  40283. }
  40284. },
  40285. hoof: {
  40286. height: math.unit(1.45, "feet"),
  40287. name: "Hoof",
  40288. image: {
  40289. source: "./media/characters/fawn/hoof.svg"
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(5 + 5/12, "feet"),
  40297. default: true
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(2 + 5/12, "feet"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/orion/front.svg",
  40309. extra: 1366/1304,
  40310. bottom: 43/1409
  40311. }
  40312. },
  40313. paw: {
  40314. height: math.unit(0.52, "feet"),
  40315. name: "Paw",
  40316. image: {
  40317. source: "./media/characters/orion/paw.svg"
  40318. }
  40319. },
  40320. },
  40321. [
  40322. {
  40323. name: "Normal",
  40324. height: math.unit(2 + 5/12, "feet"),
  40325. default: true
  40326. },
  40327. ]
  40328. ))
  40329. characterMakers.push(() => makeCharacter(
  40330. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40331. {
  40332. front: {
  40333. height: math.unit(5 + 10/12, "feet"),
  40334. name: "Front",
  40335. image: {
  40336. source: "./media/characters/vera/front.svg",
  40337. extra: 1680/1575,
  40338. bottom: 49/1729
  40339. }
  40340. },
  40341. back: {
  40342. height: math.unit(5 + 10/12, "feet"),
  40343. name: "Back",
  40344. image: {
  40345. source: "./media/characters/vera/back.svg",
  40346. extra: 1700/1588,
  40347. bottom: 18/1718
  40348. }
  40349. },
  40350. arcanine: {
  40351. height: math.unit(6 + 8/12, "feet"),
  40352. name: "Arcanine",
  40353. image: {
  40354. source: "./media/characters/vera/arcanine.svg",
  40355. extra: 1590/1511,
  40356. bottom: 71/1661
  40357. }
  40358. },
  40359. maw: {
  40360. height: math.unit(0.82, "feet"),
  40361. name: "Maw",
  40362. image: {
  40363. source: "./media/characters/vera/maw.svg"
  40364. }
  40365. },
  40366. mawArcanine: {
  40367. height: math.unit(0.97, "feet"),
  40368. name: "Maw (Arcanine)",
  40369. image: {
  40370. source: "./media/characters/vera/maw-arcanine.svg"
  40371. }
  40372. },
  40373. paw: {
  40374. height: math.unit(0.75, "feet"),
  40375. name: "Paw",
  40376. image: {
  40377. source: "./media/characters/vera/paw.svg"
  40378. }
  40379. },
  40380. pawprint: {
  40381. height: math.unit(0.52, "feet"),
  40382. name: "Pawprint",
  40383. image: {
  40384. source: "./media/characters/vera/pawprint.svg"
  40385. }
  40386. },
  40387. },
  40388. [
  40389. {
  40390. name: "Normal",
  40391. height: math.unit(5 + 10/12, "feet"),
  40392. default: true
  40393. },
  40394. {
  40395. name: "Macro",
  40396. height: math.unit(75, "feet")
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(4, "feet"),
  40405. weight: math.unit(40, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/orvan-rabbit/front.svg",
  40409. extra: 1896/1642,
  40410. bottom: 29/1925
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Normal",
  40417. height: math.unit(4, "feet"),
  40418. default: true
  40419. },
  40420. ]
  40421. ))
  40422. characterMakers.push(() => makeCharacter(
  40423. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40424. {
  40425. front: {
  40426. height: math.unit(6, "feet"),
  40427. weight: math.unit(168, "lb"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/lisa/front.svg",
  40431. extra: 2065/1867,
  40432. bottom: 46/2111
  40433. }
  40434. },
  40435. back: {
  40436. height: math.unit(6, "feet"),
  40437. weight: math.unit(168, "lb"),
  40438. name: "Back",
  40439. image: {
  40440. source: "./media/characters/lisa/back.svg",
  40441. extra: 1982/1838,
  40442. bottom: 29/2011
  40443. }
  40444. },
  40445. maw: {
  40446. height: math.unit(0.81, "feet"),
  40447. name: "Maw",
  40448. image: {
  40449. source: "./media/characters/lisa/maw.svg"
  40450. }
  40451. },
  40452. paw: {
  40453. height: math.unit(0.9, "feet"),
  40454. name: "Paw",
  40455. image: {
  40456. source: "./media/characters/lisa/paw.svg"
  40457. }
  40458. },
  40459. caribousune: {
  40460. height: math.unit(7 + 2/12, "feet"),
  40461. weight: math.unit(268, "lb"),
  40462. name: "Caribousune",
  40463. image: {
  40464. source: "./media/characters/lisa/caribousune.svg",
  40465. extra: 1843/1633,
  40466. bottom: 29/1872
  40467. }
  40468. },
  40469. frontCaribousune: {
  40470. height: math.unit(7 + 2/12, "feet"),
  40471. weight: math.unit(268, "lb"),
  40472. name: "Front (Caribousune)",
  40473. image: {
  40474. source: "./media/characters/lisa/front-caribousune.svg",
  40475. extra: 1818/1638,
  40476. bottom: 52/1870
  40477. }
  40478. },
  40479. sideCaribousune: {
  40480. height: math.unit(7 + 2/12, "feet"),
  40481. weight: math.unit(268, "lb"),
  40482. name: "Side (Caribousune)",
  40483. image: {
  40484. source: "./media/characters/lisa/side-caribousune.svg",
  40485. extra: 1851/1635,
  40486. bottom: 16/1867
  40487. }
  40488. },
  40489. backCaribousune: {
  40490. height: math.unit(7 + 2/12, "feet"),
  40491. weight: math.unit(268, "lb"),
  40492. name: "Back (Caribousune)",
  40493. image: {
  40494. source: "./media/characters/lisa/back-caribousune.svg",
  40495. extra: 1801/1604,
  40496. bottom: 44/1845
  40497. }
  40498. },
  40499. caribou: {
  40500. height: math.unit(7 + 2/12, "feet"),
  40501. weight: math.unit(268, "lb"),
  40502. name: "Caribou",
  40503. image: {
  40504. source: "./media/characters/lisa/caribou.svg",
  40505. extra: 1843/1633,
  40506. bottom: 29/1872
  40507. }
  40508. },
  40509. frontCaribou: {
  40510. height: math.unit(7 + 2/12, "feet"),
  40511. weight: math.unit(268, "lb"),
  40512. name: "Front (Caribou)",
  40513. image: {
  40514. source: "./media/characters/lisa/front-caribou.svg",
  40515. extra: 1818/1638,
  40516. bottom: 52/1870
  40517. }
  40518. },
  40519. sideCaribou: {
  40520. height: math.unit(7 + 2/12, "feet"),
  40521. weight: math.unit(268, "lb"),
  40522. name: "Side (Caribou)",
  40523. image: {
  40524. source: "./media/characters/lisa/side-caribou.svg",
  40525. extra: 1851/1635,
  40526. bottom: 16/1867
  40527. }
  40528. },
  40529. backCaribou: {
  40530. height: math.unit(7 + 2/12, "feet"),
  40531. weight: math.unit(268, "lb"),
  40532. name: "Back (Caribou)",
  40533. image: {
  40534. source: "./media/characters/lisa/back-caribou.svg",
  40535. extra: 1801/1604,
  40536. bottom: 44/1845
  40537. }
  40538. },
  40539. mawCaribou: {
  40540. height: math.unit(1.45, "feet"),
  40541. name: "Maw (Caribou)",
  40542. image: {
  40543. source: "./media/characters/lisa/maw-caribou.svg"
  40544. }
  40545. },
  40546. mawCaribousune: {
  40547. height: math.unit(1.45, "feet"),
  40548. name: "Maw (Caribousune)",
  40549. image: {
  40550. source: "./media/characters/lisa/maw-caribousune.svg"
  40551. }
  40552. },
  40553. pawCaribousune: {
  40554. height: math.unit(1.61, "feet"),
  40555. name: "Paw (Caribou)",
  40556. image: {
  40557. source: "./media/characters/lisa/paw-caribousune.svg"
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Normal",
  40564. height: math.unit(6, "feet")
  40565. },
  40566. {
  40567. name: "God Size",
  40568. height: math.unit(72, "feet"),
  40569. default: true
  40570. },
  40571. {
  40572. name: "Towering",
  40573. height: math.unit(288, "feet")
  40574. },
  40575. {
  40576. name: "City Size",
  40577. height: math.unit(48384, "feet")
  40578. },
  40579. {
  40580. name: "Continental",
  40581. height: math.unit(4200, "miles")
  40582. },
  40583. {
  40584. name: "Planet Eater",
  40585. height: math.unit(42, "earths")
  40586. },
  40587. {
  40588. name: "Star Swallower",
  40589. height: math.unit(42, "solarradii")
  40590. },
  40591. {
  40592. name: "System Swallower",
  40593. height: math.unit(84000, "AU")
  40594. },
  40595. {
  40596. name: "Galaxy Gobbler",
  40597. height: math.unit(42, "galaxies")
  40598. },
  40599. {
  40600. name: "Universe Devourer",
  40601. height: math.unit(42, "universes")
  40602. },
  40603. {
  40604. name: "Multiverse Muncher",
  40605. height: math.unit(42, "multiverses")
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(36, "feet"),
  40614. name: "Front",
  40615. image: {
  40616. source: "./media/characters/shadow-rat/front.svg",
  40617. extra: 1845/1758,
  40618. bottom: 83/1928
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Macro",
  40625. height: math.unit(36, "feet"),
  40626. default: true
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40632. {
  40633. side: {
  40634. height: math.unit(8, "feet"),
  40635. weight: math.unit(2630, "lb"),
  40636. name: "Side",
  40637. image: {
  40638. source: "./media/characters/torallia/side.svg",
  40639. extra: 2164/2021,
  40640. bottom: 371/2535
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Mortal Interaction",
  40647. height: math.unit(8, "feet")
  40648. },
  40649. {
  40650. name: "Natural",
  40651. height: math.unit(24, "feet"),
  40652. default: true
  40653. },
  40654. {
  40655. name: "Giant",
  40656. height: math.unit(80, "feet")
  40657. },
  40658. {
  40659. name: "Kaiju",
  40660. height: math.unit(240, "feet")
  40661. },
  40662. {
  40663. name: "Macro",
  40664. height: math.unit(800, "feet")
  40665. },
  40666. {
  40667. name: "Macro+",
  40668. height: math.unit(2400, "feet")
  40669. },
  40670. {
  40671. name: "Macro++",
  40672. height: math.unit(8000, "feet")
  40673. },
  40674. {
  40675. name: "City-Crushing",
  40676. height: math.unit(24000, "feet")
  40677. },
  40678. {
  40679. name: "Mountain-Mashing",
  40680. height: math.unit(80000, "feet")
  40681. },
  40682. {
  40683. name: "District Demolisher",
  40684. height: math.unit(240000, "feet")
  40685. },
  40686. {
  40687. name: "Tri-County Terror",
  40688. height: math.unit(800000, "feet")
  40689. },
  40690. {
  40691. name: "State Smasher",
  40692. height: math.unit(2.4e6, "feet")
  40693. },
  40694. {
  40695. name: "Nation Nemesis",
  40696. height: math.unit(8e6, "feet")
  40697. },
  40698. {
  40699. name: "Continent Cracker",
  40700. height: math.unit(2.4e7, "feet")
  40701. },
  40702. {
  40703. name: "Planet-Pillaging",
  40704. height: math.unit(8e7, "feet")
  40705. },
  40706. {
  40707. name: "Earth-Eclipsing",
  40708. height: math.unit(2.4e8, "feet")
  40709. },
  40710. {
  40711. name: "Jovian-Jostling",
  40712. height: math.unit(8e8, "feet")
  40713. },
  40714. {
  40715. name: "Gas Giant Gulper",
  40716. height: math.unit(2.4e9, "feet")
  40717. },
  40718. {
  40719. name: "Astral Annihilator",
  40720. height: math.unit(8e9, "feet")
  40721. },
  40722. {
  40723. name: "Celestial Conqueror",
  40724. height: math.unit(2.4e10, "feet")
  40725. },
  40726. {
  40727. name: "Sol-Swallowing",
  40728. height: math.unit(8e10, "feet")
  40729. },
  40730. {
  40731. name: "Hunter of the Heavens",
  40732. height: math.unit(2.4e13, "feet")
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(6 + 8/12, "feet"),
  40741. weight: math.unit(250, "kilograms"),
  40742. volume: math.unit(28, "liters"),
  40743. name: "Front",
  40744. image: {
  40745. source: "./media/characters/rebecca-pawlson/front.svg",
  40746. extra: 1737/1596,
  40747. bottom: 107/1844
  40748. }
  40749. },
  40750. back: {
  40751. height: math.unit(6 + 8/12, "feet"),
  40752. weight: math.unit(250, "kilograms"),
  40753. volume: math.unit(28, "liters"),
  40754. name: "Back",
  40755. image: {
  40756. source: "./media/characters/rebecca-pawlson/back.svg",
  40757. extra: 1702/1523,
  40758. bottom: 86/1788
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(6 + 8/12, "feet")
  40766. },
  40767. {
  40768. name: "Mini Macro",
  40769. height: math.unit(10, "feet"),
  40770. default: true
  40771. },
  40772. {
  40773. name: "Macro",
  40774. height: math.unit(100, "feet")
  40775. },
  40776. {
  40777. name: "Mega Macro",
  40778. height: math.unit(2500, "feet")
  40779. },
  40780. {
  40781. name: "Giga Macro",
  40782. height: math.unit(50, "miles")
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(7 + 6/12, "feet"),
  40791. weight: math.unit(600, "lb"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/moxie-nova/front.svg",
  40795. extra: 1734/1652,
  40796. bottom: 41/1775
  40797. }
  40798. },
  40799. },
  40800. [
  40801. {
  40802. name: "Normal",
  40803. height: math.unit(7 + 6/12, "feet"),
  40804. default: true
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40810. {
  40811. goat: {
  40812. height: math.unit(4, "feet"),
  40813. weight: math.unit(180, "lb"),
  40814. name: "Goat",
  40815. image: {
  40816. source: "./media/characters/tiffany/goat.svg",
  40817. extra: 1845/1595,
  40818. bottom: 106/1951
  40819. }
  40820. },
  40821. front: {
  40822. height: math.unit(5, "feet"),
  40823. weight: math.unit(150, "lb"),
  40824. name: "Foxcoon",
  40825. image: {
  40826. source: "./media/characters/tiffany/foxcoon.svg",
  40827. extra: 1941/1845,
  40828. bottom: 58/1999
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(5, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40842. {
  40843. front: {
  40844. height: math.unit(8, "feet"),
  40845. weight: math.unit(300, "lb"),
  40846. name: "Front",
  40847. image: {
  40848. source: "./media/characters/raxinath/front.svg",
  40849. extra: 1407/1309,
  40850. bottom: 39/1446
  40851. }
  40852. },
  40853. back: {
  40854. height: math.unit(8, "feet"),
  40855. weight: math.unit(300, "lb"),
  40856. name: "Back",
  40857. image: {
  40858. source: "./media/characters/raxinath/back.svg",
  40859. extra: 1405/1315,
  40860. bottom: 9/1414
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Speck",
  40867. height: math.unit(0.5, "nm")
  40868. },
  40869. {
  40870. name: "Micro",
  40871. height: math.unit(3, "inches")
  40872. },
  40873. {
  40874. name: "Kobold",
  40875. height: math.unit(3, "feet")
  40876. },
  40877. {
  40878. name: "Normal",
  40879. height: math.unit(8, "feet"),
  40880. default: true
  40881. },
  40882. {
  40883. name: "Giant",
  40884. height: math.unit(50, "feet")
  40885. },
  40886. {
  40887. name: "Macro",
  40888. height: math.unit(1000, "feet")
  40889. },
  40890. {
  40891. name: "Megamacro",
  40892. height: math.unit(1, "mile")
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(10, "feet"),
  40901. weight: math.unit(1442, "lb"),
  40902. name: "Front",
  40903. image: {
  40904. source: "./media/characters/mal-dragon/front.svg",
  40905. extra: 1515/1444,
  40906. bottom: 113/1628
  40907. }
  40908. },
  40909. back: {
  40910. height: math.unit(10, "feet"),
  40911. weight: math.unit(1442, "lb"),
  40912. name: "Back",
  40913. image: {
  40914. source: "./media/characters/mal-dragon/back.svg",
  40915. extra: 1527/1434,
  40916. bottom: 25/1552
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Mortal Interaction",
  40923. height: math.unit(10, "feet"),
  40924. default: true
  40925. },
  40926. {
  40927. name: "Large",
  40928. height: math.unit(30, "feet")
  40929. },
  40930. {
  40931. name: "Kaiju",
  40932. height: math.unit(300, "feet")
  40933. },
  40934. {
  40935. name: "Megamacro",
  40936. height: math.unit(10000, "feet")
  40937. },
  40938. {
  40939. name: "Continent Cracker",
  40940. height: math.unit(30000000, "feet")
  40941. },
  40942. {
  40943. name: "Sol-Swallowing",
  40944. height: math.unit(1e11, "feet")
  40945. },
  40946. {
  40947. name: "Light Universal",
  40948. height: math.unit(5, "universes")
  40949. },
  40950. {
  40951. name: "Universe Atoms",
  40952. height: math.unit(1.829e9, "universes")
  40953. },
  40954. {
  40955. name: "Light Multiversal",
  40956. height: math.unit(5, "multiverses")
  40957. },
  40958. {
  40959. name: "Multiverse Atoms",
  40960. height: math.unit(1.829e9, "multiverses")
  40961. },
  40962. {
  40963. name: "Fabric of Time",
  40964. height: math.unit(1e262, "multiverses")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(9, "feet"),
  40973. weight: math.unit(1050, "lb"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/tabitha/front.svg",
  40977. extra: 2083/1994,
  40978. bottom: 68/2151
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Baseline",
  40985. height: math.unit(9, "feet"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "Giant",
  40990. height: math.unit(90, "feet")
  40991. },
  40992. {
  40993. name: "Macro",
  40994. height: math.unit(900, "feet")
  40995. },
  40996. {
  40997. name: "Megamacro",
  40998. height: math.unit(9000, "feet")
  40999. },
  41000. {
  41001. name: "City-Crushing",
  41002. height: math.unit(27000, "feet")
  41003. },
  41004. {
  41005. name: "Mountain-Mashing",
  41006. height: math.unit(90000, "feet")
  41007. },
  41008. {
  41009. name: "Nation Nemesis",
  41010. height: math.unit(9e6, "feet")
  41011. },
  41012. {
  41013. name: "Continent Cracker",
  41014. height: math.unit(27e6, "feet")
  41015. },
  41016. {
  41017. name: "Earth-Eclipsing",
  41018. height: math.unit(2.7e8, "feet")
  41019. },
  41020. {
  41021. name: "Gas Giant Gulper",
  41022. height: math.unit(2.7e9, "feet")
  41023. },
  41024. {
  41025. name: "Sol-Swallowing",
  41026. height: math.unit(9e10, "feet")
  41027. },
  41028. {
  41029. name: "Galaxy Gulper",
  41030. height: math.unit(9, "galaxies")
  41031. },
  41032. {
  41033. name: "Cosmos Churner",
  41034. height: math.unit(9, "universes")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(160, "cm"),
  41043. weight: math.unit(55, "kg"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/tow/front.svg",
  41047. extra: 1751/1722,
  41048. bottom: 74/1825
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Norm",
  41055. height: math.unit(160, "cm")
  41056. },
  41057. {
  41058. name: "Casual",
  41059. height: math.unit(3200, "m"),
  41060. default: true
  41061. },
  41062. {
  41063. name: "Show-Off",
  41064. height: math.unit(160, "km")
  41065. },
  41066. ]
  41067. ))
  41068. characterMakers.push(() => makeCharacter(
  41069. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41070. {
  41071. front: {
  41072. height: math.unit(7 + 11/12, "feet"),
  41073. weight: math.unit(342.8, "lb"),
  41074. name: "Front",
  41075. image: {
  41076. source: "./media/characters/vivian-orca-dragon/front.svg",
  41077. extra: 1890/1865,
  41078. bottom: 28/1918
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Micro",
  41085. height: math.unit(5, "inches")
  41086. },
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(7 + 11/12, "feet"),
  41090. default: true
  41091. },
  41092. {
  41093. name: "Macro",
  41094. height: math.unit(395 + 7/12, "feet")
  41095. },
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41100. {
  41101. side: {
  41102. height: math.unit(10, "feet"),
  41103. weight: math.unit(1442, "lb"),
  41104. name: "Side",
  41105. image: {
  41106. source: "./media/characters/lotherakon/side.svg",
  41107. extra: 1604/1497,
  41108. bottom: 89/1693
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Mortal Interaction",
  41115. height: math.unit(10, "feet")
  41116. },
  41117. {
  41118. name: "Large",
  41119. height: math.unit(30, "feet"),
  41120. default: true
  41121. },
  41122. {
  41123. name: "Giant",
  41124. height: math.unit(100, "feet")
  41125. },
  41126. {
  41127. name: "Kaiju",
  41128. height: math.unit(300, "feet")
  41129. },
  41130. {
  41131. name: "Macro",
  41132. height: math.unit(1000, "feet")
  41133. },
  41134. {
  41135. name: "Macro+",
  41136. height: math.unit(3000, "feet")
  41137. },
  41138. {
  41139. name: "Megamacro",
  41140. height: math.unit(10000, "feet")
  41141. },
  41142. {
  41143. name: "City-Crushing",
  41144. height: math.unit(30000, "feet")
  41145. },
  41146. {
  41147. name: "Continent Cracker",
  41148. height: math.unit(30e6, "feet")
  41149. },
  41150. {
  41151. name: "Earth Eclipsing",
  41152. height: math.unit(3e8, "feet")
  41153. },
  41154. {
  41155. name: "Gas Giant Gulper",
  41156. height: math.unit(3e9, "feet")
  41157. },
  41158. {
  41159. name: "Sol-Swallowing",
  41160. height: math.unit(1e11, "feet")
  41161. },
  41162. {
  41163. name: "System Swallower",
  41164. height: math.unit(3e14, "feet")
  41165. },
  41166. {
  41167. name: "Galaxy Gulper",
  41168. height: math.unit(10, "galaxies")
  41169. },
  41170. {
  41171. name: "Light Universal",
  41172. height: math.unit(5, "universes")
  41173. },
  41174. {
  41175. name: "Universe Palm",
  41176. height: math.unit(20, "universes")
  41177. },
  41178. {
  41179. name: "Light Multiversal",
  41180. height: math.unit(5, "multiverses")
  41181. },
  41182. {
  41183. name: "Multiverse Palm",
  41184. height: math.unit(20, "multiverses")
  41185. },
  41186. {
  41187. name: "Inferno Incarnate",
  41188. height: math.unit(1e7, "multiverses")
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(8, "feet"),
  41197. weight: math.unit(1200, "lb"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/malithee/front.svg",
  41201. extra: 1675/1640,
  41202. bottom: 162/1837
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Mortal Interaction",
  41209. height: math.unit(8, "feet"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Large",
  41214. height: math.unit(24, "feet")
  41215. },
  41216. {
  41217. name: "Kaiju",
  41218. height: math.unit(240, "feet")
  41219. },
  41220. {
  41221. name: "Megamacro",
  41222. height: math.unit(8000, "feet")
  41223. },
  41224. {
  41225. name: "Continent Cracker",
  41226. height: math.unit(24e6, "feet")
  41227. },
  41228. {
  41229. name: "Earth-Eclipsing",
  41230. height: math.unit(2.4e8, "feet")
  41231. },
  41232. {
  41233. name: "Sol-Swallowing",
  41234. height: math.unit(8e10, "feet")
  41235. },
  41236. {
  41237. name: "Galaxy Gulper",
  41238. height: math.unit(8, "galaxies")
  41239. },
  41240. {
  41241. name: "Light Universal",
  41242. height: math.unit(4, "universes")
  41243. },
  41244. {
  41245. name: "Universe Atoms",
  41246. height: math.unit(1.829e9, "universes")
  41247. },
  41248. {
  41249. name: "Light Multiversal",
  41250. height: math.unit(4, "multiverses")
  41251. },
  41252. {
  41253. name: "Multiverse Atoms",
  41254. height: math.unit(1.829e9, "multiverses")
  41255. },
  41256. {
  41257. name: "Nigh-Omnipresence",
  41258. height: math.unit(8e261, "multiverses")
  41259. },
  41260. ]
  41261. ))
  41262. characterMakers.push(() => makeCharacter(
  41263. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41264. {
  41265. front: {
  41266. height: math.unit(10, "feet"),
  41267. weight: math.unit(1500, "lb"),
  41268. name: "Front",
  41269. image: {
  41270. source: "./media/characters/miles-thestia/front.svg",
  41271. extra: 1812/1727,
  41272. bottom: 86/1898
  41273. }
  41274. },
  41275. back: {
  41276. height: math.unit(10, "feet"),
  41277. weight: math.unit(1500, "lb"),
  41278. name: "Back",
  41279. image: {
  41280. source: "./media/characters/miles-thestia/back.svg",
  41281. extra: 1799/1690,
  41282. bottom: 47/1846
  41283. }
  41284. },
  41285. frontNsfw: {
  41286. height: math.unit(10, "feet"),
  41287. weight: math.unit(1500, "lb"),
  41288. name: "Front (NSFW)",
  41289. image: {
  41290. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41291. extra: 1812/1727,
  41292. bottom: 86/1898
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Mini-Macro",
  41299. height: math.unit(10, "feet"),
  41300. default: true
  41301. },
  41302. ]
  41303. ))
  41304. characterMakers.push(() => makeCharacter(
  41305. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41306. {
  41307. front: {
  41308. height: math.unit(25, "feet"),
  41309. name: "Front",
  41310. image: {
  41311. source: "./media/characters/titan-s-wulf/front.svg",
  41312. extra: 1560/1484,
  41313. bottom: 76/1636
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Smallest",
  41320. height: math.unit(25, "feet"),
  41321. default: true
  41322. },
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(200, "feet")
  41326. },
  41327. {
  41328. name: "Macro",
  41329. height: math.unit(200000, "feet")
  41330. },
  41331. {
  41332. name: "Multiversal Original",
  41333. height: math.unit(10000, "multiverses")
  41334. },
  41335. ]
  41336. ))
  41337. characterMakers.push(() => makeCharacter(
  41338. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41339. {
  41340. front: {
  41341. height: math.unit(8, "feet"),
  41342. weight: math.unit(553, "lb"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/tawendeh/front.svg",
  41346. extra: 2365/2268,
  41347. bottom: 83/2448
  41348. }
  41349. },
  41350. frontClothed: {
  41351. height: math.unit(8, "feet"),
  41352. weight: math.unit(553, "lb"),
  41353. name: "Front (Clothed)",
  41354. image: {
  41355. source: "./media/characters/tawendeh/front-clothed.svg",
  41356. extra: 2365/2268,
  41357. bottom: 83/2448
  41358. }
  41359. },
  41360. back: {
  41361. height: math.unit(8, "feet"),
  41362. weight: math.unit(553, "lb"),
  41363. name: "Back",
  41364. image: {
  41365. source: "./media/characters/tawendeh/back.svg",
  41366. extra: 2397/2294,
  41367. bottom: 42/2439
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Mortal Interaction",
  41374. height: math.unit(8, "feet"),
  41375. default: true
  41376. },
  41377. {
  41378. name: "Giant",
  41379. height: math.unit(80, "feet")
  41380. },
  41381. {
  41382. name: "Macro",
  41383. height: math.unit(800, "feet")
  41384. },
  41385. {
  41386. name: "Megamacro",
  41387. height: math.unit(8000, "feet")
  41388. },
  41389. {
  41390. name: "City-Crushing",
  41391. height: math.unit(24000, "feet")
  41392. },
  41393. {
  41394. name: "Mountain-Mashing",
  41395. height: math.unit(80000, "feet")
  41396. },
  41397. {
  41398. name: "Nation Nemesis",
  41399. height: math.unit(8e6, "feet")
  41400. },
  41401. {
  41402. name: "Continent Cracker",
  41403. height: math.unit(24e6, "feet")
  41404. },
  41405. {
  41406. name: "Earth-Eclipsing",
  41407. height: math.unit(2.4e8, "feet")
  41408. },
  41409. {
  41410. name: "Gas Giant Gulper",
  41411. height: math.unit(2.4e9, "feet")
  41412. },
  41413. {
  41414. name: "Sol-Swallowing",
  41415. height: math.unit(8e10, "feet")
  41416. },
  41417. {
  41418. name: "Galaxy Gulper",
  41419. height: math.unit(8, "galaxies")
  41420. },
  41421. {
  41422. name: "Cosmos Churner",
  41423. height: math.unit(8, "universes")
  41424. },
  41425. {
  41426. name: "Omnipotent Otter",
  41427. height: math.unit(80, "universes")
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(2.6, "meters"),
  41436. weight: math.unit(900, "kg"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/neesha/front.svg",
  41440. extra: 1803/1653,
  41441. bottom: 128/1931
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(2.6, "meters"),
  41449. default: true
  41450. },
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(50, "meters")
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(5, "feet"),
  41462. weight: math.unit(185, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/kyera/front.svg",
  41466. extra: 1875/1790,
  41467. bottom: 96/1971
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(5, "feet"),
  41475. default: true
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41481. {
  41482. front: {
  41483. height: math.unit(7 + 6/12, "feet"),
  41484. weight: math.unit(540, "lb"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/yuko/front.svg",
  41488. extra: 1282/1222,
  41489. bottom: 101/1383
  41490. }
  41491. },
  41492. frontClothed: {
  41493. height: math.unit(7 + 6/12, "feet"),
  41494. weight: math.unit(540, "lb"),
  41495. name: "Front (Clothed)",
  41496. image: {
  41497. source: "./media/characters/yuko/front-clothed.svg",
  41498. extra: 1282/1222,
  41499. bottom: 101/1383
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Normal",
  41506. height: math.unit(7 + 6/12, "feet"),
  41507. default: true
  41508. },
  41509. {
  41510. name: "Macro",
  41511. height: math.unit(26 + 9/12, "feet")
  41512. },
  41513. {
  41514. name: "Megamacro",
  41515. height: math.unit(300, "feet")
  41516. },
  41517. {
  41518. name: "Gigamacro",
  41519. height: math.unit(5000, "feet")
  41520. },
  41521. {
  41522. name: "Planetary",
  41523. height: math.unit(10000, "miles")
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(8 + 2/12, "feet"),
  41532. weight: math.unit(600, "lb"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/deam-nitrel/front.svg",
  41536. extra: 1308/1234,
  41537. bottom: 125/1433
  41538. }
  41539. },
  41540. },
  41541. [
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(8 + 2/12, "feet"),
  41545. default: true
  41546. },
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41551. {
  41552. front: {
  41553. height: math.unit(6.1, "feet"),
  41554. weight: math.unit(180, "lb"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/skyress/front.svg",
  41558. extra: 1045/915,
  41559. bottom: 28/1073
  41560. }
  41561. },
  41562. maw: {
  41563. height: math.unit(1, "feet"),
  41564. name: "Maw",
  41565. image: {
  41566. source: "./media/characters/skyress/maw.svg"
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Normal",
  41573. height: math.unit(6.1, "feet"),
  41574. default: true
  41575. },
  41576. {
  41577. name: "Macro",
  41578. height: math.unit(200, "feet")
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(4 + 2/12, "feet"),
  41587. weight: math.unit(40, "kg"),
  41588. name: "Front",
  41589. image: {
  41590. source: "./media/characters/amethyst-jones/front.svg",
  41591. extra: 1220/1150,
  41592. bottom: 101/1321
  41593. }
  41594. },
  41595. },
  41596. [
  41597. {
  41598. name: "Normal",
  41599. height: math.unit(4 + 2/12, "feet"),
  41600. default: true
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(1.7, "m"),
  41609. weight: math.unit(135, "lb"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/jade/front.svg",
  41613. extra: 1818/1767,
  41614. bottom: 32/1850
  41615. }
  41616. },
  41617. back: {
  41618. height: math.unit(1.7, "m"),
  41619. weight: math.unit(135, "lb"),
  41620. name: "Back",
  41621. image: {
  41622. source: "./media/characters/jade/back.svg",
  41623. extra: 1869/1809,
  41624. bottom: 35/1904
  41625. }
  41626. },
  41627. hand: {
  41628. height: math.unit(0.24, "m"),
  41629. name: "Hand",
  41630. image: {
  41631. source: "./media/characters/jade/hand.svg"
  41632. }
  41633. },
  41634. foot: {
  41635. height: math.unit(0.263, "m"),
  41636. name: "Foot",
  41637. image: {
  41638. source: "./media/characters/jade/foot.svg"
  41639. }
  41640. },
  41641. dick: {
  41642. height: math.unit(0.47, "m"),
  41643. name: "Dick",
  41644. image: {
  41645. source: "./media/characters/jade/dick.svg"
  41646. }
  41647. },
  41648. },
  41649. [
  41650. {
  41651. name: "Micro",
  41652. height: math.unit(22, "cm")
  41653. },
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(1.7, "m"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(152, "m")
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41667. {
  41668. front: {
  41669. height: math.unit(100, "miles"),
  41670. weight: math.unit(20000, "tons"),
  41671. name: "Front",
  41672. image: {
  41673. source: "./media/characters/cookie/front.svg",
  41674. extra: 1125/1070,
  41675. bottom: 30/1155
  41676. }
  41677. },
  41678. },
  41679. [
  41680. {
  41681. name: "Big",
  41682. height: math.unit(50, "feet")
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(100, "miles"),
  41687. default: true
  41688. },
  41689. {
  41690. name: "Megamacro",
  41691. height: math.unit(90000, "miles")
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41697. {
  41698. front: {
  41699. height: math.unit(6, "feet"),
  41700. weight: math.unit(145, "lb"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/farzian/front.svg",
  41704. extra: 1902/1693,
  41705. bottom: 108/2010
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Macro",
  41712. height: math.unit(500, "feet"),
  41713. default: true
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(3 + 6/12, "feet"),
  41722. weight: math.unit(50, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/kimberly-tilson/front.svg",
  41726. extra: 1400/1322,
  41727. bottom: 36/1436
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(3 + 6/12, "feet"),
  41732. weight: math.unit(50, "lb"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/kimberly-tilson/back.svg",
  41736. extra: 1370/1307,
  41737. bottom: 20/1390
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Normal",
  41744. height: math.unit(3 + 6/12, "feet"),
  41745. default: true
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41751. {
  41752. front: {
  41753. height: math.unit(1148, "feet"),
  41754. weight: math.unit(34057, "lb"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/harthos/front.svg",
  41758. extra: 1391/1339,
  41759. bottom: 13/1404
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Macro",
  41766. height: math.unit(1148, "feet"),
  41767. default: true
  41768. },
  41769. ]
  41770. ))
  41771. characterMakers.push(() => makeCharacter(
  41772. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41773. {
  41774. front: {
  41775. height: math.unit(15, "feet"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/hypatia/front.svg",
  41779. extra: 1653/1591,
  41780. bottom: 79/1732
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Normal",
  41787. height: math.unit(15, "feet")
  41788. },
  41789. {
  41790. name: "Small",
  41791. height: math.unit(300, "feet")
  41792. },
  41793. {
  41794. name: "Macro",
  41795. height: math.unit(2500, "feet"),
  41796. default: true
  41797. },
  41798. {
  41799. name: "Mega Macro",
  41800. height: math.unit(1500, "miles")
  41801. },
  41802. {
  41803. name: "Giga Macro",
  41804. height: math.unit(1.5e6, "miles")
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(6, "feet"),
  41813. weight: math.unit(200, "lb"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/wulver/front.svg",
  41817. extra: 1724/1632,
  41818. bottom: 130/1854
  41819. }
  41820. },
  41821. frontNsfw: {
  41822. height: math.unit(6, "feet"),
  41823. weight: math.unit(200, "lb"),
  41824. name: "Front (NSFW)",
  41825. image: {
  41826. source: "./media/characters/wulver/front-nsfw.svg",
  41827. extra: 1724/1632,
  41828. bottom: 130/1854
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Human-Sized",
  41835. height: math.unit(6, "feet")
  41836. },
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(4, "meters"),
  41840. default: true
  41841. },
  41842. {
  41843. name: "Large",
  41844. height: math.unit(6, "m")
  41845. },
  41846. ]
  41847. ))
  41848. characterMakers.push(() => makeCharacter(
  41849. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41850. {
  41851. front: {
  41852. height: math.unit(7, "feet"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/maru/front.svg",
  41856. extra: 1595/1570,
  41857. bottom: 0/1595
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(7, "feet"),
  41865. default: true
  41866. },
  41867. {
  41868. name: "Macro",
  41869. height: math.unit(700, "feet")
  41870. },
  41871. {
  41872. name: "Mega Macro",
  41873. height: math.unit(25, "miles")
  41874. },
  41875. ]
  41876. ))
  41877. characterMakers.push(() => makeCharacter(
  41878. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41879. {
  41880. front: {
  41881. height: math.unit(6, "feet"),
  41882. weight: math.unit(170, "lb"),
  41883. name: "Front",
  41884. image: {
  41885. source: "./media/characters/xenon/front.svg",
  41886. extra: 1376/1305,
  41887. bottom: 56/1432
  41888. }
  41889. },
  41890. back: {
  41891. height: math.unit(6, "feet"),
  41892. weight: math.unit(170, "lb"),
  41893. name: "Back",
  41894. image: {
  41895. source: "./media/characters/xenon/back.svg",
  41896. extra: 1328/1259,
  41897. bottom: 95/1423
  41898. }
  41899. },
  41900. maw: {
  41901. height: math.unit(0.52, "feet"),
  41902. name: "Maw",
  41903. image: {
  41904. source: "./media/characters/xenon/maw.svg"
  41905. }
  41906. },
  41907. handLeft: {
  41908. height: math.unit(0.82 * 169 / 153, "feet"),
  41909. name: "Hand (Left)",
  41910. image: {
  41911. source: "./media/characters/xenon/hand-left.svg"
  41912. }
  41913. },
  41914. handRight: {
  41915. height: math.unit(0.82, "feet"),
  41916. name: "Hand (Right)",
  41917. image: {
  41918. source: "./media/characters/xenon/hand-right.svg"
  41919. }
  41920. },
  41921. footLeft: {
  41922. height: math.unit(1.13, "feet"),
  41923. name: "Foot (Left)",
  41924. image: {
  41925. source: "./media/characters/xenon/foot-left.svg"
  41926. }
  41927. },
  41928. footRight: {
  41929. height: math.unit(1.13 * 194 / 196, "feet"),
  41930. name: "Foot (Right)",
  41931. image: {
  41932. source: "./media/characters/xenon/foot-right.svg"
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Micro",
  41939. height: math.unit(0.8, "inches")
  41940. },
  41941. {
  41942. name: "Normal",
  41943. height: math.unit(6, "feet")
  41944. },
  41945. {
  41946. name: "Macro",
  41947. height: math.unit(50, "feet"),
  41948. default: true
  41949. },
  41950. {
  41951. name: "Macro+",
  41952. height: math.unit(250, "feet")
  41953. },
  41954. {
  41955. name: "Megamacro",
  41956. height: math.unit(1500, "feet")
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41962. {
  41963. front: {
  41964. height: math.unit(7 + 5/12, "feet"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/zane/front.svg",
  41968. extra: 1260/1203,
  41969. bottom: 94/1354
  41970. }
  41971. },
  41972. back: {
  41973. height: math.unit(5.05, "feet"),
  41974. name: "Back",
  41975. image: {
  41976. source: "./media/characters/zane/back.svg",
  41977. extra: 893/829,
  41978. bottom: 30/923
  41979. }
  41980. },
  41981. werewolf: {
  41982. height: math.unit(11, "feet"),
  41983. name: "Werewolf",
  41984. image: {
  41985. source: "./media/characters/zane/werewolf.svg",
  41986. extra: 1383/1323,
  41987. bottom: 89/1472
  41988. }
  41989. },
  41990. foot: {
  41991. height: math.unit(1.46, "feet"),
  41992. name: "Foot",
  41993. image: {
  41994. source: "./media/characters/zane/foot.svg"
  41995. }
  41996. },
  41997. footFront: {
  41998. height: math.unit(0.784, "feet"),
  41999. name: "Foot (Front)",
  42000. image: {
  42001. source: "./media/characters/zane/foot-front.svg"
  42002. }
  42003. },
  42004. dick: {
  42005. height: math.unit(1.95, "feet"),
  42006. name: "Dick",
  42007. image: {
  42008. source: "./media/characters/zane/dick.svg"
  42009. }
  42010. },
  42011. dickWerewolf: {
  42012. height: math.unit(3.77, "feet"),
  42013. name: "Dick (Werewolf)",
  42014. image: {
  42015. source: "./media/characters/zane/dick.svg"
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(7 + 5/12, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(6 + 2/12, "feet"),
  42032. weight: math.unit(284, "lb"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/benni-desparque/front.svg",
  42036. extra: 1353/1126,
  42037. bottom: 69/1422
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Civilian",
  42044. height: math.unit(6 + 2/12, "feet")
  42045. },
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(98, "feet"),
  42049. default: true
  42050. },
  42051. {
  42052. name: "Kaiju Fighter",
  42053. height: math.unit(268, "feet")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(5, "feet"),
  42062. weight: math.unit(105, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/maxine/front.svg",
  42066. extra: 1386/1250,
  42067. bottom: 71/1457
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(5, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(11 + 7/12, "feet"),
  42084. weight: math.unit(9576, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/scaly/front.svg",
  42088. extra: 888/867,
  42089. bottom: 36/924
  42090. }
  42091. },
  42092. },
  42093. [
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(11 + 7/12, "feet"),
  42097. default: true
  42098. },
  42099. ]
  42100. ))
  42101. characterMakers.push(() => makeCharacter(
  42102. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42103. {
  42104. front: {
  42105. height: math.unit(6 + 3/12, "feet"),
  42106. name: "Front",
  42107. image: {
  42108. source: "./media/characters/saelria/front.svg",
  42109. extra: 1243/1138,
  42110. bottom: 46/1289
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Micro",
  42117. height: math.unit(6, "inches"),
  42118. },
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(6 + 3/12, "feet"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Macro",
  42126. height: math.unit(25, "feet")
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(80, "meters"),
  42135. weight: math.unit(7000, "tonnes"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/tef/front.svg",
  42139. extra: 2036/1991,
  42140. bottom: 54/2090
  42141. }
  42142. },
  42143. back: {
  42144. height: math.unit(80, "meters"),
  42145. weight: math.unit(7000, "tonnes"),
  42146. name: "Back",
  42147. image: {
  42148. source: "./media/characters/tef/back.svg",
  42149. extra: 2036/1991,
  42150. bottom: 54/2090
  42151. }
  42152. },
  42153. },
  42154. [
  42155. {
  42156. name: "Macro",
  42157. height: math.unit(80, "meters"),
  42158. default: true
  42159. },
  42160. ]
  42161. ))
  42162. characterMakers.push(() => makeCharacter(
  42163. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42164. {
  42165. front: {
  42166. height: math.unit(13, "feet"),
  42167. weight: math.unit(6, "tons"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/rover/front.svg",
  42171. extra: 1233/1156,
  42172. bottom: 50/1283
  42173. }
  42174. },
  42175. back: {
  42176. height: math.unit(13, "feet"),
  42177. weight: math.unit(6, "tons"),
  42178. name: "Back",
  42179. image: {
  42180. source: "./media/characters/rover/back.svg",
  42181. extra: 1327/1258,
  42182. bottom: 39/1366
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Normal",
  42189. height: math.unit(13, "feet"),
  42190. default: true
  42191. },
  42192. {
  42193. name: "Macro",
  42194. height: math.unit(1300, "feet")
  42195. },
  42196. {
  42197. name: "Megamacro",
  42198. height: math.unit(1300, "miles")
  42199. },
  42200. {
  42201. name: "Gigamacro",
  42202. height: math.unit(1300000, "miles")
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42208. {
  42209. front: {
  42210. height: math.unit(6, "feet"),
  42211. weight: math.unit(150, "lb"),
  42212. name: "Front",
  42213. image: {
  42214. source: "./media/characters/ariz/front.svg",
  42215. extra: 1401/1346,
  42216. bottom: 5/1406
  42217. }
  42218. },
  42219. },
  42220. [
  42221. {
  42222. name: "Normal",
  42223. height: math.unit(10, "feet"),
  42224. default: true
  42225. },
  42226. ]
  42227. ))
  42228. characterMakers.push(() => makeCharacter(
  42229. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42230. {
  42231. front: {
  42232. height: math.unit(6, "feet"),
  42233. weight: math.unit(140, "lb"),
  42234. name: "Front",
  42235. image: {
  42236. source: "./media/characters/sigrun/front.svg",
  42237. extra: 1418/1359,
  42238. bottom: 27/1445
  42239. }
  42240. },
  42241. },
  42242. [
  42243. {
  42244. name: "Macro",
  42245. height: math.unit(35, "feet"),
  42246. default: true
  42247. },
  42248. ]
  42249. ))
  42250. characterMakers.push(() => makeCharacter(
  42251. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42252. {
  42253. front: {
  42254. height: math.unit(6, "feet"),
  42255. weight: math.unit(150, "lb"),
  42256. name: "Front",
  42257. image: {
  42258. source: "./media/characters/numin/front.svg",
  42259. extra: 1433/1388,
  42260. bottom: 12/1445
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Macro",
  42267. height: math.unit(21.5, "km"),
  42268. default: true
  42269. },
  42270. ]
  42271. ))
  42272. characterMakers.push(() => makeCharacter(
  42273. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42274. {
  42275. front: {
  42276. height: math.unit(6, "feet"),
  42277. weight: math.unit(463, "lb"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/melwa/front.svg",
  42281. extra: 1307/1248,
  42282. bottom: 93/1400
  42283. }
  42284. },
  42285. },
  42286. [
  42287. {
  42288. name: "Macro",
  42289. height: math.unit(50, "meters"),
  42290. default: true
  42291. },
  42292. ]
  42293. ))
  42294. characterMakers.push(() => makeCharacter(
  42295. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42296. {
  42297. front: {
  42298. height: math.unit(325, "feet"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/zorkaiju/front.svg",
  42302. extra: 1955/1814,
  42303. bottom: 40/1995
  42304. }
  42305. },
  42306. frontExtended: {
  42307. height: math.unit(325, "feet"),
  42308. name: "Front (Extended)",
  42309. image: {
  42310. source: "./media/characters/zorkaiju/front-extended.svg",
  42311. extra: 1955/1814,
  42312. bottom: 40/1995
  42313. }
  42314. },
  42315. side: {
  42316. height: math.unit(325, "feet"),
  42317. name: "Side",
  42318. image: {
  42319. source: "./media/characters/zorkaiju/side.svg",
  42320. extra: 1495/1396,
  42321. bottom: 17/1512
  42322. }
  42323. },
  42324. sideExtended: {
  42325. height: math.unit(325, "feet"),
  42326. name: "Side (Extended)",
  42327. image: {
  42328. source: "./media/characters/zorkaiju/side-extended.svg",
  42329. extra: 1495/1396,
  42330. bottom: 17/1512
  42331. }
  42332. },
  42333. back: {
  42334. height: math.unit(325, "feet"),
  42335. name: "Back",
  42336. image: {
  42337. source: "./media/characters/zorkaiju/back.svg",
  42338. extra: 1959/1821,
  42339. bottom: 31/1990
  42340. }
  42341. },
  42342. backExtended: {
  42343. height: math.unit(325, "feet"),
  42344. name: "Back (Extended)",
  42345. image: {
  42346. source: "./media/characters/zorkaiju/back-extended.svg",
  42347. extra: 1959/1821,
  42348. bottom: 31/1990
  42349. }
  42350. },
  42351. hand: {
  42352. height: math.unit(58.4, "feet"),
  42353. name: "Hand",
  42354. image: {
  42355. source: "./media/characters/zorkaiju/hand.svg"
  42356. }
  42357. },
  42358. handExtended: {
  42359. height: math.unit(61.4, "feet"),
  42360. name: "Hand (Extended)",
  42361. image: {
  42362. source: "./media/characters/zorkaiju/hand-extended.svg"
  42363. }
  42364. },
  42365. foot: {
  42366. height: math.unit(95, "feet"),
  42367. name: "Foot",
  42368. image: {
  42369. source: "./media/characters/zorkaiju/foot.svg"
  42370. }
  42371. },
  42372. leftArm: {
  42373. height: math.unit(59, "feet"),
  42374. name: "Left Arm",
  42375. image: {
  42376. source: "./media/characters/zorkaiju/left-arm.svg"
  42377. }
  42378. },
  42379. rightArm: {
  42380. height: math.unit(59, "feet"),
  42381. name: "Right Arm",
  42382. image: {
  42383. source: "./media/characters/zorkaiju/right-arm.svg"
  42384. }
  42385. },
  42386. leftArmExtended: {
  42387. height: math.unit(59 * 1.033546, "feet"),
  42388. name: "Left Arm (Extended)",
  42389. image: {
  42390. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42391. }
  42392. },
  42393. rightArmExtended: {
  42394. height: math.unit(59 * 1.0496, "feet"),
  42395. name: "Right Arm (Extended)",
  42396. image: {
  42397. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42398. }
  42399. },
  42400. tail: {
  42401. height: math.unit(104, "feet"),
  42402. name: "Tail",
  42403. image: {
  42404. source: "./media/characters/zorkaiju/tail.svg"
  42405. }
  42406. },
  42407. tailExtended: {
  42408. height: math.unit(104, "feet"),
  42409. name: "Tail (Extended)",
  42410. image: {
  42411. source: "./media/characters/zorkaiju/tail-extended.svg"
  42412. }
  42413. },
  42414. tailBottom: {
  42415. height: math.unit(104, "feet"),
  42416. name: "Tail Bottom",
  42417. image: {
  42418. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42419. }
  42420. },
  42421. crystal: {
  42422. height: math.unit(27.54, "feet"),
  42423. name: "Crystal",
  42424. image: {
  42425. source: "./media/characters/zorkaiju/crystal.svg"
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Kaiju",
  42432. height: math.unit(325, "feet"),
  42433. default: true
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(6 + 1/12, "feet"),
  42442. weight: math.unit(115, "lb"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/bailey-belfry/front.svg",
  42446. extra: 1240/1121,
  42447. bottom: 101/1341
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Normal",
  42454. height: math.unit(6 + 1/12, "feet"),
  42455. default: true
  42456. },
  42457. ]
  42458. ))
  42459. characterMakers.push(() => makeCharacter(
  42460. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42461. {
  42462. side: {
  42463. height: math.unit(4, "meters"),
  42464. weight: math.unit(250, "kg"),
  42465. name: "Side",
  42466. image: {
  42467. source: "./media/characters/blacky/side.svg",
  42468. extra: 1027/919,
  42469. bottom: 43/1070
  42470. }
  42471. },
  42472. maw: {
  42473. height: math.unit(1, "meters"),
  42474. name: "Maw",
  42475. image: {
  42476. source: "./media/characters/blacky/maw.svg"
  42477. }
  42478. },
  42479. paw: {
  42480. height: math.unit(1, "meters"),
  42481. name: "Paw",
  42482. image: {
  42483. source: "./media/characters/blacky/paw.svg"
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(4, "meters"),
  42491. default: true
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42497. {
  42498. front: {
  42499. height: math.unit(170, "cm"),
  42500. weight: math.unit(66, "kg"),
  42501. name: "Front",
  42502. image: {
  42503. source: "./media/characters/thux-ei/front.svg",
  42504. extra: 1109/1011,
  42505. bottom: 8/1117
  42506. }
  42507. },
  42508. },
  42509. [
  42510. {
  42511. name: "Normal",
  42512. height: math.unit(170, "cm"),
  42513. default: true
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(5, "feet"),
  42522. weight: math.unit(120, "lb"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/roxanne-voltaire/front.svg",
  42526. extra: 1901/1779,
  42527. bottom: 53/1954
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Normal",
  42534. height: math.unit(5, "feet"),
  42535. default: true
  42536. },
  42537. {
  42538. name: "Giant",
  42539. height: math.unit(50, "feet")
  42540. },
  42541. {
  42542. name: "Titan",
  42543. height: math.unit(500, "feet")
  42544. },
  42545. {
  42546. name: "Macro",
  42547. height: math.unit(5000, "feet")
  42548. },
  42549. {
  42550. name: "Megamacro",
  42551. height: math.unit(50000, "feet")
  42552. },
  42553. {
  42554. name: "Gigamacro",
  42555. height: math.unit(500000, "feet")
  42556. },
  42557. {
  42558. name: "Teramacro",
  42559. height: math.unit(5e6, "feet")
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(6 + 2/12, "feet"),
  42568. name: "Front",
  42569. image: {
  42570. source: "./media/characters/squeaks/front.svg",
  42571. extra: 1823/1768,
  42572. bottom: 138/1961
  42573. }
  42574. },
  42575. },
  42576. [
  42577. {
  42578. name: "Micro",
  42579. height: math.unit(0.5, "inches")
  42580. },
  42581. {
  42582. name: "Normal",
  42583. height: math.unit(6 + 2/12, "feet"),
  42584. default: true
  42585. },
  42586. {
  42587. name: "Macro",
  42588. height: math.unit(600, "feet")
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(1.72, "meters"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/archinger/front.svg",
  42600. extra: 1861/1675,
  42601. bottom: 125/1986
  42602. }
  42603. },
  42604. back: {
  42605. height: math.unit(1.72, "meters"),
  42606. name: "Back",
  42607. image: {
  42608. source: "./media/characters/archinger/back.svg",
  42609. extra: 1844/1701,
  42610. bottom: 104/1948
  42611. }
  42612. },
  42613. cock: {
  42614. height: math.unit(0.59, "feet"),
  42615. name: "Cock",
  42616. image: {
  42617. source: "./media/characters/archinger/cock.svg"
  42618. }
  42619. },
  42620. },
  42621. [
  42622. {
  42623. name: "Normal",
  42624. height: math.unit(1.72, "meters"),
  42625. default: true
  42626. },
  42627. {
  42628. name: "Macro",
  42629. height: math.unit(84, "meters")
  42630. },
  42631. {
  42632. name: "Macro+",
  42633. height: math.unit(112, "meters")
  42634. },
  42635. {
  42636. name: "Macro++",
  42637. height: math.unit(960, "meters")
  42638. },
  42639. {
  42640. name: "Macro+++",
  42641. height: math.unit(4, "km")
  42642. },
  42643. {
  42644. name: "Macro++++",
  42645. height: math.unit(48, "km")
  42646. },
  42647. {
  42648. name: "Macro+++++",
  42649. height: math.unit(4500, "km")
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(5 + 5/12, "feet"),
  42658. name: "Front",
  42659. image: {
  42660. source: "./media/characters/alsnapz/front.svg",
  42661. extra: 1157/1065,
  42662. bottom: 42/1199
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(5 + 5/12, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42676. {
  42677. side: {
  42678. height: math.unit(3.2, "earths"),
  42679. name: "Side",
  42680. image: {
  42681. source: "./media/characters/mag/side.svg",
  42682. extra: 1331/1008,
  42683. bottom: 52/1383
  42684. }
  42685. },
  42686. wing: {
  42687. height: math.unit(1.94, "earths"),
  42688. name: "Wing",
  42689. image: {
  42690. source: "./media/characters/mag/wing.svg"
  42691. }
  42692. },
  42693. dick: {
  42694. height: math.unit(1.8, "earths"),
  42695. name: "Dick",
  42696. image: {
  42697. source: "./media/characters/mag/dick.svg"
  42698. }
  42699. },
  42700. ass: {
  42701. height: math.unit(1.33, "earths"),
  42702. name: "Ass",
  42703. image: {
  42704. source: "./media/characters/mag/ass.svg"
  42705. }
  42706. },
  42707. head: {
  42708. height: math.unit(1.1, "earths"),
  42709. name: "Head",
  42710. image: {
  42711. source: "./media/characters/mag/head.svg"
  42712. }
  42713. },
  42714. maw: {
  42715. height: math.unit(1.62, "earths"),
  42716. name: "Maw",
  42717. image: {
  42718. source: "./media/characters/mag/maw.svg"
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Small",
  42725. height: math.unit(162, "feet")
  42726. },
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(3.2, "earths"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(512, "feet"),
  42739. weight: math.unit(63509, "tonnes"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/vorrel-harroc/front.svg",
  42743. extra: 1075/1063,
  42744. bottom: 62/1137
  42745. }
  42746. },
  42747. },
  42748. [
  42749. {
  42750. name: "Normal",
  42751. height: math.unit(10, "feet")
  42752. },
  42753. {
  42754. name: "Macro",
  42755. height: math.unit(512, "feet"),
  42756. default: true
  42757. },
  42758. {
  42759. name: "Megamacro",
  42760. height: math.unit(256, "miles")
  42761. },
  42762. {
  42763. name: "Gigamacro",
  42764. height: math.unit(4096, "miles")
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42770. {
  42771. side: {
  42772. height: math.unit(50, "feet"),
  42773. name: "Side",
  42774. image: {
  42775. source: "./media/characters/froimar/side.svg",
  42776. extra: 855/638,
  42777. bottom: 99/954
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Macro",
  42784. height: math.unit(50, "feet"),
  42785. default: true
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(210, "miles"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/timothy/front.svg",
  42797. extra: 1007/943,
  42798. bottom: 62/1069
  42799. }
  42800. },
  42801. frontSkirt: {
  42802. height: math.unit(210, "miles"),
  42803. name: "Front (Skirt)",
  42804. image: {
  42805. source: "./media/characters/timothy/front-skirt.svg",
  42806. extra: 1007/943,
  42807. bottom: 62/1069
  42808. }
  42809. },
  42810. frontCoat: {
  42811. height: math.unit(210, "miles"),
  42812. name: "Front (Coat)",
  42813. image: {
  42814. source: "./media/characters/timothy/front-coat.svg",
  42815. extra: 1007/943,
  42816. bottom: 62/1069
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Macro",
  42823. height: math.unit(210, "miles"),
  42824. default: true
  42825. },
  42826. {
  42827. name: "Megamacro",
  42828. height: math.unit(210000, "miles")
  42829. },
  42830. ]
  42831. ))
  42832. characterMakers.push(() => makeCharacter(
  42833. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42834. {
  42835. front: {
  42836. height: math.unit(188, "feet"),
  42837. name: "Front",
  42838. image: {
  42839. source: "./media/characters/pyotr/front.svg",
  42840. extra: 1912/1826,
  42841. bottom: 18/1930
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Macro",
  42848. height: math.unit(188, "feet"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Megamacro",
  42853. height: math.unit(8, "miles")
  42854. },
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42859. {
  42860. side: {
  42861. height: math.unit(10, "feet"),
  42862. weight: math.unit(4500, "lb"),
  42863. name: "Side",
  42864. image: {
  42865. source: "./media/characters/ackart/side.svg",
  42866. extra: 1776/1668,
  42867. bottom: 116/1892
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(10, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42881. {
  42882. side: {
  42883. height: math.unit(21, "feet"),
  42884. name: "Side",
  42885. image: {
  42886. source: "./media/characters/nolow/side.svg",
  42887. extra: 1484/1434,
  42888. bottom: 85/1569
  42889. }
  42890. },
  42891. sideErect: {
  42892. height: math.unit(21, "feet"),
  42893. name: "Side-erect",
  42894. image: {
  42895. source: "./media/characters/nolow/side-erect.svg",
  42896. extra: 1484/1434,
  42897. bottom: 85/1569
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Regular",
  42904. height: math.unit(12, "feet")
  42905. },
  42906. {
  42907. name: "Big Chee",
  42908. height: math.unit(21, "feet"),
  42909. default: true
  42910. },
  42911. ]
  42912. ))
  42913. characterMakers.push(() => makeCharacter(
  42914. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42915. {
  42916. front: {
  42917. height: math.unit(7, "feet"),
  42918. weight: math.unit(250, "lb"),
  42919. name: "Front",
  42920. image: {
  42921. source: "./media/characters/nines/front.svg",
  42922. extra: 1741/1607,
  42923. bottom: 41/1782
  42924. }
  42925. },
  42926. side: {
  42927. height: math.unit(7, "feet"),
  42928. weight: math.unit(250, "lb"),
  42929. name: "Side",
  42930. image: {
  42931. source: "./media/characters/nines/side.svg",
  42932. extra: 1854/1735,
  42933. bottom: 93/1947
  42934. }
  42935. },
  42936. back: {
  42937. height: math.unit(7, "feet"),
  42938. weight: math.unit(250, "lb"),
  42939. name: "Back",
  42940. image: {
  42941. source: "./media/characters/nines/back.svg",
  42942. extra: 1748/1615,
  42943. bottom: 20/1768
  42944. }
  42945. },
  42946. },
  42947. [
  42948. {
  42949. name: "Megamacro",
  42950. height: math.unit(99, "km"),
  42951. default: true
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(5 + 10/12, "feet"),
  42960. weight: math.unit(210, "lb"),
  42961. name: "Front",
  42962. image: {
  42963. source: "./media/characters/zenith/front.svg",
  42964. extra: 1531/1452,
  42965. bottom: 198/1729
  42966. }
  42967. },
  42968. back: {
  42969. height: math.unit(5 + 10/12, "feet"),
  42970. weight: math.unit(210, "lb"),
  42971. name: "Back",
  42972. image: {
  42973. source: "./media/characters/zenith/back.svg",
  42974. extra: 1571/1487,
  42975. bottom: 75/1646
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Normal",
  42982. height: math.unit(5 + 10/12, "feet"),
  42983. default: true
  42984. }
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42989. {
  42990. front: {
  42991. height: math.unit(4, "feet"),
  42992. weight: math.unit(60, "lb"),
  42993. name: "Front",
  42994. image: {
  42995. source: "./media/characters/jasper/front.svg",
  42996. extra: 1450/1379,
  42997. bottom: 19/1469
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Normal",
  43004. height: math.unit(4, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43011. {
  43012. front: {
  43013. height: math.unit(6 + 5/12, "feet"),
  43014. weight: math.unit(290, "lb"),
  43015. name: "Front",
  43016. image: {
  43017. source: "./media/characters/tiberius-thyben/front.svg",
  43018. extra: 757/739,
  43019. bottom: 39/796
  43020. }
  43021. },
  43022. },
  43023. [
  43024. {
  43025. name: "Micro",
  43026. height: math.unit(1.5, "inches")
  43027. },
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(6 + 5/12, "feet"),
  43031. default: true
  43032. },
  43033. {
  43034. name: "Macro",
  43035. height: math.unit(300, "feet")
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(5 + 6/12, "feet"),
  43044. weight: math.unit(60, "kg"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/sabre/front.svg",
  43048. extra: 738/671,
  43049. bottom: 27/765
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Teeny",
  43056. height: math.unit(2, "inches")
  43057. },
  43058. {
  43059. name: "Smol",
  43060. height: math.unit(8, "inches")
  43061. },
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(5 + 6/12, "feet"),
  43065. default: true
  43066. },
  43067. {
  43068. name: "Mini-Macro",
  43069. height: math.unit(15, "feet")
  43070. },
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(50, "feet")
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(6 + 4/12, "feet"),
  43082. weight: math.unit(170, "lb"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/charlie/front.svg",
  43086. extra: 1348/1228,
  43087. bottom: 15/1363
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Macro",
  43094. height: math.unit(1700, "meters"),
  43095. default: true
  43096. },
  43097. {
  43098. name: "MegaMacro",
  43099. height: math.unit(20400, "meters")
  43100. },
  43101. ]
  43102. ))
  43103. characterMakers.push(() => makeCharacter(
  43104. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43105. {
  43106. front: {
  43107. height: math.unit(6 + 3/12, "feet"),
  43108. weight: math.unit(185, "lb"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/susan-grant/front.svg",
  43112. extra: 1351/1327,
  43113. bottom: 26/1377
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(6 + 3/12, "feet"),
  43121. default: true
  43122. },
  43123. {
  43124. name: "Macro",
  43125. height: math.unit(225, "feet")
  43126. },
  43127. {
  43128. name: "Macro+",
  43129. height: math.unit(900, "feet")
  43130. },
  43131. {
  43132. name: "MegaMacro",
  43133. height: math.unit(14400, "feet")
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(5 + 4/12, "feet"),
  43142. weight: math.unit(110, "lb"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/axel-isanov/front.svg",
  43146. extra: 1096/1065,
  43147. bottom: 13/1109
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(5 + 4/12, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(9, "feet"),
  43164. weight: math.unit(467, "lb"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/necahual/front.svg",
  43168. extra: 920/873,
  43169. bottom: 26/946
  43170. }
  43171. },
  43172. back: {
  43173. height: math.unit(9, "feet"),
  43174. weight: math.unit(467, "lb"),
  43175. name: "Back",
  43176. image: {
  43177. source: "./media/characters/necahual/back.svg",
  43178. extra: 930/884,
  43179. bottom: 16/946
  43180. }
  43181. },
  43182. frontUnderwear: {
  43183. height: math.unit(9, "feet"),
  43184. weight: math.unit(467, "lb"),
  43185. name: "Front (Underwear)",
  43186. image: {
  43187. source: "./media/characters/necahual/front-underwear.svg",
  43188. extra: 920/873,
  43189. bottom: 26/946
  43190. }
  43191. },
  43192. frontDressed: {
  43193. height: math.unit(9, "feet"),
  43194. weight: math.unit(467, "lb"),
  43195. name: "Front (Dressed)",
  43196. image: {
  43197. source: "./media/characters/necahual/front-dressed.svg",
  43198. extra: 920/873,
  43199. bottom: 26/946
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Comprsesed",
  43206. height: math.unit(9, "feet")
  43207. },
  43208. {
  43209. name: "Natural",
  43210. height: math.unit(15, "feet"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Boosted",
  43215. height: math.unit(50, "feet")
  43216. },
  43217. {
  43218. name: "Boosted+",
  43219. height: math.unit(150, "feet")
  43220. },
  43221. {
  43222. name: "Max",
  43223. height: math.unit(500, "feet")
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(22 + 1/12, "feet"),
  43232. weight: math.unit(3200, "lb"),
  43233. name: "Front",
  43234. image: {
  43235. source: "./media/characters/theo-acacia/front.svg",
  43236. extra: 1796/1741,
  43237. bottom: 83/1879
  43238. }
  43239. },
  43240. frontUnderwear: {
  43241. height: math.unit(22 + 1/12, "feet"),
  43242. weight: math.unit(3200, "lb"),
  43243. name: "Front (Underwear)",
  43244. image: {
  43245. source: "./media/characters/theo-acacia/front-underwear.svg",
  43246. extra: 1796/1741,
  43247. bottom: 83/1879
  43248. }
  43249. },
  43250. frontNude: {
  43251. height: math.unit(22 + 1/12, "feet"),
  43252. weight: math.unit(3200, "lb"),
  43253. name: "Front (Nude)",
  43254. image: {
  43255. source: "./media/characters/theo-acacia/front-nude.svg",
  43256. extra: 1796/1741,
  43257. bottom: 83/1879
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(22 + 1/12, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(20, "feet"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/astra/front.svg",
  43277. extra: 1850/1714,
  43278. bottom: 106/1956
  43279. }
  43280. },
  43281. frontUndressed: {
  43282. height: math.unit(20, "feet"),
  43283. name: "Front (Undressed)",
  43284. image: {
  43285. source: "./media/characters/astra/front-undressed.svg",
  43286. extra: 1926/1749,
  43287. bottom: 0/1926
  43288. }
  43289. },
  43290. hand: {
  43291. height: math.unit(1.53, "feet"),
  43292. name: "Hand",
  43293. image: {
  43294. source: "./media/characters/astra/hand.svg"
  43295. }
  43296. },
  43297. paw: {
  43298. height: math.unit(1.53, "feet"),
  43299. name: "Paw",
  43300. image: {
  43301. source: "./media/characters/astra/paw.svg"
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Smallest",
  43308. height: math.unit(20, "feet")
  43309. },
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(1e9, "miles"),
  43313. default: true
  43314. },
  43315. {
  43316. name: "Larger",
  43317. height: math.unit(5, "multiverses")
  43318. },
  43319. {
  43320. name: "Largest",
  43321. height: math.unit(1e9, "multiverses")
  43322. },
  43323. ]
  43324. ))
  43325. characterMakers.push(() => makeCharacter(
  43326. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43327. {
  43328. front: {
  43329. height: math.unit(8, "feet"),
  43330. name: "Front",
  43331. image: {
  43332. source: "./media/characters/breanna/front.svg",
  43333. extra: 1912/1632,
  43334. bottom: 33/1945
  43335. }
  43336. },
  43337. },
  43338. [
  43339. {
  43340. name: "Smallest",
  43341. height: math.unit(8, "feet")
  43342. },
  43343. {
  43344. name: "Normal",
  43345. height: math.unit(1, "mile"),
  43346. default: true
  43347. },
  43348. {
  43349. name: "Maximum",
  43350. height: math.unit(1500000000000, "lightyears")
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(5 + 11/12, "feet"),
  43359. weight: math.unit(155, "lb"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/cai/front.svg",
  43363. extra: 1823/1702,
  43364. bottom: 32/1855
  43365. }
  43366. },
  43367. back: {
  43368. height: math.unit(5 + 11/12, "feet"),
  43369. weight: math.unit(155, "lb"),
  43370. name: "Back",
  43371. image: {
  43372. source: "./media/characters/cai/back.svg",
  43373. extra: 1809/1708,
  43374. bottom: 31/1840
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(5 + 11/12, "feet"),
  43382. default: true
  43383. },
  43384. {
  43385. name: "Big",
  43386. height: math.unit(15, "feet")
  43387. },
  43388. {
  43389. name: "Macro",
  43390. height: math.unit(200, "feet")
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(5 + 6/12, "feet"),
  43399. weight: math.unit(160, "lb"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43403. extra: 1227/1174,
  43404. bottom: 37/1264
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Macro",
  43411. height: math.unit(444, "meters"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(18 + 7/12, "feet"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/rex/front.svg",
  43424. extra: 1941/1807,
  43425. bottom: 66/2007
  43426. }
  43427. },
  43428. back: {
  43429. height: math.unit(18 + 7/12, "feet"),
  43430. name: "Back",
  43431. image: {
  43432. source: "./media/characters/rex/back.svg",
  43433. extra: 1937/1822,
  43434. bottom: 42/1979
  43435. }
  43436. },
  43437. boot: {
  43438. height: math.unit(3.45, "feet"),
  43439. name: "Boot",
  43440. image: {
  43441. source: "./media/characters/rex/boot.svg"
  43442. }
  43443. },
  43444. paw: {
  43445. height: math.unit(4.17, "feet"),
  43446. name: "Paw",
  43447. image: {
  43448. source: "./media/characters/rex/paw.svg"
  43449. }
  43450. },
  43451. head: {
  43452. height: math.unit(6.728, "feet"),
  43453. name: "Head",
  43454. image: {
  43455. source: "./media/characters/rex/head.svg"
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Nano",
  43462. height: math.unit(18 + 7/12, "feet")
  43463. },
  43464. {
  43465. name: "Micro",
  43466. height: math.unit(1.5, "megameters")
  43467. },
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(440, "megameters"),
  43471. default: true
  43472. },
  43473. {
  43474. name: "Macro",
  43475. height: math.unit(2.5, "gigameters")
  43476. },
  43477. {
  43478. name: "Gigamacro",
  43479. height: math.unit(2, "galaxies")
  43480. },
  43481. ]
  43482. ))
  43483. characterMakers.push(() => makeCharacter(
  43484. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43485. {
  43486. side: {
  43487. height: math.unit(32, "feet"),
  43488. weight: math.unit(250000, "lb"),
  43489. name: "Side",
  43490. image: {
  43491. source: "./media/characters/silverwing/side.svg",
  43492. extra: 1100/1019,
  43493. bottom: 204/1304
  43494. }
  43495. },
  43496. },
  43497. [
  43498. {
  43499. name: "Normal",
  43500. height: math.unit(32, "feet"),
  43501. default: true
  43502. },
  43503. ]
  43504. ))
  43505. characterMakers.push(() => makeCharacter(
  43506. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43507. {
  43508. front: {
  43509. height: math.unit(6 + 6/12, "feet"),
  43510. weight: math.unit(350, "lb"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/tristan-hawthorne/front.svg",
  43514. extra: 1159/1124,
  43515. bottom: 37/1196
  43516. },
  43517. form: "labrador",
  43518. default: true
  43519. },
  43520. skunkFront: {
  43521. height: math.unit(4 + 6/12, "feet"),
  43522. weight: math.unit(120, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43526. extra: 1609/1551,
  43527. bottom: 169/1778
  43528. },
  43529. form: "skunk",
  43530. default: true
  43531. },
  43532. },
  43533. [
  43534. {
  43535. name: "Normal",
  43536. height: math.unit(6 + 6/12, "feet"),
  43537. form: "labrador",
  43538. default: true
  43539. },
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(4 + 6/12, "feet"),
  43543. form: "skunk",
  43544. default: true
  43545. },
  43546. ],
  43547. {
  43548. "labrador": {
  43549. name: "Labrador",
  43550. default: true
  43551. },
  43552. "skunk": {
  43553. name: "Skunk"
  43554. }
  43555. }
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(5 + 11/12, "feet"),
  43562. weight: math.unit(190, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/mizu/front.svg",
  43566. extra: 1988/1788,
  43567. bottom: 14/2002
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(5 + 11/12, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(1.7, "feet"),
  43584. weight: math.unit(50, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/dechroma/front.svg",
  43588. extra: 1095/859,
  43589. bottom: 64/1159
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Normal",
  43596. height: math.unit(1.7, "feet"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43603. {
  43604. side: {
  43605. height: math.unit(30, "feet"),
  43606. name: "Side",
  43607. image: {
  43608. source: "./media/characters/veluren-thanazel/side.svg",
  43609. extra: 1611/633,
  43610. bottom: 118/1729
  43611. }
  43612. },
  43613. front: {
  43614. height: math.unit(30, "feet"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/veluren-thanazel/front.svg",
  43618. extra: 1486/636,
  43619. bottom: 238/1724
  43620. }
  43621. },
  43622. head: {
  43623. height: math.unit(21.4, "feet"),
  43624. name: "Head",
  43625. image: {
  43626. source: "./media/characters/veluren-thanazel/head.svg"
  43627. }
  43628. },
  43629. genitals: {
  43630. height: math.unit(19.4, "feet"),
  43631. name: "Genitals",
  43632. image: {
  43633. source: "./media/characters/veluren-thanazel/genitals.svg"
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Social",
  43640. height: math.unit(6, "feet")
  43641. },
  43642. {
  43643. name: "Play",
  43644. height: math.unit(12, "feet")
  43645. },
  43646. {
  43647. name: "True",
  43648. height: math.unit(30, "feet"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(7 + 6/12, "feet"),
  43658. weight: math.unit(500, "kg"),
  43659. name: "Front",
  43660. image: {
  43661. source: "./media/characters/arcturas/front.svg",
  43662. extra: 1700/1500,
  43663. bottom: 145/1845
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Normal",
  43670. height: math.unit(7 + 6/12, "feet"),
  43671. default: true
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43677. {
  43678. side: {
  43679. height: math.unit(6, "feet"),
  43680. weight: math.unit(2, "tons"),
  43681. name: "Side",
  43682. image: {
  43683. source: "./media/characters/vitaen/side.svg",
  43684. extra: 1157/617,
  43685. bottom: 122/1279
  43686. }
  43687. },
  43688. },
  43689. [
  43690. {
  43691. name: "Normal",
  43692. height: math.unit(6, "feet"),
  43693. default: true
  43694. },
  43695. ]
  43696. ))
  43697. characterMakers.push(() => makeCharacter(
  43698. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43699. {
  43700. front: {
  43701. height: math.unit(19, "feet"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/fia-dreamweaver/front.svg",
  43705. extra: 1630/1504,
  43706. bottom: 25/1655
  43707. }
  43708. },
  43709. },
  43710. [
  43711. {
  43712. name: "Normal",
  43713. height: math.unit(19, "feet"),
  43714. default: true
  43715. },
  43716. ]
  43717. ))
  43718. characterMakers.push(() => makeCharacter(
  43719. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43720. {
  43721. front: {
  43722. height: math.unit(5 + 4/12, "feet"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/artan/front.svg",
  43726. extra: 1618/1535,
  43727. bottom: 46/1664
  43728. }
  43729. },
  43730. back: {
  43731. height: math.unit(5 + 4/12, "feet"),
  43732. name: "Back",
  43733. image: {
  43734. source: "./media/characters/artan/back.svg",
  43735. extra: 1618/1543,
  43736. bottom: 31/1649
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(5 + 4/12, "feet"),
  43744. default: true
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43750. {
  43751. side: {
  43752. height: math.unit(182, "cm"),
  43753. weight: math.unit(1000, "lb"),
  43754. name: "Side",
  43755. image: {
  43756. source: "./media/characters/silver-dragon/side.svg",
  43757. extra: 710/287,
  43758. bottom: 88/798
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Normal",
  43765. height: math.unit(182, "cm"),
  43766. default: true
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43772. {
  43773. side: {
  43774. height: math.unit(6 + 6/12, "feet"),
  43775. weight: math.unit(1.5, "tons"),
  43776. name: "Side",
  43777. image: {
  43778. source: "./media/characters/zephyr/side.svg",
  43779. extra: 1433/586,
  43780. bottom: 109/1542
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(6 + 6/12, "feet"),
  43788. default: true
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43794. {
  43795. side: {
  43796. height: math.unit(1, "feet"),
  43797. name: "Side",
  43798. image: {
  43799. source: "./media/characters/vixye/side.svg",
  43800. extra: 632/541,
  43801. bottom: 0/632
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(1, "feet"),
  43809. default: true
  43810. },
  43811. {
  43812. name: "True",
  43813. height: math.unit(1e15, "multiverses")
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43819. {
  43820. front: {
  43821. height: math.unit(8 + 2/12, "feet"),
  43822. weight: math.unit(650, "lb"),
  43823. name: "Front",
  43824. image: {
  43825. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43826. extra: 1174/1137,
  43827. bottom: 82/1256
  43828. }
  43829. },
  43830. back: {
  43831. height: math.unit(8 + 2/12, "feet"),
  43832. weight: math.unit(650, "lb"),
  43833. name: "Back",
  43834. image: {
  43835. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43836. extra: 1204/1157,
  43837. bottom: 46/1250
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Wildform",
  43844. height: math.unit(8 + 2/12, "feet"),
  43845. default: true
  43846. },
  43847. ]
  43848. ))
  43849. characterMakers.push(() => makeCharacter(
  43850. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43851. {
  43852. front: {
  43853. height: math.unit(18, "feet"),
  43854. name: "Front",
  43855. image: {
  43856. source: "./media/characters/cyphin/front.svg",
  43857. extra: 970/886,
  43858. bottom: 42/1012
  43859. }
  43860. },
  43861. back: {
  43862. height: math.unit(18, "feet"),
  43863. name: "Back",
  43864. image: {
  43865. source: "./media/characters/cyphin/back.svg",
  43866. extra: 1009/894,
  43867. bottom: 24/1033
  43868. }
  43869. },
  43870. head: {
  43871. height: math.unit(5.05, "feet"),
  43872. name: "Head",
  43873. image: {
  43874. source: "./media/characters/cyphin/head.svg"
  43875. }
  43876. },
  43877. tailbud: {
  43878. height: math.unit(5, "feet"),
  43879. name: "Tailbud",
  43880. image: {
  43881. source: "./media/characters/cyphin/tailbud.svg"
  43882. }
  43883. },
  43884. },
  43885. [
  43886. ]
  43887. ))
  43888. characterMakers.push(() => makeCharacter(
  43889. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43890. {
  43891. side: {
  43892. height: math.unit(10, "feet"),
  43893. weight: math.unit(6, "tons"),
  43894. name: "Side",
  43895. image: {
  43896. source: "./media/characters/raijin/side.svg",
  43897. extra: 1529/613,
  43898. bottom: 337/1866
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Normal",
  43905. height: math.unit(10, "feet"),
  43906. default: true
  43907. },
  43908. ]
  43909. ))
  43910. characterMakers.push(() => makeCharacter(
  43911. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43912. {
  43913. side: {
  43914. height: math.unit(9, "feet"),
  43915. name: "Side",
  43916. image: {
  43917. source: "./media/characters/nilghais/side.svg",
  43918. extra: 1047/744,
  43919. bottom: 91/1138
  43920. }
  43921. },
  43922. head: {
  43923. height: math.unit(3.14, "feet"),
  43924. name: "Head",
  43925. image: {
  43926. source: "./media/characters/nilghais/head.svg"
  43927. }
  43928. },
  43929. mouth: {
  43930. height: math.unit(4.6, "feet"),
  43931. name: "Mouth",
  43932. image: {
  43933. source: "./media/characters/nilghais/mouth.svg"
  43934. }
  43935. },
  43936. wings: {
  43937. height: math.unit(24, "feet"),
  43938. name: "Wings",
  43939. image: {
  43940. source: "./media/characters/nilghais/wings.svg"
  43941. }
  43942. },
  43943. ass: {
  43944. height: math.unit(6.12, "feet"),
  43945. name: "Ass",
  43946. image: {
  43947. source: "./media/characters/nilghais/ass.svg"
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(9, "feet"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43961. {
  43962. regular: {
  43963. height: math.unit(16 + 2/12, "feet"),
  43964. weight: math.unit(2300, "lb"),
  43965. name: "Regular",
  43966. image: {
  43967. source: "./media/characters/zolgar/regular.svg",
  43968. extra: 1246/1004,
  43969. bottom: 124/1370
  43970. }
  43971. },
  43972. boxers: {
  43973. height: math.unit(16 + 2/12, "feet"),
  43974. weight: math.unit(2300, "lb"),
  43975. name: "Boxers",
  43976. image: {
  43977. source: "./media/characters/zolgar/boxers.svg",
  43978. extra: 1246/1004,
  43979. bottom: 124/1370
  43980. }
  43981. },
  43982. armored: {
  43983. height: math.unit(16 + 2/12, "feet"),
  43984. weight: math.unit(2300, "lb"),
  43985. name: "Armored",
  43986. image: {
  43987. source: "./media/characters/zolgar/armored.svg",
  43988. extra: 1246/1004,
  43989. bottom: 124/1370
  43990. }
  43991. },
  43992. goth: {
  43993. height: math.unit(16 + 2/12, "feet"),
  43994. weight: math.unit(2300, "lb"),
  43995. name: "Goth",
  43996. image: {
  43997. source: "./media/characters/zolgar/goth.svg",
  43998. extra: 1246/1004,
  43999. bottom: 124/1370
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Shrunken Down",
  44006. height: math.unit(9 + 2/12, "feet")
  44007. },
  44008. {
  44009. name: "Normal",
  44010. height: math.unit(16 + 2/12, "feet"),
  44011. default: true
  44012. },
  44013. ]
  44014. ))
  44015. characterMakers.push(() => makeCharacter(
  44016. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44017. {
  44018. front: {
  44019. height: math.unit(6, "feet"),
  44020. weight: math.unit(168, "lb"),
  44021. name: "Front",
  44022. image: {
  44023. source: "./media/characters/luca/front.svg",
  44024. extra: 841/667,
  44025. bottom: 102/943
  44026. }
  44027. },
  44028. },
  44029. [
  44030. {
  44031. name: "Normal",
  44032. height: math.unit(6, "feet"),
  44033. default: true
  44034. },
  44035. ]
  44036. ))
  44037. characterMakers.push(() => makeCharacter(
  44038. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44039. {
  44040. side: {
  44041. height: math.unit(7 + 3/12, "feet"),
  44042. weight: math.unit(312, "lb"),
  44043. name: "Side",
  44044. image: {
  44045. source: "./media/characters/zezo/side.svg",
  44046. extra: 1192/1067,
  44047. bottom: 63/1255
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Normal",
  44054. height: math.unit(7 + 3/12, "feet"),
  44055. default: true
  44056. },
  44057. ]
  44058. ))
  44059. characterMakers.push(() => makeCharacter(
  44060. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44061. {
  44062. front: {
  44063. height: math.unit(5 + 5/12, "feet"),
  44064. weight: math.unit(170, "lb"),
  44065. name: "Front",
  44066. image: {
  44067. source: "./media/characters/mayso/front.svg",
  44068. extra: 1215/1108,
  44069. bottom: 16/1231
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Normal",
  44076. height: math.unit(5 + 5/12, "feet"),
  44077. default: true
  44078. },
  44079. ]
  44080. ))
  44081. characterMakers.push(() => makeCharacter(
  44082. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44083. {
  44084. front: {
  44085. height: math.unit(4 + 3/12, "feet"),
  44086. weight: math.unit(80, "lb"),
  44087. name: "Front",
  44088. image: {
  44089. source: "./media/characters/hess/front.svg",
  44090. extra: 1200/1123,
  44091. bottom: 16/1216
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Normal",
  44098. height: math.unit(4 + 3/12, "feet"),
  44099. default: true
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44105. {
  44106. front: {
  44107. height: math.unit(1.9, "meters"),
  44108. name: "Front",
  44109. image: {
  44110. source: "./media/characters/ashgar/front.svg",
  44111. extra: 1177/1146,
  44112. bottom: 99/1276
  44113. }
  44114. },
  44115. back: {
  44116. height: math.unit(1.9, "meters"),
  44117. name: "Back",
  44118. image: {
  44119. source: "./media/characters/ashgar/back.svg",
  44120. extra: 1201/1183,
  44121. bottom: 53/1254
  44122. }
  44123. },
  44124. feral: {
  44125. height: math.unit(1.4, "meters"),
  44126. name: "Feral",
  44127. image: {
  44128. source: "./media/characters/ashgar/feral.svg",
  44129. extra: 370/345,
  44130. bottom: 45/415
  44131. }
  44132. },
  44133. },
  44134. [
  44135. {
  44136. name: "Normal",
  44137. height: math.unit(1.9, "meters"),
  44138. default: true
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44144. {
  44145. regular: {
  44146. height: math.unit(6, "feet"),
  44147. weight: math.unit(220, "lb"),
  44148. name: "Regular",
  44149. image: {
  44150. source: "./media/characters/phillip/regular.svg",
  44151. extra: 1373/1277,
  44152. bottom: 75/1448
  44153. }
  44154. },
  44155. dressed: {
  44156. height: math.unit(6, "feet"),
  44157. weight: math.unit(220, "lb"),
  44158. name: "Dressed",
  44159. image: {
  44160. source: "./media/characters/phillip/dressed.svg",
  44161. extra: 1373/1277,
  44162. bottom: 75/1448
  44163. }
  44164. },
  44165. paw: {
  44166. height: math.unit(1.44, "feet"),
  44167. name: "Paw",
  44168. image: {
  44169. source: "./media/characters/phillip/paw.svg"
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(6, "feet"),
  44177. default: true
  44178. },
  44179. ]
  44180. ))
  44181. characterMakers.push(() => makeCharacter(
  44182. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44183. {
  44184. side: {
  44185. height: math.unit(42, "feet"),
  44186. name: "Side",
  44187. image: {
  44188. source: "./media/characters/uvula/side.svg",
  44189. extra: 683/586,
  44190. bottom: 60/743
  44191. }
  44192. },
  44193. front: {
  44194. height: math.unit(42, "feet"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/uvula/front.svg",
  44198. extra: 705/613,
  44199. bottom: 54/759
  44200. }
  44201. },
  44202. maw: {
  44203. height: math.unit(23.5, "feet"),
  44204. name: "Maw",
  44205. image: {
  44206. source: "./media/characters/uvula/maw.svg"
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Original Size",
  44213. height: math.unit(14, "inches")
  44214. },
  44215. {
  44216. name: "Human Size",
  44217. height: math.unit(6, "feet")
  44218. },
  44219. {
  44220. name: "Big",
  44221. height: math.unit(42, "feet"),
  44222. default: true
  44223. },
  44224. {
  44225. name: "Bigger",
  44226. height: math.unit(100, "feet")
  44227. },
  44228. ]
  44229. ))
  44230. characterMakers.push(() => makeCharacter(
  44231. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44232. {
  44233. front: {
  44234. height: math.unit(5 + 11/12, "feet"),
  44235. name: "Front",
  44236. image: {
  44237. source: "./media/characters/lannah/front.svg",
  44238. extra: 1208/1113,
  44239. bottom: 97/1305
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Normal",
  44246. height: math.unit(5 + 11/12, "feet"),
  44247. default: true
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44253. {
  44254. front: {
  44255. height: math.unit(6 + 3/12, "feet"),
  44256. weight: math.unit(3.5, "tons"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/emberflame/front.svg",
  44260. extra: 1198/672,
  44261. bottom: 82/1280
  44262. }
  44263. },
  44264. side: {
  44265. height: math.unit(6 + 3/12, "feet"),
  44266. weight: math.unit(3.5, "tons"),
  44267. name: "Side",
  44268. image: {
  44269. source: "./media/characters/emberflame/side.svg",
  44270. extra: 938/527,
  44271. bottom: 56/994
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Normal",
  44278. height: math.unit(6 + 3/12, "feet"),
  44279. default: true
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44285. {
  44286. side: {
  44287. height: math.unit(17.5, "feet"),
  44288. weight: math.unit(35, "tons"),
  44289. name: "Side",
  44290. image: {
  44291. source: "./media/characters/sophie-ambrose/side.svg",
  44292. extra: 1573/1242,
  44293. bottom: 71/1644
  44294. }
  44295. },
  44296. maw: {
  44297. height: math.unit(7.4, "feet"),
  44298. name: "Maw",
  44299. image: {
  44300. source: "./media/characters/sophie-ambrose/maw.svg"
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(17.5, "feet"),
  44308. default: true
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(280, "feet"),
  44317. weight: math.unit(550, "tons"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/king-mugi/front.svg",
  44321. extra: 1102/947,
  44322. bottom: 104/1206
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "King Mugi",
  44329. height: math.unit(280, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(64, "meters"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/nova-fox/front.svg",
  44342. extra: 1310/1246,
  44343. bottom: 65/1375
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Macro",
  44350. height: math.unit(64, "meters"),
  44351. default: true
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44357. {
  44358. front: {
  44359. height: math.unit(6 + 3/12, "feet"),
  44360. weight: math.unit(170, "lb"),
  44361. name: "Front",
  44362. image: {
  44363. source: "./media/characters/sam-bat/front.svg",
  44364. extra: 1601/1411,
  44365. bottom: 125/1726
  44366. }
  44367. },
  44368. back: {
  44369. height: math.unit(6 + 3/12, "feet"),
  44370. weight: math.unit(170, "lb"),
  44371. name: "Back",
  44372. image: {
  44373. source: "./media/characters/sam-bat/back.svg",
  44374. extra: 1577/1405,
  44375. bottom: 58/1635
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Normal",
  44382. height: math.unit(6 + 3/12, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44389. {
  44390. front: {
  44391. height: math.unit(59, "feet"),
  44392. weight: math.unit(40000, "lb"),
  44393. name: "Front",
  44394. image: {
  44395. source: "./media/characters/inari/front.svg",
  44396. extra: 1884/1350,
  44397. bottom: 95/1979
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Gigantamax",
  44404. height: math.unit(59, "feet"),
  44405. default: true
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44411. {
  44412. front: {
  44413. height: math.unit(5 + 8/12, "feet"),
  44414. name: "Front",
  44415. image: {
  44416. source: "./media/characters/elizabeth/front.svg",
  44417. extra: 1395/1298,
  44418. bottom: 54/1449
  44419. }
  44420. },
  44421. mouth: {
  44422. height: math.unit(1.97, "feet"),
  44423. name: "Mouth",
  44424. image: {
  44425. source: "./media/characters/elizabeth/mouth.svg"
  44426. }
  44427. },
  44428. foot: {
  44429. height: math.unit(1.17, "feet"),
  44430. name: "Foot",
  44431. image: {
  44432. source: "./media/characters/elizabeth/foot.svg"
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(5 + 8/12, "feet"),
  44440. default: true
  44441. },
  44442. {
  44443. name: "Minimacro",
  44444. height: math.unit(18, "feet")
  44445. },
  44446. {
  44447. name: "Macro",
  44448. height: math.unit(180, "feet")
  44449. },
  44450. ]
  44451. ))
  44452. characterMakers.push(() => makeCharacter(
  44453. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44454. {
  44455. front: {
  44456. height: math.unit(5 + 2/12, "feet"),
  44457. name: "Front",
  44458. image: {
  44459. source: "./media/characters/october-gossamer/front.svg",
  44460. extra: 505/454,
  44461. bottom: 7/512
  44462. }
  44463. },
  44464. back: {
  44465. height: math.unit(5 + 2/12, "feet"),
  44466. name: "Back",
  44467. image: {
  44468. source: "./media/characters/october-gossamer/back.svg",
  44469. extra: 501/454,
  44470. bottom: 11/512
  44471. }
  44472. },
  44473. },
  44474. [
  44475. {
  44476. name: "Normal",
  44477. height: math.unit(5 + 2/12, "feet"),
  44478. default: true
  44479. },
  44480. ]
  44481. ))
  44482. characterMakers.push(() => makeCharacter(
  44483. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44484. {
  44485. front: {
  44486. height: math.unit(5, "feet"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/epiglottis/front.svg",
  44490. extra: 923/849,
  44491. bottom: 17/940
  44492. }
  44493. },
  44494. },
  44495. [
  44496. {
  44497. name: "Original Size",
  44498. height: math.unit(10, "inches")
  44499. },
  44500. {
  44501. name: "Human Size",
  44502. height: math.unit(5, "feet"),
  44503. default: true
  44504. },
  44505. {
  44506. name: "Big",
  44507. height: math.unit(25, "feet")
  44508. },
  44509. {
  44510. name: "Bigger",
  44511. height: math.unit(50, "feet")
  44512. },
  44513. {
  44514. name: "oh lawd",
  44515. height: math.unit(75, "feet")
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(2 + 4/12, "feet"),
  44524. weight: math.unit(60, "lb"),
  44525. name: "Front",
  44526. image: {
  44527. source: "./media/characters/lerm/front.svg",
  44528. extra: 796/790,
  44529. bottom: 79/875
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Normal",
  44536. height: math.unit(2 + 4/12, "feet"),
  44537. default: true
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(5.5, "feet"),
  44546. weight: math.unit(130, "lb"),
  44547. name: "Front",
  44548. image: {
  44549. source: "./media/characters/xena-nebadon/front.svg",
  44550. extra: 1828/1730,
  44551. bottom: 79/1907
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Tiny Puppy",
  44558. height: math.unit(3, "inches")
  44559. },
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(5.5, "feet"),
  44563. default: true
  44564. },
  44565. {
  44566. name: "Lotta Lady",
  44567. height: math.unit(12, "feet")
  44568. },
  44569. {
  44570. name: "Pretty Big",
  44571. height: math.unit(100, "feet")
  44572. },
  44573. {
  44574. name: "Big",
  44575. height: math.unit(500, "feet")
  44576. },
  44577. {
  44578. name: "Skyscraper Toys",
  44579. height: math.unit(2500, "feet")
  44580. },
  44581. {
  44582. name: "Plane Catcher",
  44583. height: math.unit(8, "miles")
  44584. },
  44585. {
  44586. name: "Planet Toys",
  44587. height: math.unit(15, "earths")
  44588. },
  44589. {
  44590. name: "Stardust",
  44591. height: math.unit(0.25, "galaxies")
  44592. },
  44593. {
  44594. name: "Snacks",
  44595. height: math.unit(70, "universes")
  44596. },
  44597. ]
  44598. ))
  44599. characterMakers.push(() => makeCharacter(
  44600. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44601. {
  44602. front: {
  44603. height: math.unit(1.6, "meters"),
  44604. weight: math.unit(60, "kg"),
  44605. name: "Front",
  44606. image: {
  44607. source: "./media/characters/bounty/front.svg",
  44608. extra: 1426/1308,
  44609. bottom: 15/1441
  44610. }
  44611. },
  44612. back: {
  44613. height: math.unit(1.6, "meters"),
  44614. weight: math.unit(60, "kg"),
  44615. name: "Back",
  44616. image: {
  44617. source: "./media/characters/bounty/back.svg",
  44618. extra: 1417/1307,
  44619. bottom: 8/1425
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(1.6, "meters"),
  44627. default: true
  44628. },
  44629. {
  44630. name: "Macro",
  44631. height: math.unit(300, "meters")
  44632. },
  44633. ]
  44634. ))
  44635. characterMakers.push(() => makeCharacter(
  44636. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44637. {
  44638. front: {
  44639. height: math.unit(2 + 8/12, "feet"),
  44640. weight: math.unit(15, "lb"),
  44641. name: "Front",
  44642. image: {
  44643. source: "./media/characters/mochi/front.svg",
  44644. extra: 1022/852,
  44645. bottom: 435/1457
  44646. }
  44647. },
  44648. back: {
  44649. height: math.unit(2 + 8/12, "feet"),
  44650. weight: math.unit(15, "lb"),
  44651. name: "Back",
  44652. image: {
  44653. source: "./media/characters/mochi/back.svg",
  44654. extra: 1335/1119,
  44655. bottom: 39/1374
  44656. }
  44657. },
  44658. bird: {
  44659. height: math.unit(2 + 8/12, "feet"),
  44660. weight: math.unit(15, "lb"),
  44661. name: "Bird",
  44662. image: {
  44663. source: "./media/characters/mochi/bird.svg",
  44664. extra: 1251/1113,
  44665. bottom: 178/1429
  44666. }
  44667. },
  44668. kaiju: {
  44669. height: math.unit(154, "feet"),
  44670. weight: math.unit(1e7, "lb"),
  44671. name: "Kaiju",
  44672. image: {
  44673. source: "./media/characters/mochi/kaiju.svg",
  44674. extra: 460/324,
  44675. bottom: 40/500
  44676. }
  44677. },
  44678. head: {
  44679. height: math.unit(1.21, "feet"),
  44680. name: "Head",
  44681. image: {
  44682. source: "./media/characters/mochi/head.svg"
  44683. }
  44684. },
  44685. alternateTail: {
  44686. height: math.unit(2 + 8/12, "feet"),
  44687. weight: math.unit(45, "lb"),
  44688. name: "Alternate Tail",
  44689. image: {
  44690. source: "./media/characters/mochi/alternate-tail.svg",
  44691. extra: 139/76,
  44692. bottom: 45/184
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "Micro",
  44699. height: math.unit(2, "inches")
  44700. },
  44701. {
  44702. name: "Normal",
  44703. height: math.unit(2 + 8/12, "feet"),
  44704. default: true
  44705. },
  44706. {
  44707. name: "Macro",
  44708. height: math.unit(106, "feet")
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44714. {
  44715. front: {
  44716. height: math.unit(5.67, "feet"),
  44717. weight: math.unit(135, "lb"),
  44718. name: "Front",
  44719. image: {
  44720. source: "./media/characters/sarel/front.svg",
  44721. extra: 865/788,
  44722. bottom: 97/962
  44723. }
  44724. },
  44725. back: {
  44726. height: math.unit(5.67, "feet"),
  44727. weight: math.unit(135, "lb"),
  44728. name: "Back",
  44729. image: {
  44730. source: "./media/characters/sarel/back.svg",
  44731. extra: 857/777,
  44732. bottom: 32/889
  44733. }
  44734. },
  44735. chozoan: {
  44736. height: math.unit(5.67, "feet"),
  44737. weight: math.unit(135, "lb"),
  44738. name: "Chozoan",
  44739. image: {
  44740. source: "./media/characters/sarel/chozoan.svg",
  44741. extra: 865/788,
  44742. bottom: 97/962
  44743. }
  44744. },
  44745. current: {
  44746. height: math.unit(5.67, "feet"),
  44747. weight: math.unit(135, "lb"),
  44748. name: "Current",
  44749. image: {
  44750. source: "./media/characters/sarel/current.svg",
  44751. extra: 865/788,
  44752. bottom: 97/962
  44753. }
  44754. },
  44755. head: {
  44756. height: math.unit(1.77, "feet"),
  44757. name: "Head",
  44758. image: {
  44759. source: "./media/characters/sarel/head.svg"
  44760. }
  44761. },
  44762. claws: {
  44763. height: math.unit(1.8, "feet"),
  44764. name: "Claws",
  44765. image: {
  44766. source: "./media/characters/sarel/claws.svg"
  44767. }
  44768. },
  44769. clawsAlt: {
  44770. height: math.unit(1.8, "feet"),
  44771. name: "Claws-alt",
  44772. image: {
  44773. source: "./media/characters/sarel/claws-alt.svg"
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(5.67, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(5500, "feet"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/alyonia/front.svg",
  44793. extra: 1200/1135,
  44794. bottom: 29/1229
  44795. }
  44796. },
  44797. back: {
  44798. height: math.unit(5500, "feet"),
  44799. name: "Back",
  44800. image: {
  44801. source: "./media/characters/alyonia/back.svg",
  44802. extra: 1205/1138,
  44803. bottom: 10/1215
  44804. }
  44805. },
  44806. },
  44807. [
  44808. {
  44809. name: "Small",
  44810. height: math.unit(10, "feet")
  44811. },
  44812. {
  44813. name: "Macro",
  44814. height: math.unit(500, "feet")
  44815. },
  44816. {
  44817. name: "Mega Macro",
  44818. height: math.unit(5500, "feet"),
  44819. default: true
  44820. },
  44821. {
  44822. name: "Mega Macro+",
  44823. height: math.unit(500000, "feet")
  44824. },
  44825. {
  44826. name: "Giga Macro",
  44827. height: math.unit(3000, "miles")
  44828. },
  44829. {
  44830. name: "Tera Macro",
  44831. height: math.unit(2.8e6, "miles")
  44832. },
  44833. {
  44834. name: "Galactic",
  44835. height: math.unit(120000, "lightyears")
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44841. {
  44842. werewolf: {
  44843. height: math.unit(8, "feet"),
  44844. weight: math.unit(425, "lb"),
  44845. name: "Werewolf",
  44846. image: {
  44847. source: "./media/characters/autumn/werewolf.svg",
  44848. extra: 2154/2031,
  44849. bottom: 160/2314
  44850. }
  44851. },
  44852. human: {
  44853. height: math.unit(5 + 8/12, "feet"),
  44854. weight: math.unit(150, "lb"),
  44855. name: "Human",
  44856. image: {
  44857. source: "./media/characters/autumn/human.svg",
  44858. extra: 1200/1149,
  44859. bottom: 30/1230
  44860. }
  44861. },
  44862. },
  44863. [
  44864. {
  44865. name: "Normal",
  44866. height: math.unit(8, "feet"),
  44867. default: true
  44868. },
  44869. ]
  44870. ))
  44871. characterMakers.push(() => makeCharacter(
  44872. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44873. {
  44874. front: {
  44875. height: math.unit(8 + 5/12, "feet"),
  44876. weight: math.unit(825, "lb"),
  44877. name: "Front",
  44878. image: {
  44879. source: "./media/characters/cobalt-charizard/front.svg",
  44880. extra: 1268/1155,
  44881. bottom: 122/1390
  44882. }
  44883. },
  44884. side: {
  44885. height: math.unit(8 + 5/12, "feet"),
  44886. weight: math.unit(825, "lb"),
  44887. name: "Side",
  44888. image: {
  44889. source: "./media/characters/cobalt-charizard/side.svg",
  44890. extra: 1348/1257,
  44891. bottom: 58/1406
  44892. }
  44893. },
  44894. gMax: {
  44895. height: math.unit(134 + 11/12, "feet"),
  44896. name: "G-Max",
  44897. image: {
  44898. source: "./media/characters/cobalt-charizard/g-max.svg",
  44899. extra: 1835/1541,
  44900. bottom: 151/1986
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Normal",
  44907. height: math.unit(8 + 5/12, "feet"),
  44908. default: true
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44914. {
  44915. front: {
  44916. height: math.unit(6 + 3/12, "feet"),
  44917. weight: math.unit(210, "lb"),
  44918. name: "Front",
  44919. image: {
  44920. source: "./media/characters/stella/front.svg",
  44921. extra: 3549/3335,
  44922. bottom: 51/3600
  44923. }
  44924. },
  44925. },
  44926. [
  44927. {
  44928. name: "Normal",
  44929. height: math.unit(6 + 3/12, "feet"),
  44930. default: true
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44936. {
  44937. front: {
  44938. height: math.unit(5, "feet"),
  44939. weight: math.unit(90, "lb"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/riley-bishop/front.svg",
  44943. extra: 1450/1428,
  44944. bottom: 152/1602
  44945. }
  44946. },
  44947. },
  44948. [
  44949. {
  44950. name: "Normal",
  44951. height: math.unit(5, "feet"),
  44952. default: true
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44958. {
  44959. side: {
  44960. height: math.unit(8 + 2/12, "feet"),
  44961. weight: math.unit(500, "kg"),
  44962. name: "Side",
  44963. image: {
  44964. source: "./media/characters/theo-arcanine/side.svg",
  44965. extra: 1342/1074,
  44966. bottom: 111/1453
  44967. }
  44968. },
  44969. },
  44970. [
  44971. {
  44972. name: "Normal",
  44973. height: math.unit(8 + 2/12, "feet"),
  44974. default: true
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(4, "feet"),
  44983. name: "Front",
  44984. image: {
  44985. source: "./media/characters/kali/front.svg",
  44986. extra: 1921/1357,
  44987. bottom: 70/1991
  44988. }
  44989. },
  44990. },
  44991. [
  44992. {
  44993. name: "Normal",
  44994. height: math.unit(4, "feet"),
  44995. default: true
  44996. },
  44997. {
  44998. name: "Macro",
  44999. height: math.unit(32, "meters")
  45000. },
  45001. {
  45002. name: "Macro+",
  45003. height: math.unit(150, "meters")
  45004. },
  45005. {
  45006. name: "Megamacro",
  45007. height: math.unit(7500, "meters")
  45008. },
  45009. {
  45010. name: "Megamacro+",
  45011. height: math.unit(80, "kilometers")
  45012. },
  45013. ]
  45014. ))
  45015. characterMakers.push(() => makeCharacter(
  45016. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45017. {
  45018. side: {
  45019. height: math.unit(5 + 11/12, "feet"),
  45020. weight: math.unit(236, "lb"),
  45021. name: "Side",
  45022. image: {
  45023. source: "./media/characters/gapp/side.svg",
  45024. extra: 775/340,
  45025. bottom: 58/833
  45026. }
  45027. },
  45028. mouth: {
  45029. height: math.unit(2.98, "feet"),
  45030. name: "Mouth",
  45031. image: {
  45032. source: "./media/characters/gapp/mouth.svg"
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(5 + 1/12, "feet"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45046. {
  45047. front: {
  45048. height: math.unit(6, "feet"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/persephone/front.svg",
  45052. extra: 1895/1717,
  45053. bottom: 96/1991
  45054. }
  45055. },
  45056. back: {
  45057. height: math.unit(6, "feet"),
  45058. name: "Back",
  45059. image: {
  45060. source: "./media/characters/persephone/back.svg",
  45061. extra: 1868/1679,
  45062. bottom: 26/1894
  45063. }
  45064. },
  45065. casual: {
  45066. height: math.unit(6, "feet"),
  45067. name: "Casual",
  45068. image: {
  45069. source: "./media/characters/persephone/casual.svg",
  45070. extra: 1713/1541,
  45071. bottom: 76/1789
  45072. }
  45073. },
  45074. },
  45075. [
  45076. {
  45077. name: "Human Size",
  45078. height: math.unit(6, "feet")
  45079. },
  45080. {
  45081. name: "Big Steppy",
  45082. height: math.unit(600, "meters"),
  45083. default: true
  45084. },
  45085. {
  45086. name: "Galaxy Brain",
  45087. height: math.unit(1, "zettameter")
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45093. {
  45094. front: {
  45095. height: math.unit(1.85, "meters"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/riley-foxthing/front.svg",
  45099. extra: 1495/1354,
  45100. bottom: 122/1617
  45101. }
  45102. },
  45103. frontAlt: {
  45104. height: math.unit(1.85, "meters"),
  45105. name: "Front (Alt)",
  45106. image: {
  45107. source: "./media/characters/riley-foxthing/front-alt.svg",
  45108. extra: 1572/1389,
  45109. bottom: 116/1688
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Normal Sized",
  45116. height: math.unit(1.85, "meters"),
  45117. default: true
  45118. },
  45119. {
  45120. name: "Quite Sizable",
  45121. height: math.unit(5, "meters")
  45122. },
  45123. {
  45124. name: "Rather Large",
  45125. height: math.unit(20, "meters")
  45126. },
  45127. {
  45128. name: "Macro",
  45129. height: math.unit(450, "meters")
  45130. },
  45131. {
  45132. name: "Giga",
  45133. height: math.unit(5, "km")
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(6, "feet"),
  45142. weight: math.unit(200, "lb"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/blizzard/front.svg",
  45146. extra: 1136/990,
  45147. bottom: 136/1272
  45148. }
  45149. },
  45150. back: {
  45151. height: math.unit(6, "feet"),
  45152. weight: math.unit(200, "lb"),
  45153. name: "Back",
  45154. image: {
  45155. source: "./media/characters/blizzard/back.svg",
  45156. extra: 1175/1034,
  45157. bottom: 97/1272
  45158. }
  45159. },
  45160. sitting: {
  45161. height: math.unit(3.725, "feet"),
  45162. weight: math.unit(200, "lb"),
  45163. name: "Sitting",
  45164. image: {
  45165. source: "./media/characters/blizzard/sitting.svg",
  45166. extra: 581/485,
  45167. bottom: 90/671
  45168. }
  45169. },
  45170. frontWizard: {
  45171. height: math.unit(7.9, "feet"),
  45172. weight: math.unit(200, "lb"),
  45173. name: "Front (Wizard)",
  45174. image: {
  45175. source: "./media/characters/blizzard/front-wizard.svg"
  45176. }
  45177. },
  45178. backWizard: {
  45179. height: math.unit(7.9, "feet"),
  45180. weight: math.unit(200, "lb"),
  45181. name: "Back (Wizard)",
  45182. image: {
  45183. source: "./media/characters/blizzard/back-wizard.svg"
  45184. }
  45185. },
  45186. frontNsfw: {
  45187. height: math.unit(6, "feet"),
  45188. weight: math.unit(200, "lb"),
  45189. name: "Front (NSFW)",
  45190. image: {
  45191. source: "./media/characters/blizzard/front-nsfw.svg",
  45192. extra: 1136/990,
  45193. bottom: 136/1272
  45194. }
  45195. },
  45196. backNsfw: {
  45197. height: math.unit(6, "feet"),
  45198. weight: math.unit(200, "lb"),
  45199. name: "Back (NSFW)",
  45200. image: {
  45201. source: "./media/characters/blizzard/back-nsfw.svg",
  45202. extra: 1175/1034,
  45203. bottom: 97/1272
  45204. }
  45205. },
  45206. sittingNsfw: {
  45207. height: math.unit(3.725, "feet"),
  45208. weight: math.unit(200, "lb"),
  45209. name: "Sitting (NSFW)",
  45210. image: {
  45211. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45212. extra: 581/485,
  45213. bottom: 90/671
  45214. }
  45215. },
  45216. wizardFrontNsfw: {
  45217. height: math.unit(7.9, "feet"),
  45218. weight: math.unit(200, "lb"),
  45219. name: "Wizard (Front, NSFW)",
  45220. image: {
  45221. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45222. }
  45223. },
  45224. },
  45225. [
  45226. {
  45227. name: "Normal",
  45228. height: math.unit(6, "feet"),
  45229. default: true
  45230. },
  45231. ]
  45232. ))
  45233. characterMakers.push(() => makeCharacter(
  45234. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45235. {
  45236. front: {
  45237. height: math.unit(5 + 2/12, "feet"),
  45238. name: "Front",
  45239. image: {
  45240. source: "./media/characters/lumi/front.svg",
  45241. extra: 1328/1268,
  45242. bottom: 103/1431
  45243. }
  45244. },
  45245. back: {
  45246. height: math.unit(5 + 2/12, "feet"),
  45247. name: "Back",
  45248. image: {
  45249. source: "./media/characters/lumi/back.svg",
  45250. extra: 1381/1327,
  45251. bottom: 43/1424
  45252. }
  45253. },
  45254. },
  45255. [
  45256. {
  45257. name: "Normal",
  45258. height: math.unit(5 + 2/12, "feet"),
  45259. default: true
  45260. },
  45261. ]
  45262. ))
  45263. characterMakers.push(() => makeCharacter(
  45264. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45265. {
  45266. front: {
  45267. height: math.unit(5 + 9/12, "feet"),
  45268. name: "Front",
  45269. image: {
  45270. source: "./media/characters/aliya-cotton/front.svg",
  45271. extra: 577/564,
  45272. bottom: 29/606
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(5 + 9/12, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(2.7, "meters"),
  45289. weight: math.unit(25000, "lb"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/noah-luxray/front.svg",
  45293. extra: 1644/825,
  45294. bottom: 339/1983
  45295. }
  45296. },
  45297. side: {
  45298. height: math.unit(2.97, "meters"),
  45299. weight: math.unit(25000, "lb"),
  45300. name: "Side",
  45301. image: {
  45302. source: "./media/characters/noah-luxray/side.svg",
  45303. extra: 1319/650,
  45304. bottom: 163/1482
  45305. }
  45306. },
  45307. dick: {
  45308. height: math.unit(7.4, "feet"),
  45309. weight: math.unit(2500, "lb"),
  45310. name: "Dick",
  45311. image: {
  45312. source: "./media/characters/noah-luxray/dick.svg"
  45313. }
  45314. },
  45315. dickAlt: {
  45316. height: math.unit(10.83, "feet"),
  45317. weight: math.unit(2500, "lb"),
  45318. name: "Dick-alt",
  45319. image: {
  45320. source: "./media/characters/noah-luxray/dick-alt.svg"
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "BIG",
  45327. height: math.unit(2.7, "meters"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45334. {
  45335. standing: {
  45336. height: math.unit(183, "cm"),
  45337. weight: math.unit(68, "kg"),
  45338. name: "Standing",
  45339. image: {
  45340. source: "./media/characters/arion/standing.svg",
  45341. extra: 1869/1807,
  45342. bottom: 93/1962
  45343. }
  45344. },
  45345. reclining: {
  45346. height: math.unit(70.5, "cm"),
  45347. weight: math.unit(68, "lb"),
  45348. name: "Reclining",
  45349. image: {
  45350. source: "./media/characters/arion/reclining.svg",
  45351. extra: 937/870,
  45352. bottom: 63/1000
  45353. }
  45354. },
  45355. },
  45356. [
  45357. {
  45358. name: "Colossus Size, Low",
  45359. height: math.unit(33, "meters"),
  45360. default: true
  45361. },
  45362. {
  45363. name: "Colossus Size, Mid",
  45364. height: math.unit(52, "meters")
  45365. },
  45366. {
  45367. name: "Colossus Size, High",
  45368. height: math.unit(60, "meters")
  45369. },
  45370. {
  45371. name: "Titan Size, Low",
  45372. height: math.unit(91, "meters"),
  45373. },
  45374. {
  45375. name: "Titan Size, Mid",
  45376. height: math.unit(122, "meters")
  45377. },
  45378. {
  45379. name: "Titan Size, High",
  45380. height: math.unit(162, "meters")
  45381. },
  45382. ]
  45383. ))
  45384. characterMakers.push(() => makeCharacter(
  45385. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45386. {
  45387. front: {
  45388. height: math.unit(53, "meters"),
  45389. name: "Front",
  45390. image: {
  45391. source: "./media/characters/stellar-marbey/front.svg",
  45392. extra: 1913/1805,
  45393. bottom: 92/2005
  45394. }
  45395. },
  45396. back: {
  45397. height: math.unit(53, "meters"),
  45398. name: "Back",
  45399. image: {
  45400. source: "./media/characters/stellar-marbey/back.svg",
  45401. extra: 1960/1851,
  45402. bottom: 28/1988
  45403. }
  45404. },
  45405. mouth: {
  45406. height: math.unit(3.5, "meters"),
  45407. name: "Mouth",
  45408. image: {
  45409. source: "./media/characters/stellar-marbey/mouth.svg"
  45410. }
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Macro",
  45416. height: math.unit(53, "meters"),
  45417. default: true
  45418. },
  45419. ]
  45420. ))
  45421. characterMakers.push(() => makeCharacter(
  45422. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45423. {
  45424. front: {
  45425. height: math.unit(8 + 1/12, "feet"),
  45426. weight: math.unit(233, "lb"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/matsu/front.svg",
  45430. extra: 832/772,
  45431. bottom: 40/872
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(8 + 1/12, "feet"),
  45436. weight: math.unit(233, "lb"),
  45437. name: "Back",
  45438. image: {
  45439. source: "./media/characters/matsu/back.svg",
  45440. extra: 839/780,
  45441. bottom: 47/886
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Normal",
  45448. height: math.unit(8 + 1/12, "feet"),
  45449. default: true
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(4, "feet"),
  45458. weight: math.unit(148, "lb"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/thiz/front.svg",
  45462. extra: 1913/1748,
  45463. bottom: 62/1975
  45464. }
  45465. },
  45466. },
  45467. [
  45468. {
  45469. name: "Normal",
  45470. height: math.unit(4, "feet"),
  45471. default: true
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(7 + 6/12, "feet"),
  45480. weight: math.unit(267, "lb"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/marcel/front.svg",
  45484. extra: 1221/1096,
  45485. bottom: 76/1297
  45486. }
  45487. },
  45488. },
  45489. [
  45490. {
  45491. name: "Normal",
  45492. height: math.unit(7 + 6/12, "feet"),
  45493. default: true
  45494. },
  45495. ]
  45496. ))
  45497. characterMakers.push(() => makeCharacter(
  45498. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45499. {
  45500. side: {
  45501. height: math.unit(42, "meters"),
  45502. name: "Side",
  45503. image: {
  45504. source: "./media/characters/flake/side.svg",
  45505. extra: 1525/1306,
  45506. bottom: 209/1734
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(42, "meters"),
  45514. default: true
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45520. {
  45521. dressed: {
  45522. height: math.unit(6 + 4/12, "feet"),
  45523. weight: math.unit(520, "lb"),
  45524. name: "Dressed",
  45525. image: {
  45526. source: "./media/characters/someonne/dressed.svg",
  45527. extra: 1020/1010,
  45528. bottom: 178/1198
  45529. }
  45530. },
  45531. undressed: {
  45532. height: math.unit(6 + 4/12, "feet"),
  45533. weight: math.unit(520, "lb"),
  45534. name: "Undressed",
  45535. image: {
  45536. source: "./media/characters/someonne/undressed.svg",
  45537. extra: 1019/1014,
  45538. bottom: 169/1188
  45539. }
  45540. },
  45541. },
  45542. [
  45543. {
  45544. name: "Normal",
  45545. height: math.unit(6 + 4/12, "feet"),
  45546. default: true
  45547. },
  45548. ]
  45549. ))
  45550. characterMakers.push(() => makeCharacter(
  45551. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45552. {
  45553. front: {
  45554. height: math.unit(3, "feet"),
  45555. weight: math.unit(30, "lb"),
  45556. name: "Front",
  45557. image: {
  45558. source: "./media/characters/till/front.svg",
  45559. extra: 892/823,
  45560. bottom: 55/947
  45561. }
  45562. },
  45563. },
  45564. [
  45565. {
  45566. name: "Normal",
  45567. height: math.unit(3, "feet"),
  45568. default: true
  45569. },
  45570. ]
  45571. ))
  45572. characterMakers.push(() => makeCharacter(
  45573. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45574. {
  45575. front: {
  45576. height: math.unit(9 + 8/12, "feet"),
  45577. weight: math.unit(800, "lb"),
  45578. name: "Front",
  45579. image: {
  45580. source: "./media/characters/sydney-heki/front.svg",
  45581. extra: 1360/1300,
  45582. bottom: 22/1382
  45583. }
  45584. },
  45585. back: {
  45586. height: math.unit(9 + 8/12, "feet"),
  45587. weight: math.unit(800, "lb"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/sydney-heki/back.svg",
  45591. extra: 1356/1293,
  45592. bottom: 12/1368
  45593. }
  45594. },
  45595. frontDressed: {
  45596. height: math.unit(9 + 8/12, "feet"),
  45597. weight: math.unit(800, "lb"),
  45598. name: "Front-dressed",
  45599. image: {
  45600. source: "./media/characters/sydney-heki/front-dressed.svg",
  45601. extra: 1360/1300,
  45602. bottom: 22/1382
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(9 + 8/12, "feet"),
  45610. default: true
  45611. },
  45612. {
  45613. name: "Macro",
  45614. height: math.unit(500, "feet")
  45615. },
  45616. {
  45617. name: "Megamacro",
  45618. height: math.unit(3.6, "miles")
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(200, "cm"),
  45627. weight: math.unit(250, "lb"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/fowler-karlsson/front.svg",
  45631. extra: 897/845,
  45632. bottom: 123/1020
  45633. }
  45634. },
  45635. back: {
  45636. height: math.unit(200, "cm"),
  45637. weight: math.unit(250, "lb"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/fowler-karlsson/back.svg",
  45641. extra: 999/944,
  45642. bottom: 26/1025
  45643. }
  45644. },
  45645. dick: {
  45646. height: math.unit(1.92, "feet"),
  45647. weight: math.unit(150, "lb"),
  45648. name: "Dick",
  45649. image: {
  45650. source: "./media/characters/fowler-karlsson/dick.svg"
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(200, "cm"),
  45658. default: true
  45659. },
  45660. {
  45661. name: "Smaller Macro",
  45662. height: math.unit(90, "m")
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(150, "m")
  45667. },
  45668. {
  45669. name: "Bigger Macro",
  45670. height: math.unit(300, "m")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45676. {
  45677. side: {
  45678. height: math.unit(8 + 2/12, "feet"),
  45679. weight: math.unit(1, "tonne"),
  45680. name: "Side",
  45681. image: {
  45682. source: "./media/characters/rylide/side.svg",
  45683. extra: 1318/1034,
  45684. bottom: 106/1424
  45685. }
  45686. },
  45687. sitting: {
  45688. height: math.unit(303, "cm"),
  45689. weight: math.unit(1, "tonne"),
  45690. name: "Sitting",
  45691. image: {
  45692. source: "./media/characters/rylide/sitting.svg",
  45693. extra: 1303/1103,
  45694. bottom: 36/1339
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(8 + 2/12, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45708. {
  45709. front: {
  45710. height: math.unit(5 + 10/12, "feet"),
  45711. weight: math.unit(160, "lb"),
  45712. name: "Front",
  45713. image: {
  45714. source: "./media/characters/pudask/front.svg",
  45715. extra: 1616/1590,
  45716. bottom: 161/1777
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Ferret Height",
  45723. height: math.unit(2 + 5/12, "feet")
  45724. },
  45725. {
  45726. name: "Canon Height",
  45727. height: math.unit(5 + 10/12, "feet"),
  45728. default: true
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45734. {
  45735. front: {
  45736. height: math.unit(3 + 6/12, "feet"),
  45737. weight: math.unit(60, "lb"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/ramita/front.svg",
  45741. extra: 1402/1232,
  45742. bottom: 62/1464
  45743. }
  45744. },
  45745. dressed: {
  45746. height: math.unit(3 + 6/12, "feet"),
  45747. weight: math.unit(60, "lb"),
  45748. name: "Dressed",
  45749. image: {
  45750. source: "./media/characters/ramita/dressed.svg",
  45751. extra: 1534/1249,
  45752. bottom: 50/1584
  45753. }
  45754. },
  45755. },
  45756. [
  45757. {
  45758. name: "Normal",
  45759. height: math.unit(3 + 6/12, "feet"),
  45760. default: true
  45761. },
  45762. ]
  45763. ))
  45764. characterMakers.push(() => makeCharacter(
  45765. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45766. {
  45767. front: {
  45768. height: math.unit(8, "feet"),
  45769. name: "Front",
  45770. image: {
  45771. source: "./media/characters/ark/front.svg",
  45772. extra: 772/693,
  45773. bottom: 45/817
  45774. }
  45775. },
  45776. },
  45777. [
  45778. {
  45779. name: "Normal",
  45780. height: math.unit(8, "feet"),
  45781. default: true
  45782. },
  45783. ]
  45784. ))
  45785. characterMakers.push(() => makeCharacter(
  45786. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45787. {
  45788. front: {
  45789. height: math.unit(6, "feet"),
  45790. weight: math.unit(250, "lb"),
  45791. volume: math.unit(5/8, "gallons"),
  45792. name: "Front",
  45793. image: {
  45794. source: "./media/characters/ludwig-horn/front.svg",
  45795. extra: 1782/1635,
  45796. bottom: 96/1878
  45797. }
  45798. },
  45799. back: {
  45800. height: math.unit(6, "feet"),
  45801. weight: math.unit(250, "lb"),
  45802. volume: math.unit(5/8, "gallons"),
  45803. name: "Back",
  45804. image: {
  45805. source: "./media/characters/ludwig-horn/back.svg",
  45806. extra: 1874/1729,
  45807. bottom: 27/1901
  45808. }
  45809. },
  45810. dick: {
  45811. height: math.unit(1.05, "feet"),
  45812. weight: math.unit(15, "lb"),
  45813. volume: math.unit(5/8, "gallons"),
  45814. name: "Dick",
  45815. image: {
  45816. source: "./media/characters/ludwig-horn/dick.svg"
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Small",
  45823. height: math.unit(6, "feet")
  45824. },
  45825. {
  45826. name: "Typical",
  45827. height: math.unit(12, "feet"),
  45828. default: true
  45829. },
  45830. {
  45831. name: "Building",
  45832. height: math.unit(80, "feet")
  45833. },
  45834. {
  45835. name: "Town",
  45836. height: math.unit(800, "feet")
  45837. },
  45838. {
  45839. name: "Kingdom",
  45840. height: math.unit(80000, "feet")
  45841. },
  45842. {
  45843. name: "Planet",
  45844. height: math.unit(8000000, "feet")
  45845. },
  45846. {
  45847. name: "Universe",
  45848. height: math.unit(8000000000, "feet")
  45849. },
  45850. {
  45851. name: "Transcended",
  45852. height: math.unit(8e27, "feet")
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(5, "feet"),
  45861. weight: math.unit(50, "kg"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/biot-avery/front.svg",
  45865. extra: 1295/1232,
  45866. bottom: 86/1381
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "Normal",
  45873. height: math.unit(5, "feet"),
  45874. default: true
  45875. },
  45876. ]
  45877. ))
  45878. characterMakers.push(() => makeCharacter(
  45879. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45880. {
  45881. front: {
  45882. height: math.unit(6, "feet"),
  45883. name: "Front",
  45884. image: {
  45885. source: "./media/characters/kitsune-kiro/front.svg",
  45886. extra: 1270/1158,
  45887. bottom: 42/1312
  45888. }
  45889. },
  45890. frontAlt: {
  45891. height: math.unit(6, "feet"),
  45892. name: "Front-alt",
  45893. image: {
  45894. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45895. extra: 1130/1081,
  45896. bottom: 36/1166
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Smol",
  45903. height: math.unit(3, "feet")
  45904. },
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(6, "feet"),
  45908. default: true
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45914. {
  45915. front: {
  45916. height: math.unit(6, "feet"),
  45917. weight: math.unit(125, "lb"),
  45918. name: "Front",
  45919. image: {
  45920. source: "./media/characters/jack-thatcher/front.svg",
  45921. extra: 1474/1370,
  45922. bottom: 26/1500
  45923. }
  45924. },
  45925. back: {
  45926. height: math.unit(6, "feet"),
  45927. weight: math.unit(125, "lb"),
  45928. name: "Back",
  45929. image: {
  45930. source: "./media/characters/jack-thatcher/back.svg",
  45931. extra: 1489/1384,
  45932. bottom: 18/1507
  45933. }
  45934. },
  45935. },
  45936. [
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(6, "feet"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(75, "feet")
  45945. },
  45946. {
  45947. name: "Macro-er",
  45948. height: math.unit(250, "feet")
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45954. {
  45955. front: {
  45956. height: math.unit(7, "feet"),
  45957. weight: math.unit(110, "kg"),
  45958. name: "Front",
  45959. image: {
  45960. source: "./media/characters/max-hyper/front.svg",
  45961. extra: 1969/1881,
  45962. bottom: 49/2018
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Normal",
  45969. height: math.unit(7, "feet"),
  45970. default: true
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(5 + 5/12, "feet"),
  45979. weight: math.unit(160, "lb"),
  45980. name: "Front",
  45981. image: {
  45982. source: "./media/characters/spook/front.svg",
  45983. extra: 794/791,
  45984. bottom: 54/848
  45985. }
  45986. },
  45987. back: {
  45988. height: math.unit(5 + 5/12, "feet"),
  45989. weight: math.unit(160, "lb"),
  45990. name: "Back",
  45991. image: {
  45992. source: "./media/characters/spook/back.svg",
  45993. extra: 812/798,
  45994. bottom: 32/844
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(5 + 5/12, "feet"),
  46002. default: true
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(18, "feet"),
  46011. name: "Front",
  46012. image: {
  46013. source: "./media/characters/xeaduulix/front.svg",
  46014. extra: 1380/1166,
  46015. bottom: 110/1490
  46016. }
  46017. },
  46018. back: {
  46019. height: math.unit(18, "feet"),
  46020. name: "Back",
  46021. image: {
  46022. source: "./media/characters/xeaduulix/back.svg",
  46023. extra: 1592/1170,
  46024. bottom: 128/1720
  46025. }
  46026. },
  46027. frontNsfw: {
  46028. height: math.unit(18, "feet"),
  46029. name: "Front (NSFW)",
  46030. image: {
  46031. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46032. extra: 1380/1166,
  46033. bottom: 110/1490
  46034. }
  46035. },
  46036. backNsfw: {
  46037. height: math.unit(18, "feet"),
  46038. name: "Back (NSFW)",
  46039. image: {
  46040. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46041. extra: 1592/1170,
  46042. bottom: 128/1720
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Normal",
  46049. height: math.unit(18, "feet"),
  46050. default: true
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46056. {
  46057. spreadWings: {
  46058. height: math.unit(20, "feet"),
  46059. name: "Spread Wings",
  46060. image: {
  46061. source: "./media/characters/fledge/spread-wings.svg",
  46062. extra: 693/635,
  46063. bottom: 26/719
  46064. }
  46065. },
  46066. front: {
  46067. height: math.unit(20, "feet"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/fledge/front.svg",
  46071. extra: 684/637,
  46072. bottom: 18/702
  46073. }
  46074. },
  46075. frontAlt: {
  46076. height: math.unit(20, "feet"),
  46077. name: "Front (Alt)",
  46078. image: {
  46079. source: "./media/characters/fledge/front-alt.svg",
  46080. extra: 708/664,
  46081. bottom: 13/721
  46082. }
  46083. },
  46084. back: {
  46085. height: math.unit(20, "feet"),
  46086. name: "Back",
  46087. image: {
  46088. source: "./media/characters/fledge/back.svg",
  46089. extra: 718/634,
  46090. bottom: 22/740
  46091. }
  46092. },
  46093. head: {
  46094. height: math.unit(5.55, "feet"),
  46095. name: "Head",
  46096. image: {
  46097. source: "./media/characters/fledge/head.svg"
  46098. }
  46099. },
  46100. headAlt: {
  46101. height: math.unit(5.1, "feet"),
  46102. name: "Head (Alt)",
  46103. image: {
  46104. source: "./media/characters/fledge/head-alt.svg"
  46105. }
  46106. },
  46107. },
  46108. [
  46109. {
  46110. name: "Small",
  46111. height: math.unit(6 + 2/12, "feet")
  46112. },
  46113. {
  46114. name: "Big",
  46115. height: math.unit(20, "feet"),
  46116. default: true
  46117. },
  46118. {
  46119. name: "Giant",
  46120. height: math.unit(100, "feet")
  46121. },
  46122. {
  46123. name: "Macro",
  46124. height: math.unit(200, "feet")
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46130. {
  46131. front: {
  46132. height: math.unit(1, "meter"),
  46133. name: "Front",
  46134. image: {
  46135. source: "./media/characters/atlas-morenai/front.svg",
  46136. extra: 1275/1043,
  46137. bottom: 19/1294
  46138. }
  46139. },
  46140. back: {
  46141. height: math.unit(1, "meter"),
  46142. name: "Back",
  46143. image: {
  46144. source: "./media/characters/atlas-morenai/back.svg",
  46145. extra: 1141/1001,
  46146. bottom: 25/1166
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Normal",
  46153. height: math.unit(1, "meter"),
  46154. default: true
  46155. },
  46156. {
  46157. name: "Magic-Infused",
  46158. height: math.unit(5, "meters")
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(5, "meters"),
  46167. name: "Front",
  46168. image: {
  46169. source: "./media/characters/cintia/front.svg",
  46170. extra: 1312/1228,
  46171. bottom: 38/1350
  46172. }
  46173. },
  46174. back: {
  46175. height: math.unit(5, "meters"),
  46176. name: "Back",
  46177. image: {
  46178. source: "./media/characters/cintia/back.svg",
  46179. extra: 1260/1166,
  46180. bottom: 98/1358
  46181. }
  46182. },
  46183. frontDick: {
  46184. height: math.unit(5, "meters"),
  46185. name: "Front (Dick)",
  46186. image: {
  46187. source: "./media/characters/cintia/front-dick.svg",
  46188. extra: 1312/1228,
  46189. bottom: 38/1350
  46190. }
  46191. },
  46192. backDick: {
  46193. height: math.unit(5, "meters"),
  46194. name: "Back (Dick)",
  46195. image: {
  46196. source: "./media/characters/cintia/back-dick.svg",
  46197. extra: 1260/1166,
  46198. bottom: 98/1358
  46199. }
  46200. },
  46201. bust: {
  46202. height: math.unit(1.97, "meters"),
  46203. name: "Bust",
  46204. image: {
  46205. source: "./media/characters/cintia/bust.svg",
  46206. extra: 617/565,
  46207. bottom: 0/617
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(5, "meters"),
  46215. default: true
  46216. },
  46217. ]
  46218. ))
  46219. characterMakers.push(() => makeCharacter(
  46220. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46221. {
  46222. side: {
  46223. height: math.unit(100, "feet"),
  46224. name: "Side",
  46225. image: {
  46226. source: "./media/characters/denora/side.svg",
  46227. extra: 875/803,
  46228. bottom: 9/884
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Standard",
  46235. height: math.unit(100, "feet"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Grand",
  46240. height: math.unit(1000, "feet")
  46241. },
  46242. {
  46243. name: "Conquering",
  46244. height: math.unit(10000, "feet")
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46250. {
  46251. dressed: {
  46252. height: math.unit(8 + 5/12, "feet"),
  46253. weight: math.unit(700, "lb"),
  46254. name: "Dressed",
  46255. image: {
  46256. source: "./media/characters/kiva/dressed.svg",
  46257. extra: 1102/1055,
  46258. bottom: 60/1162
  46259. }
  46260. },
  46261. nude: {
  46262. height: math.unit(8 + 5/12, "feet"),
  46263. weight: math.unit(700, "lb"),
  46264. name: "Nude",
  46265. image: {
  46266. source: "./media/characters/kiva/nude.svg",
  46267. extra: 1102/1055,
  46268. bottom: 60/1162
  46269. }
  46270. },
  46271. },
  46272. [
  46273. {
  46274. name: "Base Height",
  46275. height: math.unit(8 + 5/12, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Macro",
  46280. height: math.unit(100, "feet")
  46281. },
  46282. {
  46283. name: "Max",
  46284. height: math.unit(3280, "feet")
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(6 + 8/12, "feet"),
  46293. weight: math.unit(250, "lb"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/ztragon/front.svg",
  46297. extra: 1825/1684,
  46298. bottom: 98/1923
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Normal",
  46305. height: math.unit(6 + 8/12, "feet"),
  46306. default: true
  46307. },
  46308. {
  46309. name: "Macro",
  46310. height: math.unit(80, "feet")
  46311. },
  46312. ]
  46313. ))
  46314. characterMakers.push(() => makeCharacter(
  46315. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46316. {
  46317. front: {
  46318. height: math.unit(10.4, "feet"),
  46319. weight: math.unit(2, "tons"),
  46320. name: "Front",
  46321. image: {
  46322. source: "./media/characters/yesenia/front.svg",
  46323. extra: 1479/1474,
  46324. bottom: 233/1712
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(10.4, "feet"),
  46332. default: true
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46338. {
  46339. normal: {
  46340. height: math.unit(6 + 1/12, "feet"),
  46341. weight: math.unit(180, "lb"),
  46342. name: "Normal",
  46343. image: {
  46344. source: "./media/characters/leanne-lycheborne/normal.svg",
  46345. extra: 1748/1660,
  46346. bottom: 98/1846
  46347. }
  46348. },
  46349. were: {
  46350. height: math.unit(12, "feet"),
  46351. weight: math.unit(1600, "lb"),
  46352. name: "Were",
  46353. image: {
  46354. source: "./media/characters/leanne-lycheborne/were.svg",
  46355. extra: 1485/1432,
  46356. bottom: 66/1551
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(6 + 1/12, "feet"),
  46364. default: true
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46370. {
  46371. side: {
  46372. height: math.unit(13, "feet"),
  46373. name: "Side",
  46374. image: {
  46375. source: "./media/characters/kira-tyler/side.svg",
  46376. extra: 693/393,
  46377. bottom: 58/751
  46378. }
  46379. },
  46380. },
  46381. [
  46382. {
  46383. name: "Normal",
  46384. height: math.unit(13, "feet"),
  46385. default: true
  46386. },
  46387. ]
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46391. {
  46392. front: {
  46393. height: math.unit(10.3, "feet"),
  46394. weight: math.unit(150, "lb"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/blaze/front.svg",
  46398. extra: 1378/1286,
  46399. bottom: 172/1550
  46400. }
  46401. },
  46402. },
  46403. [
  46404. {
  46405. name: "Normal",
  46406. height: math.unit(10.3, "feet"),
  46407. default: true
  46408. },
  46409. ]
  46410. ))
  46411. characterMakers.push(() => makeCharacter(
  46412. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46413. {
  46414. side: {
  46415. height: math.unit(2, "meters"),
  46416. weight: math.unit(400, "kg"),
  46417. name: "Side",
  46418. image: {
  46419. source: "./media/characters/anu/side.svg",
  46420. extra: 506/394,
  46421. bottom: 18/524
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Humanoid",
  46428. height: math.unit(2, "meters")
  46429. },
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(5, "meters"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46439. {
  46440. front: {
  46441. height: math.unit(5 + 5/12, "feet"),
  46442. weight: math.unit(170, "lb"),
  46443. name: "Front",
  46444. image: {
  46445. source: "./media/characters/synx-the-lynx/front.svg",
  46446. extra: 1893/1745,
  46447. bottom: 17/1910
  46448. }
  46449. },
  46450. side: {
  46451. height: math.unit(5 + 5/12, "feet"),
  46452. weight: math.unit(170, "lb"),
  46453. name: "Side",
  46454. image: {
  46455. source: "./media/characters/synx-the-lynx/side.svg",
  46456. extra: 1884/1740,
  46457. bottom: 39/1923
  46458. }
  46459. },
  46460. back: {
  46461. height: math.unit(5 + 5/12, "feet"),
  46462. weight: math.unit(170, "lb"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/synx-the-lynx/back.svg",
  46466. extra: 1903/1755,
  46467. bottom: 14/1917
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(5 + 5/12, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46481. {
  46482. back: {
  46483. height: math.unit(15, "feet"),
  46484. name: "Back",
  46485. image: {
  46486. source: "./media/characters/nadezda-fex/back.svg",
  46487. extra: 1695/1481,
  46488. bottom: 25/1720
  46489. }
  46490. },
  46491. },
  46492. [
  46493. {
  46494. name: "Normal",
  46495. height: math.unit(15, "feet"),
  46496. default: true
  46497. },
  46498. {
  46499. name: "Macro",
  46500. height: math.unit(2.5, "miles")
  46501. },
  46502. {
  46503. name: "Goddess",
  46504. height: math.unit(2, "multiverses")
  46505. },
  46506. ]
  46507. ))
  46508. characterMakers.push(() => makeCharacter(
  46509. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46510. {
  46511. front: {
  46512. height: math.unit(216, "cm"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/lev/front.svg",
  46516. extra: 1728/1670,
  46517. bottom: 82/1810
  46518. }
  46519. },
  46520. back: {
  46521. height: math.unit(216, "cm"),
  46522. name: "Back",
  46523. image: {
  46524. source: "./media/characters/lev/back.svg",
  46525. extra: 1738/1675,
  46526. bottom: 24/1762
  46527. }
  46528. },
  46529. dressed: {
  46530. height: math.unit(216, "cm"),
  46531. name: "Dressed",
  46532. image: {
  46533. source: "./media/characters/lev/dressed.svg",
  46534. extra: 1397/1351,
  46535. bottom: 73/1470
  46536. }
  46537. },
  46538. head: {
  46539. height: math.unit(0.51, "meter"),
  46540. name: "Head",
  46541. image: {
  46542. source: "./media/characters/lev/head.svg"
  46543. }
  46544. },
  46545. },
  46546. [
  46547. {
  46548. name: "Normal",
  46549. height: math.unit(216, "cm"),
  46550. default: true
  46551. },
  46552. {
  46553. name: "Relatively Macro",
  46554. height: math.unit(80, "meters")
  46555. },
  46556. {
  46557. name: "Megamacro",
  46558. height: math.unit(21600, "meters")
  46559. },
  46560. {
  46561. name: "Megamacro+",
  46562. height: math.unit(64800, "meters")
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(2, "meters"),
  46571. weight: math.unit(80, "kg"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/moka/front.svg",
  46575. extra: 1337/1255,
  46576. bottom: 58/1395
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Micro",
  46583. height: math.unit(15, "cm")
  46584. },
  46585. {
  46586. name: "Normal",
  46587. height: math.unit(2, "meters"),
  46588. default: true
  46589. },
  46590. {
  46591. name: "Macro",
  46592. height: math.unit(20, "meters"),
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46598. {
  46599. front: {
  46600. height: math.unit(9, "feet"),
  46601. weight: math.unit(240, "lb"),
  46602. name: "Front",
  46603. image: {
  46604. source: "./media/characters/kuzco/front.svg",
  46605. extra: 1593/1487,
  46606. bottom: 32/1625
  46607. }
  46608. },
  46609. side: {
  46610. height: math.unit(9, "feet"),
  46611. weight: math.unit(240, "lb"),
  46612. name: "Side",
  46613. image: {
  46614. source: "./media/characters/kuzco/side.svg",
  46615. extra: 1575/1485,
  46616. bottom: 30/1605
  46617. }
  46618. },
  46619. back: {
  46620. height: math.unit(9, "feet"),
  46621. weight: math.unit(240, "lb"),
  46622. name: "Back",
  46623. image: {
  46624. source: "./media/characters/kuzco/back.svg",
  46625. extra: 1603/1514,
  46626. bottom: 14/1617
  46627. }
  46628. },
  46629. },
  46630. [
  46631. {
  46632. name: "Normal",
  46633. height: math.unit(9, "feet"),
  46634. default: true
  46635. },
  46636. ]
  46637. ))
  46638. characterMakers.push(() => makeCharacter(
  46639. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46640. {
  46641. side: {
  46642. height: math.unit(2, "meters"),
  46643. weight: math.unit(300, "kg"),
  46644. name: "Side",
  46645. image: {
  46646. source: "./media/characters/ceruleus/side.svg",
  46647. extra: 1068/974,
  46648. bottom: 126/1194
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(16, "meters"),
  46656. default: true
  46657. },
  46658. ]
  46659. ))
  46660. characterMakers.push(() => makeCharacter(
  46661. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46662. {
  46663. front: {
  46664. height: math.unit(9, "feet"),
  46665. weight: math.unit(500, "kg"),
  46666. name: "Front",
  46667. image: {
  46668. source: "./media/characters/acouya/front.svg",
  46669. extra: 1660/1473,
  46670. bottom: 28/1688
  46671. }
  46672. },
  46673. },
  46674. [
  46675. {
  46676. name: "Normal",
  46677. height: math.unit(9, "feet"),
  46678. default: true
  46679. },
  46680. ]
  46681. ))
  46682. characterMakers.push(() => makeCharacter(
  46683. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46684. {
  46685. front: {
  46686. height: math.unit(5 + 6/12, "feet"),
  46687. weight: math.unit(195, "lb"),
  46688. name: "Front",
  46689. image: {
  46690. source: "./media/characters/vant/front.svg",
  46691. extra: 1396/1320,
  46692. bottom: 20/1416
  46693. }
  46694. },
  46695. back: {
  46696. height: math.unit(5 + 6/12, "feet"),
  46697. weight: math.unit(195, "lb"),
  46698. name: "Back",
  46699. image: {
  46700. source: "./media/characters/vant/back.svg",
  46701. extra: 1396/1320,
  46702. bottom: 20/1416
  46703. }
  46704. },
  46705. maw: {
  46706. height: math.unit(0.75, "feet"),
  46707. name: "Maw",
  46708. image: {
  46709. source: "./media/characters/vant/maw.svg"
  46710. }
  46711. },
  46712. paw: {
  46713. height: math.unit(1.07, "feet"),
  46714. name: "Paw",
  46715. image: {
  46716. source: "./media/characters/vant/paw.svg"
  46717. }
  46718. },
  46719. },
  46720. [
  46721. {
  46722. name: "Micro",
  46723. height: math.unit(0.25, "inches")
  46724. },
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(5 + 6/12, "feet"),
  46728. default: true
  46729. },
  46730. {
  46731. name: "Macro",
  46732. height: math.unit(75, "feet")
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46738. {
  46739. front: {
  46740. height: math.unit(30, "meters"),
  46741. weight: math.unit(363, "tons"),
  46742. name: "Front",
  46743. image: {
  46744. source: "./media/characters/ahra/front.svg",
  46745. extra: 1914/1814,
  46746. bottom: 46/1960
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Macro",
  46753. height: math.unit(30, "meters"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46760. {
  46761. undressed: {
  46762. height: math.unit(2, "m"),
  46763. weight: math.unit(250, "kg"),
  46764. name: "Undressed",
  46765. image: {
  46766. source: "./media/characters/coriander/undressed.svg",
  46767. extra: 1757/1606,
  46768. bottom: 107/1864
  46769. }
  46770. },
  46771. dressed: {
  46772. height: math.unit(2, "m"),
  46773. weight: math.unit(250, "kg"),
  46774. name: "Dressed",
  46775. image: {
  46776. source: "./media/characters/coriander/dressed.svg",
  46777. extra: 1757/1606,
  46778. bottom: 107/1864
  46779. }
  46780. },
  46781. },
  46782. [
  46783. {
  46784. name: "Normal",
  46785. height: math.unit(4, "meters"),
  46786. default: true
  46787. },
  46788. {
  46789. name: "XL",
  46790. height: math.unit(6, "meters")
  46791. },
  46792. {
  46793. name: "XXL",
  46794. height: math.unit(8, "meters")
  46795. },
  46796. ]
  46797. ))
  46798. characterMakers.push(() => makeCharacter(
  46799. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46800. {
  46801. front: {
  46802. height: math.unit(6, "feet"),
  46803. name: "Front",
  46804. image: {
  46805. source: "./media/characters/syrinx/front.svg",
  46806. extra: 1557/1259,
  46807. bottom: 171/1728
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Normal",
  46814. height: math.unit(6 + 3/12, "feet"),
  46815. default: true
  46816. },
  46817. ]
  46818. ))
  46819. characterMakers.push(() => makeCharacter(
  46820. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46821. {
  46822. front: {
  46823. height: math.unit(11 + 6/12, "feet"),
  46824. weight: math.unit(1.5, "tons"),
  46825. name: "Front",
  46826. image: {
  46827. source: "./media/characters/bor/front.svg",
  46828. extra: 1189/1109,
  46829. bottom: 170/1359
  46830. }
  46831. },
  46832. },
  46833. [
  46834. {
  46835. name: "Normal",
  46836. height: math.unit(11 + 6/12, "feet"),
  46837. default: true
  46838. },
  46839. {
  46840. name: "Macro",
  46841. height: math.unit(32 + 9/12, "feet")
  46842. },
  46843. ]
  46844. ))
  46845. characterMakers.push(() => makeCharacter(
  46846. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46847. {
  46848. anthro: {
  46849. height: math.unit(9, "feet"),
  46850. weight: math.unit(2076, "lb"),
  46851. name: "Anthro",
  46852. image: {
  46853. source: "./media/characters/abacus/anthro.svg",
  46854. extra: 1540/1494,
  46855. bottom: 233/1773
  46856. }
  46857. },
  46858. pigeon: {
  46859. height: math.unit(1, "feet"),
  46860. name: "Pigeon",
  46861. image: {
  46862. source: "./media/characters/abacus/pigeon.svg",
  46863. extra: 528/525,
  46864. bottom: 46/574
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Normal",
  46871. height: math.unit(9, "feet"),
  46872. default: true
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46878. {
  46879. side: {
  46880. height: math.unit(6, "feet"),
  46881. name: "Side",
  46882. image: {
  46883. source: "./media/characters/delkhan/side.svg",
  46884. extra: 1884/1786,
  46885. bottom: 308/2192
  46886. }
  46887. },
  46888. head: {
  46889. height: math.unit(3.38, "feet"),
  46890. name: "Head",
  46891. image: {
  46892. source: "./media/characters/delkhan/head.svg"
  46893. }
  46894. },
  46895. },
  46896. [
  46897. {
  46898. name: "Normal",
  46899. height: math.unit(72, "feet"),
  46900. default: true
  46901. },
  46902. {
  46903. name: "Giant",
  46904. height: math.unit(172, "feet")
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46910. {
  46911. standing: {
  46912. height: math.unit(6, "feet"),
  46913. name: "Standing",
  46914. image: {
  46915. source: "./media/characters/euchidat/standing.svg",
  46916. extra: 1612/1553,
  46917. bottom: 116/1728
  46918. }
  46919. },
  46920. leaning: {
  46921. height: math.unit(6, "feet"),
  46922. name: "Leaning",
  46923. image: {
  46924. source: "./media/characters/euchidat/leaning.svg",
  46925. extra: 1719/1674,
  46926. bottom: 27/1746
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(175, "feet"),
  46934. default: true
  46935. },
  46936. {
  46937. name: "Megamacro",
  46938. height: math.unit(190, "miles")
  46939. },
  46940. {
  46941. name: "Gigamacro",
  46942. height: math.unit(190000, "miles")
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46948. {
  46949. front: {
  46950. height: math.unit(6, "feet"),
  46951. weight: math.unit(150, "lb"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/rebecca-stack/front.svg",
  46955. extra: 1256/1201,
  46956. bottom: 18/1274
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(5 + 8/12, "feet"),
  46964. default: true
  46965. },
  46966. {
  46967. name: "Demolitionist",
  46968. height: math.unit(200, "feet")
  46969. },
  46970. {
  46971. name: "Out of Control",
  46972. height: math.unit(2, "miles")
  46973. },
  46974. {
  46975. name: "Giga",
  46976. height: math.unit(7200, "miles")
  46977. },
  46978. ]
  46979. ))
  46980. characterMakers.push(() => makeCharacter(
  46981. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46982. {
  46983. front: {
  46984. height: math.unit(6, "feet"),
  46985. weight: math.unit(150, "lb"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/jenny-cartwright/front.svg",
  46989. extra: 1384/1376,
  46990. bottom: 58/1442
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(6 + 7/12, "feet"),
  46998. default: true
  46999. },
  47000. {
  47001. name: "Librarian",
  47002. height: math.unit(55, "feet")
  47003. },
  47004. {
  47005. name: "Sightseer",
  47006. height: math.unit(50, "miles")
  47007. },
  47008. {
  47009. name: "Giga",
  47010. height: math.unit(30000, "miles")
  47011. },
  47012. ]
  47013. ))
  47014. characterMakers.push(() => makeCharacter(
  47015. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47016. {
  47017. nude: {
  47018. height: math.unit(8, "feet"),
  47019. weight: math.unit(225, "lb"),
  47020. name: "Nude",
  47021. image: {
  47022. source: "./media/characters/marvy/nude.svg",
  47023. extra: 1900/1683,
  47024. bottom: 89/1989
  47025. }
  47026. },
  47027. dressed: {
  47028. height: math.unit(8, "feet"),
  47029. weight: math.unit(225, "lb"),
  47030. name: "Dressed",
  47031. image: {
  47032. source: "./media/characters/marvy/dressed.svg",
  47033. extra: 1900/1683,
  47034. bottom: 89/1989
  47035. }
  47036. },
  47037. head: {
  47038. height: math.unit(2.85, "feet"),
  47039. name: "Head",
  47040. image: {
  47041. source: "./media/characters/marvy/head.svg"
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(8, "feet"),
  47049. default: true
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47055. {
  47056. front: {
  47057. height: math.unit(8, "feet"),
  47058. weight: math.unit(250, "lb"),
  47059. name: "Front",
  47060. image: {
  47061. source: "./media/characters/leah/front.svg",
  47062. extra: 1257/1149,
  47063. bottom: 109/1366
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(8, "feet"),
  47071. default: true
  47072. },
  47073. {
  47074. name: "Minimacro",
  47075. height: math.unit(40, "feet")
  47076. },
  47077. {
  47078. name: "Macro",
  47079. height: math.unit(124, "feet")
  47080. },
  47081. {
  47082. name: "Megamacro",
  47083. height: math.unit(850, "feet")
  47084. },
  47085. ]
  47086. ))
  47087. characterMakers.push(() => makeCharacter(
  47088. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47089. {
  47090. side: {
  47091. height: math.unit(13 + 6/12, "feet"),
  47092. weight: math.unit(3200, "lb"),
  47093. name: "Side",
  47094. image: {
  47095. source: "./media/characters/alvir/side.svg",
  47096. extra: 896/589,
  47097. bottom: 26/922
  47098. }
  47099. },
  47100. },
  47101. [
  47102. {
  47103. name: "Normal",
  47104. height: math.unit(13 + 6/12, "feet"),
  47105. default: true
  47106. },
  47107. ]
  47108. ))
  47109. characterMakers.push(() => makeCharacter(
  47110. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47111. {
  47112. front: {
  47113. height: math.unit(5 + 4/12, "feet"),
  47114. weight: math.unit(236, "lb"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/zaina-khalil/front.svg",
  47118. extra: 1533/1485,
  47119. bottom: 94/1627
  47120. }
  47121. },
  47122. side: {
  47123. height: math.unit(5 + 4/12, "feet"),
  47124. weight: math.unit(236, "lb"),
  47125. name: "Side",
  47126. image: {
  47127. source: "./media/characters/zaina-khalil/side.svg",
  47128. extra: 1537/1498,
  47129. bottom: 66/1603
  47130. }
  47131. },
  47132. back: {
  47133. height: math.unit(5 + 4/12, "feet"),
  47134. weight: math.unit(236, "lb"),
  47135. name: "Back",
  47136. image: {
  47137. source: "./media/characters/zaina-khalil/back.svg",
  47138. extra: 1546/1494,
  47139. bottom: 89/1635
  47140. }
  47141. },
  47142. },
  47143. [
  47144. {
  47145. name: "Normal",
  47146. height: math.unit(5 + 4/12, "feet"),
  47147. default: true
  47148. },
  47149. ]
  47150. ))
  47151. characterMakers.push(() => makeCharacter(
  47152. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47153. {
  47154. side: {
  47155. height: math.unit(12, "feet"),
  47156. weight: math.unit(4000, "lb"),
  47157. name: "Side",
  47158. image: {
  47159. source: "./media/characters/terry/side.svg",
  47160. extra: 1518/1439,
  47161. bottom: 149/1667
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(12, "feet"),
  47169. default: true
  47170. },
  47171. ]
  47172. ))
  47173. characterMakers.push(() => makeCharacter(
  47174. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47175. {
  47176. front: {
  47177. height: math.unit(12, "feet"),
  47178. weight: math.unit(1500, "lb"),
  47179. name: "Front",
  47180. image: {
  47181. source: "./media/characters/kahea/front.svg",
  47182. extra: 1722/1617,
  47183. bottom: 179/1901
  47184. }
  47185. },
  47186. },
  47187. [
  47188. {
  47189. name: "Normal",
  47190. height: math.unit(12, "feet"),
  47191. default: true
  47192. },
  47193. ]
  47194. ))
  47195. characterMakers.push(() => makeCharacter(
  47196. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47197. {
  47198. demonFront: {
  47199. height: math.unit(36, "feet"),
  47200. name: "Front",
  47201. image: {
  47202. source: "./media/characters/alex-xuria/demon-front.svg",
  47203. extra: 1705/1673,
  47204. bottom: 198/1903
  47205. },
  47206. form: "demon",
  47207. default: true
  47208. },
  47209. demonBack: {
  47210. height: math.unit(36, "feet"),
  47211. name: "Back",
  47212. image: {
  47213. source: "./media/characters/alex-xuria/demon-back.svg",
  47214. extra: 1725/1693,
  47215. bottom: 70/1795
  47216. },
  47217. form: "demon"
  47218. },
  47219. demonHead: {
  47220. height: math.unit(2.14, "meters"),
  47221. name: "Head",
  47222. image: {
  47223. source: "./media/characters/alex-xuria/demon-head.svg"
  47224. },
  47225. form: "demon"
  47226. },
  47227. demonHand: {
  47228. height: math.unit(1.61, "meters"),
  47229. name: "Hand",
  47230. image: {
  47231. source: "./media/characters/alex-xuria/demon-hand.svg"
  47232. },
  47233. form: "demon"
  47234. },
  47235. demonPaw: {
  47236. height: math.unit(1.35, "meters"),
  47237. name: "Paw",
  47238. image: {
  47239. source: "./media/characters/alex-xuria/demon-paw.svg"
  47240. },
  47241. form: "demon"
  47242. },
  47243. demonFoot: {
  47244. height: math.unit(2.2, "meters"),
  47245. name: "Foot",
  47246. image: {
  47247. source: "./media/characters/alex-xuria/demon-foot.svg"
  47248. },
  47249. form: "demon"
  47250. },
  47251. demonCock: {
  47252. height: math.unit(1.74, "meters"),
  47253. name: "Cock",
  47254. image: {
  47255. source: "./media/characters/alex-xuria/demon-cock.svg"
  47256. },
  47257. form: "demon"
  47258. },
  47259. demonTailClosed: {
  47260. height: math.unit(1.47, "meters"),
  47261. name: "Tail (Closed)",
  47262. image: {
  47263. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47264. },
  47265. form: "demon"
  47266. },
  47267. demonTailOpen: {
  47268. height: math.unit(2.85, "meters"),
  47269. name: "Tail (Open)",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47272. },
  47273. form: "demon"
  47274. },
  47275. incubusFront: {
  47276. height: math.unit(12, "feet"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/incubus-front.svg",
  47280. extra: 1754/1677,
  47281. bottom: 125/1879
  47282. },
  47283. form: "incubus",
  47284. default: true
  47285. },
  47286. incubusBack: {
  47287. height: math.unit(12, "feet"),
  47288. name: "Back",
  47289. image: {
  47290. source: "./media/characters/alex-xuria/incubus-back.svg",
  47291. extra: 1702/1647,
  47292. bottom: 30/1732
  47293. },
  47294. form: "incubus"
  47295. },
  47296. incubusHead: {
  47297. height: math.unit(3.45, "feet"),
  47298. name: "Head",
  47299. image: {
  47300. source: "./media/characters/alex-xuria/incubus-head.svg"
  47301. },
  47302. form: "incubus"
  47303. },
  47304. rabbitFront: {
  47305. height: math.unit(6, "feet"),
  47306. name: "Front",
  47307. image: {
  47308. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47309. extra: 1369/1349,
  47310. bottom: 45/1414
  47311. },
  47312. form: "rabbit",
  47313. default: true
  47314. },
  47315. rabbitSide: {
  47316. height: math.unit(6, "feet"),
  47317. name: "Side",
  47318. image: {
  47319. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47320. extra: 1370/1356,
  47321. bottom: 37/1407
  47322. },
  47323. form: "rabbit"
  47324. },
  47325. rabbitBack: {
  47326. height: math.unit(6, "feet"),
  47327. name: "Back",
  47328. image: {
  47329. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47330. extra: 1375/1358,
  47331. bottom: 43/1418
  47332. },
  47333. form: "rabbit"
  47334. },
  47335. },
  47336. [
  47337. {
  47338. name: "Normal",
  47339. height: math.unit(6, "feet"),
  47340. default: true,
  47341. form: "rabbit"
  47342. },
  47343. {
  47344. name: "Incubus",
  47345. height: math.unit(12, "feet"),
  47346. default: true,
  47347. form: "incubus"
  47348. },
  47349. {
  47350. name: "Demon",
  47351. height: math.unit(36, "feet"),
  47352. default: true,
  47353. form: "demon"
  47354. }
  47355. ],
  47356. {
  47357. "demon": {
  47358. name: "Demon",
  47359. default: true
  47360. },
  47361. "incubus": {
  47362. name: "Incubus",
  47363. },
  47364. "rabbit": {
  47365. name: "Rabbit"
  47366. }
  47367. }
  47368. ))
  47369. characterMakers.push(() => makeCharacter(
  47370. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47371. {
  47372. front: {
  47373. height: math.unit(7 + 5/12, "feet"),
  47374. weight: math.unit(510, "lb"),
  47375. name: "Front",
  47376. image: {
  47377. source: "./media/characters/syrup/front.svg",
  47378. extra: 932/916,
  47379. bottom: 26/958
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(7 + 5/12, "feet"),
  47387. default: true
  47388. },
  47389. {
  47390. name: "Big",
  47391. height: math.unit(50, "feet")
  47392. },
  47393. {
  47394. name: "Macro",
  47395. height: math.unit(300, "feet")
  47396. },
  47397. {
  47398. name: "Megamacro",
  47399. height: math.unit(1, "mile")
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47405. {
  47406. front: {
  47407. height: math.unit(6 + 9/12, "feet"),
  47408. name: "Front",
  47409. image: {
  47410. source: "./media/characters/zeimne/front.svg",
  47411. extra: 1969/1806,
  47412. bottom: 53/2022
  47413. }
  47414. },
  47415. },
  47416. [
  47417. {
  47418. name: "Normal",
  47419. height: math.unit(6 + 9/12, "feet"),
  47420. default: true
  47421. },
  47422. {
  47423. name: "Giant",
  47424. height: math.unit(550, "feet")
  47425. },
  47426. {
  47427. name: "Mega",
  47428. height: math.unit(3, "miles")
  47429. },
  47430. {
  47431. name: "Giga",
  47432. height: math.unit(250, "miles")
  47433. },
  47434. {
  47435. name: "Tera",
  47436. height: math.unit(1, "AU")
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47442. {
  47443. front: {
  47444. height: math.unit(5 + 2/12, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/grar/front.svg",
  47448. extra: 1331/1119,
  47449. bottom: 60/1391
  47450. }
  47451. },
  47452. back: {
  47453. height: math.unit(5 + 2/12, "feet"),
  47454. name: "Back",
  47455. image: {
  47456. source: "./media/characters/grar/back.svg",
  47457. extra: 1385/1169,
  47458. bottom: 23/1408
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(5 + 2/12, "feet"),
  47466. default: true
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(13 + 7/12, "feet"),
  47475. weight: math.unit(2200, "lb"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/endraya/front.svg",
  47479. extra: 1289/1215,
  47480. bottom: 50/1339
  47481. }
  47482. },
  47483. nude: {
  47484. height: math.unit(13 + 7/12, "feet"),
  47485. weight: math.unit(2200, "lb"),
  47486. name: "Nude",
  47487. image: {
  47488. source: "./media/characters/endraya/nude.svg",
  47489. extra: 1247/1171,
  47490. bottom: 40/1287
  47491. }
  47492. },
  47493. head: {
  47494. height: math.unit(2.6, "feet"),
  47495. name: "Head",
  47496. image: {
  47497. source: "./media/characters/endraya/head.svg"
  47498. }
  47499. },
  47500. slit: {
  47501. height: math.unit(3.4, "feet"),
  47502. name: "Slit",
  47503. image: {
  47504. source: "./media/characters/endraya/slit.svg"
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(13 + 7/12, "feet"),
  47512. default: true
  47513. },
  47514. {
  47515. name: "Macro",
  47516. height: math.unit(200, "feet")
  47517. },
  47518. ]
  47519. ))
  47520. characterMakers.push(() => makeCharacter(
  47521. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47522. {
  47523. front: {
  47524. height: math.unit(1.81, "meters"),
  47525. weight: math.unit(69, "kg"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/rodryana/front.svg",
  47529. extra: 2002/1921,
  47530. bottom: 53/2055
  47531. }
  47532. },
  47533. back: {
  47534. height: math.unit(1.81, "meters"),
  47535. weight: math.unit(69, "kg"),
  47536. name: "Back",
  47537. image: {
  47538. source: "./media/characters/rodryana/back.svg",
  47539. extra: 1993/1926,
  47540. bottom: 48/2041
  47541. }
  47542. },
  47543. maw: {
  47544. height: math.unit(0.19769417475, "meters"),
  47545. name: "Maw",
  47546. image: {
  47547. source: "./media/characters/rodryana/maw.svg"
  47548. }
  47549. },
  47550. slit: {
  47551. height: math.unit(0.31631067961, "meters"),
  47552. name: "Slit",
  47553. image: {
  47554. source: "./media/characters/rodryana/slit.svg"
  47555. }
  47556. },
  47557. },
  47558. [
  47559. {
  47560. name: "Normal",
  47561. height: math.unit(1.81, "meters")
  47562. },
  47563. {
  47564. name: "Mini Macro",
  47565. height: math.unit(181, "meters")
  47566. },
  47567. {
  47568. name: "Macro",
  47569. height: math.unit(452, "meters"),
  47570. default: true
  47571. },
  47572. {
  47573. name: "Mega Macro",
  47574. height: math.unit(1.375, "km")
  47575. },
  47576. {
  47577. name: "Giga Macro",
  47578. height: math.unit(13.575, "km")
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47584. {
  47585. front: {
  47586. height: math.unit(6, "feet"),
  47587. weight: math.unit(1000, "lb"),
  47588. name: "Front",
  47589. image: {
  47590. source: "./media/characters/asaya/front.svg",
  47591. extra: 1460/1200,
  47592. bottom: 71/1531
  47593. }
  47594. },
  47595. },
  47596. [
  47597. {
  47598. name: "Normal",
  47599. height: math.unit(8, "km"),
  47600. default: true
  47601. },
  47602. ]
  47603. ))
  47604. characterMakers.push(() => makeCharacter(
  47605. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47606. {
  47607. front: {
  47608. height: math.unit(3.5, "meters"),
  47609. name: "Front",
  47610. image: {
  47611. source: "./media/characters/sarzu-and-israz/front.svg",
  47612. extra: 1570/1558,
  47613. bottom: 150/1720
  47614. },
  47615. },
  47616. back: {
  47617. height: math.unit(3.5, "meters"),
  47618. name: "Back",
  47619. image: {
  47620. source: "./media/characters/sarzu-and-israz/back.svg",
  47621. extra: 1523/1509,
  47622. bottom: 132/1655
  47623. },
  47624. },
  47625. frontFemale: {
  47626. height: math.unit(3.5, "meters"),
  47627. name: "Front (Female)",
  47628. image: {
  47629. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47630. extra: 1570/1558,
  47631. bottom: 150/1720
  47632. },
  47633. },
  47634. frontHerm: {
  47635. height: math.unit(3.5, "meters"),
  47636. name: "Front (Herm)",
  47637. image: {
  47638. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47639. extra: 1570/1558,
  47640. bottom: 150/1720
  47641. },
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(3.5, "meters"),
  47648. default: true,
  47649. },
  47650. {
  47651. name: "Macro",
  47652. height: math.unit(65.5, "meters"),
  47653. },
  47654. ],
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(6, "feet"),
  47661. weight: math.unit(250, "lb"),
  47662. name: "Front",
  47663. image: {
  47664. source: "./media/characters/zenimma/front.svg",
  47665. extra: 1346/1320,
  47666. bottom: 58/1404
  47667. }
  47668. },
  47669. back: {
  47670. height: math.unit(6, "feet"),
  47671. weight: math.unit(250, "lb"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/zenimma/back.svg",
  47675. extra: 1324/1308,
  47676. bottom: 44/1368
  47677. }
  47678. },
  47679. dick: {
  47680. height: math.unit(1.44, "feet"),
  47681. name: "Dick",
  47682. image: {
  47683. source: "./media/characters/zenimma/dick.svg"
  47684. }
  47685. },
  47686. },
  47687. [
  47688. {
  47689. name: "Canon Height",
  47690. height: math.unit(66, "miles"),
  47691. default: true
  47692. },
  47693. ]
  47694. ))
  47695. characterMakers.push(() => makeCharacter(
  47696. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47697. {
  47698. nude: {
  47699. height: math.unit(6, "feet"),
  47700. weight: math.unit(150, "lb"),
  47701. name: "Nude",
  47702. image: {
  47703. source: "./media/characters/shavon/nude.svg",
  47704. extra: 1242/1096,
  47705. bottom: 98/1340
  47706. }
  47707. },
  47708. dressed: {
  47709. height: math.unit(6, "feet"),
  47710. weight: math.unit(150, "lb"),
  47711. name: "Dressed",
  47712. image: {
  47713. source: "./media/characters/shavon/dressed.svg",
  47714. extra: 1242/1096,
  47715. bottom: 98/1340
  47716. }
  47717. },
  47718. },
  47719. [
  47720. {
  47721. name: "Macro",
  47722. height: math.unit(255, "feet"),
  47723. default: true
  47724. },
  47725. ]
  47726. ))
  47727. characterMakers.push(() => makeCharacter(
  47728. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47729. {
  47730. front: {
  47731. height: math.unit(6, "feet"),
  47732. name: "Front",
  47733. image: {
  47734. source: "./media/characters/steph/front.svg",
  47735. extra: 1430/1330,
  47736. bottom: 54/1484
  47737. }
  47738. },
  47739. },
  47740. [
  47741. {
  47742. name: "Normal",
  47743. height: math.unit(6, "feet"),
  47744. default: true
  47745. },
  47746. ]
  47747. ))
  47748. characterMakers.push(() => makeCharacter(
  47749. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47750. {
  47751. front: {
  47752. height: math.unit(9, "feet"),
  47753. weight: math.unit(400, "lb"),
  47754. name: "Front",
  47755. image: {
  47756. source: "./media/characters/kil'aman/front.svg",
  47757. extra: 1210/1159,
  47758. bottom: 109/1319
  47759. }
  47760. },
  47761. head: {
  47762. height: math.unit(2.14, "feet"),
  47763. name: "Head",
  47764. image: {
  47765. source: "./media/characters/kil'aman/head.svg"
  47766. }
  47767. },
  47768. maw: {
  47769. height: math.unit(1.21, "feet"),
  47770. name: "Maw",
  47771. image: {
  47772. source: "./media/characters/kil'aman/maw.svg"
  47773. }
  47774. },
  47775. foot: {
  47776. height: math.unit(1.7, "feet"),
  47777. name: "Foot",
  47778. image: {
  47779. source: "./media/characters/kil'aman/foot.svg"
  47780. }
  47781. },
  47782. dick: {
  47783. height: math.unit(2.1, "feet"),
  47784. name: "Dick",
  47785. image: {
  47786. source: "./media/characters/kil'aman/dick.svg"
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(9, "feet")
  47794. },
  47795. {
  47796. name: "Canon Height",
  47797. height: math.unit(10, "miles"),
  47798. default: true
  47799. },
  47800. {
  47801. name: "Maximum",
  47802. height: math.unit(6e9, "miles")
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47808. {
  47809. front: {
  47810. height: math.unit(90, "feet"),
  47811. weight: math.unit(675000, "lb"),
  47812. name: "Front",
  47813. image: {
  47814. source: "./media/characters/qadan/front.svg",
  47815. extra: 1012/1004,
  47816. bottom: 78/1090
  47817. }
  47818. },
  47819. back: {
  47820. height: math.unit(90, "feet"),
  47821. weight: math.unit(675000, "lb"),
  47822. name: "Back",
  47823. image: {
  47824. source: "./media/characters/qadan/back.svg",
  47825. extra: 1042/1031,
  47826. bottom: 55/1097
  47827. }
  47828. },
  47829. armored: {
  47830. height: math.unit(90, "feet"),
  47831. weight: math.unit(675000, "lb"),
  47832. name: "Armored",
  47833. image: {
  47834. source: "./media/characters/qadan/armored.svg",
  47835. extra: 1047/1037,
  47836. bottom: 48/1095
  47837. }
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(90, "feet"),
  47844. default: true
  47845. },
  47846. ]
  47847. ))
  47848. characterMakers.push(() => makeCharacter(
  47849. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47850. {
  47851. front: {
  47852. height: math.unit(6, "feet"),
  47853. weight: math.unit(225, "lb"),
  47854. name: "Front",
  47855. image: {
  47856. source: "./media/characters/brooke/front.svg",
  47857. extra: 1050/1010,
  47858. bottom: 66/1116
  47859. }
  47860. },
  47861. back: {
  47862. height: math.unit(6, "feet"),
  47863. weight: math.unit(225, "lb"),
  47864. name: "Back",
  47865. image: {
  47866. source: "./media/characters/brooke/back.svg",
  47867. extra: 1053/1013,
  47868. bottom: 41/1094
  47869. }
  47870. },
  47871. dressed: {
  47872. height: math.unit(6, "feet"),
  47873. weight: math.unit(225, "lb"),
  47874. name: "Dressed",
  47875. image: {
  47876. source: "./media/characters/brooke/dressed.svg",
  47877. extra: 1050/1010,
  47878. bottom: 66/1116
  47879. }
  47880. },
  47881. },
  47882. [
  47883. {
  47884. name: "Canon Height",
  47885. height: math.unit(500, "miles"),
  47886. default: true
  47887. },
  47888. ]
  47889. ))
  47890. characterMakers.push(() => makeCharacter(
  47891. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47892. {
  47893. front: {
  47894. height: math.unit(6 + 2/12, "feet"),
  47895. weight: math.unit(210, "lb"),
  47896. name: "Front",
  47897. image: {
  47898. source: "./media/characters/wubs/front.svg",
  47899. extra: 1345/1325,
  47900. bottom: 70/1415
  47901. }
  47902. },
  47903. back: {
  47904. height: math.unit(6 + 2/12, "feet"),
  47905. weight: math.unit(210, "lb"),
  47906. name: "Back",
  47907. image: {
  47908. source: "./media/characters/wubs/back.svg",
  47909. extra: 1296/1275,
  47910. bottom: 58/1354
  47911. }
  47912. },
  47913. },
  47914. [
  47915. {
  47916. name: "Normal",
  47917. height: math.unit(6 + 2/12, "feet"),
  47918. default: true
  47919. },
  47920. {
  47921. name: "Macro",
  47922. height: math.unit(1000, "feet")
  47923. },
  47924. {
  47925. name: "Megamacro",
  47926. height: math.unit(1, "mile")
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47932. {
  47933. front: {
  47934. height: math.unit(4, "feet"),
  47935. weight: math.unit(120, "lb"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/blue/front.svg",
  47939. extra: 1636/1525,
  47940. bottom: 43/1679
  47941. }
  47942. },
  47943. back: {
  47944. height: math.unit(4, "feet"),
  47945. weight: math.unit(120, "lb"),
  47946. name: "Back",
  47947. image: {
  47948. source: "./media/characters/blue/back.svg",
  47949. extra: 1660/1560,
  47950. bottom: 57/1717
  47951. }
  47952. },
  47953. paws: {
  47954. height: math.unit(0.826, "feet"),
  47955. name: "Paws",
  47956. image: {
  47957. source: "./media/characters/blue/paws.svg"
  47958. }
  47959. },
  47960. },
  47961. [
  47962. {
  47963. name: "Micro",
  47964. height: math.unit(3, "inches")
  47965. },
  47966. {
  47967. name: "Normal",
  47968. height: math.unit(4, "feet"),
  47969. default: true
  47970. },
  47971. {
  47972. name: "Femenine Form",
  47973. height: math.unit(14, "feet")
  47974. },
  47975. {
  47976. name: "Werebat Form",
  47977. height: math.unit(18, "feet")
  47978. },
  47979. ]
  47980. ))
  47981. characterMakers.push(() => makeCharacter(
  47982. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47983. {
  47984. female: {
  47985. height: math.unit(7 + 4/12, "feet"),
  47986. weight: math.unit(243, "lb"),
  47987. name: "Female",
  47988. image: {
  47989. source: "./media/characters/kaya/female.svg",
  47990. extra: 975/898,
  47991. bottom: 34/1009
  47992. }
  47993. },
  47994. herm: {
  47995. height: math.unit(7 + 4/12, "feet"),
  47996. weight: math.unit(243, "lb"),
  47997. name: "Herm",
  47998. image: {
  47999. source: "./media/characters/kaya/herm.svg",
  48000. extra: 975/898,
  48001. bottom: 34/1009
  48002. }
  48003. },
  48004. },
  48005. [
  48006. {
  48007. name: "Normal",
  48008. height: math.unit(7 + 4/12, "feet"),
  48009. default: true
  48010. },
  48011. ]
  48012. ))
  48013. characterMakers.push(() => makeCharacter(
  48014. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48015. {
  48016. female: {
  48017. height: math.unit(9 + 4/12, "feet"),
  48018. weight: math.unit(398, "lb"),
  48019. name: "Female",
  48020. image: {
  48021. source: "./media/characters/kassandra/female.svg",
  48022. extra: 908/839,
  48023. bottom: 61/969
  48024. }
  48025. },
  48026. intersex: {
  48027. height: math.unit(9 + 4/12, "feet"),
  48028. weight: math.unit(398, "lb"),
  48029. name: "Intersex",
  48030. image: {
  48031. source: "./media/characters/kassandra/intersex.svg",
  48032. extra: 908/839,
  48033. bottom: 61/969
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Normal",
  48040. height: math.unit(9 + 4/12, "feet"),
  48041. default: true
  48042. },
  48043. ]
  48044. ))
  48045. characterMakers.push(() => makeCharacter(
  48046. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48047. {
  48048. front: {
  48049. height: math.unit(3, "meters"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/amy/front.svg",
  48053. extra: 1380/1343,
  48054. bottom: 70/1450
  48055. }
  48056. },
  48057. back: {
  48058. height: math.unit(3, "meters"),
  48059. name: "Back",
  48060. image: {
  48061. source: "./media/characters/amy/back.svg",
  48062. extra: 1380/1347,
  48063. bottom: 66/1446
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(3, "meters"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48077. {
  48078. side: {
  48079. height: math.unit(47, "cm"),
  48080. weight: math.unit(10.8, "kg"),
  48081. name: "Side",
  48082. image: {
  48083. source: "./media/characters/alphaschakal/side.svg",
  48084. extra: 1058/568,
  48085. bottom: 62/1120
  48086. }
  48087. },
  48088. back: {
  48089. height: math.unit(78, "cm"),
  48090. weight: math.unit(10.8, "kg"),
  48091. name: "Back",
  48092. image: {
  48093. source: "./media/characters/alphaschakal/back.svg",
  48094. extra: 1102/942,
  48095. bottom: 185/1287
  48096. }
  48097. },
  48098. head: {
  48099. height: math.unit(28, "cm"),
  48100. name: "Head",
  48101. image: {
  48102. source: "./media/characters/alphaschakal/head.svg",
  48103. extra: 696/508,
  48104. bottom: 0/696
  48105. }
  48106. },
  48107. paw: {
  48108. height: math.unit(16, "cm"),
  48109. name: "Paw",
  48110. image: {
  48111. source: "./media/characters/alphaschakal/paw.svg"
  48112. }
  48113. },
  48114. },
  48115. [
  48116. {
  48117. name: "Normal",
  48118. height: math.unit(47, "cm"),
  48119. default: true
  48120. },
  48121. {
  48122. name: "Macro",
  48123. height: math.unit(340, "cm")
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48129. {
  48130. front: {
  48131. height: math.unit(36, "earths"),
  48132. name: "Front",
  48133. image: {
  48134. source: "./media/characters/ecobyss/front.svg",
  48135. extra: 1282/1215,
  48136. bottom: 11/1293
  48137. }
  48138. },
  48139. back: {
  48140. height: math.unit(36, "earths"),
  48141. name: "Back",
  48142. image: {
  48143. source: "./media/characters/ecobyss/back.svg",
  48144. extra: 1291/1222,
  48145. bottom: 8/1299
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(36, "earths"),
  48153. default: true
  48154. },
  48155. ]
  48156. ))
  48157. characterMakers.push(() => makeCharacter(
  48158. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48159. {
  48160. front: {
  48161. height: math.unit(12, "feet"),
  48162. name: "Front",
  48163. image: {
  48164. source: "./media/characters/vasuk/front.svg",
  48165. extra: 1326/1207,
  48166. bottom: 64/1390
  48167. }
  48168. },
  48169. },
  48170. [
  48171. {
  48172. name: "Normal",
  48173. height: math.unit(12, "feet"),
  48174. default: true
  48175. },
  48176. ]
  48177. ))
  48178. characterMakers.push(() => makeCharacter(
  48179. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48180. {
  48181. side: {
  48182. height: math.unit(100, "feet"),
  48183. name: "Side",
  48184. image: {
  48185. source: "./media/characters/linneaus/side.svg",
  48186. extra: 987/807,
  48187. bottom: 47/1034
  48188. }
  48189. },
  48190. },
  48191. [
  48192. {
  48193. name: "Macro",
  48194. height: math.unit(100, "feet"),
  48195. default: true
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(8, "feet"),
  48204. weight: math.unit(1200, "lb"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/nyterious-daligdig/front.svg",
  48208. extra: 1284/1094,
  48209. bottom: 84/1368
  48210. }
  48211. },
  48212. back: {
  48213. height: math.unit(8, "feet"),
  48214. weight: math.unit(1200, "lb"),
  48215. name: "Back",
  48216. image: {
  48217. source: "./media/characters/nyterious-daligdig/back.svg",
  48218. extra: 1301/1121,
  48219. bottom: 129/1430
  48220. }
  48221. },
  48222. mouth: {
  48223. height: math.unit(1.464, "feet"),
  48224. name: "Mouth",
  48225. image: {
  48226. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48227. }
  48228. },
  48229. },
  48230. [
  48231. {
  48232. name: "Small",
  48233. height: math.unit(8, "feet"),
  48234. default: true
  48235. },
  48236. {
  48237. name: "Normal",
  48238. height: math.unit(15, "feet")
  48239. },
  48240. {
  48241. name: "Macro",
  48242. height: math.unit(90, "feet")
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48248. {
  48249. front: {
  48250. height: math.unit(7 + 4/12, "feet"),
  48251. weight: math.unit(252, "lb"),
  48252. name: "Front",
  48253. image: {
  48254. source: "./media/characters/bandel/front.svg",
  48255. extra: 1946/1775,
  48256. bottom: 26/1972
  48257. }
  48258. },
  48259. back: {
  48260. height: math.unit(7 + 4/12, "feet"),
  48261. weight: math.unit(252, "lb"),
  48262. name: "Back",
  48263. image: {
  48264. source: "./media/characters/bandel/back.svg",
  48265. extra: 1940/1770,
  48266. bottom: 25/1965
  48267. }
  48268. },
  48269. maw: {
  48270. height: math.unit(2.15, "feet"),
  48271. name: "Maw",
  48272. image: {
  48273. source: "./media/characters/bandel/maw.svg"
  48274. }
  48275. },
  48276. stomach: {
  48277. height: math.unit(1.95, "feet"),
  48278. name: "Stomach",
  48279. image: {
  48280. source: "./media/characters/bandel/stomach.svg"
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(7 + 4/12, "feet"),
  48288. default: true
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48294. {
  48295. front: {
  48296. height: math.unit(10 + 5/12, "feet"),
  48297. weight: math.unit(773.5, "kg"),
  48298. name: "Front",
  48299. image: {
  48300. source: "./media/characters/zed/front.svg",
  48301. extra: 987/941,
  48302. bottom: 52/1039
  48303. }
  48304. },
  48305. },
  48306. [
  48307. {
  48308. name: "Short",
  48309. height: math.unit(5 + 4/12, "feet")
  48310. },
  48311. {
  48312. name: "Average",
  48313. height: math.unit(10 + 5/12, "feet"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Mini-Macro",
  48318. height: math.unit(24 + 9/12, "feet")
  48319. },
  48320. {
  48321. name: "Macro",
  48322. height: math.unit(249, "feet")
  48323. },
  48324. {
  48325. name: "Mega-Macro",
  48326. height: math.unit(12490, "feet")
  48327. },
  48328. {
  48329. name: "Giga-Macro",
  48330. height: math.unit(24.9, "miles")
  48331. },
  48332. {
  48333. name: "Tera-Macro",
  48334. height: math.unit(24900, "miles")
  48335. },
  48336. {
  48337. name: "Cosmic Scale",
  48338. height: math.unit(38.9, "lightyears")
  48339. },
  48340. {
  48341. name: "Universal Scale",
  48342. height: math.unit(138e12, "lightyears")
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48348. {
  48349. front: {
  48350. height: math.unit(1561, "inches"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/ivan/front.svg",
  48354. extra: 1126/1071,
  48355. bottom: 26/1152
  48356. }
  48357. },
  48358. back: {
  48359. height: math.unit(1561, "inches"),
  48360. name: "Back",
  48361. image: {
  48362. source: "./media/characters/ivan/back.svg",
  48363. extra: 1134/1079,
  48364. bottom: 30/1164
  48365. }
  48366. },
  48367. },
  48368. [
  48369. {
  48370. name: "Normal",
  48371. height: math.unit(1561, "inches"),
  48372. default: true
  48373. },
  48374. ]
  48375. ))
  48376. characterMakers.push(() => makeCharacter(
  48377. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48378. {
  48379. front: {
  48380. height: math.unit(5 + 7/12, "feet"),
  48381. weight: math.unit(150, "lb"),
  48382. name: "Front",
  48383. image: {
  48384. source: "./media/characters/robin-arctic-hare/front.svg",
  48385. extra: 1148/974,
  48386. bottom: 20/1168
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Normal",
  48393. height: math.unit(5 + 7/12, "feet"),
  48394. default: true
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48400. {
  48401. side: {
  48402. height: math.unit(5, "feet"),
  48403. name: "Side",
  48404. image: {
  48405. source: "./media/characters/birch/side.svg",
  48406. extra: 985/796,
  48407. bottom: 111/1096
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Normal",
  48414. height: math.unit(5, "feet"),
  48415. default: true
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48421. {
  48422. front: {
  48423. height: math.unit(4, "feet"),
  48424. name: "Front",
  48425. image: {
  48426. source: "./media/characters/rasp/front.svg",
  48427. extra: 561/478,
  48428. bottom: 74/635
  48429. }
  48430. },
  48431. },
  48432. [
  48433. {
  48434. name: "Normal",
  48435. height: math.unit(4, "feet"),
  48436. default: true
  48437. },
  48438. ]
  48439. ))
  48440. characterMakers.push(() => makeCharacter(
  48441. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48442. {
  48443. front: {
  48444. height: math.unit(4 + 6/12, "feet"),
  48445. name: "Front",
  48446. image: {
  48447. source: "./media/characters/agatha/front.svg",
  48448. extra: 947/933,
  48449. bottom: 42/989
  48450. }
  48451. },
  48452. back: {
  48453. height: math.unit(4 + 6/12, "feet"),
  48454. name: "Back",
  48455. image: {
  48456. source: "./media/characters/agatha/back.svg",
  48457. extra: 935/922,
  48458. bottom: 48/983
  48459. }
  48460. },
  48461. },
  48462. [
  48463. {
  48464. name: "Normal",
  48465. height: math.unit(4 + 6 /12, "feet"),
  48466. default: true
  48467. },
  48468. {
  48469. name: "Max Size",
  48470. height: math.unit(500, "feet")
  48471. },
  48472. ]
  48473. ))
  48474. characterMakers.push(() => makeCharacter(
  48475. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48476. {
  48477. side: {
  48478. height: math.unit(30, "feet"),
  48479. name: "Side",
  48480. image: {
  48481. source: "./media/characters/roggy/side.svg",
  48482. extra: 909/643,
  48483. bottom: 63/972
  48484. }
  48485. },
  48486. lounging: {
  48487. height: math.unit(20, "feet"),
  48488. name: "Lounging",
  48489. image: {
  48490. source: "./media/characters/roggy/lounging.svg",
  48491. extra: 643/479,
  48492. bottom: 145/788
  48493. }
  48494. },
  48495. handpaw: {
  48496. height: math.unit(13.1, "feet"),
  48497. name: "Handpaw",
  48498. image: {
  48499. source: "./media/characters/roggy/handpaw.svg"
  48500. }
  48501. },
  48502. footpaw: {
  48503. height: math.unit(15.8, "feet"),
  48504. name: "Footpaw",
  48505. image: {
  48506. source: "./media/characters/roggy/footpaw.svg"
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Menacing",
  48513. height: math.unit(30, "feet"),
  48514. default: true
  48515. },
  48516. ]
  48517. ))
  48518. characterMakers.push(() => makeCharacter(
  48519. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48520. {
  48521. front: {
  48522. height: math.unit(5 + 7/12, "feet"),
  48523. weight: math.unit(135, "lb"),
  48524. name: "Front",
  48525. image: {
  48526. source: "./media/characters/naomi/front.svg",
  48527. extra: 1209/1154,
  48528. bottom: 129/1338
  48529. }
  48530. },
  48531. back: {
  48532. height: math.unit(5 + 7/12, "feet"),
  48533. weight: math.unit(135, "lb"),
  48534. name: "Back",
  48535. image: {
  48536. source: "./media/characters/naomi/back.svg",
  48537. extra: 1252/1190,
  48538. bottom: 23/1275
  48539. }
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Normal",
  48545. height: math.unit(5 + 7 /12, "feet"),
  48546. default: true
  48547. },
  48548. ]
  48549. ))
  48550. characterMakers.push(() => makeCharacter(
  48551. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48552. {
  48553. side: {
  48554. height: math.unit(35, "meters"),
  48555. name: "Side",
  48556. image: {
  48557. source: "./media/characters/kimpi/side.svg",
  48558. extra: 419/382,
  48559. bottom: 63/482
  48560. }
  48561. },
  48562. hand: {
  48563. height: math.unit(8.96, "meters"),
  48564. name: "Hand",
  48565. image: {
  48566. source: "./media/characters/kimpi/hand.svg"
  48567. }
  48568. },
  48569. },
  48570. [
  48571. {
  48572. name: "Normal",
  48573. height: math.unit(35, "meters"),
  48574. default: true
  48575. },
  48576. ]
  48577. ))
  48578. characterMakers.push(() => makeCharacter(
  48579. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48580. {
  48581. front: {
  48582. height: math.unit(4 + 4/12, "feet"),
  48583. name: "Front",
  48584. image: {
  48585. source: "./media/characters/pepper-purrloin/front.svg",
  48586. extra: 1141/1024,
  48587. bottom: 21/1162
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(4 + 4/12, "feet"),
  48595. default: true
  48596. },
  48597. ]
  48598. ))
  48599. characterMakers.push(() => makeCharacter(
  48600. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48601. {
  48602. front: {
  48603. height: math.unit(6 + 2/12, "feet"),
  48604. name: "Front",
  48605. image: {
  48606. source: "./media/characters/raphael/front.svg",
  48607. extra: 1101/962,
  48608. bottom: 59/1160
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Normal",
  48615. height: math.unit(6 + 2/12, "feet"),
  48616. default: true
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48622. {
  48623. front: {
  48624. height: math.unit(6, "feet"),
  48625. weight: math.unit(150, "lb"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/victor-williams/front.svg",
  48629. extra: 1894/1825,
  48630. bottom: 67/1961
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(6, "feet"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48644. {
  48645. front: {
  48646. height: math.unit(5 + 8/12, "feet"),
  48647. weight: math.unit(150, "lb"),
  48648. name: "Front",
  48649. image: {
  48650. source: "./media/characters/rachel/front.svg",
  48651. extra: 1902/1787,
  48652. bottom: 46/1948
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Base Height",
  48659. height: math.unit(5 + 8/12, "feet"),
  48660. default: true
  48661. },
  48662. {
  48663. name: "Macro",
  48664. height: math.unit(200, "feet")
  48665. },
  48666. {
  48667. name: "Mega Macro",
  48668. height: math.unit(1, "mile")
  48669. },
  48670. {
  48671. name: "Giga Macro",
  48672. height: math.unit(1500, "miles")
  48673. },
  48674. {
  48675. name: "Tera Macro",
  48676. height: math.unit(8000, "miles")
  48677. },
  48678. {
  48679. name: "Tera Macro+",
  48680. height: math.unit(2e5, "miles")
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48686. {
  48687. front: {
  48688. height: math.unit(6.5, "feet"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48692. extra: 860/819,
  48693. bottom: 307/1167
  48694. }
  48695. },
  48696. back: {
  48697. height: math.unit(6.5, "feet"),
  48698. name: "Back",
  48699. image: {
  48700. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48701. extra: 880/837,
  48702. bottom: 395/1275
  48703. }
  48704. },
  48705. sleeping: {
  48706. height: math.unit(2.79, "feet"),
  48707. name: "Sleeping",
  48708. image: {
  48709. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48710. extra: 465/383,
  48711. bottom: 263/728
  48712. }
  48713. },
  48714. maw: {
  48715. height: math.unit(2.52, "feet"),
  48716. name: "Maw",
  48717. image: {
  48718. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(6.5, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(5, "feet"),
  48735. name: "Front",
  48736. image: {
  48737. source: "./media/characters/nova-nerium/front.svg",
  48738. extra: 1548/1392,
  48739. bottom: 374/1922
  48740. }
  48741. },
  48742. back: {
  48743. height: math.unit(5, "feet"),
  48744. name: "Back",
  48745. image: {
  48746. source: "./media/characters/nova-nerium/back.svg",
  48747. extra: 1658/1468,
  48748. bottom: 257/1915
  48749. }
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(5, "feet"),
  48756. default: true
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48762. {
  48763. front: {
  48764. height: math.unit(5 + 4/12, "feet"),
  48765. name: "Front",
  48766. image: {
  48767. source: "./media/characters/ashe-pyriph/front.svg",
  48768. extra: 1935/1747,
  48769. bottom: 60/1995
  48770. }
  48771. },
  48772. },
  48773. [
  48774. {
  48775. name: "Normal",
  48776. height: math.unit(5 + 4/12, "feet"),
  48777. default: true
  48778. },
  48779. ]
  48780. ))
  48781. characterMakers.push(() => makeCharacter(
  48782. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48783. {
  48784. front: {
  48785. height: math.unit(8.7, "feet"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/flicker-wisp/front.svg",
  48789. extra: 1835/1613,
  48790. bottom: 449/2284
  48791. }
  48792. },
  48793. side: {
  48794. height: math.unit(8.7, "feet"),
  48795. name: "Side",
  48796. image: {
  48797. source: "./media/characters/flicker-wisp/side.svg",
  48798. extra: 1841/1642,
  48799. bottom: 336/2177
  48800. },
  48801. default: true
  48802. },
  48803. maw: {
  48804. height: math.unit(3.35, "feet"),
  48805. name: "Maw",
  48806. image: {
  48807. source: "./media/characters/flicker-wisp/maw.svg",
  48808. extra: 2338/1506,
  48809. bottom: 0/2338
  48810. }
  48811. },
  48812. ovipositor: {
  48813. height: math.unit(4.95, "feet"),
  48814. name: "Ovipositor",
  48815. image: {
  48816. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48817. }
  48818. },
  48819. egg: {
  48820. height: math.unit(0.385, "feet"),
  48821. weight: math.unit(2, "lb"),
  48822. name: "Egg",
  48823. image: {
  48824. source: "./media/characters/flicker-wisp/egg.svg"
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(8.7, "feet"),
  48832. default: true
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48838. {
  48839. side: {
  48840. height: math.unit(11, "feet"),
  48841. name: "Side",
  48842. image: {
  48843. source: "./media/characters/faefnul/side.svg",
  48844. extra: 1100/1007,
  48845. bottom: 0/1100
  48846. }
  48847. },
  48848. },
  48849. [
  48850. {
  48851. name: "Normal",
  48852. height: math.unit(11, "feet"),
  48853. default: true
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48859. {
  48860. front: {
  48861. height: math.unit(6 + 2/12, "feet"),
  48862. name: "Front",
  48863. image: {
  48864. source: "./media/characters/shady/front.svg",
  48865. extra: 502/461,
  48866. bottom: 9/511
  48867. }
  48868. },
  48869. kneeling: {
  48870. height: math.unit(4.6, "feet"),
  48871. name: "Kneeling",
  48872. image: {
  48873. source: "./media/characters/shady/kneeling.svg",
  48874. extra: 1328/1219,
  48875. bottom: 117/1445
  48876. }
  48877. },
  48878. maw: {
  48879. height: math.unit(2, "feet"),
  48880. name: "Maw",
  48881. image: {
  48882. source: "./media/characters/shady/maw.svg"
  48883. }
  48884. },
  48885. },
  48886. [
  48887. {
  48888. name: "Nano",
  48889. height: math.unit(1, "mm")
  48890. },
  48891. {
  48892. name: "Micro",
  48893. height: math.unit(12, "mm")
  48894. },
  48895. {
  48896. name: "Tiny",
  48897. height: math.unit(3, "inches")
  48898. },
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(6 + 2/12, "feet"),
  48902. default: true
  48903. },
  48904. {
  48905. name: "Big",
  48906. height: math.unit(15, "feet")
  48907. },
  48908. {
  48909. name: "Macro",
  48910. height: math.unit(150, "feet")
  48911. },
  48912. {
  48913. name: "Titanic",
  48914. height: math.unit(500, "feet")
  48915. },
  48916. ]
  48917. ))
  48918. characterMakers.push(() => makeCharacter(
  48919. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48920. {
  48921. front: {
  48922. height: math.unit(12, "feet"),
  48923. name: "Front",
  48924. image: {
  48925. source: "./media/characters/fenrir/front.svg",
  48926. extra: 968/875,
  48927. bottom: 22/990
  48928. }
  48929. },
  48930. },
  48931. [
  48932. {
  48933. name: "Big",
  48934. height: math.unit(12, "feet"),
  48935. default: true
  48936. },
  48937. ]
  48938. ))
  48939. characterMakers.push(() => makeCharacter(
  48940. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48941. {
  48942. front: {
  48943. height: math.unit(5 + 4/12, "feet"),
  48944. name: "Front",
  48945. image: {
  48946. source: "./media/characters/makar/front.svg",
  48947. extra: 1181/1112,
  48948. bottom: 78/1259
  48949. }
  48950. },
  48951. },
  48952. [
  48953. {
  48954. name: "Normal",
  48955. height: math.unit(5 + 4/12, "feet"),
  48956. default: true
  48957. },
  48958. ]
  48959. ))
  48960. characterMakers.push(() => makeCharacter(
  48961. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48962. {
  48963. front: {
  48964. height: math.unit(5 + 7/12, "feet"),
  48965. name: "Front",
  48966. image: {
  48967. source: "./media/characters/callow/front.svg",
  48968. extra: 1482/1304,
  48969. bottom: 23/1505
  48970. }
  48971. },
  48972. back: {
  48973. height: math.unit(5 + 7/12, "feet"),
  48974. name: "Back",
  48975. image: {
  48976. source: "./media/characters/callow/back.svg",
  48977. extra: 1484/1296,
  48978. bottom: 25/1509
  48979. }
  48980. },
  48981. },
  48982. [
  48983. {
  48984. name: "Micro",
  48985. height: math.unit(3, "inches"),
  48986. default: true
  48987. },
  48988. {
  48989. name: "Normal",
  48990. height: math.unit(5 + 7/12, "feet")
  48991. },
  48992. ]
  48993. ))
  48994. characterMakers.push(() => makeCharacter(
  48995. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48996. {
  48997. front: {
  48998. height: math.unit(6 + 2/12, "feet"),
  48999. name: "Front",
  49000. image: {
  49001. source: "./media/characters/natel/front.svg",
  49002. extra: 1833/1692,
  49003. bottom: 166/1999
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(6 + 2/12, "feet"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49017. {
  49018. front: {
  49019. height: math.unit(1.75, "meters"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/misu/front.svg",
  49023. extra: 1690/1558,
  49024. bottom: 234/1924
  49025. }
  49026. },
  49027. back: {
  49028. height: math.unit(1.75, "meters"),
  49029. name: "Back",
  49030. image: {
  49031. source: "./media/characters/misu/back.svg",
  49032. extra: 1762/1618,
  49033. bottom: 146/1908
  49034. }
  49035. },
  49036. frontNude: {
  49037. height: math.unit(1.75, "meters"),
  49038. name: "Front (Nude)",
  49039. image: {
  49040. source: "./media/characters/misu/front-nude.svg",
  49041. extra: 1690/1558,
  49042. bottom: 234/1924
  49043. }
  49044. },
  49045. backNude: {
  49046. height: math.unit(1.75, "meters"),
  49047. name: "Back (Nude)",
  49048. image: {
  49049. source: "./media/characters/misu/back-nude.svg",
  49050. extra: 1762/1618,
  49051. bottom: 146/1908
  49052. }
  49053. },
  49054. frontErect: {
  49055. height: math.unit(1.75, "meters"),
  49056. name: "Front (Erect)",
  49057. image: {
  49058. source: "./media/characters/misu/front-erect.svg",
  49059. extra: 1690/1558,
  49060. bottom: 234/1924
  49061. }
  49062. },
  49063. maw: {
  49064. height: math.unit(0.47, "meters"),
  49065. name: "Maw",
  49066. image: {
  49067. source: "./media/characters/misu/maw.svg"
  49068. }
  49069. },
  49070. head: {
  49071. height: math.unit(0.35, "meters"),
  49072. name: "Head",
  49073. image: {
  49074. source: "./media/characters/misu/head.svg"
  49075. }
  49076. },
  49077. rear: {
  49078. height: math.unit(0.47, "meters"),
  49079. name: "Rear",
  49080. image: {
  49081. source: "./media/characters/misu/rear.svg"
  49082. }
  49083. },
  49084. },
  49085. [
  49086. {
  49087. name: "Normal",
  49088. height: math.unit(1.75, "meters")
  49089. },
  49090. {
  49091. name: "Not good for the people",
  49092. height: math.unit(42, "meters")
  49093. },
  49094. {
  49095. name: "Not good for the neighborhood",
  49096. height: math.unit(135, "meters")
  49097. },
  49098. {
  49099. name: "Bit bigger problem",
  49100. height: math.unit(380, "meters"),
  49101. default: true
  49102. },
  49103. {
  49104. name: "Not good for the city",
  49105. height: math.unit(1.5, "km")
  49106. },
  49107. {
  49108. name: "Not good for the county",
  49109. height: math.unit(5.5, "km")
  49110. },
  49111. {
  49112. name: "Not good for the state",
  49113. height: math.unit(25, "km")
  49114. },
  49115. {
  49116. name: "Not good for the country",
  49117. height: math.unit(125, "km")
  49118. },
  49119. {
  49120. name: "Not good for the continent",
  49121. height: math.unit(2100, "km")
  49122. },
  49123. {
  49124. name: "Not good for the planet",
  49125. height: math.unit(35000, "km")
  49126. },
  49127. {
  49128. name: "Just no",
  49129. height: math.unit(8.5e18, "km")
  49130. },
  49131. ]
  49132. ))
  49133. characterMakers.push(() => makeCharacter(
  49134. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49135. {
  49136. front: {
  49137. height: math.unit(6.5, "feet"),
  49138. name: "Front",
  49139. image: {
  49140. source: "./media/characters/poppy/front.svg",
  49141. extra: 1878/1812,
  49142. bottom: 43/1921
  49143. }
  49144. },
  49145. feet: {
  49146. height: math.unit(1.06, "feet"),
  49147. name: "Feet",
  49148. image: {
  49149. source: "./media/characters/poppy/feet.svg",
  49150. extra: 1083/1083,
  49151. bottom: 87/1170
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Human",
  49158. height: math.unit(6.5, "feet")
  49159. },
  49160. {
  49161. name: "Default",
  49162. height: math.unit(300, "feet"),
  49163. default: true
  49164. },
  49165. {
  49166. name: "Huge",
  49167. height: math.unit(850, "feet")
  49168. },
  49169. {
  49170. name: "Mega",
  49171. height: math.unit(8000, "feet")
  49172. },
  49173. {
  49174. name: "Giga",
  49175. height: math.unit(300, "miles")
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49181. {
  49182. bipedal: {
  49183. height: math.unit(7, "feet"),
  49184. name: "Bipedal",
  49185. image: {
  49186. source: "./media/characters/zener/bipedal.svg",
  49187. extra: 874/805,
  49188. bottom: 109/983
  49189. }
  49190. },
  49191. quadrupedal: {
  49192. height: math.unit(4.64, "feet"),
  49193. name: "Quadrupedal",
  49194. image: {
  49195. source: "./media/characters/zener/quadrupedal.svg",
  49196. extra: 638/507,
  49197. bottom: 190/828
  49198. }
  49199. },
  49200. cock: {
  49201. height: math.unit(18, "inches"),
  49202. name: "Cock",
  49203. image: {
  49204. source: "./media/characters/zener/cock.svg"
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Normal",
  49211. height: math.unit(7, "feet"),
  49212. default: true
  49213. },
  49214. ]
  49215. ))
  49216. characterMakers.push(() => makeCharacter(
  49217. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49218. {
  49219. nude: {
  49220. height: math.unit(5 + 6/12, "feet"),
  49221. name: "Nude",
  49222. image: {
  49223. source: "./media/characters/charlie-dog/nude.svg",
  49224. extra: 768/734,
  49225. bottom: 26/794
  49226. }
  49227. },
  49228. dressed: {
  49229. height: math.unit(5 + 6/12, "feet"),
  49230. name: "Dressed",
  49231. image: {
  49232. source: "./media/characters/charlie-dog/dressed.svg",
  49233. extra: 768/734,
  49234. bottom: 26/794
  49235. }
  49236. },
  49237. },
  49238. [
  49239. {
  49240. name: "Normal",
  49241. height: math.unit(5 + 6/12, "feet"),
  49242. default: true
  49243. },
  49244. ]
  49245. ))
  49246. characterMakers.push(() => makeCharacter(
  49247. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49248. {
  49249. front: {
  49250. height: math.unit(6 + 4/12, "feet"),
  49251. name: "Front",
  49252. image: {
  49253. source: "./media/characters/ir'istrasz/front.svg",
  49254. extra: 1014/977,
  49255. bottom: 65/1079
  49256. }
  49257. },
  49258. back: {
  49259. height: math.unit(6 + 4/12, "feet"),
  49260. name: "Back",
  49261. image: {
  49262. source: "./media/characters/ir'istrasz/back.svg",
  49263. extra: 1024/992,
  49264. bottom: 34/1058
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(6 + 4/12, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49278. {
  49279. front: {
  49280. height: math.unit(5 + 8/12, "feet"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/dee-ditto/front.svg",
  49284. extra: 1874/1785,
  49285. bottom: 68/1942
  49286. }
  49287. },
  49288. back: {
  49289. height: math.unit(5 + 8/12, "feet"),
  49290. name: "Back",
  49291. image: {
  49292. source: "./media/characters/dee-ditto/back.svg",
  49293. extra: 1870/1783,
  49294. bottom: 77/1947
  49295. }
  49296. },
  49297. },
  49298. [
  49299. {
  49300. name: "Normal",
  49301. height: math.unit(5 + 8/12, "feet"),
  49302. default: true
  49303. },
  49304. ]
  49305. ))
  49306. characterMakers.push(() => makeCharacter(
  49307. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49308. {
  49309. front: {
  49310. height: math.unit(7 + 6/12, "feet"),
  49311. name: "Front",
  49312. image: {
  49313. source: "./media/characters/fey/front.svg",
  49314. extra: 995/979,
  49315. bottom: 30/1025
  49316. }
  49317. },
  49318. back: {
  49319. height: math.unit(7 + 6/12, "feet"),
  49320. name: "Back",
  49321. image: {
  49322. source: "./media/characters/fey/back.svg",
  49323. extra: 1079/1008,
  49324. bottom: 5/1084
  49325. }
  49326. },
  49327. dressed: {
  49328. height: math.unit(7 + 6/12, "feet"),
  49329. name: "Dressed",
  49330. image: {
  49331. source: "./media/characters/fey/dressed.svg",
  49332. extra: 995/979,
  49333. bottom: 30/1025
  49334. }
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Normal",
  49340. height: math.unit(7 + 6/12, "feet"),
  49341. default: true
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49347. {
  49348. standing: {
  49349. height: math.unit(17, "feet"),
  49350. name: "Standing",
  49351. image: {
  49352. source: "./media/characters/aster/standing.svg",
  49353. extra: 1798/1598,
  49354. bottom: 117/1915
  49355. }
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(17, "feet"),
  49362. default: true
  49363. },
  49364. {
  49365. name: "Homewrecker",
  49366. height: math.unit(95, "feet")
  49367. },
  49368. {
  49369. name: "Planet Devourer",
  49370. height: math.unit(1008000, "miles")
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49376. {
  49377. front: {
  49378. height: math.unit(6 + 5/12, "feet"),
  49379. weight: math.unit(265, "lb"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/devon-childs/front.svg",
  49383. extra: 1795/1721,
  49384. bottom: 41/1836
  49385. }
  49386. },
  49387. side: {
  49388. height: math.unit(6 + 5/12, "feet"),
  49389. weight: math.unit(265, "lb"),
  49390. name: "Side",
  49391. image: {
  49392. source: "./media/characters/devon-childs/side.svg",
  49393. extra: 1812/1738,
  49394. bottom: 30/1842
  49395. }
  49396. },
  49397. back: {
  49398. height: math.unit(6 + 5/12, "feet"),
  49399. weight: math.unit(265, "lb"),
  49400. name: "Back",
  49401. image: {
  49402. source: "./media/characters/devon-childs/back.svg",
  49403. extra: 1808/1735,
  49404. bottom: 23/1831
  49405. }
  49406. },
  49407. hand: {
  49408. height: math.unit(1.464, "feet"),
  49409. name: "Hand",
  49410. image: {
  49411. source: "./media/characters/devon-childs/hand.svg"
  49412. }
  49413. },
  49414. foot: {
  49415. height: math.unit(1.6, "feet"),
  49416. name: "Foot",
  49417. image: {
  49418. source: "./media/characters/devon-childs/foot.svg"
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Micro",
  49425. height: math.unit(7, "cm")
  49426. },
  49427. {
  49428. name: "Normal",
  49429. height: math.unit(6 + 5/12, "feet"),
  49430. default: true
  49431. },
  49432. {
  49433. name: "Macro",
  49434. height: math.unit(154, "feet")
  49435. },
  49436. ]
  49437. ))
  49438. characterMakers.push(() => makeCharacter(
  49439. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49440. {
  49441. front: {
  49442. height: math.unit(6, "feet"),
  49443. weight: math.unit(180, "lb"),
  49444. name: "Front",
  49445. image: {
  49446. source: "./media/characters/lydemox-vir/front.svg",
  49447. extra: 1632/1435,
  49448. bottom: 58/1690
  49449. }
  49450. },
  49451. frontSFW: {
  49452. height: math.unit(6, "feet"),
  49453. weight: math.unit(180, "lb"),
  49454. name: "Front (SFW)",
  49455. image: {
  49456. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49457. extra: 1632/1435,
  49458. bottom: 58/1690
  49459. }
  49460. },
  49461. back: {
  49462. height: math.unit(6, "feet"),
  49463. weight: math.unit(180, "lb"),
  49464. name: "Back",
  49465. image: {
  49466. source: "./media/characters/lydemox-vir/back.svg",
  49467. extra: 1593/1408,
  49468. bottom: 31/1624
  49469. }
  49470. },
  49471. paw: {
  49472. height: math.unit(1.85, "feet"),
  49473. name: "Paw",
  49474. image: {
  49475. source: "./media/characters/lydemox-vir/paw.svg"
  49476. }
  49477. },
  49478. dick: {
  49479. height: math.unit(1.8, "feet"),
  49480. name: "Dick",
  49481. image: {
  49482. source: "./media/characters/lydemox-vir/dick.svg"
  49483. }
  49484. },
  49485. },
  49486. [
  49487. {
  49488. name: "Macro",
  49489. height: math.unit(100, "feet"),
  49490. default: true
  49491. },
  49492. {
  49493. name: "Teramacro",
  49494. height: math.unit(1, "earth")
  49495. },
  49496. {
  49497. name: "Planetary",
  49498. height: math.unit(20, "earths")
  49499. },
  49500. ]
  49501. ))
  49502. characterMakers.push(() => makeCharacter(
  49503. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49504. {
  49505. front: {
  49506. height: math.unit(15 + 8/12, "feet"),
  49507. weight: math.unit(1237, "kg"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/mia/front.svg",
  49511. extra: 1573/1446,
  49512. bottom: 58/1631
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Small",
  49519. height: math.unit(9 + 5/12, "feet")
  49520. },
  49521. {
  49522. name: "Normal",
  49523. height: math.unit(15 + 8/12, "feet"),
  49524. default: true
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49530. {
  49531. front: {
  49532. height: math.unit(10 + 6/12, "feet"),
  49533. weight: math.unit(1.3, "tons"),
  49534. name: "Front",
  49535. image: {
  49536. source: "./media/characters/mr-graves/front.svg",
  49537. extra: 1779/1695,
  49538. bottom: 198/1977
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Normal",
  49545. height: math.unit(10 + 6 /12, "feet"),
  49546. default: true
  49547. },
  49548. ]
  49549. ))
  49550. characterMakers.push(() => makeCharacter(
  49551. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49552. {
  49553. dressedFront: {
  49554. height: math.unit(5 + 8/12, "feet"),
  49555. weight: math.unit(125, "lb"),
  49556. name: "Dressed (Front)",
  49557. image: {
  49558. source: "./media/characters/jess/dressed-front.svg",
  49559. extra: 1176/1152,
  49560. bottom: 42/1218
  49561. }
  49562. },
  49563. dressedSide: {
  49564. height: math.unit(5 + 8/12, "feet"),
  49565. weight: math.unit(125, "lb"),
  49566. name: "Dressed (Side)",
  49567. image: {
  49568. source: "./media/characters/jess/dressed-side.svg",
  49569. extra: 1204/1190,
  49570. bottom: 6/1210
  49571. }
  49572. },
  49573. nudeFront: {
  49574. height: math.unit(5 + 8/12, "feet"),
  49575. weight: math.unit(125, "lb"),
  49576. name: "Nude (Front)",
  49577. image: {
  49578. source: "./media/characters/jess/nude-front.svg",
  49579. extra: 1176/1152,
  49580. bottom: 42/1218
  49581. }
  49582. },
  49583. nudeSide: {
  49584. height: math.unit(5 + 8/12, "feet"),
  49585. weight: math.unit(125, "lb"),
  49586. name: "Nude (Side)",
  49587. image: {
  49588. source: "./media/characters/jess/nude-side.svg",
  49589. extra: 1204/1190,
  49590. bottom: 6/1210
  49591. }
  49592. },
  49593. organsFront: {
  49594. height: math.unit(2.83799342105, "feet"),
  49595. name: "Organs (Front)",
  49596. image: {
  49597. source: "./media/characters/jess/organs-front.svg"
  49598. }
  49599. },
  49600. organsSide: {
  49601. height: math.unit(2.64225290474, "feet"),
  49602. name: "Organs (Side)",
  49603. image: {
  49604. source: "./media/characters/jess/organs-side.svg"
  49605. }
  49606. },
  49607. digestiveTractFront: {
  49608. height: math.unit(2.8106580871, "feet"),
  49609. name: "Digestive Tract (Front)",
  49610. image: {
  49611. source: "./media/characters/jess/digestive-tract-front.svg"
  49612. }
  49613. },
  49614. digestiveTractSide: {
  49615. height: math.unit(2.54365045014, "feet"),
  49616. name: "Digestive Tract (Side)",
  49617. image: {
  49618. source: "./media/characters/jess/digestive-tract-side.svg"
  49619. }
  49620. },
  49621. respiratorySystemFront: {
  49622. height: math.unit(1.11196233456, "feet"),
  49623. name: "Respiratory System (Front)",
  49624. image: {
  49625. source: "./media/characters/jess/respiratory-system-front.svg"
  49626. }
  49627. },
  49628. respiratorySystemSide: {
  49629. height: math.unit(0.89327966297, "feet"),
  49630. name: "Respiratory System (Side)",
  49631. image: {
  49632. source: "./media/characters/jess/respiratory-system-side.svg"
  49633. }
  49634. },
  49635. urinaryTractFront: {
  49636. height: math.unit(1.16126356186, "feet"),
  49637. name: "Urinary Tract (Front)",
  49638. image: {
  49639. source: "./media/characters/jess/urinary-tract-front.svg"
  49640. }
  49641. },
  49642. urinaryTractSide: {
  49643. height: math.unit(1.20910039627, "feet"),
  49644. name: "Urinary Tract (Side)",
  49645. image: {
  49646. source: "./media/characters/jess/urinary-tract-side.svg"
  49647. }
  49648. },
  49649. reproductiveOrgansFront: {
  49650. height: math.unit(0.48422591566, "feet"),
  49651. name: "Reproductive Organs (Front)",
  49652. image: {
  49653. source: "./media/characters/jess/reproductive-organs-front.svg"
  49654. }
  49655. },
  49656. reproductiveOrgansSide: {
  49657. height: math.unit(0.61553314481, "feet"),
  49658. name: "Reproductive Organs (Side)",
  49659. image: {
  49660. source: "./media/characters/jess/reproductive-organs-side.svg"
  49661. }
  49662. },
  49663. breastsFront: {
  49664. height: math.unit(0.47690395121, "feet"),
  49665. name: "Breasts (Front)",
  49666. image: {
  49667. source: "./media/characters/jess/breasts-front.svg"
  49668. }
  49669. },
  49670. breastsSide: {
  49671. height: math.unit(0.30556998307, "feet"),
  49672. name: "Breasts (Side)",
  49673. image: {
  49674. source: "./media/characters/jess/breasts-side.svg"
  49675. }
  49676. },
  49677. heartFront: {
  49678. height: math.unit(0.53011022622, "feet"),
  49679. name: "Heart (Front)",
  49680. image: {
  49681. source: "./media/characters/jess/heart-front.svg"
  49682. }
  49683. },
  49684. heartSide: {
  49685. height: math.unit(0.51790695213, "feet"),
  49686. name: "Heart (Side)",
  49687. image: {
  49688. source: "./media/characters/jess/heart-side.svg"
  49689. }
  49690. },
  49691. earsAndNoseFront: {
  49692. height: math.unit(0.29385483995, "feet"),
  49693. name: "Ears and Nose (Front)",
  49694. image: {
  49695. source: "./media/characters/jess/ears-and-nose-front.svg"
  49696. }
  49697. },
  49698. earsAndNoseSide: {
  49699. height: math.unit(0.18109658741, "feet"),
  49700. name: "Ears and Nose (Side)",
  49701. image: {
  49702. source: "./media/characters/jess/ears-and-nose-side.svg"
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(5 + 8/12, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(6, "feet"),
  49719. weight: math.unit(6.64467e-7, "grams"),
  49720. name: "Front",
  49721. image: {
  49722. source: "./media/characters/wimpering/front.svg",
  49723. extra: 597/587,
  49724. bottom: 34/631
  49725. }
  49726. },
  49727. },
  49728. [
  49729. {
  49730. name: "Micro",
  49731. height: math.unit(0.4, "mm"),
  49732. default: true
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49738. {
  49739. front: {
  49740. height: math.unit(5 + 2/12, "feet"),
  49741. weight: math.unit(110, "lb"),
  49742. name: "Front",
  49743. image: {
  49744. source: "./media/characters/keltre/front.svg",
  49745. extra: 1099/1057,
  49746. bottom: 22/1121
  49747. }
  49748. },
  49749. back: {
  49750. height: math.unit(5 + 2/12, "feet"),
  49751. weight: math.unit(110, "lb"),
  49752. name: "Back",
  49753. image: {
  49754. source: "./media/characters/keltre/back.svg",
  49755. extra: 1095/1053,
  49756. bottom: 17/1112
  49757. }
  49758. },
  49759. dressed: {
  49760. height: math.unit(5 + 2/12, "feet"),
  49761. weight: math.unit(110, "lb"),
  49762. name: "Dressed",
  49763. image: {
  49764. source: "./media/characters/keltre/dressed.svg",
  49765. extra: 1099/1057,
  49766. bottom: 22/1121
  49767. }
  49768. },
  49769. winter: {
  49770. height: math.unit(5 + 2/12, "feet"),
  49771. weight: math.unit(110, "lb"),
  49772. name: "Winter",
  49773. image: {
  49774. source: "./media/characters/keltre/winter.svg",
  49775. extra: 1099/1057,
  49776. bottom: 22/1121
  49777. }
  49778. },
  49779. head: {
  49780. height: math.unit(1.61 * 0.86, "feet"),
  49781. name: "Head",
  49782. image: {
  49783. source: "./media/characters/keltre/head.svg",
  49784. extra: 534/421,
  49785. bottom: 0/534
  49786. }
  49787. },
  49788. hand: {
  49789. height: math.unit(1.3 * 0.86, "feet"),
  49790. name: "Hand",
  49791. image: {
  49792. source: "./media/characters/keltre/hand.svg"
  49793. }
  49794. },
  49795. foot: {
  49796. height: math.unit(1.8 * 0.86, "feet"),
  49797. name: "Foot",
  49798. image: {
  49799. source: "./media/characters/keltre/foot.svg"
  49800. }
  49801. },
  49802. },
  49803. [
  49804. {
  49805. name: "Fine",
  49806. height: math.unit(1, "inch")
  49807. },
  49808. {
  49809. name: "Dimnutive",
  49810. height: math.unit(4, "inches")
  49811. },
  49812. {
  49813. name: "Tiny",
  49814. height: math.unit(1, "foot")
  49815. },
  49816. {
  49817. name: "Small",
  49818. height: math.unit(3, "feet")
  49819. },
  49820. {
  49821. name: "Normal",
  49822. height: math.unit(5 + 2/12, "feet"),
  49823. default: true
  49824. },
  49825. ]
  49826. ))
  49827. characterMakers.push(() => makeCharacter(
  49828. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49829. {
  49830. front: {
  49831. height: math.unit(6 + 2/12, "feet"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/nox/front.svg",
  49835. extra: 1917/1830,
  49836. bottom: 74/1991
  49837. }
  49838. },
  49839. back: {
  49840. height: math.unit(6 + 2/12, "feet"),
  49841. name: "Back",
  49842. image: {
  49843. source: "./media/characters/nox/back.svg",
  49844. extra: 1896/1815,
  49845. bottom: 21/1917
  49846. }
  49847. },
  49848. head: {
  49849. height: math.unit(1.1, "feet"),
  49850. name: "Head",
  49851. image: {
  49852. source: "./media/characters/nox/head.svg",
  49853. extra: 874/704,
  49854. bottom: 0/874
  49855. }
  49856. },
  49857. tattoo: {
  49858. height: math.unit(0.729, "feet"),
  49859. name: "Tattoo",
  49860. image: {
  49861. source: "./media/characters/nox/tattoo.svg"
  49862. }
  49863. },
  49864. },
  49865. [
  49866. {
  49867. name: "Normal",
  49868. height: math.unit(6 + 2/12, "feet")
  49869. },
  49870. {
  49871. name: "Gigamacro",
  49872. height: math.unit(2, "earths"),
  49873. default: true
  49874. },
  49875. {
  49876. name: "Cosmic",
  49877. height: math.unit(867, "yottameters")
  49878. },
  49879. ]
  49880. ))
  49881. characterMakers.push(() => makeCharacter(
  49882. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49883. {
  49884. front: {
  49885. height: math.unit(6, "feet"),
  49886. weight: math.unit(150, "lb"),
  49887. name: "Front",
  49888. image: {
  49889. source: "./media/characters/caspian/front.svg",
  49890. extra: 1443/1359,
  49891. bottom: 0/1443
  49892. }
  49893. },
  49894. back: {
  49895. height: math.unit(6, "feet"),
  49896. weight: math.unit(150, "lb"),
  49897. name: "Back",
  49898. image: {
  49899. source: "./media/characters/caspian/back.svg",
  49900. extra: 1379/1309,
  49901. bottom: 0/1379
  49902. }
  49903. },
  49904. head: {
  49905. height: math.unit(0.9, "feet"),
  49906. name: "Head",
  49907. image: {
  49908. source: "./media/characters/caspian/head.svg",
  49909. extra: 692/492,
  49910. bottom: 0/692
  49911. }
  49912. },
  49913. headAlt: {
  49914. height: math.unit(0.95, "feet"),
  49915. name: "Head (Alt)",
  49916. image: {
  49917. source: "./media/characters/caspian/head-alt.svg",
  49918. extra: 668/508,
  49919. bottom: 0/668
  49920. }
  49921. },
  49922. hand: {
  49923. height: math.unit(0.8, "feet"),
  49924. name: "Hand",
  49925. image: {
  49926. source: "./media/characters/caspian/hand.svg"
  49927. }
  49928. },
  49929. paw: {
  49930. height: math.unit(0.95, "feet"),
  49931. name: "Paw",
  49932. image: {
  49933. source: "./media/characters/caspian/paw.svg"
  49934. }
  49935. },
  49936. },
  49937. [
  49938. {
  49939. name: "Normal",
  49940. height: math.unit(162, "feet"),
  49941. default: true
  49942. },
  49943. ]
  49944. ))
  49945. characterMakers.push(() => makeCharacter(
  49946. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49947. {
  49948. front: {
  49949. height: math.unit(6, "feet"),
  49950. name: "Front",
  49951. image: {
  49952. source: "./media/characters/myra-aisling/front.svg",
  49953. extra: 1268/1166,
  49954. bottom: 73/1341
  49955. }
  49956. },
  49957. back: {
  49958. height: math.unit(6, "feet"),
  49959. name: "Back",
  49960. image: {
  49961. source: "./media/characters/myra-aisling/back.svg",
  49962. extra: 1249/1149,
  49963. bottom: 79/1328
  49964. }
  49965. },
  49966. dressed: {
  49967. height: math.unit(6, "feet"),
  49968. name: "Dressed",
  49969. image: {
  49970. source: "./media/characters/myra-aisling/dressed.svg",
  49971. extra: 1290/1189,
  49972. bottom: 47/1337
  49973. }
  49974. },
  49975. hand: {
  49976. height: math.unit(1.1, "feet"),
  49977. name: "Hand",
  49978. image: {
  49979. source: "./media/characters/myra-aisling/hand.svg"
  49980. }
  49981. },
  49982. paw: {
  49983. height: math.unit(1.23, "feet"),
  49984. name: "Paw",
  49985. image: {
  49986. source: "./media/characters/myra-aisling/paw.svg"
  49987. }
  49988. },
  49989. },
  49990. [
  49991. {
  49992. name: "Normal",
  49993. height: math.unit(160, "feet"),
  49994. default: true
  49995. },
  49996. ]
  49997. ))
  49998. characterMakers.push(() => makeCharacter(
  49999. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50000. {
  50001. front: {
  50002. height: math.unit(6, "feet"),
  50003. name: "Front",
  50004. image: {
  50005. source: "./media/characters/tenley-sidero/front.svg",
  50006. extra: 1365/1276,
  50007. bottom: 47/1412
  50008. }
  50009. },
  50010. back: {
  50011. height: math.unit(6, "feet"),
  50012. name: "Back",
  50013. image: {
  50014. source: "./media/characters/tenley-sidero/back.svg",
  50015. extra: 1383/1283,
  50016. bottom: 35/1418
  50017. }
  50018. },
  50019. dressed: {
  50020. height: math.unit(6, "feet"),
  50021. name: "Dressed",
  50022. image: {
  50023. source: "./media/characters/tenley-sidero/dressed.svg",
  50024. extra: 1364/1275,
  50025. bottom: 42/1406
  50026. }
  50027. },
  50028. head: {
  50029. height: math.unit(1.47, "feet"),
  50030. name: "Head",
  50031. image: {
  50032. source: "./media/characters/tenley-sidero/head.svg",
  50033. extra: 610/490,
  50034. bottom: 0/610
  50035. }
  50036. },
  50037. },
  50038. [
  50039. {
  50040. name: "Normal",
  50041. height: math.unit(154, "feet"),
  50042. default: true
  50043. },
  50044. ]
  50045. ))
  50046. characterMakers.push(() => makeCharacter(
  50047. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50048. {
  50049. front: {
  50050. height: math.unit(5, "inches"),
  50051. name: "Front",
  50052. image: {
  50053. source: "./media/characters/mallory/front.svg",
  50054. extra: 1919/1678,
  50055. bottom: 29/1948
  50056. }
  50057. },
  50058. hand: {
  50059. height: math.unit(0.73, "inches"),
  50060. name: "Hand",
  50061. image: {
  50062. source: "./media/characters/mallory/hand.svg"
  50063. }
  50064. },
  50065. paw: {
  50066. height: math.unit(0.68, "inches"),
  50067. name: "Paw",
  50068. image: {
  50069. source: "./media/characters/mallory/paw.svg"
  50070. }
  50071. },
  50072. },
  50073. [
  50074. {
  50075. name: "Small",
  50076. height: math.unit(5, "inches"),
  50077. default: true
  50078. },
  50079. ]
  50080. ))
  50081. characterMakers.push(() => makeCharacter(
  50082. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50083. {
  50084. naked: {
  50085. height: math.unit(6, "feet"),
  50086. name: "Naked",
  50087. image: {
  50088. source: "./media/characters/mab/naked.svg",
  50089. extra: 1855/1757,
  50090. bottom: 208/2063
  50091. }
  50092. },
  50093. outside: {
  50094. height: math.unit(6, "feet"),
  50095. name: "Outside",
  50096. image: {
  50097. source: "./media/characters/mab/outside.svg",
  50098. extra: 1855/1757,
  50099. bottom: 208/2063
  50100. }
  50101. },
  50102. party: {
  50103. height: math.unit(6, "feet"),
  50104. name: "Party",
  50105. image: {
  50106. source: "./media/characters/mab/party.svg",
  50107. extra: 1855/1757,
  50108. bottom: 208/2063
  50109. }
  50110. },
  50111. },
  50112. [
  50113. {
  50114. name: "Normal",
  50115. height: math.unit(165, "feet"),
  50116. default: true
  50117. },
  50118. ]
  50119. ))
  50120. characterMakers.push(() => makeCharacter(
  50121. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50122. {
  50123. feral: {
  50124. height: math.unit(12, "feet"),
  50125. weight: math.unit(20000, "lb"),
  50126. name: "Side",
  50127. image: {
  50128. source: "./media/characters/winter/feral.svg",
  50129. extra: 1286/943,
  50130. bottom: 112/1398
  50131. },
  50132. form: "feral",
  50133. default: true
  50134. },
  50135. feralNsfw: {
  50136. height: math.unit(12, "feet"),
  50137. weight: math.unit(20000, "lb"),
  50138. name: "Side (NSFW)",
  50139. image: {
  50140. source: "./media/characters/winter/feral-nsfw.svg",
  50141. extra: 1286/943,
  50142. bottom: 112/1398
  50143. },
  50144. form: "feral"
  50145. },
  50146. dick: {
  50147. height: math.unit(3.79, "feet"),
  50148. name: "Dick",
  50149. image: {
  50150. source: "./media/characters/winter/dick.svg"
  50151. },
  50152. form: "feral"
  50153. },
  50154. anthro: {
  50155. height: math.unit(12, "feet"),
  50156. weight: math.unit(10, "tons"),
  50157. name: "Anthro",
  50158. image: {
  50159. source: "./media/characters/winter/anthro.svg",
  50160. extra: 1701/1553,
  50161. bottom: 64/1765
  50162. },
  50163. form: "anthro",
  50164. default: true
  50165. },
  50166. },
  50167. [
  50168. {
  50169. name: "Big",
  50170. height: math.unit(12, "feet"),
  50171. default: true,
  50172. form: "feral"
  50173. },
  50174. {
  50175. name: "Big",
  50176. height: math.unit(12, "feet"),
  50177. default: true,
  50178. form: "anthro"
  50179. },
  50180. ],
  50181. {
  50182. "feral": {
  50183. name: "Feral",
  50184. default: true
  50185. },
  50186. "anthro": {
  50187. name: "Anthro"
  50188. }
  50189. }
  50190. ))
  50191. characterMakers.push(() => makeCharacter(
  50192. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50193. {
  50194. front: {
  50195. height: math.unit(4.1, "inches"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/alto/front.svg",
  50199. extra: 736/627,
  50200. bottom: 90/826
  50201. }
  50202. },
  50203. },
  50204. [
  50205. {
  50206. name: "Normal",
  50207. height: math.unit(4.1, "inches"),
  50208. default: true
  50209. },
  50210. ]
  50211. ))
  50212. characterMakers.push(() => makeCharacter(
  50213. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50214. {
  50215. sitting: {
  50216. height: math.unit(3, "feet"),
  50217. name: "Sitting",
  50218. image: {
  50219. source: "./media/characters/ratstrid-v/sitting.svg",
  50220. extra: 355/310,
  50221. bottom: 136/491
  50222. }
  50223. },
  50224. },
  50225. [
  50226. {
  50227. name: "Normal",
  50228. height: math.unit(3, "feet"),
  50229. default: true
  50230. },
  50231. ]
  50232. ))
  50233. characterMakers.push(() => makeCharacter(
  50234. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50235. {
  50236. back: {
  50237. height: math.unit(6, "feet"),
  50238. weight: math.unit(350, "lb"),
  50239. name: "Back",
  50240. image: {
  50241. source: "./media/characters/siz/back.svg",
  50242. extra: 1449/1274,
  50243. bottom: 13/1462
  50244. }
  50245. },
  50246. },
  50247. [
  50248. {
  50249. name: "Over-Overcompressed",
  50250. height: math.unit(8, "feet")
  50251. },
  50252. {
  50253. name: "Overcompressed",
  50254. height: math.unit(32, "feet")
  50255. },
  50256. {
  50257. name: "Compressed",
  50258. height: math.unit(128, "feet"),
  50259. default: true
  50260. },
  50261. {
  50262. name: "Half-Compressed",
  50263. height: math.unit(512, "feet")
  50264. },
  50265. {
  50266. name: "Quarter-Compressed",
  50267. height: math.unit(2048, "feet")
  50268. },
  50269. {
  50270. name: "Uncompressed?",
  50271. height: math.unit(8192, "feet")
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(5 + 9/12, "feet"),
  50280. weight: math.unit(150, "lb"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/ven/front.svg",
  50284. extra: 1372/1320,
  50285. bottom: 73/1445
  50286. }
  50287. },
  50288. side: {
  50289. height: math.unit(5 + 9/12, "feet"),
  50290. weight: math.unit(1150, "lb"),
  50291. name: "Side",
  50292. image: {
  50293. source: "./media/characters/ven/side.svg",
  50294. extra: 1119/1070,
  50295. bottom: 42/1161
  50296. },
  50297. default: true
  50298. },
  50299. },
  50300. [
  50301. {
  50302. name: "Normal",
  50303. height: math.unit(5 + 9/12, "feet"),
  50304. default: true
  50305. },
  50306. ]
  50307. ))
  50308. characterMakers.push(() => makeCharacter(
  50309. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50310. {
  50311. front: {
  50312. height: math.unit(12, "feet"),
  50313. weight: math.unit(1000, "kg"),
  50314. name: "Front",
  50315. image: {
  50316. source: "./media/characters/maple/front.svg",
  50317. extra: 1193/1081,
  50318. bottom: 22/1215
  50319. }
  50320. },
  50321. },
  50322. [
  50323. {
  50324. name: "Compressed",
  50325. height: math.unit(7, "feet")
  50326. },
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(12, "feet"),
  50330. default: true
  50331. },
  50332. ]
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50336. {
  50337. front: {
  50338. height: math.unit(9, "feet"),
  50339. weight: math.unit(1500, "lb"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/nora/front.svg",
  50343. extra: 1348/1286,
  50344. bottom: 218/1566
  50345. }
  50346. },
  50347. erect: {
  50348. height: math.unit(9, "feet"),
  50349. weight: math.unit(11500, "lb"),
  50350. name: "Erect",
  50351. image: {
  50352. source: "./media/characters/nora/erect.svg",
  50353. extra: 1488/1433,
  50354. bottom: 133/1621
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Normal",
  50361. height: math.unit(9, "feet"),
  50362. default: true
  50363. },
  50364. ]
  50365. ))
  50366. characterMakers.push(() => makeCharacter(
  50367. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50368. {
  50369. front: {
  50370. height: math.unit(25, "feet"),
  50371. weight: math.unit(27500, "lb"),
  50372. name: "Front",
  50373. image: {
  50374. source: "./media/characters/north-caudin/front.svg",
  50375. extra: 1184/1082,
  50376. bottom: 23/1207
  50377. }
  50378. },
  50379. },
  50380. [
  50381. {
  50382. name: "Compressed",
  50383. height: math.unit(10, "feet")
  50384. },
  50385. {
  50386. name: "Normal",
  50387. height: math.unit(25, "feet"),
  50388. default: true
  50389. },
  50390. ]
  50391. ))
  50392. characterMakers.push(() => makeCharacter(
  50393. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50394. {
  50395. front: {
  50396. height: math.unit(9, "feet"),
  50397. weight: math.unit(1250, "lb"),
  50398. name: "Front",
  50399. image: {
  50400. source: "./media/characters/merrian/front.svg",
  50401. extra: 2393/2304,
  50402. bottom: 40/2433
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Normal",
  50409. height: math.unit(9, "feet"),
  50410. default: true
  50411. },
  50412. ]
  50413. ))
  50414. characterMakers.push(() => makeCharacter(
  50415. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50416. {
  50417. front: {
  50418. height: math.unit(9, "feet"),
  50419. weight: math.unit(1000, "lb"),
  50420. name: "Front",
  50421. image: {
  50422. source: "./media/characters/hazel/front.svg",
  50423. extra: 2351/2298,
  50424. bottom: 38/2389
  50425. }
  50426. },
  50427. },
  50428. [
  50429. {
  50430. name: "Normal",
  50431. height: math.unit(9, "feet"),
  50432. default: true
  50433. },
  50434. ]
  50435. ))
  50436. characterMakers.push(() => makeCharacter(
  50437. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50438. {
  50439. front: {
  50440. height: math.unit(13, "feet"),
  50441. weight: math.unit(3200, "lb"),
  50442. name: "Front",
  50443. image: {
  50444. source: "./media/characters/emma/front.svg",
  50445. extra: 2263/2029,
  50446. bottom: 68/2331
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(13, "feet"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50460. {
  50461. front: {
  50462. height: math.unit(11 + 9/12, "feet"),
  50463. weight: math.unit(2500, "lb"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/ilumina/front.svg",
  50467. extra: 2248/2209,
  50468. bottom: 164/2412
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(11 + 9/12, "feet"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(8 + 10/12, "feet"),
  50485. weight: math.unit(1350, "lb"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/moonshine/front.svg",
  50489. extra: 2395/2288,
  50490. bottom: 40/2435
  50491. }
  50492. },
  50493. },
  50494. [
  50495. {
  50496. name: "Normal",
  50497. height: math.unit(8 + 10/12, "feet"),
  50498. default: true
  50499. },
  50500. ]
  50501. ))
  50502. characterMakers.push(() => makeCharacter(
  50503. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50504. {
  50505. front: {
  50506. height: math.unit(14, "feet"),
  50507. weight: math.unit(3400, "lb"),
  50508. name: "Front",
  50509. image: {
  50510. source: "./media/characters/aletia/front.svg",
  50511. extra: 1185/1052,
  50512. bottom: 21/1206
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Compressed",
  50519. height: math.unit(8, "feet")
  50520. },
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(14, "feet"),
  50524. default: true
  50525. },
  50526. ]
  50527. ))
  50528. characterMakers.push(() => makeCharacter(
  50529. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50530. {
  50531. front: {
  50532. height: math.unit(17, "feet"),
  50533. weight: math.unit(6500, "lb"),
  50534. name: "Front",
  50535. image: {
  50536. source: "./media/characters/deidra/front.svg",
  50537. extra: 1201/1081,
  50538. bottom: 16/1217
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Compressed",
  50545. height: math.unit(9 + 6/12, "feet")
  50546. },
  50547. {
  50548. name: "Normal",
  50549. height: math.unit(17, "feet"),
  50550. default: true
  50551. },
  50552. ]
  50553. ))
  50554. characterMakers.push(() => makeCharacter(
  50555. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50556. {
  50557. front: {
  50558. height: math.unit(7 + 4/12, "feet"),
  50559. weight: math.unit(280, "lb"),
  50560. name: "Front",
  50561. image: {
  50562. source: "./media/characters/freki-yrmori/front.svg",
  50563. extra: 1286/1182,
  50564. bottom: 29/1315
  50565. }
  50566. },
  50567. maw: {
  50568. height: math.unit(0.9, "feet"),
  50569. name: "Maw",
  50570. image: {
  50571. source: "./media/characters/freki-yrmori/maw.svg"
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(7 + 4/12, "feet"),
  50579. default: true
  50580. },
  50581. {
  50582. name: "Macro",
  50583. height: math.unit(38.5, "meters")
  50584. },
  50585. ]
  50586. ))
  50587. characterMakers.push(() => makeCharacter(
  50588. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50589. {
  50590. side: {
  50591. height: math.unit(47.2, "meters"),
  50592. weight: math.unit(10000, "tons"),
  50593. name: "Side",
  50594. image: {
  50595. source: "./media/characters/aetherios/side.svg",
  50596. extra: 2363/642,
  50597. bottom: 221/2584
  50598. }
  50599. },
  50600. top: {
  50601. height: math.unit(240, "meters"),
  50602. weight: math.unit(10000, "tons"),
  50603. name: "Top",
  50604. image: {
  50605. source: "./media/characters/aetherios/top.svg"
  50606. }
  50607. },
  50608. bottom: {
  50609. height: math.unit(240, "meters"),
  50610. weight: math.unit(10000, "tons"),
  50611. name: "Bottom",
  50612. image: {
  50613. source: "./media/characters/aetherios/bottom.svg"
  50614. }
  50615. },
  50616. head: {
  50617. height: math.unit(38.6, "meters"),
  50618. name: "Head",
  50619. image: {
  50620. source: "./media/characters/aetherios/head.svg",
  50621. extra: 1335/1112,
  50622. bottom: 0/1335
  50623. }
  50624. },
  50625. front: {
  50626. height: math.unit(29, "meters"),
  50627. name: "Front",
  50628. image: {
  50629. source: "./media/characters/aetherios/front.svg",
  50630. extra: 1266/953,
  50631. bottom: 158/1424
  50632. }
  50633. },
  50634. maw: {
  50635. height: math.unit(16.37, "meters"),
  50636. name: "Maw",
  50637. image: {
  50638. source: "./media/characters/aetherios/maw.svg",
  50639. extra: 748/637,
  50640. bottom: 0/748
  50641. },
  50642. extraAttributes: {
  50643. preyCapacity: {
  50644. name: "Capacity",
  50645. power: 3,
  50646. type: "volume",
  50647. base: math.unit(1000, "people")
  50648. },
  50649. tongueSize: {
  50650. name: "Tongue Size",
  50651. power: 2,
  50652. type: "area",
  50653. base: math.unit(21, "m^2")
  50654. }
  50655. }
  50656. },
  50657. forepaw: {
  50658. height: math.unit(18, "meters"),
  50659. name: "Forepaw",
  50660. image: {
  50661. source: "./media/characters/aetherios/forepaw.svg"
  50662. }
  50663. },
  50664. hindpaw: {
  50665. height: math.unit(23, "meters"),
  50666. name: "Hindpaw",
  50667. image: {
  50668. source: "./media/characters/aetherios/hindpaw.svg"
  50669. }
  50670. },
  50671. genitals: {
  50672. height: math.unit(42, "meters"),
  50673. name: "Genitals",
  50674. image: {
  50675. source: "./media/characters/aetherios/genitals.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(47.2, "meters"),
  50683. default: true
  50684. },
  50685. {
  50686. name: "Macro",
  50687. height: math.unit(160, "meters")
  50688. },
  50689. {
  50690. name: "Mega",
  50691. height: math.unit(1.87, "km")
  50692. },
  50693. {
  50694. name: "Giga",
  50695. height: math.unit(40000, "km")
  50696. },
  50697. {
  50698. name: "Stellar",
  50699. height: math.unit(158000000, "km")
  50700. },
  50701. {
  50702. name: "Cosmic",
  50703. height: math.unit(9.46e12, "km")
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(5 + 4/12, "feet"),
  50712. weight: math.unit(80, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/mizu-gieeg/front.svg",
  50716. extra: 850/709,
  50717. bottom: 52/902
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(5 + 4/12, "feet"),
  50722. weight: math.unit(80, "lb"),
  50723. name: "Back",
  50724. image: {
  50725. source: "./media/characters/mizu-gieeg/back.svg",
  50726. extra: 882/745,
  50727. bottom: 25/907
  50728. }
  50729. },
  50730. },
  50731. [
  50732. {
  50733. name: "Normal",
  50734. height: math.unit(5 + 4/12, "feet"),
  50735. default: true
  50736. },
  50737. ]
  50738. ))
  50739. characterMakers.push(() => makeCharacter(
  50740. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50741. {
  50742. front: {
  50743. height: math.unit(6, "feet"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/roselle-st-papier/front.svg",
  50747. extra: 1430/1280,
  50748. bottom: 37/1467
  50749. }
  50750. },
  50751. back: {
  50752. height: math.unit(6, "feet"),
  50753. name: "Back",
  50754. image: {
  50755. source: "./media/characters/roselle-st-papier/back.svg",
  50756. extra: 1491/1296,
  50757. bottom: 23/1514
  50758. }
  50759. },
  50760. ear: {
  50761. height: math.unit(1.26, "feet"),
  50762. name: "Ear",
  50763. image: {
  50764. source: "./media/characters/roselle-st-papier/ear.svg"
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Normal",
  50771. height: math.unit(150, "feet"),
  50772. default: true
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(1, "inches"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/valargent/front.svg",
  50784. extra: 1825/1694,
  50785. bottom: 62/1887
  50786. }
  50787. },
  50788. back: {
  50789. height: math.unit(1, "inches"),
  50790. name: "Back",
  50791. image: {
  50792. source: "./media/characters/valargent/back.svg",
  50793. extra: 1775/1682,
  50794. bottom: 88/1863
  50795. }
  50796. },
  50797. },
  50798. [
  50799. {
  50800. name: "Micro",
  50801. height: math.unit(1, "inch"),
  50802. default: true
  50803. },
  50804. ]
  50805. ))
  50806. characterMakers.push(() => makeCharacter(
  50807. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50808. {
  50809. front: {
  50810. height: math.unit(3.4, "meters"),
  50811. name: "Front",
  50812. image: {
  50813. source: "./media/characters/zarina/front.svg",
  50814. extra: 1733/1425,
  50815. bottom: 93/1826
  50816. }
  50817. },
  50818. squatting: {
  50819. height: math.unit(2.14, "meters"),
  50820. name: "Squatting",
  50821. image: {
  50822. source: "./media/characters/zarina/squatting.svg",
  50823. extra: 1073/788,
  50824. bottom: 63/1136
  50825. }
  50826. },
  50827. back: {
  50828. height: math.unit(2.14, "meters"),
  50829. name: "Back",
  50830. image: {
  50831. source: "./media/characters/zarina/back.svg",
  50832. extra: 1128/885,
  50833. bottom: 0/1128
  50834. }
  50835. },
  50836. },
  50837. [
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(3.4, "meters"),
  50841. default: true
  50842. },
  50843. {
  50844. name: "Big",
  50845. height: math.unit(5, "meters")
  50846. },
  50847. {
  50848. name: "Macro",
  50849. height: math.unit(110, "meters")
  50850. },
  50851. ]
  50852. ))
  50853. characterMakers.push(() => makeCharacter(
  50854. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50855. {
  50856. front: {
  50857. height: math.unit(7, "feet"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/ventus-astro-fox/front.svg",
  50861. extra: 1792/1623,
  50862. bottom: 28/1820
  50863. }
  50864. },
  50865. back: {
  50866. height: math.unit(7, "feet"),
  50867. name: "Back",
  50868. image: {
  50869. source: "./media/characters/ventus-astro-fox/back.svg",
  50870. extra: 1789/1620,
  50871. bottom: 31/1820
  50872. }
  50873. },
  50874. outfit: {
  50875. height: math.unit(7, "feet"),
  50876. name: "Outfit",
  50877. image: {
  50878. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50879. extra: 1054/925,
  50880. bottom: 15/1069
  50881. }
  50882. },
  50883. head: {
  50884. height: math.unit(1.12, "feet"),
  50885. name: "Head",
  50886. image: {
  50887. source: "./media/characters/ventus-astro-fox/head.svg",
  50888. extra: 866/504,
  50889. bottom: 0/866
  50890. }
  50891. },
  50892. hand: {
  50893. height: math.unit(1, "feet"),
  50894. name: "Hand",
  50895. image: {
  50896. source: "./media/characters/ventus-astro-fox/hand.svg"
  50897. }
  50898. },
  50899. paw: {
  50900. height: math.unit(1.5, "feet"),
  50901. name: "Paw",
  50902. image: {
  50903. source: "./media/characters/ventus-astro-fox/paw.svg"
  50904. }
  50905. },
  50906. },
  50907. [
  50908. {
  50909. name: "Normal",
  50910. height: math.unit(7, "feet"),
  50911. default: true
  50912. },
  50913. {
  50914. name: "Macro",
  50915. height: math.unit(200, "feet")
  50916. },
  50917. {
  50918. name: "Cosmic",
  50919. height: math.unit(3, "universes")
  50920. },
  50921. ]
  50922. ))
  50923. characterMakers.push(() => makeCharacter(
  50924. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50925. {
  50926. front: {
  50927. height: math.unit(3, "meters"),
  50928. weight: math.unit(7000, "lb"),
  50929. name: "Front",
  50930. image: {
  50931. source: "./media/characters/core-t/front.svg",
  50932. extra: 5729/4941,
  50933. bottom: 1129/6858
  50934. }
  50935. },
  50936. },
  50937. [
  50938. {
  50939. name: "Big",
  50940. height: math.unit(3, "meters"),
  50941. default: true
  50942. },
  50943. ]
  50944. ))
  50945. characterMakers.push(() => makeCharacter(
  50946. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50947. {
  50948. normal: {
  50949. height: math.unit(6 + 6/12, "feet"),
  50950. weight: math.unit(275, "lb"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/cadbunny/normal.svg",
  50954. extra: 1129/947,
  50955. bottom: 93/1222
  50956. },
  50957. default: true,
  50958. form: "normal"
  50959. },
  50960. gigantamax: {
  50961. height: math.unit(26, "feet"),
  50962. weight: math.unit(16000, "lb"),
  50963. name: "Front",
  50964. image: {
  50965. source: "./media/characters/cadbunny/gigantamax.svg",
  50966. extra: 1133/944,
  50967. bottom: 90/1223
  50968. },
  50969. default: true,
  50970. form: "gigantamax"
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Normal",
  50976. height: math.unit(6 + 6/12, "feet"),
  50977. default: true,
  50978. form: "normal"
  50979. },
  50980. {
  50981. name: "Small",
  50982. height: math.unit(26, "feet"),
  50983. default: true,
  50984. form: "gigantamax"
  50985. },
  50986. {
  50987. name: "Large",
  50988. height: math.unit(78, "feet"),
  50989. form: "gigantamax"
  50990. },
  50991. ],
  50992. {
  50993. "normal": {
  50994. name: "Normal",
  50995. default: true
  50996. },
  50997. "gigantamax": {
  50998. name: "Gigantamax"
  50999. }
  51000. }
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51004. {
  51005. anthroFront: {
  51006. height: math.unit(8, "feet"),
  51007. weight: math.unit(300, "lb"),
  51008. name: "Front",
  51009. image: {
  51010. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51011. extra: 1272/1176,
  51012. bottom: 53/1325
  51013. },
  51014. form: "anthro",
  51015. default: true
  51016. },
  51017. feralSide: {
  51018. height: math.unit(4, "feet"),
  51019. weight: math.unit(250, "lb"),
  51020. name: "Side",
  51021. image: {
  51022. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51023. extra: 731/621,
  51024. bottom: 0/731
  51025. },
  51026. form: "feral",
  51027. default: true
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Regular",
  51033. height: math.unit(8, "feet"),
  51034. form: "anthro"
  51035. },
  51036. {
  51037. name: "Macro",
  51038. height: math.unit(250, "feet"),
  51039. form: "anthro",
  51040. default: true
  51041. },
  51042. {
  51043. name: "Regular",
  51044. height: math.unit(4, "feet"),
  51045. form: "feral"
  51046. },
  51047. {
  51048. name: "Macro",
  51049. height: math.unit(125, "feet"),
  51050. form: "feral",
  51051. default: true
  51052. },
  51053. ],
  51054. {
  51055. "anthro": {
  51056. name: "Anthro",
  51057. default: true
  51058. },
  51059. "feral": {
  51060. name: "Feral",
  51061. },
  51062. }
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51066. {
  51067. front: {
  51068. height: math.unit(11 + 10/12, "feet"),
  51069. weight: math.unit(1587, "kg"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/maple-javira-dragon/front.svg",
  51073. extra: 1136/744,
  51074. bottom: 73/1209
  51075. }
  51076. },
  51077. side: {
  51078. height: math.unit(11 + 10/12, "feet"),
  51079. weight: math.unit(1587, "kg"),
  51080. name: "Side",
  51081. image: {
  51082. source: "./media/characters/maple-javira-dragon/side.svg",
  51083. extra: 712/505,
  51084. bottom: 17/729
  51085. }
  51086. },
  51087. head: {
  51088. height: math.unit(8.05, "feet"),
  51089. name: "Head",
  51090. image: {
  51091. source: "./media/characters/maple-javira-dragon/head.svg",
  51092. extra: 1420/1344,
  51093. bottom: 0/1420
  51094. }
  51095. },
  51096. },
  51097. [
  51098. {
  51099. name: "Normal",
  51100. height: math.unit(11 + 10/12, "feet"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(117, "cm"),
  51110. weight: math.unit(50, "kg"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/sonia-wyverntail/front.svg",
  51114. extra: 708/592,
  51115. bottom: 25/733
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(117, "cm"),
  51123. default: true
  51124. },
  51125. ]
  51126. ))
  51127. characterMakers.push(() => makeCharacter(
  51128. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51129. {
  51130. front: {
  51131. height: math.unit(6 + 5/12, "feet"),
  51132. name: "Front",
  51133. image: {
  51134. source: "./media/characters/micah/front.svg",
  51135. extra: 1758/1546,
  51136. bottom: 214/1972
  51137. }
  51138. },
  51139. },
  51140. [
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. default: true
  51145. },
  51146. ]
  51147. ))
  51148. characterMakers.push(() => makeCharacter(
  51149. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51150. {
  51151. front: {
  51152. height: math.unit(5 + 10/12, "feet"),
  51153. weight: math.unit(220, "lb"),
  51154. name: "Front",
  51155. image: {
  51156. source: "./media/characters/zarya/front.svg",
  51157. extra: 593/572,
  51158. bottom: 50/643
  51159. }
  51160. },
  51161. back: {
  51162. height: math.unit(5 + 10/12, "feet"),
  51163. weight: math.unit(220, "lb"),
  51164. name: "Back",
  51165. image: {
  51166. source: "./media/characters/zarya/back.svg",
  51167. extra: 603/582,
  51168. bottom: 38/641
  51169. }
  51170. },
  51171. },
  51172. [
  51173. {
  51174. name: "Normal",
  51175. height: math.unit(5 + 10/12, "feet"),
  51176. default: true
  51177. },
  51178. ]
  51179. ))
  51180. characterMakers.push(() => makeCharacter(
  51181. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51182. {
  51183. front: {
  51184. height: math.unit(7.5, "feet"),
  51185. name: "Front",
  51186. image: {
  51187. source: "./media/characters/sven-hatisson/front.svg",
  51188. extra: 917/857,
  51189. bottom: 42/959
  51190. }
  51191. },
  51192. back: {
  51193. height: math.unit(7.5, "feet"),
  51194. name: "Back",
  51195. image: {
  51196. source: "./media/characters/sven-hatisson/back.svg",
  51197. extra: 903/856,
  51198. bottom: 15/918
  51199. }
  51200. },
  51201. },
  51202. [
  51203. {
  51204. name: "Base Height",
  51205. height: math.unit(7.5, "feet")
  51206. },
  51207. {
  51208. name: "Usual Height",
  51209. height: math.unit(13.5, "feet"),
  51210. default: true
  51211. },
  51212. {
  51213. name: "Smaller Macro",
  51214. height: math.unit(85, "feet")
  51215. },
  51216. {
  51217. name: "Moderate Macro",
  51218. height: math.unit(320, "feet")
  51219. },
  51220. {
  51221. name: "Large Macro",
  51222. height: math.unit(1000, "feet")
  51223. },
  51224. {
  51225. name: "Largest Size",
  51226. height: math.unit(2, "miles")
  51227. },
  51228. ]
  51229. ))
  51230. characterMakers.push(() => makeCharacter(
  51231. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51232. {
  51233. side: {
  51234. height: math.unit(1.8, "meters"),
  51235. weight: math.unit(275, "kg"),
  51236. name: "Side",
  51237. image: {
  51238. source: "./media/characters/terra/side.svg",
  51239. extra: 1273/1147,
  51240. bottom: 0/1273
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Normal",
  51247. height: math.unit(16.2, "meters"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51254. {
  51255. borzoiFront: {
  51256. height: math.unit(6 + 9/12, "feet"),
  51257. name: "Front",
  51258. image: {
  51259. source: "./media/characters/rae/borzoi-front.svg",
  51260. extra: 1161/1098,
  51261. bottom: 31/1192
  51262. },
  51263. form: "borzoi",
  51264. default: true
  51265. },
  51266. werewolfFront: {
  51267. height: math.unit(8 + 7/12, "feet"),
  51268. name: "Front",
  51269. image: {
  51270. source: "./media/characters/rae/werewolf-front.svg",
  51271. extra: 1411/1334,
  51272. bottom: 127/1538
  51273. },
  51274. form: "werewolf",
  51275. default: true
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Normal",
  51281. height: math.unit(6 + 9/12, "feet"),
  51282. default: true,
  51283. form: "borzoi"
  51284. },
  51285. {
  51286. name: "Normal",
  51287. height: math.unit(8 + 7/12, "feet"),
  51288. default: true,
  51289. form: "werewolf"
  51290. },
  51291. ],
  51292. {
  51293. "borzoi": {
  51294. name: "Borzoi",
  51295. default: true
  51296. },
  51297. "werewolf": {
  51298. name: "Werewolf",
  51299. },
  51300. }
  51301. ))
  51302. characterMakers.push(() => makeCharacter(
  51303. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51304. {
  51305. front: {
  51306. height: math.unit(8 + 7/12, "feet"),
  51307. weight: math.unit(482, "lb"),
  51308. name: "Front",
  51309. image: {
  51310. source: "./media/characters/kit/front.svg",
  51311. extra: 1247/1103,
  51312. bottom: 41/1288
  51313. }
  51314. },
  51315. back: {
  51316. height: math.unit(8 + 7/12, "feet"),
  51317. weight: math.unit(482, "lb"),
  51318. name: "Back",
  51319. image: {
  51320. source: "./media/characters/kit/back.svg",
  51321. extra: 1252/1123,
  51322. bottom: 21/1273
  51323. }
  51324. },
  51325. paw: {
  51326. height: math.unit(1.46, "feet"),
  51327. name: "Paw",
  51328. image: {
  51329. source: "./media/characters/kit/paw.svg"
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(2.61, "meters"),
  51337. default: true
  51338. },
  51339. {
  51340. name: "\"Tall\"",
  51341. height: math.unit(8.21, "meters")
  51342. },
  51343. {
  51344. name: "Tall",
  51345. height: math.unit(19.6, "meters")
  51346. },
  51347. {
  51348. name: "Very Tall",
  51349. height: math.unit(57.91, "meters")
  51350. },
  51351. {
  51352. name: "Semi-Macro",
  51353. height: math.unit(138.64, "meters")
  51354. },
  51355. {
  51356. name: "Macro",
  51357. height: math.unit(831.99, "meters")
  51358. },
  51359. {
  51360. name: "EX-Macro",
  51361. height: math.unit(96451121, "meters")
  51362. },
  51363. {
  51364. name: "S1-Omnipotent",
  51365. height: math.unit(4.42074e+9, "meters")
  51366. },
  51367. {
  51368. name: "S2-Omnipotent",
  51369. height: math.unit(9.42074e+17, "meters")
  51370. },
  51371. {
  51372. name: "Omnipotent",
  51373. height: math.unit(4.23112e+24, "meters")
  51374. },
  51375. {
  51376. name: "Hypergod",
  51377. height: math.unit(5.05176e+27, "meters")
  51378. },
  51379. {
  51380. name: "Hypergod-EX",
  51381. height: math.unit(9.45532e+49, "meters")
  51382. },
  51383. {
  51384. name: "Hypergod-SP",
  51385. height: math.unit(9.45532e+195, "meters")
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51391. {
  51392. side: {
  51393. height: math.unit(0.6, "meters"),
  51394. weight: math.unit(24, "kg"),
  51395. name: "Side",
  51396. image: {
  51397. source: "./media/characters/celeste/side.svg",
  51398. extra: 810/517,
  51399. bottom: 53/863
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Velociraptor",
  51406. height: math.unit(0.6, "meters"),
  51407. default: true
  51408. },
  51409. {
  51410. name: "Utahraptor",
  51411. height: math.unit(1.8, "meters")
  51412. },
  51413. {
  51414. name: "Gallimimus",
  51415. height: math.unit(4.0, "meters")
  51416. },
  51417. {
  51418. name: "Large",
  51419. height: math.unit(20, "meters")
  51420. },
  51421. {
  51422. name: "Planetary",
  51423. height: math.unit(50, "megameters")
  51424. },
  51425. {
  51426. name: "Stellar",
  51427. height: math.unit(1.5, "gigameters")
  51428. },
  51429. {
  51430. name: "Galactic",
  51431. height: math.unit(100, "exameters")
  51432. },
  51433. ]
  51434. ))
  51435. characterMakers.push(() => makeCharacter(
  51436. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51437. {
  51438. front: {
  51439. height: math.unit(6, "feet"),
  51440. weight: math.unit(210, "lb"),
  51441. name: "Front",
  51442. image: {
  51443. source: "./media/characters/glacia/front.svg",
  51444. extra: 958/901,
  51445. bottom: 45/1003
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Macro",
  51452. height: math.unit(1000, "meters"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(4, "meters"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/giri/front.svg",
  51465. extra: 966/894,
  51466. bottom: 21/987
  51467. }
  51468. },
  51469. },
  51470. [
  51471. {
  51472. name: "Normal",
  51473. height: math.unit(4, "meters"),
  51474. default: true
  51475. },
  51476. ]
  51477. ))
  51478. characterMakers.push(() => makeCharacter(
  51479. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51480. {
  51481. back: {
  51482. height: math.unit(4, "feet"),
  51483. weight: math.unit(37, "lb"),
  51484. name: "Back",
  51485. image: {
  51486. source: "./media/characters/tin/back.svg",
  51487. extra: 845/780,
  51488. bottom: 28/873
  51489. }
  51490. },
  51491. },
  51492. [
  51493. {
  51494. name: "Normal",
  51495. height: math.unit(4, "feet"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51502. {
  51503. front: {
  51504. height: math.unit(25, "feet"),
  51505. name: "Front",
  51506. image: {
  51507. source: "./media/characters/cadenza-vivace/front.svg",
  51508. extra: 1842/1578,
  51509. bottom: 30/1872
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Macro",
  51516. height: math.unit(25, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51523. {
  51524. front: {
  51525. height: math.unit(10, "feet"),
  51526. weight: math.unit(625, "kg"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/zain/front.svg",
  51530. extra: 1682/1498,
  51531. bottom: 223/1905
  51532. }
  51533. },
  51534. back: {
  51535. height: math.unit(10, "feet"),
  51536. weight: math.unit(625, "kg"),
  51537. name: "Back",
  51538. image: {
  51539. source: "./media/characters/zain/back.svg",
  51540. extra: 1814/1657,
  51541. bottom: 152/1966
  51542. }
  51543. },
  51544. head: {
  51545. height: math.unit(10, "feet"),
  51546. weight: math.unit(625, "kg"),
  51547. name: "Head",
  51548. image: {
  51549. source: "./media/characters/zain/head.svg",
  51550. extra: 1059/762,
  51551. bottom: 0/1059
  51552. }
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Normal",
  51558. height: math.unit(10, "feet"),
  51559. default: true
  51560. },
  51561. ]
  51562. ))
  51563. characterMakers.push(() => makeCharacter(
  51564. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51565. {
  51566. front: {
  51567. height: math.unit(6 + 5/12, "feet"),
  51568. weight: math.unit(750, "lb"),
  51569. name: "Front",
  51570. image: {
  51571. source: "./media/characters/ruchex/front.svg",
  51572. extra: 877/820,
  51573. bottom: 17/894
  51574. },
  51575. extraAttributes: {
  51576. "width": {
  51577. name: "Width",
  51578. power: 1,
  51579. type: "length",
  51580. base: math.unit(4.757, "feet")
  51581. },
  51582. }
  51583. },
  51584. },
  51585. [
  51586. {
  51587. name: "Normal",
  51588. height: math.unit(6 + 5/12, "feet"),
  51589. default: true
  51590. },
  51591. ]
  51592. ))
  51593. characterMakers.push(() => makeCharacter(
  51594. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51595. {
  51596. dressedFront: {
  51597. height: math.unit(191, "cm"),
  51598. weight: math.unit(80, "kg"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/buster/dressed-front.svg",
  51602. extra: 1022/973,
  51603. bottom: 69/1091
  51604. }
  51605. },
  51606. dressedBack: {
  51607. height: math.unit(191, "cm"),
  51608. weight: math.unit(80, "kg"),
  51609. name: "Back",
  51610. image: {
  51611. source: "./media/characters/buster/dressed-back.svg",
  51612. extra: 1018/970,
  51613. bottom: 55/1073
  51614. }
  51615. },
  51616. nudeFront: {
  51617. height: math.unit(191, "cm"),
  51618. weight: math.unit(80, "kg"),
  51619. name: "Front (Nude)",
  51620. image: {
  51621. source: "./media/characters/buster/nude-front.svg",
  51622. extra: 1022/973,
  51623. bottom: 69/1091
  51624. }
  51625. },
  51626. nudeBack: {
  51627. height: math.unit(191, "cm"),
  51628. weight: math.unit(80, "kg"),
  51629. name: "Back (Nude)",
  51630. image: {
  51631. source: "./media/characters/buster/nude-back.svg",
  51632. extra: 1018/970,
  51633. bottom: 55/1073
  51634. }
  51635. },
  51636. dick: {
  51637. height: math.unit(2.59, "feet"),
  51638. name: "Dick",
  51639. image: {
  51640. source: "./media/characters/buster/dick.svg"
  51641. }
  51642. },
  51643. ass: {
  51644. height: math.unit(1.2, "feet"),
  51645. name: "Ass",
  51646. image: {
  51647. source: "./media/characters/buster/ass.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(191, "cm"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51661. {
  51662. side: {
  51663. height: math.unit(8.1, "feet"),
  51664. weight: math.unit(3500, "lb"),
  51665. name: "Side",
  51666. image: {
  51667. source: "./media/characters/sonya/side.svg",
  51668. extra: 1730/1317,
  51669. bottom: 86/1816
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(8.1, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51683. {
  51684. front: {
  51685. height: math.unit(6, "feet"),
  51686. weight: math.unit(150, "lb"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/cadence-andrysiak/front.svg",
  51690. extra: 1164/1121,
  51691. bottom: 60/1224
  51692. }
  51693. },
  51694. back: {
  51695. height: math.unit(6, "feet"),
  51696. weight: math.unit(150, "lb"),
  51697. name: "Back",
  51698. image: {
  51699. source: "./media/characters/cadence-andrysiak/back.svg",
  51700. extra: 1200/1165,
  51701. bottom: 9/1209
  51702. }
  51703. },
  51704. dressed: {
  51705. height: math.unit(6, "feet"),
  51706. weight: math.unit(150, "lb"),
  51707. name: "Dressed",
  51708. image: {
  51709. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51710. extra: 1164/1121,
  51711. bottom: 60/1224
  51712. }
  51713. },
  51714. },
  51715. [
  51716. {
  51717. name: "Micro",
  51718. height: math.unit(1, "mm")
  51719. },
  51720. {
  51721. name: "Normal",
  51722. height: math.unit(6, "feet"),
  51723. default: true
  51724. },
  51725. ]
  51726. ))
  51727. characterMakers.push(() => makeCharacter(
  51728. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51729. {
  51730. front: {
  51731. height: math.unit(60, "inches"),
  51732. weight: math.unit(16, "lb"),
  51733. preyCapacity: math.unit(80, "liters"),
  51734. name: "Front",
  51735. image: {
  51736. source: "./media/characters/penny-lynx/front.svg",
  51737. extra: 1959/1769,
  51738. bottom: 49/2008
  51739. }
  51740. },
  51741. },
  51742. [
  51743. {
  51744. name: "Nokia",
  51745. height: math.unit(2, "inches")
  51746. },
  51747. {
  51748. name: "Desktop",
  51749. height: math.unit(24, "inches")
  51750. },
  51751. {
  51752. name: "TV",
  51753. height: math.unit(60, "inches")
  51754. },
  51755. {
  51756. name: "Jumbotron",
  51757. height: math.unit(12, "feet")
  51758. },
  51759. {
  51760. name: "Billboard",
  51761. height: math.unit(48, "feet"),
  51762. default: true
  51763. },
  51764. {
  51765. name: "IMAX",
  51766. height: math.unit(96, "feet")
  51767. },
  51768. {
  51769. name: "SINGULARITY",
  51770. height: math.unit(864938, "miles")
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51776. {
  51777. front: {
  51778. height: math.unit(5 + 4/12, "feet"),
  51779. weight: math.unit(230, "lb"),
  51780. name: "Front",
  51781. image: {
  51782. source: "./media/characters/sukebe/front.svg",
  51783. extra: 2130/2038,
  51784. bottom: 90/2220
  51785. }
  51786. },
  51787. back: {
  51788. height: math.unit(3.48, "feet"),
  51789. weight: math.unit(230, "lb"),
  51790. name: "Back",
  51791. image: {
  51792. source: "./media/characters/sukebe/back.svg",
  51793. extra: 1670/1604,
  51794. bottom: 0/1670
  51795. }
  51796. },
  51797. },
  51798. [
  51799. {
  51800. name: "Normal",
  51801. height: math.unit(5 + 4/12, "feet"),
  51802. default: true
  51803. },
  51804. ]
  51805. ))
  51806. characterMakers.push(() => makeCharacter(
  51807. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51808. {
  51809. front: {
  51810. height: math.unit(6, "feet"),
  51811. name: "Front",
  51812. image: {
  51813. source: "./media/characters/nylla/front.svg",
  51814. extra: 1868/1699,
  51815. bottom: 97/1965
  51816. }
  51817. },
  51818. back: {
  51819. height: math.unit(6, "feet"),
  51820. name: "Back",
  51821. image: {
  51822. source: "./media/characters/nylla/back.svg",
  51823. extra: 1889/1712,
  51824. bottom: 93/1982
  51825. }
  51826. },
  51827. frontNsfw: {
  51828. height: math.unit(6, "feet"),
  51829. name: "Front (NSFW)",
  51830. image: {
  51831. source: "./media/characters/nylla/front-nsfw.svg",
  51832. extra: 1868/1699,
  51833. bottom: 97/1965
  51834. },
  51835. extraAttributes: {
  51836. "dickLength": {
  51837. name: "Dick Length",
  51838. power: 1,
  51839. type: "length",
  51840. base: math.unit(1.4, "feet")
  51841. },
  51842. "cumVolume": {
  51843. name: "Cum Volume",
  51844. power: 3,
  51845. type: "volume",
  51846. base: math.unit(100, "mL")
  51847. },
  51848. }
  51849. },
  51850. backNsfw: {
  51851. height: math.unit(6, "feet"),
  51852. name: "Back (NSFW)",
  51853. image: {
  51854. source: "./media/characters/nylla/back-nsfw.svg",
  51855. extra: 1889/1712,
  51856. bottom: 93/1982
  51857. }
  51858. },
  51859. maw: {
  51860. height: math.unit(2.10, "feet"),
  51861. name: "Maw",
  51862. image: {
  51863. source: "./media/characters/nylla/maw.svg"
  51864. }
  51865. },
  51866. paws: {
  51867. height: math.unit(2.06, "feet"),
  51868. name: "Paws",
  51869. image: {
  51870. source: "./media/characters/nylla/paws.svg"
  51871. }
  51872. },
  51873. muzzle: {
  51874. height: math.unit(0.61, "feet"),
  51875. name: "Muzzle",
  51876. image: {
  51877. source: "./media/characters/nylla/muzzle.svg"
  51878. }
  51879. },
  51880. sheath: {
  51881. height: math.unit(1.305, "feet"),
  51882. name: "Sheath",
  51883. image: {
  51884. source: "./media/characters/nylla/sheath.svg"
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Micro",
  51891. height: math.unit(7.5, "inches")
  51892. },
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(7, "feet"),
  51896. default: true
  51897. },
  51898. {
  51899. name: "Macro",
  51900. height: math.unit(60, "feet")
  51901. },
  51902. {
  51903. name: "Mega",
  51904. height: math.unit(200, "feet")
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(10, "feet"),
  51913. weight: math.unit(2300, "lb"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/hunt3r/front.svg",
  51917. extra: 1909/1742,
  51918. bottom: 46/1955
  51919. }
  51920. },
  51921. },
  51922. [
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(10, "feet"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51932. {
  51933. dressed: {
  51934. height: math.unit(11, "feet"),
  51935. weight: math.unit(18500, "lb"),
  51936. preyCapacity: math.unit(9, "people"),
  51937. name: "Dressed",
  51938. image: {
  51939. source: "./media/characters/cylphis/dressed.svg",
  51940. extra: 1028/1003,
  51941. bottom: 75/1103
  51942. },
  51943. },
  51944. undressed: {
  51945. height: math.unit(11, "feet"),
  51946. weight: math.unit(18500, "lb"),
  51947. preyCapacity: math.unit(9, "people"),
  51948. name: "Undressed",
  51949. image: {
  51950. source: "./media/characters/cylphis/undressed.svg",
  51951. extra: 1028/1003,
  51952. bottom: 75/1103
  51953. }
  51954. },
  51955. full: {
  51956. height: math.unit(11, "feet"),
  51957. weight: math.unit(18500 + 150*9, "lb"),
  51958. preyCapacity: math.unit(9, "people"),
  51959. name: "Full",
  51960. image: {
  51961. source: "./media/characters/cylphis/full.svg",
  51962. extra: 1028/1003,
  51963. bottom: 75/1103
  51964. }
  51965. },
  51966. },
  51967. [
  51968. {
  51969. name: "Small",
  51970. height: math.unit(8, "feet")
  51971. },
  51972. {
  51973. name: "Normal",
  51974. height: math.unit(11, "feet"),
  51975. default: true
  51976. },
  51977. ]
  51978. ))
  51979. characterMakers.push(() => makeCharacter(
  51980. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51981. {
  51982. front: {
  51983. height: math.unit(2 + 7/12, "feet"),
  51984. name: "Front",
  51985. image: {
  51986. source: "./media/characters/orishan/front.svg",
  51987. extra: 1058/1023,
  51988. bottom: 23/1081
  51989. }
  51990. },
  51991. back: {
  51992. height: math.unit(2 + 7/12, "feet"),
  51993. name: "Back",
  51994. image: {
  51995. source: "./media/characters/orishan/back.svg",
  51996. extra: 1058/1023,
  51997. bottom: 23/1081
  51998. }
  51999. },
  52000. },
  52001. [
  52002. {
  52003. name: "Micro",
  52004. height: math.unit(2, "cm")
  52005. },
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(2 + 7/12, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(3, "meters"),
  52018. weight: math.unit(508, "kg"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/seranis/front.svg",
  52022. extra: 1478/1454,
  52023. bottom: 41/1519
  52024. }
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(3, "meters"),
  52031. default: true
  52032. },
  52033. {
  52034. name: "Macro",
  52035. height: math.unit(108, "meters")
  52036. },
  52037. {
  52038. name: "Megamacro",
  52039. height: math.unit(1250, "meters")
  52040. },
  52041. ]
  52042. ))
  52043. characterMakers.push(() => makeCharacter(
  52044. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52045. {
  52046. undressed: {
  52047. height: math.unit(5 + 3/12, "feet"),
  52048. name: "Undressed",
  52049. image: {
  52050. source: "./media/characters/ankou/undressed.svg",
  52051. extra: 1301/1213,
  52052. bottom: 87/1388
  52053. }
  52054. },
  52055. dressed: {
  52056. height: math.unit(5 + 3/12, "feet"),
  52057. name: "Dressed",
  52058. image: {
  52059. source: "./media/characters/ankou/dressed.svg",
  52060. extra: 1301/1213,
  52061. bottom: 87/1388
  52062. }
  52063. },
  52064. head: {
  52065. height: math.unit(1.61, "feet"),
  52066. name: "Head",
  52067. image: {
  52068. source: "./media/characters/ankou/head.svg"
  52069. }
  52070. },
  52071. },
  52072. [
  52073. {
  52074. name: "Normal",
  52075. height: math.unit(5 + 3/12, "feet"),
  52076. default: true
  52077. },
  52078. ]
  52079. ))
  52080. characterMakers.push(() => makeCharacter(
  52081. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52082. {
  52083. side: {
  52084. height: math.unit(6 + 3/12, "feet"),
  52085. weight: math.unit(200, "kg"),
  52086. name: "Side",
  52087. image: {
  52088. source: "./media/characters/juniper-skunktaur/side.svg",
  52089. extra: 1574/1229,
  52090. bottom: 38/1612
  52091. }
  52092. },
  52093. front: {
  52094. height: math.unit(6 + 3/12, "feet"),
  52095. weight: math.unit(200, "kg"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/juniper-skunktaur/front.svg",
  52099. extra: 1337/1278,
  52100. bottom: 22/1359
  52101. }
  52102. },
  52103. back: {
  52104. height: math.unit(6 + 3/12, "feet"),
  52105. weight: math.unit(200, "kg"),
  52106. name: "Back",
  52107. image: {
  52108. source: "./media/characters/juniper-skunktaur/back.svg",
  52109. extra: 1618/1273,
  52110. bottom: 13/1631
  52111. }
  52112. },
  52113. top: {
  52114. height: math.unit(2.62, "feet"),
  52115. weight: math.unit(200, "kg"),
  52116. name: "Top",
  52117. image: {
  52118. source: "./media/characters/juniper-skunktaur/top.svg"
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(6 + 3/12, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(20.5, "feet"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/rei/front.svg",
  52138. extra: 1349/1195,
  52139. bottom: 31/1380
  52140. }
  52141. },
  52142. back: {
  52143. height: math.unit(20.5, "feet"),
  52144. name: "Back",
  52145. image: {
  52146. source: "./media/characters/rei/back.svg",
  52147. extra: 1358/1204,
  52148. bottom: 22/1380
  52149. }
  52150. },
  52151. pawsDigi: {
  52152. height: math.unit(3.45, "feet"),
  52153. name: "Paws (Digi)",
  52154. image: {
  52155. source: "./media/characters/rei/paws-digi.svg"
  52156. }
  52157. },
  52158. pawsPlanti: {
  52159. height: math.unit(3.45, "feet"),
  52160. name: "Paws (Planti)",
  52161. image: {
  52162. source: "./media/characters/rei/paws-planti.svg"
  52163. }
  52164. },
  52165. },
  52166. [
  52167. {
  52168. name: "Normal",
  52169. height: math.unit(20.5, "feet"),
  52170. default: true
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(5 + 11/12, "feet"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/carina/front.svg",
  52182. extra: 1720/1449,
  52183. bottom: 14/1734
  52184. }
  52185. },
  52186. back: {
  52187. height: math.unit(5 + 11/12, "feet"),
  52188. name: "Back",
  52189. image: {
  52190. source: "./media/characters/carina/back.svg",
  52191. extra: 1493/1445,
  52192. bottom: 17/1510
  52193. }
  52194. },
  52195. paw: {
  52196. height: math.unit(0.92, "feet"),
  52197. name: "Paw",
  52198. image: {
  52199. source: "./media/characters/carina/paw.svg"
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(5 + 11/12, "feet"),
  52207. default: true
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(4.88, "meters"),
  52216. name: "Front",
  52217. image: {
  52218. source: "./media/characters/maya/front.svg",
  52219. extra: 1222/1145,
  52220. bottom: 57/1279
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(4.88, "meters"),
  52228. default: true
  52229. },
  52230. {
  52231. name: "Macro",
  52232. height: math.unit(38.1, "meters")
  52233. },
  52234. {
  52235. name: "Macro+",
  52236. height: math.unit(152.4, "meters")
  52237. },
  52238. {
  52239. name: "Macro++",
  52240. height: math.unit(16.09, "km")
  52241. },
  52242. {
  52243. name: "Mega-macro",
  52244. height: math.unit(700, "megameters")
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(6 + 2/12, "feet"),
  52253. weight: math.unit(500, "lb"),
  52254. preyCapacity: math.unit(4, "people"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/yepir/front.svg"
  52258. }
  52259. },
  52260. side: {
  52261. height: math.unit(6 + 2/12, "feet"),
  52262. weight: math.unit(500, "lb"),
  52263. preyCapacity: math.unit(4, "people"),
  52264. name: "Side",
  52265. image: {
  52266. source: "./media/characters/yepir/side.svg"
  52267. }
  52268. },
  52269. paw: {
  52270. height: math.unit(1.05, "feet"),
  52271. name: "Paw",
  52272. image: {
  52273. source: "./media/characters/yepir/paw.svg"
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(6 + 2/12, "feet"),
  52281. default: true
  52282. },
  52283. ]
  52284. ))
  52285. characterMakers.push(() => makeCharacter(
  52286. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52287. {
  52288. front: {
  52289. height: math.unit(5 + 4/12, "feet"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/russec/front.svg",
  52293. extra: 1926/1626,
  52294. bottom: 72/1998
  52295. }
  52296. },
  52297. back: {
  52298. height: math.unit(5 + 4/12, "feet"),
  52299. name: "Back",
  52300. image: {
  52301. source: "./media/characters/russec/back.svg",
  52302. extra: 1910/1591,
  52303. bottom: 48/1958
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Small",
  52310. height: math.unit(5 + 4/12, "feet")
  52311. },
  52312. {
  52313. name: "Normal",
  52314. height: math.unit(72, "feet"),
  52315. default: true
  52316. },
  52317. ]
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52321. {
  52322. side: {
  52323. height: math.unit(12, "feet"),
  52324. name: "Side",
  52325. image: {
  52326. source: "./media/characters/cianus/side.svg",
  52327. extra: 808/526,
  52328. bottom: 61/869
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(12, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52342. {
  52343. front: {
  52344. height: math.unit(9 + 6/12, "feet"),
  52345. weight: math.unit(300, "lb"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/ahab/front.svg",
  52349. extra: 1897/1868,
  52350. bottom: 121/2018
  52351. }
  52352. },
  52353. frontNsfw: {
  52354. height: math.unit(9 + 6/12, "feet"),
  52355. weight: math.unit(300, "lb"),
  52356. name: "Front-nsfw",
  52357. image: {
  52358. source: "./media/characters/ahab/front-nsfw.svg",
  52359. extra: 1897/1868,
  52360. bottom: 121/2018
  52361. }
  52362. },
  52363. },
  52364. [
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(9 + 6/12, "feet")
  52368. },
  52369. {
  52370. name: "Macro",
  52371. height: math.unit(657, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(2.69, "meters"),
  52381. weight: math.unit(132, "kg"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/aarkus/front.svg",
  52385. extra: 1400/1231,
  52386. bottom: 34/1434
  52387. }
  52388. },
  52389. back: {
  52390. height: math.unit(2.69, "meters"),
  52391. weight: math.unit(132, "kg"),
  52392. name: "Back",
  52393. image: {
  52394. source: "./media/characters/aarkus/back.svg",
  52395. extra: 1381/1218,
  52396. bottom: 30/1411
  52397. }
  52398. },
  52399. frontNsfw: {
  52400. height: math.unit(2.69, "meters"),
  52401. weight: math.unit(132, "kg"),
  52402. name: "Front (NSFW)",
  52403. image: {
  52404. source: "./media/characters/aarkus/front-nsfw.svg",
  52405. extra: 1400/1231,
  52406. bottom: 34/1434
  52407. }
  52408. },
  52409. foot: {
  52410. height: math.unit(1.45, "feet"),
  52411. name: "Foot",
  52412. image: {
  52413. source: "./media/characters/aarkus/foot.svg"
  52414. }
  52415. },
  52416. head: {
  52417. height: math.unit(2.85, "feet"),
  52418. name: "Head",
  52419. image: {
  52420. source: "./media/characters/aarkus/head.svg"
  52421. }
  52422. },
  52423. headAlt: {
  52424. height: math.unit(3.07, "feet"),
  52425. name: "Head (Alt)",
  52426. image: {
  52427. source: "./media/characters/aarkus/head-alt.svg"
  52428. }
  52429. },
  52430. mouth: {
  52431. height: math.unit(1.25, "feet"),
  52432. name: "Mouth",
  52433. image: {
  52434. source: "./media/characters/aarkus/mouth.svg"
  52435. }
  52436. },
  52437. dick: {
  52438. height: math.unit(1.77, "feet"),
  52439. name: "Dick",
  52440. image: {
  52441. source: "./media/characters/aarkus/dick.svg"
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(2.69, "meters"),
  52449. default: true
  52450. },
  52451. {
  52452. name: "Macro",
  52453. height: math.unit(269, "meters")
  52454. },
  52455. {
  52456. name: "Macro+",
  52457. height: math.unit(672.5, "meters")
  52458. },
  52459. {
  52460. name: "Megamacro",
  52461. height: math.unit(2.017, "km")
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52467. {
  52468. front: {
  52469. height: math.unit(23.47, "cm"),
  52470. weight: math.unit(600, "grams"),
  52471. name: "Front",
  52472. image: {
  52473. source: "./media/characters/diode/front.svg",
  52474. extra: 1778/1396,
  52475. bottom: 95/1873
  52476. }
  52477. },
  52478. side: {
  52479. height: math.unit(23.47, "cm"),
  52480. weight: math.unit(600, "grams"),
  52481. name: "Side",
  52482. image: {
  52483. source: "./media/characters/diode/side.svg",
  52484. extra: 1831/1404,
  52485. bottom: 86/1917
  52486. }
  52487. },
  52488. wings: {
  52489. height: math.unit(0.683, "feet"),
  52490. name: "Wings",
  52491. image: {
  52492. source: "./media/characters/diode/wings.svg"
  52493. }
  52494. },
  52495. },
  52496. [
  52497. {
  52498. name: "Normal",
  52499. height: math.unit(23.47, "cm"),
  52500. default: true
  52501. },
  52502. ]
  52503. ))
  52504. characterMakers.push(() => makeCharacter(
  52505. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52506. {
  52507. front: {
  52508. height: math.unit(6 + 3/12, "feet"),
  52509. weight: math.unit(250, "lb"),
  52510. name: "Front",
  52511. image: {
  52512. source: "./media/characters/reika/front.svg",
  52513. extra: 1120/1078,
  52514. bottom: 86/1206
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(6 + 3/12, "feet"),
  52522. default: true
  52523. },
  52524. ]
  52525. ))
  52526. characterMakers.push(() => makeCharacter(
  52527. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52528. {
  52529. front: {
  52530. height: math.unit(16 + 8/12, "feet"),
  52531. weight: math.unit(9000, "lb"),
  52532. name: "Front",
  52533. image: {
  52534. source: "./media/characters/lokuto-takama/front.svg",
  52535. extra: 1774/1632,
  52536. bottom: 147/1921
  52537. },
  52538. extraAttributes: {
  52539. "bustWidth": {
  52540. name: "Bust Width",
  52541. power: 1,
  52542. type: "length",
  52543. base: math.unit(2.4, "meters")
  52544. },
  52545. "breastWeight": {
  52546. name: "Breast Weight",
  52547. power: 3,
  52548. type: "mass",
  52549. base: math.unit(1000, "kg")
  52550. },
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Normal",
  52557. height: math.unit(16 + 8/12, "feet"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(10, "cm"),
  52567. weight: math.unit(850, "grams"),
  52568. name: "Front",
  52569. image: {
  52570. source: "./media/characters/owak-bone/front.svg",
  52571. extra: 1965/1801,
  52572. bottom: 31/1996
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Normal",
  52579. height: math.unit(10, "cm"),
  52580. default: true
  52581. },
  52582. ]
  52583. ))
  52584. characterMakers.push(() => makeCharacter(
  52585. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52586. {
  52587. front: {
  52588. height: math.unit(2 + 6/12, "feet"),
  52589. weight: math.unit(9, "lb"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/muffin/front.svg",
  52593. extra: 1220/1195,
  52594. bottom: 84/1304
  52595. }
  52596. },
  52597. },
  52598. [
  52599. {
  52600. name: "Normal",
  52601. height: math.unit(2 + 6/12, "feet"),
  52602. default: true
  52603. },
  52604. ]
  52605. ))
  52606. characterMakers.push(() => makeCharacter(
  52607. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52608. {
  52609. front: {
  52610. height: math.unit(7, "feet"),
  52611. name: "Front",
  52612. image: {
  52613. source: "./media/characters/chimera/front.svg",
  52614. extra: 1752/1614,
  52615. bottom: 68/1820
  52616. }
  52617. },
  52618. },
  52619. [
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(7, "feet")
  52623. },
  52624. {
  52625. name: "Gigamacro",
  52626. height: math.unit(2.9, "gigameters"),
  52627. default: true
  52628. },
  52629. {
  52630. name: "Universal",
  52631. height: math.unit(1.56e26, "yottameters")
  52632. },
  52633. ]
  52634. ))
  52635. characterMakers.push(() => makeCharacter(
  52636. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52637. {
  52638. front: {
  52639. height: math.unit(3, "feet"),
  52640. weight: math.unit(20, "lb"),
  52641. name: "Front",
  52642. image: {
  52643. source: "./media/characters/kit-fennec-fox/front.svg",
  52644. extra: 1027/932,
  52645. bottom: 16/1043
  52646. }
  52647. },
  52648. back: {
  52649. height: math.unit(3, "feet"),
  52650. weight: math.unit(20, "lb"),
  52651. name: "Back",
  52652. image: {
  52653. source: "./media/characters/kit-fennec-fox/back.svg",
  52654. extra: 1027/932,
  52655. bottom: 16/1043
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(3, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(167, "cm"),
  52672. name: "Front",
  52673. image: {
  52674. source: "./media/characters/blue-otter/front.svg",
  52675. extra: 1951/1920,
  52676. bottom: 31/1982
  52677. }
  52678. },
  52679. },
  52680. [
  52681. {
  52682. name: "Otter-Sized",
  52683. height: math.unit(100, "cm")
  52684. },
  52685. {
  52686. name: "Normal",
  52687. height: math.unit(167, "cm"),
  52688. default: true
  52689. },
  52690. ]
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52694. {
  52695. front: {
  52696. height: math.unit(4 + 4/12, "feet"),
  52697. name: "Front",
  52698. image: {
  52699. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52700. extra: 1072/1067,
  52701. bottom: 117/1189
  52702. }
  52703. },
  52704. back: {
  52705. height: math.unit(4 + 4/12, "feet"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52709. extra: 1135/1129,
  52710. bottom: 57/1192
  52711. }
  52712. },
  52713. head: {
  52714. height: math.unit(1.77, "feet"),
  52715. name: "Head",
  52716. image: {
  52717. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52718. }
  52719. },
  52720. },
  52721. [
  52722. {
  52723. name: "Normal",
  52724. height: math.unit(4 + 4/12, "feet"),
  52725. default: true
  52726. },
  52727. ]
  52728. ))
  52729. characterMakers.push(() => makeCharacter(
  52730. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52731. {
  52732. front: {
  52733. height: math.unit(2, "inches"),
  52734. name: "Front",
  52735. image: {
  52736. source: "./media/characters/carley-hartford/front.svg",
  52737. extra: 1035/988,
  52738. bottom: 23/1058
  52739. }
  52740. },
  52741. back: {
  52742. height: math.unit(2, "inches"),
  52743. name: "Back",
  52744. image: {
  52745. source: "./media/characters/carley-hartford/back.svg",
  52746. extra: 1035/988,
  52747. bottom: 23/1058
  52748. }
  52749. },
  52750. dressed: {
  52751. height: math.unit(2, "inches"),
  52752. name: "Dressed",
  52753. image: {
  52754. source: "./media/characters/carley-hartford/dressed.svg",
  52755. extra: 651/620,
  52756. bottom: 0/651
  52757. }
  52758. },
  52759. },
  52760. [
  52761. {
  52762. name: "Micro",
  52763. height: math.unit(2, "inches"),
  52764. default: true
  52765. },
  52766. {
  52767. name: "Macro",
  52768. height: math.unit(6 + 3/12, "feet")
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(2 + 3/12, "feet"),
  52777. weight: math.unit(15 + 7/16, "lb"),
  52778. name: "Front",
  52779. image: {
  52780. source: "./media/characters/duke/front.svg",
  52781. extra: 910/815,
  52782. bottom: 30/940
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(2 + 3/12, "feet"),
  52790. default: true
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52796. {
  52797. front: {
  52798. height: math.unit(5 + 4/12, "feet"),
  52799. weight: math.unit(156, "lb"),
  52800. name: "Front",
  52801. image: {
  52802. source: "./media/characters/dein/front.svg",
  52803. extra: 855/815,
  52804. bottom: 48/903
  52805. }
  52806. },
  52807. side: {
  52808. height: math.unit(5 + 4/12, "feet"),
  52809. weight: math.unit(156, "lb"),
  52810. name: "side",
  52811. image: {
  52812. source: "./media/characters/dein/side.svg",
  52813. extra: 846/803,
  52814. bottom: 25/871
  52815. }
  52816. },
  52817. maw: {
  52818. height: math.unit(1.45, "feet"),
  52819. name: "Maw",
  52820. image: {
  52821. source: "./media/characters/dein/maw.svg"
  52822. }
  52823. },
  52824. },
  52825. [
  52826. {
  52827. name: "Ferret Sized",
  52828. height: math.unit(2 + 5/12, "feet")
  52829. },
  52830. {
  52831. name: "Normal",
  52832. height: math.unit(5 + 4/12, "feet"),
  52833. default: true
  52834. },
  52835. ]
  52836. ))
  52837. characterMakers.push(() => makeCharacter(
  52838. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52839. {
  52840. front: {
  52841. height: math.unit(84 + 8/12, "feet"),
  52842. weight: math.unit(942180, "lb"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/daurine-arima/front.svg",
  52846. extra: 1989/1782,
  52847. bottom: 37/2026
  52848. }
  52849. },
  52850. side: {
  52851. height: math.unit(84 + 8/12, "feet"),
  52852. weight: math.unit(942180, "lb"),
  52853. name: "Side",
  52854. image: {
  52855. source: "./media/characters/daurine-arima/side.svg",
  52856. extra: 1997/1790,
  52857. bottom: 21/2018
  52858. }
  52859. },
  52860. back: {
  52861. height: math.unit(84 + 8/12, "feet"),
  52862. weight: math.unit(942180, "lb"),
  52863. name: "Back",
  52864. image: {
  52865. source: "./media/characters/daurine-arima/back.svg",
  52866. extra: 1992/1800,
  52867. bottom: 12/2004
  52868. }
  52869. },
  52870. head: {
  52871. height: math.unit(15.5, "feet"),
  52872. name: "Head",
  52873. image: {
  52874. source: "./media/characters/daurine-arima/head.svg"
  52875. }
  52876. },
  52877. headAlt: {
  52878. height: math.unit(19.19, "feet"),
  52879. name: "Head (Alt)",
  52880. image: {
  52881. source: "./media/characters/daurine-arima/head-alt.svg"
  52882. }
  52883. },
  52884. },
  52885. [
  52886. {
  52887. name: "Minimum height",
  52888. height: math.unit(8 + 10/12, "feet")
  52889. },
  52890. {
  52891. name: "Comfort height",
  52892. height: math.unit(19 + 6 /12, "feet")
  52893. },
  52894. {
  52895. name: "\"Normal\" height",
  52896. height: math.unit(28 + 10/12, "feet")
  52897. },
  52898. {
  52899. name: "Base height",
  52900. height: math.unit(84 + 8/12, "feet"),
  52901. default: true
  52902. },
  52903. {
  52904. name: "Mini-macro",
  52905. height: math.unit(2360, "feet")
  52906. },
  52907. {
  52908. name: "Macro",
  52909. height: math.unit(10, "miles")
  52910. },
  52911. {
  52912. name: "Goddess",
  52913. height: math.unit(9.99e40, "yottameters")
  52914. },
  52915. ]
  52916. ))
  52917. characterMakers.push(() => makeCharacter(
  52918. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52919. {
  52920. front: {
  52921. height: math.unit(2.3, "meters"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/cilenomon/front.svg",
  52925. extra: 1963/1778,
  52926. bottom: 54/2017
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(2.3, "meters"),
  52934. default: true
  52935. },
  52936. {
  52937. name: "Big",
  52938. height: math.unit(5, "meters")
  52939. },
  52940. {
  52941. name: "Macro",
  52942. height: math.unit(30, "meters")
  52943. },
  52944. {
  52945. name: "True",
  52946. height: math.unit(1, "universe")
  52947. },
  52948. ]
  52949. ))
  52950. characterMakers.push(() => makeCharacter(
  52951. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52952. {
  52953. front: {
  52954. height: math.unit(5, "feet"),
  52955. name: "Front",
  52956. image: {
  52957. source: "./media/characters/sen-mink/front.svg",
  52958. extra: 1727/1675,
  52959. bottom: 35/1762
  52960. }
  52961. },
  52962. },
  52963. [
  52964. {
  52965. name: "Normal",
  52966. height: math.unit(5, "feet"),
  52967. default: true
  52968. },
  52969. ]
  52970. ))
  52971. characterMakers.push(() => makeCharacter(
  52972. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52973. {
  52974. front: {
  52975. height: math.unit(5.42999, "feet"),
  52976. weight: math.unit(100, "lb"),
  52977. name: "Front",
  52978. image: {
  52979. source: "./media/characters/ophois/front.svg",
  52980. extra: 1429/1286,
  52981. bottom: 60/1489
  52982. }
  52983. },
  52984. },
  52985. [
  52986. {
  52987. name: "Normal",
  52988. height: math.unit(5.42999, "feet"),
  52989. default: true
  52990. },
  52991. ]
  52992. ))
  52993. characterMakers.push(() => makeCharacter(
  52994. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52995. {
  52996. front: {
  52997. height: math.unit(2, "meters"),
  52998. name: "Front",
  52999. image: {
  53000. source: "./media/characters/riley/front.svg",
  53001. extra: 1779/1754,
  53002. bottom: 139/1918
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(2, "meters"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(6 + 2/12, "feet"),
  53019. weight: math.unit(195, "lb"),
  53020. preyCapacity: math.unit(6, "people"),
  53021. name: "Front",
  53022. image: {
  53023. source: "./media/characters/shuken-flash/front.svg",
  53024. extra: 1905/1739,
  53025. bottom: 65/1970
  53026. }
  53027. },
  53028. back: {
  53029. height: math.unit(6 + 2/12, "feet"),
  53030. weight: math.unit(195, "lb"),
  53031. preyCapacity: math.unit(6, "people"),
  53032. name: "Back",
  53033. image: {
  53034. source: "./media/characters/shuken-flash/back.svg",
  53035. extra: 1912/1751,
  53036. bottom: 13/1925
  53037. }
  53038. },
  53039. },
  53040. [
  53041. {
  53042. name: "Normal",
  53043. height: math.unit(6 + 2/12, "feet"),
  53044. default: true
  53045. },
  53046. ]
  53047. ))
  53048. characterMakers.push(() => makeCharacter(
  53049. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53050. {
  53051. front: {
  53052. height: math.unit(5 + 9/12, "feet"),
  53053. weight: math.unit(150, "lb"),
  53054. name: "Front",
  53055. image: {
  53056. source: "./media/characters/plat/front.svg",
  53057. extra: 1816/1703,
  53058. bottom: 43/1859
  53059. }
  53060. },
  53061. side: {
  53062. height: math.unit(5 + 9/12, "feet"),
  53063. weight: math.unit(300, "lb"),
  53064. name: "Side",
  53065. image: {
  53066. source: "./media/characters/plat/side.svg",
  53067. extra: 1824/1699,
  53068. bottom: 18/1842
  53069. }
  53070. },
  53071. },
  53072. [
  53073. {
  53074. name: "Normal",
  53075. height: math.unit(5 + 9/12, "feet"),
  53076. default: true
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(9, "feet"),
  53085. weight: math.unit(1800, "lb"),
  53086. name: "Front",
  53087. image: {
  53088. source: "./media/characters/elaine/front.svg",
  53089. extra: 1833/1354,
  53090. bottom: 25/1858
  53091. }
  53092. },
  53093. back: {
  53094. height: math.unit(8.8, "feet"),
  53095. weight: math.unit(1800, "lb"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/elaine/back.svg",
  53099. extra: 1641/1233,
  53100. bottom: 53/1694
  53101. }
  53102. },
  53103. },
  53104. [
  53105. {
  53106. name: "Normal",
  53107. height: math.unit(9, "feet"),
  53108. default: true
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(17 + 9/12, "feet"),
  53117. weight: math.unit(8000, "lb"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/vera-raven/front.svg",
  53121. extra: 1457/1412,
  53122. bottom: 121/1578
  53123. }
  53124. },
  53125. side: {
  53126. height: math.unit(17 + 9/12, "feet"),
  53127. weight: math.unit(8000, "lb"),
  53128. name: "Side",
  53129. image: {
  53130. source: "./media/characters/vera-raven/side.svg",
  53131. extra: 1510/1464,
  53132. bottom: 54/1564
  53133. }
  53134. },
  53135. },
  53136. [
  53137. {
  53138. name: "Normal",
  53139. height: math.unit(17 + 9/12, "feet"),
  53140. default: true
  53141. },
  53142. ]
  53143. ))
  53144. characterMakers.push(() => makeCharacter(
  53145. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53146. {
  53147. dressed: {
  53148. height: math.unit(6 + 9/12, "feet"),
  53149. name: "Dressed",
  53150. image: {
  53151. source: "./media/characters/nakisha/dressed.svg",
  53152. extra: 1909/1757,
  53153. bottom: 48/1957
  53154. }
  53155. },
  53156. nude: {
  53157. height: math.unit(6 + 9/12, "feet"),
  53158. name: "Nude",
  53159. image: {
  53160. source: "./media/characters/nakisha/nude.svg",
  53161. extra: 1917/1765,
  53162. bottom: 34/1951
  53163. }
  53164. },
  53165. },
  53166. [
  53167. {
  53168. name: "Normal",
  53169. height: math.unit(6 + 9/12, "feet"),
  53170. default: true
  53171. },
  53172. ]
  53173. ))
  53174. characterMakers.push(() => makeCharacter(
  53175. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53176. {
  53177. front: {
  53178. height: math.unit(87, "meters"),
  53179. name: "Front",
  53180. image: {
  53181. source: "./media/characters/serafin/front.svg",
  53182. extra: 1919/1776,
  53183. bottom: 65/1984
  53184. }
  53185. },
  53186. },
  53187. [
  53188. {
  53189. name: "Normal",
  53190. height: math.unit(87, "meters"),
  53191. default: true
  53192. },
  53193. ]
  53194. ))
  53195. characterMakers.push(() => makeCharacter(
  53196. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53197. {
  53198. front: {
  53199. height: math.unit(6, "feet"),
  53200. weight: math.unit(200, "lb"),
  53201. name: "Front",
  53202. image: {
  53203. source: "./media/characters/poptart/front.svg",
  53204. extra: 615/583,
  53205. bottom: 23/638
  53206. }
  53207. },
  53208. back: {
  53209. height: math.unit(6, "feet"),
  53210. weight: math.unit(200, "lb"),
  53211. name: "Back",
  53212. image: {
  53213. source: "./media/characters/poptart/back.svg",
  53214. extra: 617/584,
  53215. bottom: 22/639
  53216. }
  53217. },
  53218. frontNsfw: {
  53219. height: math.unit(6, "feet"),
  53220. weight: math.unit(200, "lb"),
  53221. name: "Front (NSFW)",
  53222. image: {
  53223. source: "./media/characters/poptart/front-nsfw.svg",
  53224. extra: 615/583,
  53225. bottom: 23/638
  53226. }
  53227. },
  53228. backNsfw: {
  53229. height: math.unit(6, "feet"),
  53230. weight: math.unit(200, "lb"),
  53231. name: "Back (NSFW)",
  53232. image: {
  53233. source: "./media/characters/poptart/back-nsfw.svg",
  53234. extra: 617/584,
  53235. bottom: 22/639
  53236. }
  53237. },
  53238. hand: {
  53239. height: math.unit(1.14, "feet"),
  53240. name: "Hand",
  53241. image: {
  53242. source: "./media/characters/poptart/hand.svg"
  53243. }
  53244. },
  53245. foot: {
  53246. height: math.unit(1.5, "feet"),
  53247. name: "Foot",
  53248. image: {
  53249. source: "./media/characters/poptart/foot.svg"
  53250. }
  53251. },
  53252. },
  53253. [
  53254. {
  53255. name: "Normal",
  53256. height: math.unit(6, "feet"),
  53257. default: true
  53258. },
  53259. {
  53260. name: "Grande",
  53261. height: math.unit(350, "feet")
  53262. },
  53263. {
  53264. name: "Massif",
  53265. height: math.unit(967, "feet")
  53266. },
  53267. ]
  53268. ))
  53269. characterMakers.push(() => makeCharacter(
  53270. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53271. {
  53272. hyenaSide: {
  53273. height: math.unit(120, "cm"),
  53274. weight: math.unit(120, "lb"),
  53275. name: "Side",
  53276. image: {
  53277. source: "./media/characters/trance/hyena-side.svg",
  53278. extra: 998/904,
  53279. bottom: 76/1074
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(120, "cm"),
  53287. default: true
  53288. },
  53289. {
  53290. name: "Dire",
  53291. height: math.unit(230, "cm")
  53292. },
  53293. {
  53294. name: "Macro",
  53295. height: math.unit(37, "feet")
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(6 + 3/12, "feet"),
  53304. name: "Front",
  53305. image: {
  53306. source: "./media/characters/michael-berretta/front.svg",
  53307. extra: 515/494,
  53308. bottom: 20/535
  53309. }
  53310. },
  53311. back: {
  53312. height: math.unit(6 + 3/12, "feet"),
  53313. name: "Back",
  53314. image: {
  53315. source: "./media/characters/michael-berretta/back.svg",
  53316. extra: 520/497,
  53317. bottom: 21/541
  53318. }
  53319. },
  53320. frontNsfw: {
  53321. height: math.unit(6 + 3/12, "feet"),
  53322. name: "Front (NSFW)",
  53323. image: {
  53324. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53325. extra: 515/494,
  53326. bottom: 20/535
  53327. }
  53328. },
  53329. dick: {
  53330. height: math.unit(1, "feet"),
  53331. name: "Dick",
  53332. image: {
  53333. source: "./media/characters/michael-berretta/dick.svg"
  53334. }
  53335. },
  53336. },
  53337. [
  53338. {
  53339. name: "Normal",
  53340. height: math.unit(6 + 3/12, "feet"),
  53341. default: true
  53342. },
  53343. {
  53344. name: "Big",
  53345. height: math.unit(12, "feet")
  53346. },
  53347. {
  53348. name: "Macro",
  53349. height: math.unit(187.5, "feet")
  53350. },
  53351. ]
  53352. ))
  53353. characterMakers.push(() => makeCharacter(
  53354. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53355. {
  53356. front: {
  53357. height: math.unit(9 + 9/12, "feet"),
  53358. weight: math.unit(1244, "lb"),
  53359. name: "Front",
  53360. image: {
  53361. source: "./media/characters/stella-edgecomb/front.svg",
  53362. extra: 1835/1706,
  53363. bottom: 49/1884
  53364. }
  53365. },
  53366. pen: {
  53367. height: math.unit(0.95, "feet"),
  53368. name: "Pen",
  53369. image: {
  53370. source: "./media/characters/stella-edgecomb/pen.svg"
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Cozy Bear",
  53377. height: math.unit(0.5, "inches")
  53378. },
  53379. {
  53380. name: "Normal",
  53381. height: math.unit(9 + 9/12, "feet"),
  53382. default: true
  53383. },
  53384. {
  53385. name: "Giga Bear",
  53386. height: math.unit(1, "mile")
  53387. },
  53388. {
  53389. name: "Great Bear",
  53390. height: math.unit(53, "miles")
  53391. },
  53392. {
  53393. name: "Goddess Bear",
  53394. height: math.unit(40000, "miles")
  53395. },
  53396. {
  53397. name: "Sun Bear",
  53398. height: math.unit(900000, "miles")
  53399. },
  53400. ]
  53401. ))
  53402. characterMakers.push(() => makeCharacter(
  53403. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53404. {
  53405. anthroFront: {
  53406. height: math.unit(556, "cm"),
  53407. weight: math.unit(2650, "kg"),
  53408. preyCapacity: math.unit(3, "people"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/ash´iika/front.svg",
  53412. extra: 710/673,
  53413. bottom: 15/725
  53414. },
  53415. form: "anthro",
  53416. default: true
  53417. },
  53418. anthroSide: {
  53419. height: math.unit(556, "cm"),
  53420. weight: math.unit(2650, "kg"),
  53421. preyCapacity: math.unit(3, "people"),
  53422. name: "Side",
  53423. image: {
  53424. source: "./media/characters/ash´iika/side.svg",
  53425. extra: 696/676,
  53426. bottom: 13/709
  53427. },
  53428. form: "anthro"
  53429. },
  53430. anthroDressed: {
  53431. height: math.unit(556, "cm"),
  53432. weight: math.unit(2650, "kg"),
  53433. preyCapacity: math.unit(3, "people"),
  53434. name: "Dressed",
  53435. image: {
  53436. source: "./media/characters/ash´iika/dressed.svg",
  53437. extra: 710/673,
  53438. bottom: 15/725
  53439. },
  53440. form: "anthro"
  53441. },
  53442. anthroHead: {
  53443. height: math.unit(3.5, "feet"),
  53444. name: "Head",
  53445. image: {
  53446. source: "./media/characters/ash´iika/head.svg",
  53447. extra: 348/291,
  53448. bottom: 45/393
  53449. },
  53450. form: "anthro"
  53451. },
  53452. feralSide: {
  53453. height: math.unit(870, "cm"),
  53454. weight: math.unit(17500, "kg"),
  53455. preyCapacity: math.unit(15, "people"),
  53456. name: "Side",
  53457. image: {
  53458. source: "./media/characters/ash´iika/feral.svg",
  53459. extra: 595/199,
  53460. bottom: 7/602
  53461. },
  53462. form: "feral",
  53463. default: true,
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Normal",
  53469. height: math.unit(556, "cm"),
  53470. default: true,
  53471. form: "anthro"
  53472. },
  53473. {
  53474. name: "Macro",
  53475. height: math.unit(88, "meters"),
  53476. form: "anthro"
  53477. },
  53478. {
  53479. name: "Normal",
  53480. height: math.unit(870, "cm"),
  53481. default: true,
  53482. form: "feral"
  53483. },
  53484. {
  53485. name: "Large",
  53486. height: math.unit(25, "meters"),
  53487. form: "feral"
  53488. },
  53489. ],
  53490. {
  53491. "anthro": {
  53492. name: "Anthro",
  53493. default: true
  53494. },
  53495. "feral": {
  53496. name: "Feral",
  53497. },
  53498. }
  53499. ))
  53500. characterMakers.push(() => makeCharacter(
  53501. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53502. {
  53503. front: {
  53504. height: math.unit(10, "feet"),
  53505. weight: math.unit(800, "lb"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/yen/front.svg",
  53509. extra: 443/411,
  53510. bottom: 6/449
  53511. }
  53512. },
  53513. sleeping: {
  53514. height: math.unit(10, "feet"),
  53515. weight: math.unit(800, "lb"),
  53516. name: "Sleeping",
  53517. image: {
  53518. source: "./media/characters/yen/sleeping.svg",
  53519. extra: 470/422,
  53520. bottom: 0/470
  53521. }
  53522. },
  53523. head: {
  53524. height: math.unit(2.2, "feet"),
  53525. name: "Head",
  53526. image: {
  53527. source: "./media/characters/yen/head.svg"
  53528. }
  53529. },
  53530. headAlt: {
  53531. height: math.unit(2.1, "feet"),
  53532. name: "Head (Alt)",
  53533. image: {
  53534. source: "./media/characters/yen/head-alt.svg"
  53535. }
  53536. },
  53537. },
  53538. [
  53539. {
  53540. name: "Normal",
  53541. height: math.unit(10, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(12, "feet"),
  53551. name: "Front",
  53552. image: {
  53553. source: "./media/characters/citra/front.svg",
  53554. extra: 1950/1710,
  53555. bottom: 47/1997
  53556. }
  53557. },
  53558. },
  53559. [
  53560. {
  53561. name: "Normal",
  53562. height: math.unit(12, "feet"),
  53563. default: true
  53564. },
  53565. ]
  53566. ))
  53567. characterMakers.push(() => makeCharacter(
  53568. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53569. {
  53570. side: {
  53571. height: math.unit(7 + 10/12, "feet"),
  53572. name: "Side",
  53573. image: {
  53574. source: "./media/characters/sholstim/side.svg",
  53575. extra: 786/682,
  53576. bottom: 40/826
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Normal",
  53583. height: math.unit(7 + 10/12, "feet"),
  53584. default: true
  53585. },
  53586. ]
  53587. ))
  53588. characterMakers.push(() => makeCharacter(
  53589. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53590. {
  53591. front: {
  53592. height: math.unit(3.10, "meters"),
  53593. name: "Front",
  53594. image: {
  53595. source: "./media/characters/aggyn/front.svg",
  53596. extra: 1188/963,
  53597. bottom: 24/1212
  53598. }
  53599. },
  53600. },
  53601. [
  53602. {
  53603. name: "Normal",
  53604. height: math.unit(3.10, "meters"),
  53605. default: true
  53606. },
  53607. ]
  53608. ))
  53609. characterMakers.push(() => makeCharacter(
  53610. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53611. {
  53612. front: {
  53613. height: math.unit(7 + 5/12, "feet"),
  53614. weight: math.unit(687, "lb"),
  53615. name: "Front",
  53616. image: {
  53617. source: "./media/characters/alsandair-hergenroether/front.svg",
  53618. extra: 1251/1186,
  53619. bottom: 75/1326
  53620. }
  53621. },
  53622. back: {
  53623. height: math.unit(7 + 5/12, "feet"),
  53624. weight: math.unit(687, "lb"),
  53625. name: "Back",
  53626. image: {
  53627. source: "./media/characters/alsandair-hergenroether/back.svg",
  53628. extra: 1290/1229,
  53629. bottom: 17/1307
  53630. }
  53631. },
  53632. },
  53633. [
  53634. {
  53635. name: "Max Compression",
  53636. height: math.unit(7 + 5/12, "feet"),
  53637. default: true
  53638. },
  53639. {
  53640. name: "\"Normal\"",
  53641. height: math.unit(2, "universes")
  53642. },
  53643. ]
  53644. ))
  53645. characterMakers.push(() => makeCharacter(
  53646. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53647. {
  53648. front: {
  53649. height: math.unit(4 + 1/12, "feet"),
  53650. weight: math.unit(92, "lb"),
  53651. name: "Front",
  53652. image: {
  53653. source: "./media/characters/ie/front.svg",
  53654. extra: 1585/1352,
  53655. bottom: 91/1676
  53656. }
  53657. },
  53658. },
  53659. [
  53660. {
  53661. name: "Normal",
  53662. height: math.unit(4 + 1/12, "feet"),
  53663. default: true
  53664. },
  53665. ]
  53666. ))
  53667. characterMakers.push(() => makeCharacter(
  53668. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53669. {
  53670. anthro: {
  53671. height: math.unit(6, "feet"),
  53672. weight: math.unit(150, "lb"),
  53673. name: "Front",
  53674. image: {
  53675. source: "./media/characters/willow/anthro.svg",
  53676. extra: 1073/986,
  53677. bottom: 34/1107
  53678. },
  53679. form: "anthro",
  53680. default: true
  53681. },
  53682. taur: {
  53683. height: math.unit(6, "feet"),
  53684. weight: math.unit(150, "lb"),
  53685. name: "Side",
  53686. image: {
  53687. source: "./media/characters/willow/taur.svg",
  53688. extra: 647/512,
  53689. bottom: 136/783
  53690. },
  53691. form: "taur",
  53692. default: true
  53693. },
  53694. },
  53695. [
  53696. {
  53697. name: "Humanoid",
  53698. height: math.unit(2.7, "meters"),
  53699. form: "anthro"
  53700. },
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(9, "meters"),
  53704. form: "anthro",
  53705. default: true
  53706. },
  53707. {
  53708. name: "Humanoid",
  53709. height: math.unit(2.1, "meters"),
  53710. form: "taur"
  53711. },
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(7, "meters"),
  53715. form: "taur",
  53716. default: true
  53717. },
  53718. ],
  53719. {
  53720. "anthro": {
  53721. name: "Anthro",
  53722. default: true
  53723. },
  53724. "taur": {
  53725. name: "Taur",
  53726. },
  53727. }
  53728. ))
  53729. characterMakers.push(() => makeCharacter(
  53730. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53731. {
  53732. front: {
  53733. height: math.unit(2 + 5/12, "feet"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/kyan/front.svg",
  53737. extra: 460/334,
  53738. bottom: 23/483
  53739. },
  53740. extraAttributes: {
  53741. "toeLength": {
  53742. name: "Toe Length",
  53743. power: 1,
  53744. type: "length",
  53745. base: math.unit(7, "cm")
  53746. },
  53747. "toeclawLength": {
  53748. name: "Toeclaw Length",
  53749. power: 1,
  53750. type: "length",
  53751. base: math.unit(4.7, "cm")
  53752. },
  53753. "earHeight": {
  53754. name: "Ear Height",
  53755. power: 1,
  53756. type: "length",
  53757. base: math.unit(14.1, "cm")
  53758. },
  53759. }
  53760. },
  53761. paws: {
  53762. height: math.unit(0.45, "feet"),
  53763. name: "Paws",
  53764. image: {
  53765. source: "./media/characters/kyan/paws.svg",
  53766. extra: 581/581,
  53767. bottom: 114/695
  53768. }
  53769. },
  53770. },
  53771. [
  53772. {
  53773. name: "Normal",
  53774. height: math.unit(2 + 5/12, "feet"),
  53775. default: true
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53781. {
  53782. front: {
  53783. height: math.unit(2 + 2/3, "feet"),
  53784. name: "Front",
  53785. image: {
  53786. source: "./media/characters/xazzon/front.svg",
  53787. extra: 1109/984,
  53788. bottom: 42/1151
  53789. }
  53790. },
  53791. back: {
  53792. height: math.unit(2 + 2/3, "feet"),
  53793. name: "Back",
  53794. image: {
  53795. source: "./media/characters/xazzon/back.svg",
  53796. extra: 1095/971,
  53797. bottom: 23/1118
  53798. }
  53799. },
  53800. },
  53801. [
  53802. {
  53803. name: "Normal",
  53804. height: math.unit(2 + 2/3, "feet"),
  53805. default: true
  53806. },
  53807. ]
  53808. ))
  53809. characterMakers.push(() => makeCharacter(
  53810. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53811. {
  53812. dressed: {
  53813. height: math.unit(5 + 7/12, "feet"),
  53814. weight: math.unit(173, "lb"),
  53815. name: "Dressed",
  53816. image: {
  53817. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53818. extra: 3262/2862,
  53819. bottom: 188/3450
  53820. }
  53821. },
  53822. undressed: {
  53823. height: math.unit(5 + 7/12, "feet"),
  53824. weight: math.unit(173, "lb"),
  53825. name: "Undressed",
  53826. image: {
  53827. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53828. extra: 3262/2862,
  53829. bottom: 188/3450
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "The void",
  53836. height: math.unit(7.29193e-34, "angstroms")
  53837. },
  53838. {
  53839. name: "Uh-Oh.",
  53840. height: math.unit(5.734e-7, "angstroms")
  53841. },
  53842. {
  53843. name: "Pico",
  53844. height: math.unit(0.876, "angstroms")
  53845. },
  53846. {
  53847. name: "Nano",
  53848. height: math.unit(0.000134200, "mm")
  53849. },
  53850. {
  53851. name: "Micro",
  53852. height: math.unit(0.0673020, "mm")
  53853. },
  53854. {
  53855. name: "Tiny",
  53856. height: math.unit(2.4, "mm")
  53857. },
  53858. {
  53859. name: "Actual Normal",
  53860. height: math.unit(3, "inches"),
  53861. default: true
  53862. },
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(5 + 8/12, "feet")
  53866. },
  53867. {
  53868. name: "Giant",
  53869. height: math.unit(12, "feet")
  53870. },
  53871. {
  53872. name: "City Ruler",
  53873. height: math.unit(270, "meters")
  53874. },
  53875. {
  53876. name: "Giga",
  53877. height: math.unit(1117.6, "km")
  53878. },
  53879. {
  53880. name: "All-Powerful Queen",
  53881. height: math.unit(70.8, "gigameters")
  53882. },
  53883. {
  53884. name: "'Goddess'",
  53885. height: math.unit(600, "yottameters")
  53886. },
  53887. {
  53888. name: "Biggest!",
  53889. height: math.unit(4.23e5, "yottameters")
  53890. },
  53891. ]
  53892. ))
  53893. characterMakers.push(() => makeCharacter(
  53894. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53895. {
  53896. front: {
  53897. height: math.unit(8, "feet"),
  53898. weight: math.unit(300, "lb"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/khyla-shadowsong/front.svg",
  53902. extra: 861/798,
  53903. bottom: 32/893
  53904. }
  53905. },
  53906. side: {
  53907. height: math.unit(8, "feet"),
  53908. weight: math.unit(300, "lb"),
  53909. name: "Side",
  53910. image: {
  53911. source: "./media/characters/khyla-shadowsong/side.svg",
  53912. extra: 790/750,
  53913. bottom: 87/877
  53914. }
  53915. },
  53916. back: {
  53917. height: math.unit(8, "feet"),
  53918. weight: math.unit(300, "lb"),
  53919. name: "Back",
  53920. image: {
  53921. source: "./media/characters/khyla-shadowsong/back.svg",
  53922. extra: 855/808,
  53923. bottom: 14/869
  53924. }
  53925. },
  53926. head: {
  53927. height: math.unit(2.7, "feet"),
  53928. name: "Head",
  53929. image: {
  53930. source: "./media/characters/khyla-shadowsong/head.svg"
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Micro",
  53937. height: math.unit(6, "inches")
  53938. },
  53939. {
  53940. name: "Normal",
  53941. height: math.unit(8, "feet"),
  53942. default: true
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53948. {
  53949. hyperFront: {
  53950. height: math.unit(9 + 4/12, "feet"),
  53951. weight: math.unit(2000, "lb"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/tiden/hyper-front.svg",
  53955. extra: 400/382,
  53956. bottom: 6/406
  53957. },
  53958. form: "hyper",
  53959. },
  53960. regularFront: {
  53961. height: math.unit(7 + 10/12, "feet"),
  53962. weight: math.unit(470, "lb"),
  53963. name: "Front",
  53964. image: {
  53965. source: "./media/characters/tiden/regular-front.svg",
  53966. extra: 468/442,
  53967. bottom: 6/474
  53968. },
  53969. form: "regular",
  53970. },
  53971. },
  53972. [
  53973. {
  53974. name: "Normal",
  53975. height: math.unit(9 + 4/12, "feet"),
  53976. default: true,
  53977. form: "hyper"
  53978. },
  53979. {
  53980. name: "Normal",
  53981. height: math.unit(7 + 10/12, "feet"),
  53982. default: true,
  53983. form: "regular"
  53984. },
  53985. ],
  53986. {
  53987. "hyper": {
  53988. name: "Hyper",
  53989. default: true
  53990. },
  53991. "regular": {
  53992. name: "Regular",
  53993. },
  53994. }
  53995. ))
  53996. characterMakers.push(() => makeCharacter(
  53997. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53998. {
  53999. side: {
  54000. height: math.unit(6, "feet"),
  54001. weight: math.unit(150, "lb"),
  54002. name: "Side",
  54003. image: {
  54004. source: "./media/characters/jason-crowe/side.svg",
  54005. extra: 1771/766,
  54006. bottom: 219/1990
  54007. }
  54008. },
  54009. },
  54010. [
  54011. {
  54012. name: "Pocket Gryphon",
  54013. height: math.unit(6, "cm")
  54014. },
  54015. {
  54016. name: "Raven",
  54017. height: math.unit(60, "cm")
  54018. },
  54019. {
  54020. name: "Normal",
  54021. height: math.unit(1, "meter"),
  54022. default: true
  54023. },
  54024. ]
  54025. ))
  54026. characterMakers.push(() => makeCharacter(
  54027. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54028. {
  54029. front: {
  54030. height: math.unit(9 + 6/12, "feet"),
  54031. weight: math.unit(1100, "lb"),
  54032. name: "Front",
  54033. image: {
  54034. source: "./media/characters/django/front.svg",
  54035. extra: 1231/1136,
  54036. bottom: 34/1265
  54037. }
  54038. },
  54039. side: {
  54040. height: math.unit(9 + 6/12, "feet"),
  54041. weight: math.unit(1100, "lb"),
  54042. name: "Side",
  54043. image: {
  54044. source: "./media/characters/django/side.svg",
  54045. extra: 1267/1174,
  54046. bottom: 9/1276
  54047. }
  54048. },
  54049. },
  54050. [
  54051. {
  54052. name: "Normal",
  54053. height: math.unit(9 + 6/12, "feet"),
  54054. default: true
  54055. },
  54056. {
  54057. name: "Macro 1",
  54058. height: math.unit(50, "feet")
  54059. },
  54060. {
  54061. name: "Macro 2",
  54062. height: math.unit(500, "feet")
  54063. },
  54064. {
  54065. name: "Mega Macro",
  54066. height: math.unit(5300, "feet")
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54072. {
  54073. frontSfw: {
  54074. height: math.unit(120, "cm"),
  54075. weight: math.unit(15, "kg"),
  54076. name: "Front (SFW)",
  54077. image: {
  54078. source: "./media/characters/eri/front-sfw.svg",
  54079. extra: 1014/939,
  54080. bottom: 37/1051
  54081. },
  54082. form: "moth",
  54083. },
  54084. frontNsfw: {
  54085. height: math.unit(120, "cm"),
  54086. weight: math.unit(15, "kg"),
  54087. name: "Front (NSFW)",
  54088. image: {
  54089. source: "./media/characters/eri/front-nsfw.svg",
  54090. extra: 1014/939,
  54091. bottom: 37/1051
  54092. },
  54093. form: "moth",
  54094. default: true
  54095. },
  54096. egg: {
  54097. height: math.unit(10, "cm"),
  54098. name: "Egg",
  54099. image: {
  54100. source: "./media/characters/eri/egg.svg"
  54101. },
  54102. form: "egg",
  54103. default: true
  54104. },
  54105. },
  54106. [
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(120, "cm"),
  54110. default: true,
  54111. form: "moth"
  54112. },
  54113. {
  54114. name: "Normal",
  54115. height: math.unit(10, "cm"),
  54116. default: true,
  54117. form: "egg"
  54118. },
  54119. ],
  54120. {
  54121. "moth": {
  54122. name: "Moth",
  54123. default: true
  54124. },
  54125. "egg": {
  54126. name: "Egg",
  54127. },
  54128. }
  54129. ))
  54130. characterMakers.push(() => makeCharacter(
  54131. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54132. {
  54133. front: {
  54134. height: math.unit(200, "feet"),
  54135. name: "Front",
  54136. image: {
  54137. source: "./media/characters/bishop-dowser/front.svg",
  54138. extra: 933/868,
  54139. bottom: 106/1039
  54140. }
  54141. },
  54142. },
  54143. [
  54144. {
  54145. name: "Giant",
  54146. height: math.unit(200, "feet"),
  54147. default: true
  54148. },
  54149. ]
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(2, "meters"),
  54156. preyCapacity: math.unit(3, "people"),
  54157. name: "Front",
  54158. image: {
  54159. source: "./media/characters/fryra/front.svg",
  54160. extra: 1025/948,
  54161. bottom: 30/1055
  54162. },
  54163. extraAttributes: {
  54164. "breastVolume": {
  54165. name: "Breast Volume",
  54166. power: 3,
  54167. type: "volume",
  54168. base: math.unit(8, "liters")
  54169. },
  54170. }
  54171. },
  54172. back: {
  54173. height: math.unit(2, "meters"),
  54174. preyCapacity: math.unit(3, "people"),
  54175. name: "Back",
  54176. image: {
  54177. source: "./media/characters/fryra/back.svg",
  54178. extra: 993/938,
  54179. bottom: 38/1031
  54180. },
  54181. extraAttributes: {
  54182. "breastVolume": {
  54183. name: "Breast Volume",
  54184. power: 3,
  54185. type: "volume",
  54186. base: math.unit(8, "liters")
  54187. },
  54188. }
  54189. },
  54190. head: {
  54191. height: math.unit(1.33, "feet"),
  54192. name: "Head",
  54193. image: {
  54194. source: "./media/characters/fryra/head.svg"
  54195. }
  54196. },
  54197. maw: {
  54198. height: math.unit(0.56, "feet"),
  54199. name: "Maw",
  54200. image: {
  54201. source: "./media/characters/fryra/maw.svg"
  54202. }
  54203. },
  54204. },
  54205. [
  54206. {
  54207. name: "Micro",
  54208. height: math.unit(5, "cm")
  54209. },
  54210. {
  54211. name: "Normal",
  54212. height: math.unit(2, "meters"),
  54213. default: true
  54214. },
  54215. {
  54216. name: "Small Macro",
  54217. height: math.unit(8, "meters")
  54218. },
  54219. {
  54220. name: "Macro",
  54221. height: math.unit(50, "meters")
  54222. },
  54223. {
  54224. name: "Megamacro",
  54225. height: math.unit(1, "km")
  54226. },
  54227. {
  54228. name: "Planetary",
  54229. height: math.unit(300000, "km")
  54230. },
  54231. {
  54232. name: "Universal",
  54233. height: math.unit(250, "lightyears")
  54234. },
  54235. {
  54236. name: "Fabric of Reality",
  54237. height: math.unit(1000, "multiverses")
  54238. },
  54239. ]
  54240. ))
  54241. characterMakers.push(() => makeCharacter(
  54242. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54243. {
  54244. frontDressed: {
  54245. height: math.unit(6 + 2/12, "feet"),
  54246. name: "Front (Dressed)",
  54247. image: {
  54248. source: "./media/characters/fiera/front-dressed.svg",
  54249. extra: 1883/1793,
  54250. bottom: 70/1953
  54251. }
  54252. },
  54253. backDressed: {
  54254. height: math.unit(6 + 2/12, "feet"),
  54255. name: "Back (Dressed)",
  54256. image: {
  54257. source: "./media/characters/fiera/back-dressed.svg",
  54258. extra: 1847/1780,
  54259. bottom: 70/1917
  54260. }
  54261. },
  54262. frontNude: {
  54263. height: math.unit(6 + 2/12, "feet"),
  54264. name: "Front (Nude)",
  54265. image: {
  54266. source: "./media/characters/fiera/front-nude.svg",
  54267. extra: 1875/1785,
  54268. bottom: 66/1941
  54269. }
  54270. },
  54271. backNude: {
  54272. height: math.unit(6 + 2/12, "feet"),
  54273. name: "Back (Nude)",
  54274. image: {
  54275. source: "./media/characters/fiera/back-nude.svg",
  54276. extra: 1855/1788,
  54277. bottom: 44/1899
  54278. }
  54279. },
  54280. maw: {
  54281. height: math.unit(1.3, "feet"),
  54282. name: "Maw",
  54283. image: {
  54284. source: "./media/characters/fiera/maw.svg"
  54285. }
  54286. },
  54287. paw: {
  54288. height: math.unit(1, "feet"),
  54289. name: "Paw",
  54290. image: {
  54291. source: "./media/characters/fiera/paw.svg"
  54292. }
  54293. },
  54294. shoe: {
  54295. height: math.unit(1.05, "feet"),
  54296. name: "Shoe",
  54297. image: {
  54298. source: "./media/characters/fiera/shoe.svg"
  54299. }
  54300. },
  54301. },
  54302. [
  54303. {
  54304. name: "Normal",
  54305. height: math.unit(6 + 2/12, "feet"),
  54306. default: true
  54307. },
  54308. {
  54309. name: "Size Difference",
  54310. height: math.unit(13, "feet")
  54311. },
  54312. {
  54313. name: "Macro",
  54314. height: math.unit(60, "feet")
  54315. },
  54316. {
  54317. name: "Mega Macro",
  54318. height: math.unit(200, "feet")
  54319. },
  54320. ]
  54321. ))
  54322. characterMakers.push(() => makeCharacter(
  54323. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54324. {
  54325. back: {
  54326. height: math.unit(6, "feet"),
  54327. name: "Back",
  54328. image: {
  54329. source: "./media/characters/flare/back.svg",
  54330. extra: 1883/1765,
  54331. bottom: 32/1915
  54332. }
  54333. },
  54334. },
  54335. [
  54336. {
  54337. name: "Normal",
  54338. height: math.unit(6 + 2/12, "feet"),
  54339. default: true
  54340. },
  54341. {
  54342. name: "Size Difference",
  54343. height: math.unit(13, "feet")
  54344. },
  54345. {
  54346. name: "Macro",
  54347. height: math.unit(60, "feet")
  54348. },
  54349. {
  54350. name: "Macro 2",
  54351. height: math.unit(100, "feet")
  54352. },
  54353. {
  54354. name: "Mega Macro",
  54355. height: math.unit(200, "feet")
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54361. {
  54362. front: {
  54363. height: math.unit(2.2, "m"),
  54364. weight: math.unit(300, "kg"),
  54365. name: "Front",
  54366. image: {
  54367. source: "./media/characters/hanna/front.svg",
  54368. extra: 1696/1502,
  54369. bottom: 206/1902
  54370. }
  54371. },
  54372. },
  54373. [
  54374. {
  54375. name: "Humanoid",
  54376. height: math.unit(2.2, "meters")
  54377. },
  54378. {
  54379. name: "Normal",
  54380. height: math.unit(4.8, "meters"),
  54381. default: true
  54382. },
  54383. ]
  54384. ))
  54385. characterMakers.push(() => makeCharacter(
  54386. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54387. {
  54388. front: {
  54389. height: math.unit(2.8, "meters"),
  54390. name: "Front",
  54391. image: {
  54392. source: "./media/characters/argo/front.svg",
  54393. extra: 731/518,
  54394. bottom: 84/815
  54395. }
  54396. },
  54397. },
  54398. [
  54399. {
  54400. name: "Normal",
  54401. height: math.unit(3, "meters"),
  54402. default: true
  54403. },
  54404. ]
  54405. ))
  54406. characterMakers.push(() => makeCharacter(
  54407. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54408. {
  54409. side: {
  54410. height: math.unit(3.8, "meters"),
  54411. name: "Side",
  54412. image: {
  54413. source: "./media/characters/sybil/side.svg",
  54414. extra: 382/361,
  54415. bottom: 25/407
  54416. }
  54417. },
  54418. },
  54419. [
  54420. {
  54421. name: "Normal",
  54422. height: math.unit(3.8, "meters"),
  54423. default: true
  54424. },
  54425. ]
  54426. ))
  54427. characterMakers.push(() => makeCharacter(
  54428. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54429. {
  54430. side: {
  54431. height: math.unit(6, "meters"),
  54432. name: "Side",
  54433. image: {
  54434. source: "./media/characters/plum/side.svg",
  54435. extra: 858/755,
  54436. bottom: 45/903
  54437. },
  54438. form: "taur",
  54439. default: true
  54440. },
  54441. back: {
  54442. height: math.unit(6.3, "meters"),
  54443. name: "Back",
  54444. image: {
  54445. source: "./media/characters/plum/back.svg",
  54446. extra: 887/813,
  54447. bottom: 32/919
  54448. },
  54449. form: "taur",
  54450. },
  54451. feral: {
  54452. height: math.unit(5.5, "meter"),
  54453. name: "Front",
  54454. image: {
  54455. source: "./media/characters/plum/feral.svg",
  54456. extra: 568/403,
  54457. bottom: 51/619
  54458. },
  54459. form: "feral",
  54460. default: true
  54461. },
  54462. head: {
  54463. height: math.unit(1.46, "meter"),
  54464. name: "Head",
  54465. image: {
  54466. source: "./media/characters/plum/head.svg"
  54467. },
  54468. form: "taur"
  54469. },
  54470. tailTop: {
  54471. height: math.unit(5.6, "meter"),
  54472. name: "Tail (Top)",
  54473. image: {
  54474. source: "./media/characters/plum/tail-top.svg"
  54475. },
  54476. form: "taur",
  54477. },
  54478. tailBottom: {
  54479. height: math.unit(5.6, "meter"),
  54480. name: "Tail (Bottom)",
  54481. image: {
  54482. source: "./media/characters/plum/tail-bottom.svg"
  54483. },
  54484. form: "taur",
  54485. },
  54486. feralHead: {
  54487. height: math.unit(2.56549521, "meter"),
  54488. name: "Head",
  54489. image: {
  54490. source: "./media/characters/plum/head.svg"
  54491. },
  54492. form: "feral"
  54493. },
  54494. feralTailTop: {
  54495. height: math.unit(5.44728435, "meter"),
  54496. name: "Tail (Top)",
  54497. image: {
  54498. source: "./media/characters/plum/tail-top.svg"
  54499. },
  54500. form: "feral",
  54501. },
  54502. feralTailBottom: {
  54503. height: math.unit(5.44728435, "meter"),
  54504. name: "Tail (Bottom)",
  54505. image: {
  54506. source: "./media/characters/plum/tail-bottom.svg"
  54507. },
  54508. form: "feral",
  54509. },
  54510. },
  54511. [
  54512. {
  54513. name: "Normal",
  54514. height: math.unit(6, "meters"),
  54515. default: true,
  54516. form: "taur"
  54517. },
  54518. {
  54519. name: "Normal",
  54520. height: math.unit(5.5, "meters"),
  54521. default: true,
  54522. form: "feral"
  54523. },
  54524. ],
  54525. {
  54526. "taur": {
  54527. name: "Taur",
  54528. default: true
  54529. },
  54530. "feral": {
  54531. name: "Feral",
  54532. },
  54533. }
  54534. ))
  54535. characterMakers.push(() => makeCharacter(
  54536. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54537. {
  54538. front: {
  54539. height: math.unit(6, "feet"),
  54540. weight: math.unit(115, "lb"),
  54541. name: "Front",
  54542. image: {
  54543. source: "./media/characters/celeste-kitsune/front.svg",
  54544. extra: 393/366,
  54545. bottom: 7/400
  54546. }
  54547. },
  54548. side: {
  54549. height: math.unit(6, "feet"),
  54550. weight: math.unit(115, "lb"),
  54551. name: "Side",
  54552. image: {
  54553. source: "./media/characters/celeste-kitsune/side.svg",
  54554. extra: 818/765,
  54555. bottom: 40/858
  54556. }
  54557. },
  54558. },
  54559. [
  54560. {
  54561. name: "Megamacro",
  54562. height: math.unit(1500, "miles"),
  54563. default: true
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(8, "meters"),
  54572. name: "Front",
  54573. image: {
  54574. source: "./media/characters/io/front.svg",
  54575. extra: 865/722,
  54576. bottom: 58/923
  54577. }
  54578. },
  54579. back: {
  54580. height: math.unit(8, "meters"),
  54581. name: "Back",
  54582. image: {
  54583. source: "./media/characters/io/back.svg",
  54584. extra: 920/776,
  54585. bottom: 42/962
  54586. }
  54587. },
  54588. head: {
  54589. height: math.unit(5.09, "meters"),
  54590. name: "Head",
  54591. image: {
  54592. source: "./media/characters/io/head.svg"
  54593. }
  54594. },
  54595. hand: {
  54596. height: math.unit(1.6, "meters"),
  54597. name: "Hand",
  54598. image: {
  54599. source: "./media/characters/io/hand.svg"
  54600. }
  54601. },
  54602. foot: {
  54603. height: math.unit(2.4, "meters"),
  54604. name: "Foot",
  54605. image: {
  54606. source: "./media/characters/io/foot.svg"
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(8, "meters"),
  54614. default: true
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54620. {
  54621. side: {
  54622. height: math.unit(6 + 3/12, "feet"),
  54623. weight: math.unit(225, "lb"),
  54624. name: "Side",
  54625. image: {
  54626. source: "./media/characters/silas/side.svg",
  54627. extra: 703/653,
  54628. bottom: 23/726
  54629. },
  54630. extraAttributes: {
  54631. "pawLength": {
  54632. name: "Paw Length",
  54633. power: 1,
  54634. type: "length",
  54635. base: math.unit(12, "inches")
  54636. },
  54637. "pawWidth": {
  54638. name: "Paw Width",
  54639. power: 1,
  54640. type: "length",
  54641. base: math.unit(4.5, "inches")
  54642. },
  54643. "pawArea": {
  54644. name: "Paw Area",
  54645. power: 2,
  54646. type: "area",
  54647. base: math.unit(12 * 4.5, "inches^2")
  54648. },
  54649. }
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(6 + 3/12, "feet"),
  54656. default: true
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54662. {
  54663. back: {
  54664. height: math.unit(1.6, "meters"),
  54665. weight: math.unit(150, "lb"),
  54666. name: "Back",
  54667. image: {
  54668. source: "./media/characters/zari/back.svg",
  54669. extra: 424/411,
  54670. bottom: 32/456
  54671. },
  54672. extraAttributes: {
  54673. "bladderCapacity": {
  54674. name: "Bladder Size",
  54675. power: 3,
  54676. type: "volume",
  54677. base: math.unit(500, "mL")
  54678. },
  54679. "bladderFlow": {
  54680. name: "Flow Rate",
  54681. power: 3,
  54682. type: "volume",
  54683. base: math.unit(25, "mL")
  54684. },
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(1.6, "meters"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54698. {
  54699. front: {
  54700. height: math.unit(25, "feet"),
  54701. weight: math.unit(5, "tons"),
  54702. name: "Front",
  54703. image: {
  54704. source: "./media/characters/charlie-human/front.svg",
  54705. extra: 1870/1740,
  54706. bottom: 102/1972
  54707. },
  54708. extraAttributes: {
  54709. "dickLength": {
  54710. name: "Dick Length",
  54711. power: 1,
  54712. type: "length",
  54713. base: math.unit(9, "feet")
  54714. },
  54715. }
  54716. },
  54717. back: {
  54718. height: math.unit(25, "feet"),
  54719. weight: math.unit(5, "tons"),
  54720. name: "Back",
  54721. image: {
  54722. source: "./media/characters/charlie-human/back.svg",
  54723. extra: 1858/1733,
  54724. bottom: 105/1963
  54725. },
  54726. extraAttributes: {
  54727. "dickLength": {
  54728. name: "Dick Length",
  54729. power: 1,
  54730. type: "length",
  54731. base: math.unit(9, "feet")
  54732. },
  54733. }
  54734. },
  54735. },
  54736. [
  54737. {
  54738. name: "\"Normal\"",
  54739. height: math.unit(6 + 4/12, "feet")
  54740. },
  54741. {
  54742. name: "Big",
  54743. height: math.unit(25, "feet"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. //characters
  54749. function makeCharacters() {
  54750. const results = [];
  54751. characterMakers.forEach(character => {
  54752. results.push(character());
  54753. });
  54754. return results;
  54755. }