less copy protection, more size visualization
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

47826 рядки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. }
  1876. //species
  1877. function getSpeciesInfo(speciesList) {
  1878. let result = new Set();
  1879. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1880. result.add(entry)
  1881. });
  1882. return Array.from(result);
  1883. };
  1884. function getSpeciesInfoHelper(species) {
  1885. if (!speciesData[species]) {
  1886. console.warn(species + " doesn't exist");
  1887. return [];
  1888. }
  1889. if (speciesData[species].parents) {
  1890. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1891. } else {
  1892. return [species];
  1893. }
  1894. }
  1895. characterMakers.push(() => makeCharacter(
  1896. {
  1897. name: "Fen",
  1898. species: ["crux"],
  1899. description: {
  1900. title: "Bio",
  1901. text: "Very furry. Sheds on everything."
  1902. },
  1903. tags: [
  1904. "anthro",
  1905. "goo"
  1906. ]
  1907. },
  1908. {
  1909. front: {
  1910. height: math.unit(12, "feet"),
  1911. weight: math.unit(2400, "lb"),
  1912. name: "Front",
  1913. image: {
  1914. source: "./media/characters/fen/front.svg",
  1915. extra: 1804/1562,
  1916. bottom: 205/2009
  1917. }
  1918. },
  1919. diving: {
  1920. height: math.unit(4.9, "meters"),
  1921. weight: math.unit(2400, "lb"),
  1922. name: "Diving",
  1923. image: {
  1924. source: "./media/characters/fen/diving.svg"
  1925. }
  1926. },
  1927. goo: {
  1928. height: math.unit(12, "feet"),
  1929. weight: math.unit(3000, "lb"),
  1930. capacity: math.unit(6, "people"),
  1931. name: "Goo",
  1932. image: {
  1933. source: "./media/characters/fen/goo.svg",
  1934. extra: 1307/1071,
  1935. bottom: 134/1441
  1936. }
  1937. },
  1938. maw: {
  1939. height: math.unit(5.03, "feet"),
  1940. name: "Maw",
  1941. image: {
  1942. source: "./media/characters/fen/maw.svg"
  1943. }
  1944. },
  1945. gooCeiling: {
  1946. height: math.unit(6.6, "feet"),
  1947. weight: math.unit(3000, "lb"),
  1948. capacity: math.unit(6, "people"),
  1949. name: "Goo (Ceiling)",
  1950. image: {
  1951. source: "./media/characters/fen/goo-ceiling.svg"
  1952. }
  1953. },
  1954. back: {
  1955. height: math.unit(12, "feet"),
  1956. weight: math.unit(2400, "lb"),
  1957. name: "Back",
  1958. image: {
  1959. source: "./media/characters/fen/back.svg",
  1960. },
  1961. info: {
  1962. description: {
  1963. mode: "append",
  1964. text: "\n\nHe is not currently looking at you."
  1965. }
  1966. }
  1967. },
  1968. full: {
  1969. height: math.unit(1.6, "meter"),
  1970. weight: math.unit(3200, "lb"),
  1971. name: "Full",
  1972. image: {
  1973. source: "./media/characters/fen/full.svg",
  1974. extra: 1133/859,
  1975. bottom: 145/1278
  1976. },
  1977. info: {
  1978. description: {
  1979. mode: "append",
  1980. text: "\n\nMunch."
  1981. }
  1982. }
  1983. },
  1984. gooLounging: {
  1985. height: math.unit(4.53, "feet"),
  1986. weight: math.unit(3000, "lb"),
  1987. capacity: math.unit(6, "people"),
  1988. name: "Goo (Lounging)",
  1989. image: {
  1990. source: "./media/characters/fen/goo.svg",
  1991. bottom: 116 / 613
  1992. }
  1993. },
  1994. lounging: {
  1995. height: math.unit(10.52, "feet"),
  1996. weight: math.unit(2400, "lb"),
  1997. name: "Lounging",
  1998. image: {
  1999. source: "./media/characters/fen/lounging.svg"
  2000. }
  2001. },
  2002. },
  2003. [
  2004. {
  2005. name: "Small",
  2006. height: math.unit(2.2428, "meter")
  2007. },
  2008. {
  2009. name: "Normal",
  2010. height: math.unit(12, "feet"),
  2011. default: true,
  2012. },
  2013. {
  2014. name: "Big",
  2015. height: math.unit(20, "feet")
  2016. },
  2017. {
  2018. name: "Minimacro",
  2019. height: math.unit(40, "feet"),
  2020. info: {
  2021. description: {
  2022. mode: "append",
  2023. text: "\n\nTOO DAMN BIG"
  2024. }
  2025. }
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(100, "feet"),
  2030. info: {
  2031. description: {
  2032. mode: "append",
  2033. text: "\n\nTOO DAMN BIG"
  2034. }
  2035. }
  2036. },
  2037. {
  2038. name: "Megamacro",
  2039. height: math.unit(2, "miles")
  2040. },
  2041. {
  2042. name: "Gigamacro",
  2043. height: math.unit(10, "earths")
  2044. },
  2045. ]
  2046. ))
  2047. characterMakers.push(() => makeCharacter(
  2048. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2049. {
  2050. front: {
  2051. height: math.unit(183, "cm"),
  2052. weight: math.unit(80, "kg"),
  2053. name: "Front",
  2054. image: {
  2055. source: "./media/characters/sofia-fluttertail/front.svg",
  2056. bottom: 0.01,
  2057. extra: 2154 / 2081
  2058. }
  2059. },
  2060. frontAlt: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Front (alt)",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2066. }
  2067. },
  2068. back: {
  2069. height: math.unit(183, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Back",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/back.svg"
  2074. }
  2075. },
  2076. kneeling: {
  2077. height: math.unit(125, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Kneeling",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2082. extra: 1033 / 977,
  2083. bottom: 23.7 / 1057
  2084. }
  2085. },
  2086. maw: {
  2087. height: math.unit(183 / 5, "cm"),
  2088. name: "Maw",
  2089. image: {
  2090. source: "./media/characters/sofia-fluttertail/maw.svg"
  2091. }
  2092. },
  2093. mawcloseup: {
  2094. height: math.unit(183 / 5 * 0.41, "cm"),
  2095. name: "Maw (Closeup)",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2098. }
  2099. },
  2100. paws: {
  2101. height: math.unit(1.17, "feet"),
  2102. name: "Paws",
  2103. image: {
  2104. source: "./media/characters/sofia-fluttertail/paws.svg",
  2105. extra: 851 / 851,
  2106. bottom: 17 / 868
  2107. }
  2108. },
  2109. },
  2110. [
  2111. {
  2112. name: "Normal",
  2113. height: math.unit(1.83, "meter")
  2114. },
  2115. {
  2116. name: "Size Thief",
  2117. height: math.unit(18, "feet")
  2118. },
  2119. {
  2120. name: "50 Foot Collie",
  2121. height: math.unit(50, "feet")
  2122. },
  2123. {
  2124. name: "Macro",
  2125. height: math.unit(96, "feet"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "Megamerger",
  2130. height: math.unit(650, "feet")
  2131. },
  2132. ]
  2133. ))
  2134. characterMakers.push(() => makeCharacter(
  2135. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2136. {
  2137. front: {
  2138. height: math.unit(7, "feet"),
  2139. weight: math.unit(100, "kg"),
  2140. name: "Front",
  2141. image: {
  2142. source: "./media/characters/march/front.svg",
  2143. extra: 1992/1851,
  2144. bottom: 39/2031
  2145. }
  2146. },
  2147. foot: {
  2148. height: math.unit(0.9, "feet"),
  2149. name: "Foot",
  2150. image: {
  2151. source: "./media/characters/march/foot.svg"
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Normal",
  2158. height: math.unit(7.9, "feet")
  2159. },
  2160. {
  2161. name: "Macro",
  2162. height: math.unit(220, "meters")
  2163. },
  2164. {
  2165. name: "Megamacro",
  2166. height: math.unit(2.98, "km"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Gigamacro",
  2171. height: math.unit(15963, "km")
  2172. },
  2173. {
  2174. name: "Teramacro",
  2175. height: math.unit(2980000000, "km")
  2176. },
  2177. {
  2178. name: "Examacro",
  2179. height: math.unit(250, "parsecs")
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2185. {
  2186. front: {
  2187. height: math.unit(6, "feet"),
  2188. weight: math.unit(60, "kg"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/noir/front.svg",
  2192. extra: 1,
  2193. bottom: 0.032
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(6.6, "feet")
  2201. },
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(500, "feet")
  2205. },
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(2.5, "km"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Gigamacro",
  2213. height: math.unit(22500, "km")
  2214. },
  2215. {
  2216. name: "Teramacro",
  2217. height: math.unit(2500000000, "km")
  2218. },
  2219. {
  2220. name: "Examacro",
  2221. height: math.unit(200, "parsecs")
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/okuri/front.svg",
  2234. extra: 1,
  2235. bottom: 0.037
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/okuri/back.svg",
  2244. extra: 1,
  2245. bottom: 0.007
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Megamacro",
  2252. height: math.unit(100, "miles"),
  2253. default: true
  2254. },
  2255. ]
  2256. ))
  2257. characterMakers.push(() => makeCharacter(
  2258. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2259. {
  2260. front: {
  2261. height: math.unit(7, "feet"),
  2262. weight: math.unit(100, "kg"),
  2263. name: "Front",
  2264. image: {
  2265. source: "./media/characters/manny/front.svg",
  2266. extra: 1,
  2267. bottom: 0.06
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(7, "feet"),
  2272. weight: math.unit(100, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/manny/back.svg",
  2276. extra: 1,
  2277. bottom: 0.014
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Normal",
  2284. height: math.unit(7, "feet"),
  2285. },
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(78, "feet"),
  2289. default: true
  2290. },
  2291. {
  2292. name: "Macro+",
  2293. height: math.unit(300, "meters")
  2294. },
  2295. {
  2296. name: "Macro++",
  2297. height: math.unit(2400, "meters")
  2298. },
  2299. {
  2300. name: "Megamacro",
  2301. height: math.unit(5167, "meters")
  2302. },
  2303. {
  2304. name: "Gigamacro",
  2305. height: math.unit(41769, "miles")
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/adake/front-1.svg"
  2318. }
  2319. },
  2320. frontAlt: {
  2321. height: math.unit(7, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Front (Alt)",
  2324. image: {
  2325. source: "./media/characters/adake/front-2.svg",
  2326. extra: 1,
  2327. bottom: 0.01
  2328. }
  2329. },
  2330. back: {
  2331. height: math.unit(7, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Back",
  2334. image: {
  2335. source: "./media/characters/adake/back.svg",
  2336. }
  2337. },
  2338. kneel: {
  2339. height: math.unit(5.385, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Kneeling",
  2342. image: {
  2343. source: "./media/characters/adake/kneel.svg",
  2344. bottom: 0.052
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Normal",
  2351. height: math.unit(7, "feet"),
  2352. },
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(78, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Macro+",
  2360. height: math.unit(300, "meters")
  2361. },
  2362. {
  2363. name: "Macro++",
  2364. height: math.unit(2400, "meters")
  2365. },
  2366. {
  2367. name: "Megamacro",
  2368. height: math.unit(5167, "meters")
  2369. },
  2370. {
  2371. name: "Gigamacro",
  2372. height: math.unit(41769, "miles")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(1.65, "meters"),
  2381. weight: math.unit(50, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/elijah/front.svg",
  2385. extra: 858 / 830,
  2386. bottom: 95.5 / 953.8559
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(1.65, "meters"),
  2391. weight: math.unit(50, "kg"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/elijah/back.svg",
  2395. extra: 895 / 850,
  2396. bottom: 5.3 / 897.956
  2397. }
  2398. },
  2399. frontNsfw: {
  2400. height: math.unit(1.65, "meters"),
  2401. weight: math.unit(50, "kg"),
  2402. name: "Front (NSFW)",
  2403. image: {
  2404. source: "./media/characters/elijah/front-nsfw.svg",
  2405. extra: 858 / 830,
  2406. bottom: 95.5 / 953.8559
  2407. }
  2408. },
  2409. backNsfw: {
  2410. height: math.unit(1.65, "meters"),
  2411. weight: math.unit(50, "kg"),
  2412. name: "Back (NSFW)",
  2413. image: {
  2414. source: "./media/characters/elijah/back-nsfw.svg",
  2415. extra: 895 / 850,
  2416. bottom: 5.3 / 897.956
  2417. }
  2418. },
  2419. dick: {
  2420. height: math.unit(1, "feet"),
  2421. name: "Dick",
  2422. image: {
  2423. source: "./media/characters/elijah/dick.svg"
  2424. }
  2425. },
  2426. beakOpen: {
  2427. height: math.unit(1.25, "feet"),
  2428. name: "Beak (Open)",
  2429. image: {
  2430. source: "./media/characters/elijah/beak-open.svg"
  2431. }
  2432. },
  2433. beakShut: {
  2434. height: math.unit(1.25, "feet"),
  2435. name: "Beak (Shut)",
  2436. image: {
  2437. source: "./media/characters/elijah/beak-shut.svg"
  2438. }
  2439. },
  2440. footFlexing: {
  2441. height: math.unit(1.61, "feet"),
  2442. name: "Foot (Flexing)",
  2443. image: {
  2444. source: "./media/characters/elijah/foot-flexing.svg"
  2445. }
  2446. },
  2447. footStepping: {
  2448. height: math.unit(1.44, "feet"),
  2449. name: "Foot (Stepping)",
  2450. image: {
  2451. source: "./media/characters/elijah/foot-stepping.svg"
  2452. }
  2453. },
  2454. plantigradeLeg: {
  2455. height: math.unit(2.34, "feet"),
  2456. name: "Plantigrade Leg",
  2457. image: {
  2458. source: "./media/characters/elijah/plantigrade-leg.svg"
  2459. }
  2460. },
  2461. plantigradeFootLeft: {
  2462. height: math.unit(0.9, "feet"),
  2463. name: "Plantigrade Foot (Left)",
  2464. image: {
  2465. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2466. }
  2467. },
  2468. plantigradeFootRight: {
  2469. height: math.unit(0.9, "feet"),
  2470. name: "Plantigrade Foot (Right)",
  2471. image: {
  2472. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2473. }
  2474. },
  2475. },
  2476. [
  2477. {
  2478. name: "Normal",
  2479. height: math.unit(1.65, "meters")
  2480. },
  2481. {
  2482. name: "Macro",
  2483. height: math.unit(55, "meters"),
  2484. default: true
  2485. },
  2486. {
  2487. name: "Macro+",
  2488. height: math.unit(105, "meters")
  2489. },
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2494. {
  2495. front: {
  2496. height: math.unit(7 + 2/12, "feet"),
  2497. weight: math.unit(320, "kg"),
  2498. name: "Front",
  2499. image: {
  2500. source: "./media/characters/rai/front.svg",
  2501. extra: 1802/1696,
  2502. bottom: 68/1870
  2503. }
  2504. },
  2505. frontDressed: {
  2506. height: math.unit(7 + 2/12, "feet"),
  2507. weight: math.unit(320, "kg"),
  2508. name: "Front (Dressed)",
  2509. image: {
  2510. source: "./media/characters/rai/front-dressed.svg",
  2511. extra: 1802/1696,
  2512. bottom: 68/1870
  2513. }
  2514. },
  2515. side: {
  2516. height: math.unit(7 + 2/12, "feet"),
  2517. weight: math.unit(320, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/rai/side.svg",
  2521. extra: 1789/1710,
  2522. bottom: 115/1904
  2523. }
  2524. },
  2525. back: {
  2526. height: math.unit(7 + 2/12, "feet"),
  2527. weight: math.unit(320, "kg"),
  2528. name: "Back",
  2529. image: {
  2530. source: "./media/characters/rai/back.svg",
  2531. extra: 1770/1707,
  2532. bottom: 28/1798
  2533. }
  2534. },
  2535. feral: {
  2536. height: math.unit(9.5, "feet"),
  2537. weight: math.unit(640, "kg"),
  2538. name: "Feral",
  2539. image: {
  2540. source: "./media/characters/rai/feral.svg",
  2541. extra: 945/553,
  2542. bottom: 176/1121
  2543. }
  2544. },
  2545. dragon: {
  2546. height: math.unit(23, "feet"),
  2547. weight: math.unit(50000, "lb"),
  2548. name: "Dragon",
  2549. image: {
  2550. source: "./media/characters/rai/dragon.svg",
  2551. extra: 2498 / 2030,
  2552. bottom: 85.2 / 2584
  2553. }
  2554. },
  2555. maw: {
  2556. height: math.unit(1.69, "feet"),
  2557. name: "Maw",
  2558. image: {
  2559. source: "./media/characters/rai/maw.svg"
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7 + 2/12, "feet")
  2567. },
  2568. {
  2569. name: "Big",
  2570. height: math.unit(11, "feet")
  2571. },
  2572. {
  2573. name: "Macro",
  2574. height: math.unit(302, "feet"),
  2575. default: true
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2581. {
  2582. frontDressed: {
  2583. height: math.unit(216, "feet"),
  2584. weight: math.unit(7000000, "lb"),
  2585. name: "Front (Dressed)",
  2586. image: {
  2587. source: "./media/characters/jazzy/front-dressed.svg",
  2588. extra: 2738 / 2651,
  2589. bottom: 41.8 / 2786
  2590. }
  2591. },
  2592. backDressed: {
  2593. height: math.unit(216, "feet"),
  2594. weight: math.unit(7000000, "lb"),
  2595. name: "Back (Dressed)",
  2596. image: {
  2597. source: "./media/characters/jazzy/back-dressed.svg",
  2598. extra: 2775 / 2673,
  2599. bottom: 36.8 / 2817
  2600. }
  2601. },
  2602. front: {
  2603. height: math.unit(216, "feet"),
  2604. weight: math.unit(7000000, "lb"),
  2605. name: "Front",
  2606. image: {
  2607. source: "./media/characters/jazzy/front.svg",
  2608. extra: 2738 / 2651,
  2609. bottom: 41.8 / 2786
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(216, "feet"),
  2614. weight: math.unit(7000000, "lb"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/jazzy/back.svg",
  2618. extra: 2775 / 2673,
  2619. bottom: 36.8 / 2817
  2620. }
  2621. },
  2622. maw: {
  2623. height: math.unit(20, "feet"),
  2624. name: "Maw",
  2625. image: {
  2626. source: "./media/characters/jazzy/maw.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(27.5, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/jazzy/paws.svg"
  2634. }
  2635. },
  2636. eye: {
  2637. height: math.unit(4.4, "feet"),
  2638. name: "Eye",
  2639. image: {
  2640. source: "./media/characters/jazzy/eye.svg"
  2641. }
  2642. },
  2643. droneOffense: {
  2644. height: math.unit(9.5, "inches"),
  2645. name: "Drone (Offense)",
  2646. image: {
  2647. source: "./media/characters/jazzy/drone-offense.svg"
  2648. }
  2649. },
  2650. droneRecon: {
  2651. height: math.unit(9.5, "inches"),
  2652. name: "Drone (Recon)",
  2653. image: {
  2654. source: "./media/characters/jazzy/drone-recon.svg"
  2655. }
  2656. },
  2657. droneDefense: {
  2658. height: math.unit(9.5, "inches"),
  2659. name: "Drone (Defense)",
  2660. image: {
  2661. source: "./media/characters/jazzy/drone-defense.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(216, "feet"),
  2669. default: true
  2670. },
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2675. {
  2676. front: {
  2677. height: math.unit(9 + 6/12, "feet"),
  2678. weight: math.unit(700, "lb"),
  2679. name: "Front",
  2680. image: {
  2681. source: "./media/characters/flamm/front.svg",
  2682. extra: 1751/1632,
  2683. bottom: 46/1797
  2684. }
  2685. },
  2686. buff: {
  2687. height: math.unit(9 + 6/12, "feet"),
  2688. weight: math.unit(950, "lb"),
  2689. name: "Buff",
  2690. image: {
  2691. source: "./media/characters/flamm/buff.svg",
  2692. extra: 3018/2874,
  2693. bottom: 221/3239
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(9.5, "feet")
  2701. },
  2702. {
  2703. name: "Macro",
  2704. height: math.unit(200, "feet"),
  2705. default: true
  2706. },
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2711. {
  2712. front: {
  2713. height: math.unit(5 + 3/12, "feet"),
  2714. weight: math.unit(60, "kg"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/zephiro/front.svg",
  2718. extra: 2309 / 2162,
  2719. bottom: 0.069
  2720. }
  2721. },
  2722. side: {
  2723. height: math.unit(5 + 3/12, "feet"),
  2724. weight: math.unit(60, "kg"),
  2725. name: "Side",
  2726. image: {
  2727. source: "./media/characters/zephiro/side.svg",
  2728. extra: 2403 / 2279,
  2729. bottom: 0.015
  2730. }
  2731. },
  2732. back: {
  2733. height: math.unit(5 + 3/12, "feet"),
  2734. weight: math.unit(60, "kg"),
  2735. name: "Back",
  2736. image: {
  2737. source: "./media/characters/zephiro/back.svg",
  2738. extra: 2373 / 2244,
  2739. bottom: 0.013
  2740. }
  2741. },
  2742. hand: {
  2743. height: math.unit(0.68, "feet"),
  2744. name: "Hand",
  2745. image: {
  2746. source: "./media/characters/zephiro/hand.svg"
  2747. }
  2748. },
  2749. paw: {
  2750. height: math.unit(1, "feet"),
  2751. name: "Paw",
  2752. image: {
  2753. source: "./media/characters/zephiro/paw.svg"
  2754. }
  2755. },
  2756. beans: {
  2757. height: math.unit(0.93, "feet"),
  2758. name: "Beans",
  2759. image: {
  2760. source: "./media/characters/zephiro/beans.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Micro",
  2767. height: math.unit(3, "inches")
  2768. },
  2769. {
  2770. name: "Normal",
  2771. height: math.unit(5 + 3 / 12, "feet"),
  2772. default: true
  2773. },
  2774. {
  2775. name: "Macro",
  2776. height: math.unit(118, "feet")
  2777. },
  2778. ]
  2779. ))
  2780. characterMakers.push(() => makeCharacter(
  2781. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2782. {
  2783. front: {
  2784. height: math.unit(5, "feet"),
  2785. weight: math.unit(90, "kg"),
  2786. name: "Front",
  2787. image: {
  2788. source: "./media/characters/fory/front.svg",
  2789. extra: 2862 / 2674,
  2790. bottom: 180 / 3043.8
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(5, "feet"),
  2795. weight: math.unit(90, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/fory/back.svg",
  2799. extra: 2962 / 2791,
  2800. bottom: 106 / 3071.8
  2801. }
  2802. },
  2803. foot: {
  2804. height: math.unit(2.14, "feet"),
  2805. name: "Foot",
  2806. image: {
  2807. source: "./media/characters/fory/foot.svg"
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(5, "feet")
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(50, "feet"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(10, "miles")
  2824. },
  2825. {
  2826. name: "Gigamacro",
  2827. height: math.unit(5, "earths")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(7, "feet"),
  2836. weight: math.unit(90, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/kurrikage/front.svg",
  2840. extra: 1845/1733,
  2841. bottom: 119/1964
  2842. }
  2843. },
  2844. back: {
  2845. height: math.unit(7, "feet"),
  2846. weight: math.unit(90, "kg"),
  2847. name: "Back",
  2848. image: {
  2849. source: "./media/characters/kurrikage/back.svg",
  2850. extra: 1790/1677,
  2851. bottom: 61/1851
  2852. }
  2853. },
  2854. dressed: {
  2855. height: math.unit(7, "feet"),
  2856. weight: math.unit(90, "kg"),
  2857. name: "Dressed",
  2858. image: {
  2859. source: "./media/characters/kurrikage/dressed.svg",
  2860. extra: 1845/1733,
  2861. bottom: 119/1964
  2862. }
  2863. },
  2864. foot: {
  2865. height: math.unit(1.5, "feet"),
  2866. name: "Foot",
  2867. image: {
  2868. source: "./media/characters/kurrikage/foot.svg"
  2869. }
  2870. },
  2871. staff: {
  2872. height: math.unit(6.7, "feet"),
  2873. name: "Staff",
  2874. image: {
  2875. source: "./media/characters/kurrikage/staff.svg"
  2876. }
  2877. },
  2878. peek: {
  2879. height: math.unit(1.05, "feet"),
  2880. name: "Peeking",
  2881. image: {
  2882. source: "./media/characters/kurrikage/peek.svg",
  2883. bottom: 0.08
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Normal",
  2890. height: math.unit(12, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Big",
  2895. height: math.unit(20, "feet")
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(500, "feet")
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(20, "miles")
  2904. },
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(6, "feet"),
  2912. weight: math.unit(75, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/shingo/front.svg",
  2916. extra: 1900/1825,
  2917. bottom: 82/1982
  2918. }
  2919. },
  2920. side: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Side",
  2924. image: {
  2925. source: "./media/characters/shingo/side.svg",
  2926. extra: 1930/1865,
  2927. bottom: 16/1946
  2928. }
  2929. },
  2930. back: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Back",
  2934. image: {
  2935. source: "./media/characters/shingo/back.svg",
  2936. extra: 1922/1852,
  2937. bottom: 16/1938
  2938. }
  2939. },
  2940. frontDressed: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(150, "lb"),
  2943. name: "Front-dressed",
  2944. image: {
  2945. source: "./media/characters/shingo/front-dressed.svg",
  2946. extra: 1900/1825,
  2947. bottom: 82/1982
  2948. }
  2949. },
  2950. paw: {
  2951. height: math.unit(1.29, "feet"),
  2952. name: "Paw",
  2953. image: {
  2954. source: "./media/characters/shingo/paw.svg"
  2955. }
  2956. },
  2957. hand: {
  2958. height: math.unit(1.07, "feet"),
  2959. name: "Hand",
  2960. image: {
  2961. source: "./media/characters/shingo/hand.svg"
  2962. }
  2963. },
  2964. frontAlt: {
  2965. height: math.unit(6, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front (Alt)",
  2968. image: {
  2969. source: "./media/characters/shingo/front-alt.svg",
  2970. extra: 3511 / 3338,
  2971. bottom: 0.005
  2972. }
  2973. },
  2974. frontAlt2: {
  2975. height: math.unit(6, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (Alt 2)",
  2978. image: {
  2979. source: "./media/characters/shingo/front-alt-2.svg",
  2980. extra: 706/681,
  2981. bottom: 11/717
  2982. }
  2983. },
  2984. pawAlt: {
  2985. height: math.unit(1, "feet"),
  2986. name: "Paw (Alt)",
  2987. image: {
  2988. source: "./media/characters/shingo/paw-alt.svg"
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Micro",
  2995. height: math.unit(4, "inches")
  2996. },
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(6, "feet"),
  3000. default: true
  3001. },
  3002. {
  3003. name: "Macro",
  3004. height: math.unit(108, "feet")
  3005. },
  3006. {
  3007. name: "Macro+",
  3008. height: math.unit(1500, "feet")
  3009. },
  3010. ]
  3011. ))
  3012. characterMakers.push(() => makeCharacter(
  3013. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3014. {
  3015. side: {
  3016. height: math.unit(6, "feet"),
  3017. weight: math.unit(75, "kg"),
  3018. name: "Side",
  3019. image: {
  3020. source: "./media/characters/aigey/side.svg"
  3021. }
  3022. },
  3023. },
  3024. [
  3025. {
  3026. name: "Macro",
  3027. height: math.unit(200, "feet"),
  3028. default: true
  3029. },
  3030. {
  3031. name: "Megamacro",
  3032. height: math.unit(100, "miles")
  3033. },
  3034. ]
  3035. )
  3036. )
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(5 + 5 / 12, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/natasha/front.svg",
  3046. extra: 859 / 824,
  3047. bottom: 23 / 879.6
  3048. }
  3049. },
  3050. frontNsfw: {
  3051. height: math.unit(5 + 5 / 12, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Front (NSFW)",
  3054. image: {
  3055. source: "./media/characters/natasha/front-nsfw.svg",
  3056. extra: 859 / 824,
  3057. bottom: 23 / 879.6
  3058. }
  3059. },
  3060. frontErect: {
  3061. height: math.unit(5 + 5 / 12, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Erect)",
  3064. image: {
  3065. source: "./media/characters/natasha/front-erect.svg",
  3066. extra: 859 / 824,
  3067. bottom: 23 / 879.6
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(5 + 5 / 12, "feet"),
  3072. weight: math.unit(75, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/natasha/back.svg",
  3076. extra: 887.9 / 852.6,
  3077. bottom: 9.7 / 896.4
  3078. }
  3079. },
  3080. backAlt: {
  3081. height: math.unit(5 + 5 / 12, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Back (Alt)",
  3084. image: {
  3085. source: "./media/characters/natasha/back-alt.svg",
  3086. extra: 1236.7 / 1192,
  3087. bottom: 22.3 / 1258.2
  3088. }
  3089. },
  3090. dick: {
  3091. height: math.unit(1.772, "feet"),
  3092. name: "Dick",
  3093. image: {
  3094. source: "./media/characters/natasha/dick.svg"
  3095. }
  3096. },
  3097. paw: {
  3098. height: math.unit(0.250, "meters"),
  3099. name: "Paw",
  3100. image: {
  3101. source: "./media/characters/natasha/paw.svg"
  3102. }
  3103. },
  3104. },
  3105. [
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(5 + 5 / 12, "feet")
  3109. },
  3110. {
  3111. name: "Large",
  3112. height: math.unit(12, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(100, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Macro+",
  3121. height: math.unit(260, "feet")
  3122. },
  3123. {
  3124. name: "Macro++",
  3125. height: math.unit(1, "mile")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/malik/front.svg"
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/malik/side.svg",
  3146. extra: 1.1539
  3147. }
  3148. },
  3149. back: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Back",
  3153. image: {
  3154. source: "./media/characters/malik/back.svg"
  3155. }
  3156. },
  3157. },
  3158. [
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(156, "feet"),
  3162. default: true
  3163. },
  3164. {
  3165. name: "Macro+",
  3166. height: math.unit(1188, "feet")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(6, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/sefer/front.svg",
  3179. extra: 848 / 659,
  3180. bottom: 28.3 / 876.442
  3181. }
  3182. },
  3183. back: {
  3184. height: math.unit(6, "feet"),
  3185. weight: math.unit(75, "kg"),
  3186. name: "Back",
  3187. image: {
  3188. source: "./media/characters/sefer/back.svg",
  3189. extra: 864 / 695,
  3190. bottom: 10 / 871
  3191. }
  3192. },
  3193. frontDressed: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Front (Dressed)",
  3197. image: {
  3198. source: "./media/characters/sefer/front-dressed.svg",
  3199. extra: 839 / 653,
  3200. bottom: 37.6 / 878
  3201. }
  3202. },
  3203. },
  3204. [
  3205. {
  3206. name: "Normal",
  3207. height: math.unit(6, "feet"),
  3208. default: true
  3209. },
  3210. ]
  3211. ))
  3212. characterMakers.push(() => makeCharacter(
  3213. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3214. {
  3215. body: {
  3216. height: math.unit(2.2428, "meter"),
  3217. weight: math.unit(124.738, "kg"),
  3218. name: "Body",
  3219. image: {
  3220. extra: 1225 / 1050,
  3221. source: "./media/characters/north/front.svg"
  3222. }
  3223. }
  3224. },
  3225. [
  3226. {
  3227. name: "Micro",
  3228. height: math.unit(4, "inches")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(63, "meters")
  3233. },
  3234. {
  3235. name: "Megamacro",
  3236. height: math.unit(101, "miles"),
  3237. default: true
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3243. {
  3244. angled: {
  3245. height: math.unit(4, "meter"),
  3246. weight: math.unit(150, "kg"),
  3247. name: "Angled",
  3248. image: {
  3249. source: "./media/characters/talan/angled-sfw.svg",
  3250. bottom: 29 / 3734
  3251. }
  3252. },
  3253. angledNsfw: {
  3254. height: math.unit(4, "meter"),
  3255. weight: math.unit(150, "kg"),
  3256. name: "Angled (NSFW)",
  3257. image: {
  3258. source: "./media/characters/talan/angled-nsfw.svg",
  3259. bottom: 29 / 3734
  3260. }
  3261. },
  3262. frontNsfw: {
  3263. height: math.unit(4, "meter"),
  3264. weight: math.unit(150, "kg"),
  3265. name: "Front (NSFW)",
  3266. image: {
  3267. source: "./media/characters/talan/front-nsfw.svg",
  3268. bottom: 29 / 3734
  3269. }
  3270. },
  3271. sideNsfw: {
  3272. height: math.unit(4, "meter"),
  3273. weight: math.unit(150, "kg"),
  3274. name: "Side (NSFW)",
  3275. image: {
  3276. source: "./media/characters/talan/side-nsfw.svg",
  3277. bottom: 29 / 3734
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(4, "meter"),
  3282. weight: math.unit(150, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/talan/back.svg"
  3286. }
  3287. },
  3288. dickBottom: {
  3289. height: math.unit(0.621, "meter"),
  3290. name: "Dick (Bottom)",
  3291. image: {
  3292. source: "./media/characters/talan/dick-bottom.svg"
  3293. }
  3294. },
  3295. dickTop: {
  3296. height: math.unit(0.621, "meter"),
  3297. name: "Dick (Top)",
  3298. image: {
  3299. source: "./media/characters/talan/dick-top.svg"
  3300. }
  3301. },
  3302. dickSide: {
  3303. height: math.unit(0.305, "meter"),
  3304. name: "Dick (Side)",
  3305. image: {
  3306. source: "./media/characters/talan/dick-side.svg"
  3307. }
  3308. },
  3309. dickFront: {
  3310. height: math.unit(0.305, "meter"),
  3311. name: "Dick (Front)",
  3312. image: {
  3313. source: "./media/characters/talan/dick-front.svg"
  3314. }
  3315. },
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(4, "meters")
  3321. },
  3322. {
  3323. name: "Macro",
  3324. height: math.unit(100, "meters")
  3325. },
  3326. {
  3327. name: "Megamacro",
  3328. height: math.unit(2, "miles"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Gigamacro",
  3333. height: math.unit(5000, "miles")
  3334. },
  3335. {
  3336. name: "Teramacro",
  3337. height: math.unit(100, "parsecs")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front.svg"
  3350. }
  3351. },
  3352. frontAlt: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt.svg"
  3358. }
  3359. },
  3360. frontAlt2: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(90, "kg"),
  3363. name: "Front (alt 2)",
  3364. image: {
  3365. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3366. }
  3367. }
  3368. },
  3369. [
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(9, "feet"),
  3373. default: true
  3374. },
  3375. {
  3376. name: "Large",
  3377. height: math.unit(25, "feet")
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(0.25, "miles")
  3382. },
  3383. {
  3384. name: "Megamacro",
  3385. height: math.unit(10, "miles")
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3391. {
  3392. side: {
  3393. height: math.unit(2, "meter"),
  3394. weight: math.unit(140, "kg"),
  3395. name: "Side",
  3396. image: {
  3397. source: "./media/characters/sosha/side.svg",
  3398. bottom: 0.042
  3399. }
  3400. },
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(12, "feet"),
  3406. default: true
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3412. {
  3413. side: {
  3414. height: math.unit(5 + 5 / 12, "feet"),
  3415. weight: math.unit(170, "kg"),
  3416. name: "Side",
  3417. image: {
  3418. source: "./media/characters/runnola/side.svg",
  3419. extra: 741 / 448,
  3420. bottom: 0.05
  3421. }
  3422. },
  3423. },
  3424. [
  3425. {
  3426. name: "Small",
  3427. height: math.unit(3, "feet")
  3428. },
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(5 + 5 / 12, "feet"),
  3432. default: true
  3433. },
  3434. {
  3435. name: "Big",
  3436. height: math.unit(10, "feet")
  3437. },
  3438. ]
  3439. ))
  3440. characterMakers.push(() => makeCharacter(
  3441. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3442. {
  3443. front: {
  3444. height: math.unit(2, "meter"),
  3445. weight: math.unit(50, "kg"),
  3446. name: "Front",
  3447. image: {
  3448. source: "./media/characters/kurribird/front.svg",
  3449. bottom: 0.015
  3450. }
  3451. },
  3452. frontAlt: {
  3453. height: math.unit(1.5, "meter"),
  3454. weight: math.unit(50, "kg"),
  3455. name: "Front (Alt)",
  3456. image: {
  3457. source: "./media/characters/kurribird/front-alt.svg",
  3458. extra: 1.45
  3459. }
  3460. },
  3461. },
  3462. [
  3463. {
  3464. name: "Normal",
  3465. height: math.unit(7, "feet")
  3466. },
  3467. {
  3468. name: "Big",
  3469. height: math.unit(12, "feet"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Macro",
  3474. height: math.unit(1500, "feet")
  3475. },
  3476. {
  3477. name: "Megamacro",
  3478. height: math.unit(2, "miles")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3484. {
  3485. front: {
  3486. height: math.unit(2, "meter"),
  3487. weight: math.unit(80, "kg"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/elbial/front.svg",
  3491. extra: 1643 / 1556,
  3492. bottom: 60.2 / 1696
  3493. }
  3494. },
  3495. side: {
  3496. height: math.unit(2, "meter"),
  3497. weight: math.unit(80, "kg"),
  3498. name: "Side",
  3499. image: {
  3500. source: "./media/characters/elbial/side.svg",
  3501. extra: 1601/1528,
  3502. bottom: 97/1698
  3503. }
  3504. },
  3505. back: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(80, "kg"),
  3508. name: "Back",
  3509. image: {
  3510. source: "./media/characters/elbial/back.svg",
  3511. extra: 1653/1569,
  3512. bottom: 20/1673
  3513. }
  3514. },
  3515. frontDressed: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Front (Dressed)",
  3519. image: {
  3520. source: "./media/characters/elbial/front-dressed.svg",
  3521. extra: 1638/1569,
  3522. bottom: 70/1708
  3523. }
  3524. },
  3525. genitals: {
  3526. height: math.unit(2 / 3.367, "meter"),
  3527. name: "Genitals",
  3528. image: {
  3529. source: "./media/characters/elbial/genitals.svg"
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Large",
  3536. height: math.unit(100, "feet")
  3537. },
  3538. {
  3539. name: "Macro",
  3540. height: math.unit(500, "feet"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Megamacro",
  3545. height: math.unit(10, "miles")
  3546. },
  3547. {
  3548. name: "Gigamacro",
  3549. height: math.unit(25000, "miles")
  3550. },
  3551. {
  3552. name: "Full-Size",
  3553. height: math.unit(8000000, "gigaparsecs")
  3554. }
  3555. ]
  3556. ))
  3557. characterMakers.push(() => makeCharacter(
  3558. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3559. {
  3560. front: {
  3561. height: math.unit(2, "meter"),
  3562. weight: math.unit(60, "kg"),
  3563. name: "Front",
  3564. image: {
  3565. source: "./media/characters/noah/front.svg"
  3566. }
  3567. },
  3568. talons: {
  3569. height: math.unit(0.315, "meter"),
  3570. name: "Talons",
  3571. image: {
  3572. source: "./media/characters/noah/talons.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Large",
  3579. height: math.unit(50, "feet")
  3580. },
  3581. {
  3582. name: "Macro",
  3583. height: math.unit(750, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Megamacro",
  3588. height: math.unit(50, "miles")
  3589. },
  3590. {
  3591. name: "Gigamacro",
  3592. height: math.unit(100000, "miles")
  3593. },
  3594. {
  3595. name: "Full-Size",
  3596. height: math.unit(3000000000, "miles")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/natalya/front.svg"
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(2, "meter"),
  3613. weight: math.unit(80, "kg"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/natalya/back.svg"
  3617. }
  3618. }
  3619. },
  3620. [
  3621. {
  3622. name: "Normal",
  3623. height: math.unit(150, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Megamacro",
  3628. height: math.unit(5, "miles")
  3629. },
  3630. {
  3631. name: "Full-Size",
  3632. height: math.unit(600, "kiloparsecs")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(50, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/erestrebah/front.svg",
  3645. extra: 1262/1162,
  3646. bottom: 96/1358
  3647. }
  3648. },
  3649. back: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(50, "kg"),
  3652. name: "Back",
  3653. image: {
  3654. source: "./media/characters/erestrebah/back.svg",
  3655. extra: 1257/1139,
  3656. bottom: 13/1270
  3657. }
  3658. },
  3659. wing: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(50, "kg"),
  3662. name: "Wing",
  3663. image: {
  3664. source: "./media/characters/erestrebah/wing.svg",
  3665. extra: 1262/1162,
  3666. bottom: 96/1358
  3667. }
  3668. },
  3669. mouth: {
  3670. height: math.unit(0.39, "feet"),
  3671. name: "Mouth",
  3672. image: {
  3673. source: "./media/characters/erestrebah/mouth.svg"
  3674. }
  3675. }
  3676. },
  3677. [
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(10, "feet")
  3681. },
  3682. {
  3683. name: "Large",
  3684. height: math.unit(50, "feet"),
  3685. default: true
  3686. },
  3687. {
  3688. name: "Macro",
  3689. height: math.unit(300, "feet")
  3690. },
  3691. {
  3692. name: "Macro+",
  3693. height: math.unit(750, "feet")
  3694. },
  3695. {
  3696. name: "Megamacro",
  3697. height: math.unit(3, "miles")
  3698. }
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3703. {
  3704. front: {
  3705. height: math.unit(2, "meter"),
  3706. weight: math.unit(80, "kg"),
  3707. name: "Front",
  3708. image: {
  3709. source: "./media/characters/jennifer/front.svg",
  3710. bottom: 0.11,
  3711. extra: 1.16
  3712. }
  3713. },
  3714. frontAlt: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(80, "kg"),
  3717. name: "Front (Alt)",
  3718. image: {
  3719. source: "./media/characters/jennifer/front-alt.svg"
  3720. }
  3721. }
  3722. },
  3723. [
  3724. {
  3725. name: "Canon Height",
  3726. height: math.unit(120, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro+",
  3731. height: math.unit(300, "feet")
  3732. },
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(20000, "feet")
  3736. }
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3741. {
  3742. front: {
  3743. height: math.unit(2, "meter"),
  3744. weight: math.unit(50, "kg"),
  3745. name: "Front",
  3746. image: {
  3747. source: "./media/characters/kalista/front.svg",
  3748. extra: 1314/1145,
  3749. bottom: 101/1415
  3750. }
  3751. },
  3752. back: {
  3753. height: math.unit(2, "meter"),
  3754. weight: math.unit(50, "kg"),
  3755. name: "Back",
  3756. image: {
  3757. source: "./media/characters/kalista/back.svg",
  3758. extra: 1366 / 1156,
  3759. bottom: 33.9 / 1362.78
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Uncomfortably Small",
  3766. height: math.unit(10, "feet")
  3767. },
  3768. {
  3769. name: "Small",
  3770. height: math.unit(30, "feet")
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(100, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro+",
  3779. height: math.unit(2000, "feet")
  3780. },
  3781. {
  3782. name: "True Form",
  3783. height: math.unit(8924, "miles")
  3784. }
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/ggv/front.svg"
  3796. }
  3797. },
  3798. side: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(120, "kg"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/ggv/side.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Extremely Puny",
  3810. height: math.unit(9 + 5 / 12, "feet")
  3811. },
  3812. {
  3813. name: "Horribly Small",
  3814. height: math.unit(47.7, "miles"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Reasonably Sized",
  3819. height: math.unit(25000, "parsecs")
  3820. },
  3821. {
  3822. name: "Slightly Uncompressed",
  3823. height: math.unit(7.77e31, "parsecs")
  3824. },
  3825. {
  3826. name: "Omniversal",
  3827. height: math.unit(1e300, "meters")
  3828. },
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/napalm/front.svg"
  3840. }
  3841. },
  3842. back: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(75, "lb"),
  3845. name: "Back",
  3846. image: {
  3847. source: "./media/characters/napalm/back.svg"
  3848. }
  3849. }
  3850. },
  3851. [
  3852. {
  3853. name: "Standard",
  3854. height: math.unit(55, "feet"),
  3855. default: true
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(7 + 5 / 6, "feet"),
  3864. weight: math.unit(325, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/asana/front.svg",
  3868. extra: 1133 / 1060,
  3869. bottom: 15.2 / 1148.6
  3870. }
  3871. },
  3872. back: {
  3873. height: math.unit(7 + 5 / 6, "feet"),
  3874. weight: math.unit(325, "lb"),
  3875. name: "Back",
  3876. image: {
  3877. source: "./media/characters/asana/back.svg",
  3878. extra: 1114 / 1043,
  3879. bottom: 5 / 1120
  3880. }
  3881. },
  3882. dressedDark: {
  3883. height: math.unit(7 + 5 / 6, "feet"),
  3884. weight: math.unit(325, "lb"),
  3885. name: "Dressed (Dark)",
  3886. image: {
  3887. source: "./media/characters/asana/dressed-dark.svg",
  3888. extra: 1133 / 1060,
  3889. bottom: 15.2 / 1148.6
  3890. }
  3891. },
  3892. dressedLight: {
  3893. height: math.unit(7 + 5 / 6, "feet"),
  3894. weight: math.unit(325, "lb"),
  3895. name: "Dressed (Light)",
  3896. image: {
  3897. source: "./media/characters/asana/dressed-light.svg",
  3898. extra: 1133 / 1060,
  3899. bottom: 15.2 / 1148.6
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Standard",
  3906. height: math.unit(7 + 5 / 6, "feet"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Large",
  3911. height: math.unit(10, "meters")
  3912. },
  3913. {
  3914. name: "Macro",
  3915. height: math.unit(2500, "meters")
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(5e6, "meters")
  3920. },
  3921. {
  3922. name: "Examacro",
  3923. height: math.unit(5e12, "lightyears")
  3924. },
  3925. {
  3926. name: "Max Size",
  3927. height: math.unit(1e31, "lightyears")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(60, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/ebony/front.svg",
  3940. bottom: 0.03,
  3941. extra: 1045 / 810 + 0.03
  3942. }
  3943. },
  3944. side: {
  3945. height: math.unit(2, "meter"),
  3946. weight: math.unit(60, "kg"),
  3947. name: "Side",
  3948. image: {
  3949. source: "./media/characters/ebony/side.svg",
  3950. bottom: 0.03,
  3951. extra: 1045 / 810 + 0.03
  3952. }
  3953. },
  3954. back: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(60, "kg"),
  3957. name: "Back",
  3958. image: {
  3959. source: "./media/characters/ebony/back.svg",
  3960. bottom: 0.01,
  3961. extra: 1045 / 810 + 0.01
  3962. }
  3963. },
  3964. },
  3965. [
  3966. // TODO check why I did this lol
  3967. {
  3968. name: "Standard",
  3969. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3970. default: true
  3971. },
  3972. {
  3973. name: "Macro",
  3974. height: math.unit(200, "feet")
  3975. },
  3976. {
  3977. name: "Gigamacro",
  3978. height: math.unit(13000, "km")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(6, "feet"),
  3987. weight: math.unit(175, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/mountain/front.svg",
  3991. extra: 972 / 955,
  3992. bottom: 64 / 1036.6
  3993. }
  3994. },
  3995. back: {
  3996. height: math.unit(6, "feet"),
  3997. weight: math.unit(175, "lb"),
  3998. name: "Back",
  3999. image: {
  4000. source: "./media/characters/mountain/back.svg",
  4001. extra: 970 / 950,
  4002. bottom: 28.25 / 999
  4003. }
  4004. },
  4005. },
  4006. [
  4007. {
  4008. name: "Large",
  4009. height: math.unit(20, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(300, "meters")
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(10000, "km"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Examacro",
  4022. height: math.unit(10e9, "lightyears")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(500, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/rick/front.svg"
  4035. }
  4036. }
  4037. },
  4038. [
  4039. {
  4040. name: "Normal",
  4041. height: math.unit(8, "feet"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(5, "km")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/ona/front.svg"
  4059. }
  4060. },
  4061. frontAlt: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Front (Alt)",
  4065. image: {
  4066. source: "./media/characters/ona/front-alt.svg"
  4067. }
  4068. },
  4069. back: {
  4070. height: math.unit(8, "feet"),
  4071. weight: math.unit(120, "lb"),
  4072. name: "Back",
  4073. image: {
  4074. source: "./media/characters/ona/back.svg"
  4075. }
  4076. },
  4077. foot: {
  4078. height: math.unit(1.1, "feet"),
  4079. name: "Foot",
  4080. image: {
  4081. source: "./media/characters/ona/foot.svg"
  4082. }
  4083. }
  4084. },
  4085. [
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(70, "km"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(681818, "miles")
  4094. },
  4095. {
  4096. name: "Examacro",
  4097. height: math.unit(3800000, "lightyears")
  4098. },
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4103. {
  4104. front: {
  4105. height: math.unit(12, "feet"),
  4106. weight: math.unit(3000, "lb"),
  4107. name: "Front",
  4108. image: {
  4109. source: "./media/characters/mech/front.svg",
  4110. extra: 2900 / 2770,
  4111. bottom: 110 / 3010
  4112. }
  4113. },
  4114. back: {
  4115. height: math.unit(12, "feet"),
  4116. weight: math.unit(3000, "lb"),
  4117. name: "Back",
  4118. image: {
  4119. source: "./media/characters/mech/back.svg",
  4120. extra: 3011 / 2890,
  4121. bottom: 94 / 3105
  4122. }
  4123. },
  4124. maw: {
  4125. height: math.unit(3.07, "feet"),
  4126. name: "Maw",
  4127. image: {
  4128. source: "./media/characters/mech/maw.svg"
  4129. }
  4130. },
  4131. head: {
  4132. height: math.unit(2.82, "feet"),
  4133. name: "Head",
  4134. image: {
  4135. source: "./media/characters/mech/head.svg"
  4136. }
  4137. },
  4138. dick: {
  4139. height: math.unit(1.43, "feet"),
  4140. name: "Dick",
  4141. image: {
  4142. source: "./media/characters/mech/dick.svg"
  4143. }
  4144. },
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(12, "feet")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(300, "feet"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro+",
  4158. height: math.unit(1500, "feet")
  4159. },
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(1.3, "meter"),
  4167. weight: math.unit(30, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/gregory/front.svg",
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(1.3, "meter"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(20, "meter")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(2.8, "meter"),
  4191. weight: math.unit(200, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/elory/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(2.8, "meter"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(38, "meter")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(470, "feet"),
  4215. weight: math.unit(924, "tons"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/angelpatamon/front.svg",
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(470, "feet"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Deity Size I",
  4230. height: math.unit(28651.2, "km")
  4231. },
  4232. {
  4233. name: "Deity Size II",
  4234. height: math.unit(171907.2, "km")
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4240. {
  4241. side: {
  4242. height: math.unit(7.2, "meter"),
  4243. weight: math.unit(8.2, "tons"),
  4244. name: "Side",
  4245. image: {
  4246. source: "./media/characters/cryae/side.svg",
  4247. extra: 3500 / 1500
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Normal",
  4254. height: math.unit(7.2, "meter"),
  4255. default: true
  4256. }
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(6, "feet"),
  4264. weight: math.unit(175, "lb"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/xera/front.svg",
  4268. extra: 2377 / 1972,
  4269. bottom: 75.5 / 2452
  4270. }
  4271. },
  4272. side: {
  4273. height: math.unit(6, "feet"),
  4274. weight: math.unit(175, "lb"),
  4275. name: "Side",
  4276. image: {
  4277. source: "./media/characters/xera/side.svg",
  4278. extra: 2345 / 2019,
  4279. bottom: 39.7 / 2384
  4280. }
  4281. },
  4282. back: {
  4283. height: math.unit(6, "feet"),
  4284. weight: math.unit(175, "lb"),
  4285. name: "Back",
  4286. image: {
  4287. source: "./media/characters/xera/back.svg",
  4288. extra: 2095 / 1984,
  4289. bottom: 67 / 2166
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Small",
  4296. height: math.unit(10, "feet")
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(500, "meters"),
  4301. default: true
  4302. },
  4303. {
  4304. name: "Macro+",
  4305. height: math.unit(10, "km")
  4306. },
  4307. {
  4308. name: "Gigamacro",
  4309. height: math.unit(25000, "km")
  4310. },
  4311. {
  4312. name: "Teramacro",
  4313. height: math.unit(3e6, "km")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(6, "feet"),
  4322. weight: math.unit(175, "lb"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/nebula/front.svg",
  4326. extra: 2566 / 2362,
  4327. bottom: 81 / 2644
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Small",
  4334. height: math.unit(4.5, "meters")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(1500, "meters"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(150, "km")
  4344. },
  4345. {
  4346. name: "Gigamacro",
  4347. height: math.unit(27000, "km")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(225, "lb"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/abysgar/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Small",
  4366. height: math.unit(4.5, "meters")
  4367. },
  4368. {
  4369. name: "Macro",
  4370. height: math.unit(1250, "meters"),
  4371. default: true
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(125, "km")
  4376. },
  4377. {
  4378. name: "Gigamacro",
  4379. height: math.unit(26000, "km")
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4385. {
  4386. front: {
  4387. height: math.unit(6, "feet"),
  4388. weight: math.unit(180, "lb"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/yakuz/front.svg"
  4392. }
  4393. }
  4394. },
  4395. [
  4396. {
  4397. name: "Small",
  4398. height: math.unit(5, "meters")
  4399. },
  4400. {
  4401. name: "Macro",
  4402. height: math.unit(1500, "meters"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Megamacro",
  4407. height: math.unit(200, "km")
  4408. },
  4409. {
  4410. name: "Gigamacro",
  4411. height: math.unit(100000, "km")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(175, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/mirova/front.svg",
  4424. extra: 3334 / 3071,
  4425. bottom: 42 / 3375.6
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(5, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(900, "meters"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megamacro",
  4441. height: math.unit(135, "km")
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(20000, "km")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4451. {
  4452. side: {
  4453. height: math.unit(28.35, "feet"),
  4454. weight: math.unit(99.75, "tons"),
  4455. name: "Side",
  4456. image: {
  4457. source: "./media/characters/asana-mech/side.svg",
  4458. extra: 923 / 699,
  4459. bottom: 50 / 975
  4460. }
  4461. },
  4462. chaingun: {
  4463. height: math.unit(7, "feet"),
  4464. weight: math.unit(2400, "lb"),
  4465. name: "Chaingun",
  4466. image: {
  4467. source: "./media/characters/asana-mech/chaingun.svg"
  4468. }
  4469. },
  4470. laser: {
  4471. height: math.unit(7.12, "feet"),
  4472. weight: math.unit(2000, "lb"),
  4473. name: "Laser",
  4474. image: {
  4475. source: "./media/characters/asana-mech/laser.svg"
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(28.35, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(2500, "feet")
  4488. },
  4489. {
  4490. name: "Megamacro",
  4491. height: math.unit(25, "miles")
  4492. },
  4493. {
  4494. name: "Examacro",
  4495. height: math.unit(6e8, "lightyears")
  4496. },
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(5, "meters"),
  4504. weight: math.unit(1000, "kg"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/asche/front.svg",
  4508. extra: 1258 / 1190,
  4509. bottom: 47 / 1305
  4510. }
  4511. },
  4512. frontUnderwear: {
  4513. height: math.unit(5, "meters"),
  4514. weight: math.unit(1000, "kg"),
  4515. name: "Front (Underwear)",
  4516. image: {
  4517. source: "./media/characters/asche/front-underwear.svg",
  4518. extra: 1258 / 1190,
  4519. bottom: 47 / 1305
  4520. }
  4521. },
  4522. frontDressed: {
  4523. height: math.unit(5, "meters"),
  4524. weight: math.unit(1000, "kg"),
  4525. name: "Front (Dressed)",
  4526. image: {
  4527. source: "./media/characters/asche/front-dressed.svg",
  4528. extra: 1258 / 1190,
  4529. bottom: 47 / 1305
  4530. }
  4531. },
  4532. frontArmor: {
  4533. height: math.unit(5, "meters"),
  4534. weight: math.unit(1000, "kg"),
  4535. name: "Front (Armored)",
  4536. image: {
  4537. source: "./media/characters/asche/front-armored.svg",
  4538. extra: 1374 / 1308,
  4539. bottom: 23 / 1397
  4540. }
  4541. },
  4542. mp724: {
  4543. height: math.unit(0.96, "meters"),
  4544. weight: math.unit(38, "kg"),
  4545. name: "H&K MP724",
  4546. image: {
  4547. source: "./media/characters/asche/h&k-mp724.svg"
  4548. }
  4549. },
  4550. side: {
  4551. height: math.unit(5, "meters"),
  4552. weight: math.unit(1000, "kg"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/asche/side.svg",
  4556. extra: 1717 / 1609,
  4557. bottom: 0.005
  4558. }
  4559. },
  4560. back: {
  4561. height: math.unit(5, "meters"),
  4562. weight: math.unit(1000, "kg"),
  4563. name: "Back",
  4564. image: {
  4565. source: "./media/characters/asche/back.svg",
  4566. extra: 1570 / 1501
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "DEFCON 5",
  4573. height: math.unit(5, "meters")
  4574. },
  4575. {
  4576. name: "DEFCON 4",
  4577. height: math.unit(500, "meters"),
  4578. default: true
  4579. },
  4580. {
  4581. name: "DEFCON 3",
  4582. height: math.unit(5, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 2",
  4586. height: math.unit(500, "km")
  4587. },
  4588. {
  4589. name: "DEFCON 1",
  4590. height: math.unit(500000, "km")
  4591. },
  4592. {
  4593. name: "DEFCON 0",
  4594. height: math.unit(3, "gigaparsecs")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4600. {
  4601. front: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/gale/front.svg"
  4607. }
  4608. },
  4609. frontAlt1: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 1)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-1.svg"
  4615. }
  4616. },
  4617. frontAlt2: {
  4618. height: math.unit(2, "meters"),
  4619. weight: math.unit(76, "kg"),
  4620. name: "Front (Alt 2)",
  4621. image: {
  4622. source: "./media/characters/gale/front-alt-2.svg"
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(7, "feet")
  4630. },
  4631. {
  4632. name: "Macro",
  4633. height: math.unit(150, "feet"),
  4634. default: true
  4635. },
  4636. {
  4637. name: "Macro+",
  4638. height: math.unit(300, "feet")
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4644. {
  4645. front: {
  4646. height: math.unit(5 + 10/12, "feet"),
  4647. weight: math.unit(67, "kg"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/draylen/front.svg",
  4651. extra: 832/777,
  4652. bottom: 85/917
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(5 + 10/12, "feet")
  4660. },
  4661. {
  4662. name: "Macro",
  4663. height: math.unit(150, "feet"),
  4664. default: true
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/chez/front.svg"
  4677. }
  4678. },
  4679. side: {
  4680. height: math.unit(7 + 9 / 12, "feet"),
  4681. weight: math.unit(379, "lbs"),
  4682. name: "Side",
  4683. image: {
  4684. source: "./media/characters/chez/side.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(7 + 9 / 12, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "God King",
  4696. height: math.unit(9750000, "meters")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(275, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/kaylum/front.svg",
  4709. bottom: 0.01,
  4710. extra: 1166 / 1031
  4711. }
  4712. },
  4713. frontWingless: {
  4714. height: math.unit(6, "feet"),
  4715. weight: math.unit(275, "lbs"),
  4716. name: "Front (Wingless)",
  4717. image: {
  4718. source: "./media/characters/kaylum/front-wingless.svg",
  4719. bottom: 0.01,
  4720. extra: 1117 / 1031
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(3.05, "meters")
  4728. },
  4729. {
  4730. name: "Master",
  4731. height: math.unit(5.5, "meters")
  4732. },
  4733. {
  4734. name: "Rampage",
  4735. height: math.unit(19, "meters")
  4736. },
  4737. {
  4738. name: "Macro Lite",
  4739. height: math.unit(37, "meters")
  4740. },
  4741. {
  4742. name: "Hyper Predator",
  4743. height: math.unit(61, "meters")
  4744. },
  4745. {
  4746. name: "Macro",
  4747. height: math.unit(138, "meters"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(150, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/geta/front.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Micro",
  4767. height: math.unit(3, "inches"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(5 + 5 / 12, "feet")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(300, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/tyrnn/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Main Height",
  4791. height: math.unit(355, "feet"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Fave. Height",
  4796. height: math.unit(2400, "feet")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(300, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/appledectomy/front.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(2500, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(50, "miles"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(5000, "miles")
  4825. },
  4826. {
  4827. name: "Teramacro",
  4828. height: math.unit(250000, "miles")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(200, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/vulpes/front.svg",
  4841. extra: 573 / 543,
  4842. bottom: 0.033
  4843. }
  4844. },
  4845. side: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(200, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/vulpes/side.svg",
  4851. extra: 577 / 549,
  4852. bottom: 11 / 588
  4853. }
  4854. },
  4855. back: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(200, "lbs"),
  4858. name: "Back",
  4859. image: {
  4860. source: "./media/characters/vulpes/back.svg",
  4861. extra: 573 / 549,
  4862. bottom: 20 / 593
  4863. }
  4864. },
  4865. feet: {
  4866. height: math.unit(1.276, "feet"),
  4867. name: "Feet",
  4868. image: {
  4869. source: "./media/characters/vulpes/feet.svg"
  4870. }
  4871. },
  4872. maw: {
  4873. height: math.unit(1.18, "feet"),
  4874. name: "Maw",
  4875. image: {
  4876. source: "./media/characters/vulpes/maw.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Micro",
  4883. height: math.unit(2, "inches")
  4884. },
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(6.3, "feet")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(850, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(7500, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Gigamacro",
  4900. height: math.unit(570000, "miles")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4906. {
  4907. front: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/front.svg"
  4913. }
  4914. },
  4915. side: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Side",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/side.svg"
  4921. }
  4922. },
  4923. back: {
  4924. height: math.unit(6, "feet"),
  4925. weight: math.unit(210, "lbs"),
  4926. name: "Back",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/back.svg"
  4929. }
  4930. },
  4931. feral: {
  4932. height: math.unit(9, "feet"),
  4933. weight: math.unit(700, "lbs"),
  4934. name: "Feral",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/feral.svg"
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Meddling with Mortals",
  4943. height: math.unit(8 + 8/12, "feet")
  4944. },
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(5, "meter")
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(150, "meter"),
  4952. default: true
  4953. },
  4954. {
  4955. name: "Megamacro",
  4956. height: math.unit(278e6, "meter")
  4957. },
  4958. {
  4959. name: "Gigamacro",
  4960. height: math.unit(2e9, "meter")
  4961. },
  4962. {
  4963. name: "Teramacro",
  4964. height: math.unit(8e12, "meter")
  4965. },
  4966. {
  4967. name: "Devourer",
  4968. height: math.unit(14, "zettameters")
  4969. },
  4970. {
  4971. name: "Scarlet King",
  4972. height: math.unit(18, "yottameters")
  4973. },
  4974. {
  4975. name: "Void",
  4976. height: math.unit(1e88, "yottameters")
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4982. {
  4983. standing: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(180, "lbs"),
  4986. name: "Standing",
  4987. image: {
  4988. source: "./media/characters/zaakira/standing.svg",
  4989. extra: 1599/1504,
  4990. bottom: 39/1638
  4991. }
  4992. },
  4993. laying: {
  4994. height: math.unit(3, "feet"),
  4995. weight: math.unit(180, "lbs"),
  4996. name: "Laying",
  4997. image: {
  4998. source: "./media/characters/zaakira/laying.svg"
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(12, "feet")
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(279, "feet"),
  5010. default: true
  5011. }
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5016. {
  5017. femSfw: {
  5018. height: math.unit(8, "feet"),
  5019. weight: math.unit(350, "lb"),
  5020. name: "Fem",
  5021. image: {
  5022. source: "./media/characters/sigvald/fem-sfw.svg",
  5023. extra: 182 / 164,
  5024. bottom: 8.7 / 190.5
  5025. }
  5026. },
  5027. femNsfw: {
  5028. height: math.unit(8, "feet"),
  5029. weight: math.unit(350, "lb"),
  5030. name: "Fem (NSFW)",
  5031. image: {
  5032. source: "./media/characters/sigvald/fem-nsfw.svg",
  5033. extra: 182 / 164,
  5034. bottom: 8.7 / 190.5
  5035. }
  5036. },
  5037. maleNsfw: {
  5038. height: math.unit(8, "feet"),
  5039. weight: math.unit(350, "lb"),
  5040. name: "Male (NSFW)",
  5041. image: {
  5042. source: "./media/characters/sigvald/male-nsfw.svg",
  5043. extra: 182 / 164,
  5044. bottom: 8.7 / 190.5
  5045. }
  5046. },
  5047. hermNsfw: {
  5048. height: math.unit(8, "feet"),
  5049. weight: math.unit(350, "lb"),
  5050. name: "Herm (NSFW)",
  5051. image: {
  5052. source: "./media/characters/sigvald/herm-nsfw.svg",
  5053. extra: 182 / 164,
  5054. bottom: 8.7 / 190.5
  5055. }
  5056. },
  5057. dick: {
  5058. height: math.unit(2.36, "feet"),
  5059. name: "Dick",
  5060. image: {
  5061. source: "./media/characters/sigvald/dick.svg"
  5062. }
  5063. },
  5064. eye: {
  5065. height: math.unit(0.31, "feet"),
  5066. name: "Eye",
  5067. image: {
  5068. source: "./media/characters/sigvald/eye.svg"
  5069. }
  5070. },
  5071. mouth: {
  5072. height: math.unit(0.92, "feet"),
  5073. name: "Mouth",
  5074. image: {
  5075. source: "./media/characters/sigvald/mouth.svg"
  5076. }
  5077. },
  5078. paws: {
  5079. height: math.unit(2.2, "feet"),
  5080. name: "Paws",
  5081. image: {
  5082. source: "./media/characters/sigvald/paws.svg"
  5083. }
  5084. }
  5085. },
  5086. [
  5087. {
  5088. name: "Normal",
  5089. height: math.unit(8, "feet")
  5090. },
  5091. {
  5092. name: "Large",
  5093. height: math.unit(12, "feet")
  5094. },
  5095. {
  5096. name: "Larger",
  5097. height: math.unit(20, "feet")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(150, "feet")
  5102. },
  5103. {
  5104. name: "Macro+",
  5105. height: math.unit(200, "feet"),
  5106. default: true
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5112. {
  5113. side: {
  5114. height: math.unit(12, "feet"),
  5115. weight: math.unit(2000, "kg"),
  5116. name: "Side",
  5117. image: {
  5118. source: "./media/characters/scott/side.svg",
  5119. extra: 754 / 724,
  5120. bottom: 0.069
  5121. }
  5122. },
  5123. upright: {
  5124. height: math.unit(12, "feet"),
  5125. weight: math.unit(2000, "kg"),
  5126. name: "Upright",
  5127. image: {
  5128. source: "./media/characters/scott/upright.svg",
  5129. extra: 3881 / 3722,
  5130. bottom: 0.05
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(12, "feet"),
  5138. default: true
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5144. {
  5145. side: {
  5146. height: math.unit(8, "meters"),
  5147. weight: math.unit(84755, "lbs"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/tobias/side.svg",
  5151. extra: 1474 / 1096,
  5152. bottom: 38.9 / 1513.1235
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(8, "meters"),
  5160. default: true
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5166. {
  5167. front: {
  5168. height: math.unit(5.5, "feet"),
  5169. weight: math.unit(400, "lbs"),
  5170. name: "Front",
  5171. image: {
  5172. source: "./media/characters/kieran/front.svg",
  5173. extra: 2694 / 2364,
  5174. bottom: 217 / 2908
  5175. }
  5176. },
  5177. side: {
  5178. height: math.unit(5.5, "feet"),
  5179. weight: math.unit(400, "lbs"),
  5180. name: "Side",
  5181. image: {
  5182. source: "./media/characters/kieran/side.svg",
  5183. extra: 875 / 777,
  5184. bottom: 84.6 / 959
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(5.5, "feet"),
  5192. default: true
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5198. {
  5199. side: {
  5200. height: math.unit(2, "meters"),
  5201. weight: math.unit(70, "kg"),
  5202. name: "Side",
  5203. image: {
  5204. source: "./media/characters/sanya/side.svg",
  5205. bottom: 0.02,
  5206. extra: 1.02
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Small",
  5213. height: math.unit(2, "meters")
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(3, "meters")
  5218. },
  5219. {
  5220. name: "Macro",
  5221. height: math.unit(16, "meters"),
  5222. default: true
  5223. },
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5228. {
  5229. front: {
  5230. height: math.unit(2, "meters"),
  5231. weight: math.unit(120, "kg"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/miranda/front.svg",
  5235. extra: 195 / 185,
  5236. bottom: 10.9 / 206.5
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(2, "meters"),
  5241. weight: math.unit(120, "kg"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/miranda/back.svg",
  5245. extra: 201 / 193,
  5246. bottom: 2.3 / 203.7
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Normal",
  5253. height: math.unit(10, "feet"),
  5254. default: true
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "James", species: ["deer"], tags: ["anthro"] },
  5260. {
  5261. side: {
  5262. height: math.unit(2, "meters"),
  5263. weight: math.unit(100, "kg"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/james/front.svg",
  5267. extra: 10 / 8.5
  5268. }
  5269. },
  5270. },
  5271. [
  5272. {
  5273. name: "Normal",
  5274. height: math.unit(8.5, "feet"),
  5275. default: true
  5276. }
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5281. {
  5282. side: {
  5283. height: math.unit(9.5, "feet"),
  5284. weight: math.unit(2500, "lbs"),
  5285. name: "Side",
  5286. image: {
  5287. source: "./media/characters/heather/side.svg"
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(9.5, "feet"),
  5295. default: true
  5296. }
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5301. {
  5302. side: {
  5303. height: math.unit(6.5, "feet"),
  5304. weight: math.unit(400, "lbs"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/lukas/side.svg",
  5308. extra: 7.25 / 6.5
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(6.5, "feet"),
  5316. default: true
  5317. }
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5322. {
  5323. side: {
  5324. height: math.unit(5, "feet"),
  5325. weight: math.unit(3000, "lbs"),
  5326. name: "Side",
  5327. image: {
  5328. source: "./media/characters/louise/side.svg"
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(5, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5342. {
  5343. side: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(150, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/ramona/side.svg",
  5349. extra: 871/854,
  5350. bottom: 41/912
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5.3, "meters"),
  5358. default: true
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(20, "stories")
  5363. },
  5364. {
  5365. name: "Macro+",
  5366. height: math.unit(50, "stories")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5372. {
  5373. standing: {
  5374. height: math.unit(5.75, "feet"),
  5375. weight: math.unit(160, "lbs"),
  5376. name: "Standing",
  5377. image: {
  5378. source: "./media/characters/deerpuff/standing.svg",
  5379. extra: 682 / 624
  5380. }
  5381. },
  5382. sitting: {
  5383. height: math.unit(5.75 / 1.79, "feet"),
  5384. weight: math.unit(160, "lbs"),
  5385. name: "Sitting",
  5386. image: {
  5387. source: "./media/characters/deerpuff/sitting.svg",
  5388. bottom: 44 / 400,
  5389. extra: 1
  5390. }
  5391. },
  5392. taurLaying: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(400, "lbs"),
  5395. name: "Taur (Laying)",
  5396. image: {
  5397. source: "./media/characters/deerpuff/taur-laying.svg"
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Puffball",
  5404. height: math.unit(6, "inches")
  5405. },
  5406. {
  5407. name: "Normalpuff",
  5408. height: math.unit(5.75, "feet")
  5409. },
  5410. {
  5411. name: "Macropuff",
  5412. height: math.unit(1500, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "Megapuff",
  5417. height: math.unit(500, "miles")
  5418. },
  5419. {
  5420. name: "Gigapuff",
  5421. height: math.unit(250000, "miles")
  5422. },
  5423. {
  5424. name: "Omegapuff",
  5425. height: math.unit(1000, "lightyears")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5431. {
  5432. stomping: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Stomping",
  5436. image: {
  5437. source: "./media/characters/vivian/stomping.svg"
  5438. }
  5439. },
  5440. sitting: {
  5441. height: math.unit(6 / 1.75, "feet"),
  5442. weight: math.unit(170, "lbs"),
  5443. name: "Sitting",
  5444. image: {
  5445. source: "./media/characters/vivian/sitting.svg",
  5446. bottom: 1 / 6.4,
  5447. extra: 1,
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(7, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(10, "stories")
  5460. },
  5461. {
  5462. name: "Macro+",
  5463. height: math.unit(30, "stories")
  5464. },
  5465. {
  5466. name: "Megamacro",
  5467. height: math.unit(10, "miles")
  5468. },
  5469. {
  5470. name: "Megamacro+",
  5471. height: math.unit(2750000, "meters")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(160, "lbs"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/prince/front.svg",
  5484. extra: 3400 / 3000
  5485. }
  5486. },
  5487. jumping: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(160, "lbs"),
  5490. name: "Jumping",
  5491. image: {
  5492. source: "./media/characters/prince/jump.svg",
  5493. extra: 2555 / 2134
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(7.75, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Not cute",
  5505. height: math.unit(17, "feet")
  5506. },
  5507. {
  5508. name: "I said NOT",
  5509. height: math.unit(91, "feet")
  5510. },
  5511. {
  5512. name: "Please stop",
  5513. height: math.unit(560, "feet")
  5514. },
  5515. {
  5516. name: "What have you done",
  5517. height: math.unit(2200, "feet")
  5518. },
  5519. {
  5520. name: "Deer God",
  5521. height: math.unit(3.6, "miles")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5527. {
  5528. standing: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(300, "lbs"),
  5531. name: "Standing",
  5532. image: {
  5533. source: "./media/characters/psymon/standing.svg",
  5534. extra: 1888 / 1810,
  5535. bottom: 0.05
  5536. }
  5537. },
  5538. slithering: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(300, "lbs"),
  5541. name: "Slithering",
  5542. image: {
  5543. source: "./media/characters/psymon/slithering.svg",
  5544. extra: 1330 / 1224
  5545. }
  5546. },
  5547. slitheringAlt: {
  5548. height: math.unit(6, "feet"),
  5549. weight: math.unit(300, "lbs"),
  5550. name: "Slithering (Alt)",
  5551. image: {
  5552. source: "./media/characters/psymon/slithering-alt.svg",
  5553. extra: 1330 / 1224
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(11.25, "feet"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Large",
  5565. height: math.unit(27, "feet")
  5566. },
  5567. {
  5568. name: "Giant",
  5569. height: math.unit(87, "feet")
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(365, "feet")
  5574. },
  5575. {
  5576. name: "Megamacro",
  5577. height: math.unit(3, "miles")
  5578. },
  5579. {
  5580. name: "World Serpent",
  5581. height: math.unit(8000, "miles")
  5582. },
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(180, "lbs"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/daimos/front.svg",
  5594. extra: 4160 / 3897,
  5595. bottom: 0.021
  5596. }
  5597. }
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(8, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Big Dog",
  5607. height: math.unit(22, "feet")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(127, "feet")
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(3600, "feet")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5621. {
  5622. side: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(180, "lbs"),
  5625. name: "Side",
  5626. image: {
  5627. source: "./media/characters/blake/side.svg",
  5628. extra: 1212 / 1120,
  5629. bottom: 0.05
  5630. }
  5631. },
  5632. crouched: {
  5633. height: math.unit(6 * 0.57, "feet"),
  5634. weight: math.unit(180, "lbs"),
  5635. name: "Crouched",
  5636. image: {
  5637. source: "./media/characters/blake/crouched.svg",
  5638. extra: 840 / 587,
  5639. bottom: 0.04
  5640. }
  5641. },
  5642. bent: {
  5643. height: math.unit(6 * 0.75, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Bent",
  5646. image: {
  5647. source: "./media/characters/blake/bent.svg",
  5648. extra: 592 / 544,
  5649. bottom: 0.035
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(8 + 1 / 6, "feet"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Big Backside",
  5661. height: math.unit(37, "feet")
  5662. },
  5663. {
  5664. name: "Subway Shredder",
  5665. height: math.unit(72, "feet")
  5666. },
  5667. {
  5668. name: "City Carver",
  5669. height: math.unit(1675, "feet")
  5670. },
  5671. {
  5672. name: "Tectonic Tweaker",
  5673. height: math.unit(2300, "miles")
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(180, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/guisetto/front.svg",
  5686. extra: 856 / 817,
  5687. bottom: 0.06
  5688. }
  5689. },
  5690. airborne: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(180, "lbs"),
  5693. name: "Airborne",
  5694. image: {
  5695. source: "./media/characters/guisetto/airborne.svg",
  5696. extra: 584 / 525
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(10 + 11 / 12, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Large",
  5708. height: math.unit(35, "feet")
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(475, "feet")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(180, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/luxor/front.svg",
  5725. extra: 2940 / 2152
  5726. }
  5727. },
  5728. back: {
  5729. height: math.unit(6, "feet"),
  5730. weight: math.unit(180, "lbs"),
  5731. name: "Back",
  5732. image: {
  5733. source: "./media/characters/luxor/back.svg",
  5734. extra: 1083 / 960
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 5 / 6, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Lamp",
  5746. height: math.unit(50, "feet")
  5747. },
  5748. {
  5749. name: "Lämp",
  5750. height: math.unit(300, "feet")
  5751. },
  5752. {
  5753. name: "The sun is a lamp",
  5754. height: math.unit(250000, "miles")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5760. {
  5761. front: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(50, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/huoyan/front.svg"
  5767. }
  5768. },
  5769. side: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Side",
  5773. image: {
  5774. source: "./media/characters/huoyan/side.svg"
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Chef",
  5781. height: math.unit(9, "feet")
  5782. },
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(65, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(780, "feet")
  5791. },
  5792. {
  5793. name: "Flaming Mountain",
  5794. height: math.unit(4.8, "miles")
  5795. },
  5796. {
  5797. name: "Celestial",
  5798. height: math.unit(765000, "miles")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(5 + 3 / 4, "feet"),
  5807. weight: math.unit(120, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/tails/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(5 + 3 / 4, "feet"),
  5818. default: true
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(4, "feet"),
  5827. weight: math.unit(50, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/rainy/front.svg"
  5831. }
  5832. }
  5833. },
  5834. [
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(800, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(150, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rainier/front.svg"
  5851. }
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(2, "mm"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(8 + 4/12, "feet"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/andy-renard/front.svg",
  5870. extra: 1839/1726,
  5871. bottom: 134/1973
  5872. }
  5873. },
  5874. back: {
  5875. height: math.unit(8 + 4/12, "feet"),
  5876. name: "Back",
  5877. image: {
  5878. source: "./media/characters/andy-renard/back.svg",
  5879. extra: 1838/1710,
  5880. bottom: 105/1943
  5881. }
  5882. },
  5883. },
  5884. [
  5885. {
  5886. name: "Tall",
  5887. height: math.unit(8 + 4/12, "feet")
  5888. },
  5889. {
  5890. name: "Mini Macro",
  5891. height: math.unit(15, "feet"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Macro",
  5896. height: math.unit(100, "feet")
  5897. },
  5898. {
  5899. name: "Mega Macro",
  5900. height: math.unit(1000, "feet")
  5901. },
  5902. {
  5903. name: "Giga Macro",
  5904. height: math.unit(10, "miles")
  5905. },
  5906. {
  5907. name: "God Macro",
  5908. height: math.unit(1, "multiverse")
  5909. },
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5914. {
  5915. front: {
  5916. height: math.unit(6, "feet"),
  5917. weight: math.unit(210, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/cimmaron/front-sfw.svg",
  5921. extra: 701 / 676,
  5922. bottom: 0.046
  5923. }
  5924. },
  5925. back: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(210, "lbs"),
  5928. name: "Back",
  5929. image: {
  5930. source: "./media/characters/cimmaron/back-sfw.svg",
  5931. extra: 701 / 676,
  5932. bottom: 0.046
  5933. }
  5934. },
  5935. frontNsfw: {
  5936. height: math.unit(6, "feet"),
  5937. weight: math.unit(210, "lbs"),
  5938. name: "Front (NSFW)",
  5939. image: {
  5940. source: "./media/characters/cimmaron/front-nsfw.svg",
  5941. extra: 701 / 676,
  5942. bottom: 0.046
  5943. }
  5944. },
  5945. backNsfw: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(210, "lbs"),
  5948. name: "Back (NSFW)",
  5949. image: {
  5950. source: "./media/characters/cimmaron/back-nsfw.svg",
  5951. extra: 701 / 676,
  5952. bottom: 0.046
  5953. }
  5954. },
  5955. dick: {
  5956. height: math.unit(1.714, "feet"),
  5957. name: "Dick",
  5958. image: {
  5959. source: "./media/characters/cimmaron/dick.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(6, "feet"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Macro Mayor",
  5971. height: math.unit(350, "meters")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(6, "feet"),
  5980. weight: math.unit(200, "lbs"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/akari/front.svg",
  5984. extra: 962 / 901,
  5985. bottom: 0.04
  5986. }
  5987. }
  5988. },
  5989. [
  5990. {
  5991. name: "Micro",
  5992. height: math.unit(5, "inches"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Normal",
  5997. height: math.unit(7, "feet")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(140, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cynosura/front.svg",
  6010. extra: 896 / 847
  6011. }
  6012. },
  6013. back: {
  6014. height: math.unit(6, "feet"),
  6015. weight: math.unit(140, "lbs"),
  6016. name: "Back",
  6017. image: {
  6018. source: "./media/characters/cynosura/back.svg",
  6019. extra: 1365 / 1250
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(4, "inches")
  6027. },
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(5.75, "feet"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "Tall",
  6035. height: math.unit(10, "feet")
  6036. },
  6037. {
  6038. name: "Big",
  6039. height: math.unit(20, "feet")
  6040. },
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(50, "feet")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(13 + 2/12, "feet"),
  6052. weight: math.unit(800, "kg"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/gin/front.svg",
  6056. extra: 1312/1191,
  6057. bottom: 45/1357
  6058. }
  6059. },
  6060. mouth: {
  6061. height: math.unit(2.39 * 1.8, "feet"),
  6062. name: "Mouth",
  6063. image: {
  6064. source: "./media/characters/gin/mouth.svg"
  6065. }
  6066. },
  6067. hand: {
  6068. height: math.unit(1.57 * 2.19, "feet"),
  6069. name: "Hand",
  6070. image: {
  6071. source: "./media/characters/gin/hand.svg"
  6072. }
  6073. },
  6074. foot: {
  6075. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6076. name: "Foot",
  6077. image: {
  6078. source: "./media/characters/gin/foot.svg"
  6079. }
  6080. },
  6081. sole: {
  6082. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6083. name: "Sole",
  6084. image: {
  6085. source: "./media/characters/gin/sole.svg"
  6086. }
  6087. },
  6088. },
  6089. [
  6090. {
  6091. name: "Very Small",
  6092. height: math.unit(13 + 2 / 12, "feet")
  6093. },
  6094. {
  6095. name: "Micro",
  6096. height: math.unit(600, "miles")
  6097. },
  6098. {
  6099. name: "Regular",
  6100. height: math.unit(20, "earths"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(2.2, "solarradii")
  6106. },
  6107. {
  6108. name: "Teramacro",
  6109. height: math.unit(1.2, "galaxies")
  6110. },
  6111. {
  6112. name: "Omegamacro",
  6113. height: math.unit(200, "universes")
  6114. },
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(6 + 1 / 6, "feet"),
  6122. weight: math.unit(178, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/guy/front.svg"
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Normal",
  6132. height: math.unit(6 + 1 / 6, "feet"),
  6133. default: true
  6134. },
  6135. {
  6136. name: "Large",
  6137. height: math.unit(25 + 7 / 12, "feet")
  6138. },
  6139. {
  6140. name: "Macro",
  6141. height: math.unit(60 + 9 / 12, "feet")
  6142. },
  6143. {
  6144. name: "Macro+",
  6145. height: math.unit(246, "feet")
  6146. },
  6147. {
  6148. name: "Macro++",
  6149. height: math.unit(878, "feet")
  6150. }
  6151. ]
  6152. ))
  6153. characterMakers.push(() => makeCharacter(
  6154. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6155. {
  6156. front: {
  6157. height: math.unit(9, "feet"),
  6158. weight: math.unit(800, "lbs"),
  6159. name: "Front",
  6160. image: {
  6161. source: "./media/characters/tiberius/front.svg",
  6162. extra: 2295 / 2071
  6163. }
  6164. },
  6165. back: {
  6166. height: math.unit(9, "feet"),
  6167. weight: math.unit(800, "lbs"),
  6168. name: "Back",
  6169. image: {
  6170. source: "./media/characters/tiberius/back.svg",
  6171. extra: 2373 / 2160
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(9, "feet"),
  6179. default: true
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6185. {
  6186. front: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(600, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/surgo/front.svg",
  6192. extra: 3591 / 2227
  6193. }
  6194. },
  6195. back: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(600, "lbs"),
  6198. name: "Back",
  6199. image: {
  6200. source: "./media/characters/surgo/back.svg",
  6201. extra: 3557 / 2228
  6202. }
  6203. },
  6204. laying: {
  6205. height: math.unit(6 * 0.85, "feet"),
  6206. weight: math.unit(600, "lbs"),
  6207. name: "Laying",
  6208. image: {
  6209. source: "./media/characters/surgo/laying.svg"
  6210. }
  6211. },
  6212. },
  6213. [
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(6, "feet"),
  6217. default: true
  6218. }
  6219. ]
  6220. ))
  6221. characterMakers.push(() => makeCharacter(
  6222. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6223. {
  6224. side: {
  6225. height: math.unit(6, "feet"),
  6226. weight: math.unit(150, "lbs"),
  6227. name: "Side",
  6228. image: {
  6229. source: "./media/characters/cibus/side.svg",
  6230. extra: 800 / 400
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Normal",
  6237. height: math.unit(6, "feet"),
  6238. default: true
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/nibbles/front.svg"
  6251. }
  6252. },
  6253. side: {
  6254. height: math.unit(6, "feet"),
  6255. weight: math.unit(240, "lbs"),
  6256. name: "Side",
  6257. image: {
  6258. source: "./media/characters/nibbles/side.svg"
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(9, "feet"),
  6266. default: true
  6267. }
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6272. {
  6273. side: {
  6274. height: math.unit(5 + 1 / 6, "feet"),
  6275. weight: math.unit(130, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/rikky/side.svg",
  6279. extra: 851 / 801
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5 + 1 / 6, "feet")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(152, "feet"),
  6291. default: true
  6292. },
  6293. {
  6294. name: "Megamacro",
  6295. height: math.unit(7, "miles")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6301. {
  6302. side: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Side",
  6306. image: {
  6307. source: "./media/characters/malfressa/side.svg"
  6308. }
  6309. },
  6310. walking: {
  6311. height: math.unit(370, "cm"),
  6312. weight: math.unit(350, "lbs"),
  6313. name: "Walking",
  6314. image: {
  6315. source: "./media/characters/malfressa/walking.svg"
  6316. }
  6317. },
  6318. feral: {
  6319. height: math.unit(2500, "cm"),
  6320. weight: math.unit(100000, "lbs"),
  6321. name: "Feral",
  6322. image: {
  6323. source: "./media/characters/malfressa/feral.svg",
  6324. extra: 2108 / 837,
  6325. bottom: 0.02
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(370, "cm")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(300, "meters"),
  6337. default: true
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(60, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/jaro/front.svg",
  6350. extra: 845/817,
  6351. bottom: 45/890
  6352. }
  6353. },
  6354. back: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(60, "kg"),
  6357. name: "Back",
  6358. image: {
  6359. source: "./media/characters/jaro/back.svg",
  6360. extra: 847/817,
  6361. bottom: 34/881
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Micro",
  6368. height: math.unit(7, "inches")
  6369. },
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(5.5, "feet"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Minimacro",
  6377. height: math.unit(20, "feet")
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(200, "meters")
  6382. }
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6387. {
  6388. front: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(195, "lb"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/rogue/front.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(90, "feet"),
  6401. default: true
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(5 + 8 / 12, "feet"),
  6410. weight: math.unit(140, "lb"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/piper/front.svg",
  6414. extra: 3948/3655,
  6415. bottom: 0/3948
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Micro",
  6422. height: math.unit(2, "inches")
  6423. },
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(5 + 8 / 12, "feet")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(250, "feet"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(7, "miles")
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(220, "lb"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/gemini/front.svg"
  6448. }
  6449. },
  6450. back: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(220, "lb"),
  6453. name: "Back",
  6454. image: {
  6455. source: "./media/characters/gemini/back.svg"
  6456. }
  6457. },
  6458. kneeling: {
  6459. height: math.unit(6 / 1.5, "feet"),
  6460. weight: math.unit(220, "lb"),
  6461. name: "Kneeling",
  6462. image: {
  6463. source: "./media/characters/gemini/kneeling.svg",
  6464. bottom: 0.02
  6465. }
  6466. },
  6467. },
  6468. [
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(300, "meters"),
  6472. default: true
  6473. },
  6474. {
  6475. name: "Megamacro",
  6476. height: math.unit(6900, "meters")
  6477. },
  6478. ]
  6479. ))
  6480. characterMakers.push(() => makeCharacter(
  6481. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6482. {
  6483. anthro: {
  6484. height: math.unit(2.35, "meters"),
  6485. weight: math.unit(73, "kg"),
  6486. name: "Anthro",
  6487. image: {
  6488. source: "./media/characters/alicia/anthro.svg",
  6489. extra: 2571 / 2385,
  6490. bottom: 75 / 2648
  6491. }
  6492. },
  6493. paw: {
  6494. height: math.unit(1.32, "feet"),
  6495. name: "Paw",
  6496. image: {
  6497. source: "./media/characters/alicia/paw.svg"
  6498. }
  6499. },
  6500. feral: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(73, "kg"),
  6503. name: "Feral",
  6504. image: {
  6505. source: "./media/characters/alicia/feral.svg",
  6506. extra: 2123 / 1715,
  6507. bottom: 222 / 2349
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(2.35, "meters")
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(60, "meters"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(10000, "kilometers")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(7, "feet"),
  6532. weight: math.unit(250, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/archy/front.svg"
  6536. }
  6537. }
  6538. },
  6539. [
  6540. {
  6541. name: "Micro",
  6542. height: math.unit(1, "inch")
  6543. },
  6544. {
  6545. name: "Shorty",
  6546. height: math.unit(5, "feet")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(7, "feet")
  6551. },
  6552. {
  6553. name: "Macro",
  6554. height: math.unit(600, "meters"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Megamacro",
  6559. height: math.unit(1, "mile")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(1.65, "meters"),
  6568. weight: math.unit(74, "kg"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/berri/front.svg",
  6572. extra: 857 / 837,
  6573. bottom: 18 / 877
  6574. }
  6575. },
  6576. bum: {
  6577. height: math.unit(1.46, "feet"),
  6578. name: "Bum",
  6579. image: {
  6580. source: "./media/characters/berri/bum.svg"
  6581. }
  6582. },
  6583. mouth: {
  6584. height: math.unit(0.44, "feet"),
  6585. name: "Mouth",
  6586. image: {
  6587. source: "./media/characters/berri/mouth.svg"
  6588. }
  6589. },
  6590. paw: {
  6591. height: math.unit(0.826, "feet"),
  6592. name: "Paw",
  6593. image: {
  6594. source: "./media/characters/berri/paw.svg"
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(1.65, "meters")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(60, "m"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Megamacro",
  6610. height: math.unit(9.213, "km")
  6611. },
  6612. {
  6613. name: "Planet Eater",
  6614. height: math.unit(489, "megameters")
  6615. },
  6616. {
  6617. name: "Teramacro",
  6618. height: math.unit(2471635000000, "meters")
  6619. },
  6620. {
  6621. name: "Examacro",
  6622. height: math.unit(8.0624e+26, "meters")
  6623. }
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(1.72, "meters"),
  6631. weight: math.unit(68, "kg"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/lexi/front.svg"
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Very Smol",
  6641. height: math.unit(10, "mm")
  6642. },
  6643. {
  6644. name: "Micro",
  6645. height: math.unit(6.8, "cm"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.72, "m")
  6651. }
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(1.69, "meters"),
  6659. weight: math.unit(68, "kg"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/martin/front.svg",
  6663. extra: 596 / 581
  6664. }
  6665. }
  6666. },
  6667. [
  6668. {
  6669. name: "Micro",
  6670. height: math.unit(6.85, "cm"),
  6671. default: true
  6672. },
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(1.69, "m")
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.69, "meters"),
  6684. weight: math.unit(68, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/juno/front.svg"
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(7, "cm")
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.89, "m")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(353, "meters"),
  6703. default: true
  6704. }
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(1.93, "meters"),
  6712. weight: math.unit(83, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/samantha/front.svg"
  6716. }
  6717. },
  6718. frontClothed: {
  6719. height: math.unit(1.93, "meters"),
  6720. weight: math.unit(83, "kg"),
  6721. name: "Front (Clothed)",
  6722. image: {
  6723. source: "./media/characters/samantha/front-clothed.svg"
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(1.93, "meters"),
  6728. weight: math.unit(83, "kg"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/samantha/back.svg"
  6732. }
  6733. },
  6734. },
  6735. [
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(1.93, "m")
  6739. },
  6740. {
  6741. name: "Macro",
  6742. height: math.unit(74, "meters"),
  6743. default: true
  6744. },
  6745. {
  6746. name: "Macro+",
  6747. height: math.unit(223, "meters"),
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(8381, "meters"),
  6752. },
  6753. {
  6754. name: "Megamacro+",
  6755. height: math.unit(12000, "kilometers")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.92, "meters"),
  6764. weight: math.unit(80, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/dr-clay/front.svg"
  6768. }
  6769. },
  6770. frontClothed: {
  6771. height: math.unit(1.92, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front (Clothed)",
  6774. image: {
  6775. source: "./media/characters/dr-clay/front-clothed.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Normal",
  6782. height: math.unit(1.92, "m")
  6783. },
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(214, "meters"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Macro+",
  6791. height: math.unit(12.237, "meters"),
  6792. },
  6793. {
  6794. name: "Megamacro",
  6795. height: math.unit(557, "megameters"),
  6796. },
  6797. {
  6798. name: "Unimaginable",
  6799. height: math.unit(120e9, "lightyears")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(2, "meters"),
  6808. weight: math.unit(80, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Teramacro",
  6818. height: math.unit(500000, "lightyears"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6825. {
  6826. crux: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(150, "kg"),
  6829. name: "Crux",
  6830. image: {
  6831. source: "./media/characters/vemus/crux.svg",
  6832. extra: 1074/936,
  6833. bottom: 23/1097
  6834. }
  6835. },
  6836. skunkTanuki: {
  6837. height: math.unit(2, "meters"),
  6838. weight: math.unit(150, "kg"),
  6839. name: "Skunk-Tanuki",
  6840. image: {
  6841. source: "./media/characters/vemus/skunk-tanuki.svg",
  6842. extra: 926/893,
  6843. bottom: 20/946
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(3.75, "meters"),
  6851. default: true
  6852. },
  6853. {
  6854. name: "Big",
  6855. height: math.unit(8, "meters")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(100, "meters")
  6860. },
  6861. {
  6862. name: "Macro+",
  6863. height: math.unit(1500, "meters")
  6864. },
  6865. {
  6866. name: "Stellar",
  6867. height: math.unit(14e8, "meters")
  6868. },
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(2, "meters"),
  6876. weight: math.unit(70, "kg"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/beherit/front.svg",
  6880. extra: 1234/1109,
  6881. bottom: 55/1289
  6882. }
  6883. }
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(6, "feet")
  6889. },
  6890. {
  6891. name: "Lorg",
  6892. height: math.unit(25, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Lorger",
  6897. height: math.unit(75, "feet")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(200, "meters")
  6902. },
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(2, "meters"),
  6910. weight: math.unit(150, "kg"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/everett/front.svg",
  6914. extra: 1017/866,
  6915. bottom: 86/1103
  6916. }
  6917. },
  6918. paw: {
  6919. height: math.unit(2 / 3.6, "meters"),
  6920. name: "Paw",
  6921. image: {
  6922. source: "./media/characters/everett/paw.svg"
  6923. }
  6924. },
  6925. },
  6926. [
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(15, "feet"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Lorg",
  6934. height: math.unit(70, "feet"),
  6935. default: true
  6936. },
  6937. {
  6938. name: "Lorger",
  6939. height: math.unit(250, "feet")
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(500, "meters")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(86, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rose/front.svg",
  6956. extra: 1785/1636,
  6957. bottom: 30/1815
  6958. }
  6959. },
  6960. frontSporty: {
  6961. height: math.unit(2, "meters"),
  6962. weight: math.unit(86, "kg"),
  6963. name: "Front (Sporty)",
  6964. image: {
  6965. source: "./media/characters/rose/front-sporty.svg",
  6966. extra: 350/335,
  6967. bottom: 10/360
  6968. }
  6969. },
  6970. frontAlt: {
  6971. height: math.unit(1.6, "meters"),
  6972. weight: math.unit(86, "kg"),
  6973. name: "Front (Alt)",
  6974. image: {
  6975. source: "./media/characters/rose/front-alt.svg",
  6976. extra: 299/283,
  6977. bottom: 3/302
  6978. }
  6979. },
  6980. plush: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(86/3, "kg"),
  6983. name: "Plush",
  6984. image: {
  6985. source: "./media/characters/rose/plush.svg",
  6986. extra: 361/337,
  6987. bottom: 11/372
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "True Micro",
  6994. height: math.unit(9, "cm")
  6995. },
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(16, "cm")
  6999. },
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(1.85, "meters"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Mini-Macro",
  7007. height: math.unit(5, "meters")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(15, "meters")
  7012. },
  7013. {
  7014. name: "True Macro",
  7015. height: math.unit(40, "meters")
  7016. },
  7017. {
  7018. name: "City Scale",
  7019. height: math.unit(1, "km")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(2, "meters"),
  7028. weight: math.unit(350, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/regal/front.svg"
  7032. }
  7033. },
  7034. back: {
  7035. height: math.unit(2, "meters"),
  7036. weight: math.unit(350, "lbs"),
  7037. name: "Back",
  7038. image: {
  7039. source: "./media/characters/regal/back.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(350, "feet"),
  7047. default: true
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(4 + 11 / 12, "feet"),
  7056. weight: math.unit(100, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/opal/front.svg"
  7060. }
  7061. },
  7062. frontAlt: {
  7063. height: math.unit(4 + 11 / 12, "feet"),
  7064. weight: math.unit(100, "lbs"),
  7065. name: "Front (Alt)",
  7066. image: {
  7067. source: "./media/characters/opal/front-alt.svg"
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Small",
  7074. height: math.unit(4 + 11 / 12, "feet")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(20, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(120, "feet")
  7084. },
  7085. {
  7086. name: "Megamacro",
  7087. height: math.unit(80, "miles")
  7088. },
  7089. {
  7090. name: "True Size",
  7091. height: math.unit(100000, "lightyears")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(200, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/vector-wuff/front.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(2.8, "meters")
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(450, "meters"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Megamacro",
  7119. height: math.unit(15, "kilometers")
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(256, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/dannik/front.svg"
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(69.57, "meters"),
  7139. default: true
  7140. },
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(120, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/azura-saharah/front.svg"
  7152. }
  7153. },
  7154. back: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(120, "lbs"),
  7157. name: "Back",
  7158. image: {
  7159. source: "./media/characters/azura-saharah/back.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Macro",
  7166. height: math.unit(100, "feet"),
  7167. default: true
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7173. {
  7174. side: {
  7175. height: math.unit(5 + 4 / 12, "feet"),
  7176. weight: math.unit(163, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/kennedy/side.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Standard Doggo",
  7186. height: math.unit(5 + 4 / 12, "feet")
  7187. },
  7188. {
  7189. name: "Big Doggo",
  7190. height: math.unit(25 + 3 / 12, "feet"),
  7191. default: true
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(5 + 5/12, "feet"),
  7200. weight: math.unit(100, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/odios-de-lunar/front.svg",
  7204. extra: 1468/1323,
  7205. bottom: 22/1490
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Micro",
  7212. height: math.unit(3, "inches")
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(5.5, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(100, "feet")
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7227. {
  7228. back: {
  7229. height: math.unit(6, "feet"),
  7230. weight: math.unit(220, "lbs"),
  7231. name: "Back",
  7232. image: {
  7233. source: "./media/characters/mandake/back.svg"
  7234. }
  7235. }
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(7, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(78, "feet")
  7246. },
  7247. {
  7248. name: "Macro+",
  7249. height: math.unit(300, "meters")
  7250. },
  7251. {
  7252. name: "Macro++",
  7253. height: math.unit(2400, "feet")
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(5167, "meters")
  7258. },
  7259. {
  7260. name: "Gigamacro",
  7261. height: math.unit(41769, "miles")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(120, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/yozey/front.svg"
  7274. }
  7275. },
  7276. frontAlt: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(120, "lbs"),
  7279. name: "Front (Alt)",
  7280. image: {
  7281. source: "./media/characters/yozey/front-alt.svg"
  7282. }
  7283. },
  7284. side: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Side",
  7288. image: {
  7289. source: "./media/characters/yozey/side.svg"
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Micro",
  7296. height: math.unit(3, "inches"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(6, "feet")
  7302. }
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7307. {
  7308. front: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(103, "lbs"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/valeska-voss/front.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Mini-Sized Sub",
  7320. height: math.unit(3.1, "inches")
  7321. },
  7322. {
  7323. name: "Mid-Sized Sub",
  7324. height: math.unit(6.2, "inches")
  7325. },
  7326. {
  7327. name: "Full-Sized Sub",
  7328. height: math.unit(9.3, "inches")
  7329. },
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(5 + 2 / 12, "foot"),
  7333. default: true
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(6, "feet"),
  7342. weight: math.unit(160, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/gene-zeta/front.svg",
  7346. extra: 3006 / 2826,
  7347. bottom: 182 / 3188
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(6, "inches")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5 + 11 / 12, "foot"),
  7359. default: true
  7360. },
  7361. {
  7362. name: "Macro",
  7363. height: math.unit(140, "feet")
  7364. },
  7365. {
  7366. name: "Supercharged",
  7367. height: math.unit(2500, "feet")
  7368. },
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(350, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/razinox/front.svg",
  7380. extra: 1686 / 1548,
  7381. bottom: 28.2 / 1868
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(350, "lbs"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/razinox/back.svg",
  7390. extra: 1660 / 1590,
  7391. bottom: 15 / 1665
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Normal",
  7398. height: math.unit(10 + 8 / 12, "foot")
  7399. },
  7400. {
  7401. name: "Minimacro",
  7402. height: math.unit(15, "foot")
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(60, "foot"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Megamacro",
  7411. height: math.unit(5, "miles")
  7412. },
  7413. {
  7414. name: "Gigamacro",
  7415. height: math.unit(6000, "miles")
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(6, "feet"),
  7424. weight: math.unit(150, "lbs"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/cobalt/front.svg"
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Normal",
  7434. height: math.unit(8 + 1 / 12, "foot")
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(111, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Supracosmic",
  7443. height: math.unit(1e42, "feet")
  7444. },
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(140, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/amanda/front.svg"
  7456. }
  7457. }
  7458. },
  7459. [
  7460. {
  7461. name: "Micro",
  7462. height: math.unit(5, "inches"),
  7463. default: true
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(2.75, "meters"),
  7472. weight: math.unit(1200, "lb"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/teal/front.svg",
  7476. extra: 2463 / 2320,
  7477. bottom: 166 / 2629
  7478. }
  7479. },
  7480. back: {
  7481. height: math.unit(2.75, "meters"),
  7482. weight: math.unit(1200, "lb"),
  7483. name: "Back",
  7484. image: {
  7485. source: "./media/characters/teal/back.svg",
  7486. extra: 2580 / 2489,
  7487. bottom: 151 / 2731
  7488. }
  7489. },
  7490. sitting: {
  7491. height: math.unit(1.9, "meters"),
  7492. weight: math.unit(1200, "lb"),
  7493. name: "Sitting",
  7494. image: {
  7495. source: "./media/characters/teal/sitting.svg",
  7496. extra: 623 / 590,
  7497. bottom: 121 / 744
  7498. }
  7499. },
  7500. standing: {
  7501. height: math.unit(2.75, "meters"),
  7502. weight: math.unit(1200, "lb"),
  7503. name: "Standing",
  7504. image: {
  7505. source: "./media/characters/teal/standing.svg",
  7506. extra: 923 / 893,
  7507. bottom: 60 / 983
  7508. }
  7509. },
  7510. stretching: {
  7511. height: math.unit(3.65, "meters"),
  7512. weight: math.unit(1200, "lb"),
  7513. name: "Stretching",
  7514. image: {
  7515. source: "./media/characters/teal/stretching.svg",
  7516. extra: 1276 / 1244,
  7517. bottom: 0 / 1276
  7518. }
  7519. },
  7520. legged: {
  7521. height: math.unit(1.3, "meters"),
  7522. weight: math.unit(100, "lb"),
  7523. name: "Legged",
  7524. image: {
  7525. source: "./media/characters/teal/legged.svg",
  7526. extra: 462 / 437,
  7527. bottom: 24 / 486
  7528. }
  7529. },
  7530. naga: {
  7531. height: math.unit(5.4, "meters"),
  7532. weight: math.unit(4000, "lb"),
  7533. name: "Naga",
  7534. image: {
  7535. source: "./media/characters/teal/naga.svg",
  7536. extra: 1902 / 1858,
  7537. bottom: 0 / 1902
  7538. }
  7539. },
  7540. hand: {
  7541. height: math.unit(0.52, "meters"),
  7542. name: "Hand",
  7543. image: {
  7544. source: "./media/characters/teal/hand.svg"
  7545. }
  7546. },
  7547. maw: {
  7548. height: math.unit(0.43, "meters"),
  7549. name: "Maw",
  7550. image: {
  7551. source: "./media/characters/teal/maw.svg"
  7552. }
  7553. },
  7554. slit: {
  7555. height: math.unit(0.25, "meters"),
  7556. name: "Slit",
  7557. image: {
  7558. source: "./media/characters/teal/slit.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(2.75, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(300, "feet")
  7571. },
  7572. {
  7573. name: "Macro+",
  7574. height: math.unit(2000, "feet")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7580. {
  7581. frontCat: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(180, "lbs"),
  7584. name: "Front (Cat)",
  7585. image: {
  7586. source: "./media/characters/ravin-amulet/front-cat.svg"
  7587. }
  7588. },
  7589. frontCatAlt: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(180, "lbs"),
  7592. name: "Front (Alt, Cat)",
  7593. image: {
  7594. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7595. }
  7596. },
  7597. frontWerewolf: {
  7598. height: math.unit(6 * 1.2, "feet"),
  7599. weight: math.unit(225, "lbs"),
  7600. name: "Front (Werewolf)",
  7601. image: {
  7602. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7603. }
  7604. },
  7605. backWerewolf: {
  7606. height: math.unit(6 * 1.2, "feet"),
  7607. weight: math.unit(225, "lbs"),
  7608. name: "Back (Werewolf)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Nano",
  7617. height: math.unit(1, "micrometer")
  7618. },
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(1, "inch")
  7622. },
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(6, "feet"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Macro",
  7630. height: math.unit(60, "feet")
  7631. }
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(165, "lbs"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/fluoresce/front.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(6, "cm")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(5 + 7 / 12, "feet"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(56, "feet")
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(1.9, "miles")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(9 + 6 / 12, "feet"),
  7671. weight: math.unit(523, "lbs"),
  7672. name: "Side",
  7673. image: {
  7674. source: "./media/characters/aurora/side.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(9 + 6 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(96, "feet"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Macro+",
  7690. height: math.unit(243, "feet")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(194, "cm"),
  7699. weight: math.unit(90, "kg"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/ranek/front.svg"
  7703. }
  7704. },
  7705. side: {
  7706. height: math.unit(194, "cm"),
  7707. weight: math.unit(90, "kg"),
  7708. name: "Side",
  7709. image: {
  7710. source: "./media/characters/ranek/side.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(194, "cm"),
  7715. weight: math.unit(90, "kg"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/ranek/back.svg"
  7719. }
  7720. },
  7721. feral: {
  7722. height: math.unit(30, "cm"),
  7723. weight: math.unit(1.6, "lbs"),
  7724. name: "Feral",
  7725. image: {
  7726. source: "./media/characters/ranek/feral.svg"
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(194, "cm"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(100, "meters")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(5 + 6 / 12, "feet"),
  7747. weight: math.unit(153, "lbs"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/andrew-cooper/front.svg"
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Nano",
  7757. height: math.unit(1, "mm")
  7758. },
  7759. {
  7760. name: "Micro",
  7761. height: math.unit(2, "inches")
  7762. },
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(5 + 6 / 12, "feet"),
  7766. default: true
  7767. }
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(6, "feet"),
  7775. weight: math.unit(180, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/akane-sato/front.svg",
  7779. extra: 1219 / 1140
  7780. }
  7781. },
  7782. back: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(180, "lbs"),
  7785. name: "Back",
  7786. image: {
  7787. source: "./media/characters/akane-sato/back.svg",
  7788. extra: 1219 / 1170
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(2.5, "meters")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(250, "meters"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(25, "km")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(65, "kg"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/rook/front.svg",
  7817. extra: 960 / 950
  7818. }
  7819. }
  7820. },
  7821. [
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(8.8, "feet")
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(88, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Megamacro",
  7833. height: math.unit(8, "miles")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(12 + 2 / 12, "feet"),
  7842. weight: math.unit(808, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/prodigy/front.svg"
  7846. }
  7847. }
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(12 + 2 / 12, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(143, "feet")
  7858. },
  7859. {
  7860. name: "Macro+",
  7861. height: math.unit(400, "feet")
  7862. },
  7863. ]
  7864. ))
  7865. characterMakers.push(() => makeCharacter(
  7866. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7867. {
  7868. front: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(225, "lbs"),
  7871. name: "Front",
  7872. image: {
  7873. source: "./media/characters/daniel/front.svg"
  7874. }
  7875. },
  7876. leaning: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(225, "lbs"),
  7879. name: "Leaning",
  7880. image: {
  7881. source: "./media/characters/daniel/leaning.svg"
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(1000, "feet"),
  7889. default: true
  7890. },
  7891. ]
  7892. ))
  7893. characterMakers.push(() => makeCharacter(
  7894. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7895. {
  7896. front: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(88, "lbs"),
  7899. name: "Front",
  7900. image: {
  7901. source: "./media/characters/chiros/front.svg",
  7902. extra: 306 / 226
  7903. }
  7904. },
  7905. side: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(88, "lbs"),
  7908. name: "Side",
  7909. image: {
  7910. source: "./media/characters/chiros/side.svg",
  7911. extra: 306 / 226
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(6, "cm"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7925. {
  7926. front: {
  7927. height: math.unit(6, "feet"),
  7928. weight: math.unit(100, "lbs"),
  7929. name: "Front",
  7930. image: {
  7931. source: "./media/characters/selka/front.svg",
  7932. extra: 947 / 887
  7933. }
  7934. }
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(5, "cm"),
  7940. default: true
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(8 + 3 / 12, "feet"),
  7949. weight: math.unit(424, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/verin/front.svg",
  7953. extra: 1845 / 1550
  7954. }
  7955. },
  7956. frontArmored: {
  7957. height: math.unit(8 + 3 / 12, "feet"),
  7958. weight: math.unit(424, "lbs"),
  7959. name: "Front (Armored)",
  7960. image: {
  7961. source: "./media/characters/verin/front-armor.svg",
  7962. extra: 1845 / 1550,
  7963. bottom: 0.01
  7964. }
  7965. },
  7966. back: {
  7967. height: math.unit(8 + 3 / 12, "feet"),
  7968. weight: math.unit(424, "lbs"),
  7969. name: "Back",
  7970. image: {
  7971. source: "./media/characters/verin/back.svg",
  7972. bottom: 0.1,
  7973. extra: 1
  7974. }
  7975. },
  7976. foot: {
  7977. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7978. name: "Foot",
  7979. image: {
  7980. source: "./media/characters/verin/foot.svg"
  7981. }
  7982. },
  7983. },
  7984. [
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(8 + 3 / 12, "feet")
  7988. },
  7989. {
  7990. name: "Minimacro",
  7991. height: math.unit(21, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(626, "feet")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(2.718, "meters"),
  8005. weight: math.unit(150, "lbs"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/sovrim-terraquian/front.svg"
  8009. }
  8010. },
  8011. back: {
  8012. height: math.unit(2.718, "meters"),
  8013. weight: math.unit(150, "lbs"),
  8014. name: "Back",
  8015. image: {
  8016. source: "./media/characters/sovrim-terraquian/back.svg"
  8017. }
  8018. }
  8019. },
  8020. [
  8021. {
  8022. name: "Micro",
  8023. height: math.unit(2, "inches")
  8024. },
  8025. {
  8026. name: "Small",
  8027. height: math.unit(1, "meter")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(Math.E, "meters"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(20, "meters")
  8037. },
  8038. {
  8039. name: "Macro+",
  8040. height: math.unit(400, "meters")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8046. {
  8047. front: {
  8048. height: math.unit(7, "feet"),
  8049. weight: math.unit(489, "lbs"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/reece-silvermane/front.svg",
  8053. bottom: 0.02,
  8054. extra: 1
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Macro",
  8061. height: math.unit(1.5, "miles"),
  8062. default: true
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(78, "kg"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/kane/front.svg",
  8075. extra: 978 / 899
  8076. }
  8077. },
  8078. },
  8079. [
  8080. {
  8081. name: "Normal",
  8082. height: math.unit(2.1, "m"),
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(1, "km"),
  8087. default: true
  8088. },
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8093. {
  8094. front: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(200, "kg"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/tegon/front.svg",
  8100. bottom: 0.01,
  8101. extra: 1
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Micro",
  8108. height: math.unit(1, "inch")
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(6 + 3 / 12, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(300, "feet")
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(69, "miles")
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8127. {
  8128. side: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(2304, "lbs"),
  8131. name: "Side",
  8132. image: {
  8133. source: "./media/characters/arcturax/side.svg",
  8134. extra: 790 / 376,
  8135. bottom: 0.01
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Micro",
  8142. height: math.unit(2, "inch")
  8143. },
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(39, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(7, "miles")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(50, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/sentri/front.svg",
  8168. extra: 1750 / 1570,
  8169. bottom: 0.025
  8170. }
  8171. },
  8172. frontAlt: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(50, "lbs"),
  8175. name: "Front (Alt)",
  8176. image: {
  8177. source: "./media/characters/sentri/front-alt.svg",
  8178. extra: 1750 / 1570,
  8179. bottom: 0.025
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(15, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(2500, "feet")
  8192. }
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5 + 8 / 12, "feet"),
  8200. weight: math.unit(130, "lbs"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/corvin/front.svg",
  8204. extra: 1803 / 1629
  8205. }
  8206. },
  8207. frontShirt: {
  8208. height: math.unit(5 + 8 / 12, "feet"),
  8209. weight: math.unit(130, "lbs"),
  8210. name: "Front (Shirt)",
  8211. image: {
  8212. source: "./media/characters/corvin/front-shirt.svg",
  8213. extra: 1803 / 1629
  8214. }
  8215. },
  8216. frontPoncho: {
  8217. height: math.unit(5 + 8 / 12, "feet"),
  8218. weight: math.unit(130, "lbs"),
  8219. name: "Front (Poncho)",
  8220. image: {
  8221. source: "./media/characters/corvin/front-poncho.svg",
  8222. extra: 1803 / 1629
  8223. }
  8224. },
  8225. side: {
  8226. height: math.unit(5 + 8 / 12, "feet"),
  8227. weight: math.unit(130, "lbs"),
  8228. name: "Side",
  8229. image: {
  8230. source: "./media/characters/corvin/side.svg",
  8231. extra: 1012 / 945
  8232. }
  8233. },
  8234. back: {
  8235. height: math.unit(5 + 8 / 12, "feet"),
  8236. weight: math.unit(130, "lbs"),
  8237. name: "Back",
  8238. image: {
  8239. source: "./media/characters/corvin/back.svg",
  8240. extra: 1803 / 1629
  8241. }
  8242. },
  8243. },
  8244. [
  8245. {
  8246. name: "Micro",
  8247. height: math.unit(3, "inches")
  8248. },
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(5 + 8 / 12, "feet")
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(300, "feet"),
  8256. default: true
  8257. },
  8258. {
  8259. name: "Megamacro",
  8260. height: math.unit(500, "miles")
  8261. }
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(135, "lbs"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/q/front.svg",
  8273. extra: 854 / 752,
  8274. bottom: 0.005
  8275. }
  8276. },
  8277. back: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(130, "lbs"),
  8280. name: "Back",
  8281. image: {
  8282. source: "./media/characters/q/back.svg",
  8283. extra: 854 / 752
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(90, "feet"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Extra Macro",
  8295. height: math.unit(300, "feet"),
  8296. },
  8297. {
  8298. name: "BIG WALF",
  8299. height: math.unit(750, "feet"),
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8305. {
  8306. front: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(150, "lbs"),
  8309. name: "Front",
  8310. image: {
  8311. source: "./media/characters/carley/front.svg",
  8312. extra: 3927 / 3540,
  8313. bottom: 29.2 / 735
  8314. }
  8315. }
  8316. },
  8317. [
  8318. {
  8319. name: "Normal",
  8320. height: math.unit(6 + 3 / 12, "feet")
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(185, "feet"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Megamacro",
  8329. height: math.unit(8, "miles"),
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(3, "feet"),
  8338. weight: math.unit(28, "lbs"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/citrine/front.svg"
  8342. }
  8343. }
  8344. },
  8345. [
  8346. {
  8347. name: "Normal",
  8348. height: math.unit(3, "feet"),
  8349. default: true
  8350. }
  8351. ]
  8352. ))
  8353. characterMakers.push(() => makeCharacter(
  8354. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8355. {
  8356. front: {
  8357. height: math.unit(14, "feet"),
  8358. weight: math.unit(1450, "kg"),
  8359. capacity: math.unit(15, "people"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/aura-starwind/front.svg",
  8363. extra: 1440/1327,
  8364. bottom: 11/1451
  8365. }
  8366. },
  8367. side: {
  8368. height: math.unit(14, "feet"),
  8369. weight: math.unit(1450, "kg"),
  8370. capacity: math.unit(15, "people"),
  8371. name: "Side",
  8372. image: {
  8373. source: "./media/characters/aura-starwind/side.svg",
  8374. extra: 1654 / 1497
  8375. }
  8376. },
  8377. taur: {
  8378. height: math.unit(18, "feet"),
  8379. weight: math.unit(5500, "kg"),
  8380. capacity: math.unit(50, "people"),
  8381. name: "Taur",
  8382. image: {
  8383. source: "./media/characters/aura-starwind/taur.svg",
  8384. extra: 1760 / 1650
  8385. }
  8386. },
  8387. feral: {
  8388. height: math.unit(46, "feet"),
  8389. weight: math.unit(25000, "kg"),
  8390. capacity: math.unit(120, "people"),
  8391. name: "Feral",
  8392. image: {
  8393. source: "./media/characters/aura-starwind/feral.svg"
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(14, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Macro",
  8405. height: math.unit(50, "meters")
  8406. },
  8407. {
  8408. name: "Megamacro",
  8409. height: math.unit(5000, "meters")
  8410. },
  8411. {
  8412. name: "Gigamacro",
  8413. height: math.unit(100000, "kilometers")
  8414. },
  8415. ]
  8416. ))
  8417. characterMakers.push(() => makeCharacter(
  8418. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8419. {
  8420. front: {
  8421. height: math.unit(2 + 7 / 12, "feet"),
  8422. weight: math.unit(32, "lbs"),
  8423. name: "Front",
  8424. image: {
  8425. source: "./media/characters/rivet/front.svg",
  8426. extra: 1716 / 1658,
  8427. bottom: 0.03
  8428. }
  8429. },
  8430. foot: {
  8431. height: math.unit(0.551, "feet"),
  8432. name: "Rivet's Foot",
  8433. image: {
  8434. source: "./media/characters/rivet/foot.svg"
  8435. },
  8436. rename: true
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Micro",
  8442. height: math.unit(1.5, "inches"),
  8443. },
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(2 + 7 / 12, "feet"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(85, "feet")
  8452. },
  8453. {
  8454. name: "Megamacro",
  8455. height: math.unit(2.2, "km")
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(5 + 9 / 12, "feet"),
  8464. weight: math.unit(150, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/coffee/front.svg",
  8468. extra: 3666 / 3032,
  8469. bottom: 0.04
  8470. }
  8471. },
  8472. foot: {
  8473. height: math.unit(1.29, "feet"),
  8474. name: "Foot",
  8475. image: {
  8476. source: "./media/characters/coffee/foot.svg"
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Micro",
  8483. height: math.unit(2, "inches"),
  8484. },
  8485. {
  8486. name: "Normal",
  8487. height: math.unit(5 + 9 / 12, "feet"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "Macro",
  8492. height: math.unit(800, "feet")
  8493. },
  8494. {
  8495. name: "Megamacro",
  8496. height: math.unit(25, "miles")
  8497. }
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(200, "lbs"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/chari-gal/front.svg",
  8509. extra: 1568 / 1385,
  8510. bottom: 0.047
  8511. }
  8512. },
  8513. gigantamax: {
  8514. height: math.unit(6 * 16, "feet"),
  8515. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8516. name: "Gigantamax",
  8517. image: {
  8518. source: "./media/characters/chari-gal/gigantamax.svg",
  8519. extra: 1124 / 888,
  8520. bottom: 0.03
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(5 + 7 / 12, "feet")
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(200, "feet"),
  8532. default: true
  8533. }
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(150, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/nova/front.svg",
  8545. extra: 5000 / 4722,
  8546. bottom: 0.02
  8547. }
  8548. }
  8549. },
  8550. [
  8551. {
  8552. name: "Micro-",
  8553. height: math.unit(0.8, "inches")
  8554. },
  8555. {
  8556. name: "Micro",
  8557. height: math.unit(2, "inches"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(3 + 1 / 12, "feet"),
  8567. weight: math.unit(21.7, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/argent/front.svg",
  8571. extra: 1471 / 1331,
  8572. bottom: 100.8 / 1575.5
  8573. }
  8574. }
  8575. },
  8576. [
  8577. {
  8578. name: "Micro",
  8579. height: math.unit(2, "inches")
  8580. },
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(3 + 1 / 12, "feet"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Macro",
  8588. height: math.unit(120, "feet")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8594. {
  8595. lamp: {
  8596. height: math.unit(7 * 1559 / 989, "feet"),
  8597. name: "Magic Lamp",
  8598. image: {
  8599. source: "./media/characters/mira-al-cul/lamp.svg",
  8600. extra: 1617 / 1559
  8601. }
  8602. },
  8603. front: {
  8604. height: math.unit(7, "feet"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/mira-al-cul/front.svg",
  8608. extra: 1044 / 990
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Heavily Restricted",
  8615. height: math.unit(7 * 1559 / 989, "feet")
  8616. },
  8617. {
  8618. name: "Freshly Freed",
  8619. height: math.unit(50 * 1559 / 989, "feet")
  8620. },
  8621. {
  8622. name: "World Encompassing",
  8623. height: math.unit(10000 * 1559 / 989, "miles")
  8624. },
  8625. {
  8626. name: "Galactic",
  8627. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8628. },
  8629. {
  8630. name: "Palmed Universe",
  8631. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8632. default: true
  8633. },
  8634. {
  8635. name: "Multiversal Matriarch",
  8636. height: math.unit(8.87e10, "yottameters")
  8637. },
  8638. {
  8639. name: "Void Mother",
  8640. height: math.unit(3.14e110, "yottaparsecs")
  8641. },
  8642. {
  8643. name: "Toying with Transcendence",
  8644. height: math.unit(1e307, "meters")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8650. {
  8651. front: {
  8652. height: math.unit(17 + 1 / 12, "feet"),
  8653. weight: math.unit(476.2 * 5, "lbs"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/kuro-shi-uchū/front.svg",
  8657. extra: 2329 / 1835,
  8658. bottom: 0.02
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(2, "inches")
  8666. },
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(12, "meters")
  8670. },
  8671. {
  8672. name: "Planetary",
  8673. height: math.unit(0.00929, "AU"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Universal",
  8678. height: math.unit(20, "gigaparsecs")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(5 + 2 / 12, "feet"),
  8687. weight: math.unit(120, "lbs"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/katherine/front.svg",
  8691. extra: 2075 / 1969
  8692. }
  8693. },
  8694. dress: {
  8695. height: math.unit(5 + 2 / 12, "feet"),
  8696. weight: math.unit(120, "lbs"),
  8697. name: "Dress",
  8698. image: {
  8699. source: "./media/characters/katherine/dress.svg",
  8700. extra: 2258 / 2064
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Micro",
  8707. height: math.unit(1, "inches"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Normal",
  8712. height: math.unit(5 + 2 / 12, "feet")
  8713. },
  8714. {
  8715. name: "Macro",
  8716. height: math.unit(100, "meters")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(80, "miles")
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(7 + 8 / 12, "feet"),
  8729. weight: math.unit(250, "lbs"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/yevis/front.svg",
  8733. extra: 1938 / 1755
  8734. }
  8735. }
  8736. },
  8737. [
  8738. {
  8739. name: "Mortal",
  8740. height: math.unit(7 + 8 / 12, "feet")
  8741. },
  8742. {
  8743. name: "Battle",
  8744. height: math.unit(25 + 11 / 12, "feet")
  8745. },
  8746. {
  8747. name: "Wrath",
  8748. height: math.unit(1654 + 11 / 12, "feet")
  8749. },
  8750. {
  8751. name: "Planet Destroyer",
  8752. height: math.unit(12000, "miles")
  8753. },
  8754. {
  8755. name: "Galaxy Conqueror",
  8756. height: math.unit(1.45, "zettameters"),
  8757. default: true
  8758. },
  8759. {
  8760. name: "Universal War",
  8761. height: math.unit(184, "gigaparsecs")
  8762. },
  8763. {
  8764. name: "Eternity War",
  8765. height: math.unit(1.98e55, "yottaparsecs")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(5 + 8 / 12, "feet"),
  8774. weight: math.unit(63, "kg"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/xavier/front.svg",
  8778. extra: 944 / 883
  8779. }
  8780. },
  8781. frontStretch: {
  8782. height: math.unit(5 + 8 / 12, "feet"),
  8783. weight: math.unit(63, "kg"),
  8784. name: "Stretching",
  8785. image: {
  8786. source: "./media/characters/xavier/front-stretch.svg",
  8787. extra: 962 / 820
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(5 + 8 / 12, "feet")
  8795. },
  8796. {
  8797. name: "Macro",
  8798. height: math.unit(100, "meters"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "McLargeHuge",
  8803. height: math.unit(10, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(5 + 5 / 12, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/joshii/front.svg",
  8816. extra: 765 / 653,
  8817. bottom: 51 / 816
  8818. }
  8819. },
  8820. foot: {
  8821. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8822. name: "Foot",
  8823. image: {
  8824. source: "./media/characters/joshii/foot.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Micro",
  8831. height: math.unit(2, "inches"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Normal",
  8836. height: math.unit(5 + 5 / 12, "feet")
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(785, "feet")
  8841. },
  8842. {
  8843. name: "Megamacro",
  8844. height: math.unit(24.5, "miles")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(150, "lb"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/goddess-elizabeth/front.svg",
  8857. extra: 1800 / 1525,
  8858. bottom: 0.005
  8859. }
  8860. },
  8861. foot: {
  8862. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8863. name: "Foot",
  8864. image: {
  8865. source: "./media/characters/goddess-elizabeth/foot.svg"
  8866. }
  8867. },
  8868. mouth: {
  8869. height: math.unit(6, "feet"),
  8870. name: "Mouth",
  8871. image: {
  8872. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Micro",
  8879. height: math.unit(12, "feet")
  8880. },
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(80, "miles"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(15000, "parsecs")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(5 + 9 / 12, "feet"),
  8897. weight: math.unit(144, "lb"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/kara/front.svg"
  8901. }
  8902. },
  8903. feet: {
  8904. height: math.unit(6 / 6.765, "feet"),
  8905. name: "Kara's Feet",
  8906. rename: true,
  8907. image: {
  8908. source: "./media/characters/kara/feet.svg"
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 9 / 12, "feet")
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(174, "feet"),
  8920. default: true
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(18, "feet"),
  8929. weight: math.unit(4050, "lb"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/tyrone/front.svg",
  8933. extra: 2405 / 2270,
  8934. bottom: 182 / 2587
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(18, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(300, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(15, "km")
  8951. },
  8952. {
  8953. name: "Gigamacro",
  8954. height: math.unit(500, "km")
  8955. },
  8956. {
  8957. name: "Teramacro",
  8958. height: math.unit(0.5, "gigameters")
  8959. },
  8960. {
  8961. name: "Omnimacro",
  8962. height: math.unit(1e252, "yottauniverse")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(7 + 8 / 12, "feet"),
  8971. weight: math.unit(120, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/danny/front.svg",
  8975. extra: 1490 / 1350
  8976. }
  8977. },
  8978. back: {
  8979. height: math.unit(7 + 8 / 12, "feet"),
  8980. weight: math.unit(120, "lb"),
  8981. name: "Back",
  8982. image: {
  8983. source: "./media/characters/danny/back.svg",
  8984. extra: 1490 / 1350
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(7 + 8 / 12, "feet"),
  8992. default: true
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(3.5, "inches"),
  9001. weight: math.unit(19, "grams"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/mallow/front.svg",
  9005. extra: 471 / 431
  9006. }
  9007. },
  9008. back: {
  9009. height: math.unit(3.5, "inches"),
  9010. weight: math.unit(19, "grams"),
  9011. name: "Back",
  9012. image: {
  9013. source: "./media/characters/mallow/back.svg",
  9014. extra: 471 / 431
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Normal",
  9021. height: math.unit(3.5, "inches"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(9, "feet"),
  9031. weight: math.unit(230, "kg"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/starry-aqua/front.svg"
  9035. }
  9036. },
  9037. back: {
  9038. height: math.unit(9, "feet"),
  9039. weight: math.unit(230, "kg"),
  9040. name: "Back",
  9041. image: {
  9042. source: "./media/characters/starry-aqua/back.svg"
  9043. }
  9044. },
  9045. hand: {
  9046. height: math.unit(9 * 0.1168, "feet"),
  9047. name: "Hand",
  9048. image: {
  9049. source: "./media/characters/starry-aqua/hand.svg"
  9050. }
  9051. },
  9052. foot: {
  9053. height: math.unit(9 * 0.18, "feet"),
  9054. name: "Foot",
  9055. image: {
  9056. source: "./media/characters/starry-aqua/foot.svg"
  9057. }
  9058. }
  9059. },
  9060. [
  9061. {
  9062. name: "Micro",
  9063. height: math.unit(3, "inches")
  9064. },
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(9, "feet")
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(300, "feet"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Megamacro",
  9076. height: math.unit(3200, "feet")
  9077. }
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9082. {
  9083. front: {
  9084. height: math.unit(15, "feet"),
  9085. weight: math.unit(5026, "lb"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/luka-towers/front.svg",
  9089. extra: 1269/1133,
  9090. bottom: 51/1320
  9091. }
  9092. },
  9093. },
  9094. [
  9095. {
  9096. name: "Normal",
  9097. height: math.unit(15, "feet"),
  9098. default: true
  9099. },
  9100. {
  9101. name: "Minimacro",
  9102. height: math.unit(25, "feet")
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(320, "feet")
  9107. },
  9108. {
  9109. name: "Megamacro",
  9110. height: math.unit(35000, "feet")
  9111. },
  9112. {
  9113. name: "Gigamacro",
  9114. height: math.unit(4000, "miles")
  9115. },
  9116. {
  9117. name: "Teramacro",
  9118. height: math.unit(15000, "miles")
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9124. {
  9125. front: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(150, "lb"),
  9128. name: "Front",
  9129. image: {
  9130. source: "./media/characters/natalie-nightring/front.svg",
  9131. extra: 1,
  9132. bottom: 0.06
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Uh Oh",
  9139. height: math.unit(0.1, "mm")
  9140. },
  9141. {
  9142. name: "Small",
  9143. height: math.unit(3, "inches")
  9144. },
  9145. {
  9146. name: "Human Scale",
  9147. height: math.unit(6, "feet")
  9148. },
  9149. {
  9150. name: "Librarian",
  9151. height: math.unit(50, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Immense",
  9156. height: math.unit(200, "miles")
  9157. },
  9158. ]
  9159. ))
  9160. characterMakers.push(() => makeCharacter(
  9161. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9162. {
  9163. front: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(180, "lbs"),
  9166. name: "Front",
  9167. image: {
  9168. source: "./media/characters/danni-rosie/front.svg",
  9169. extra: 1260 / 1128,
  9170. bottom: 0.022
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Micro",
  9177. height: math.unit(2, "inches"),
  9178. default: true
  9179. },
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9184. {
  9185. front: {
  9186. height: math.unit(5 + 9 / 12, "feet"),
  9187. weight: math.unit(220, "lb"),
  9188. name: "Front",
  9189. image: {
  9190. source: "./media/characters/samantha-kruse/front.svg",
  9191. extra: (985 / 935),
  9192. bottom: 0.03
  9193. }
  9194. },
  9195. frontUndressed: {
  9196. height: math.unit(5 + 9 / 12, "feet"),
  9197. weight: math.unit(220, "lb"),
  9198. name: "Front (Undressed)",
  9199. image: {
  9200. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9201. extra: (973 / 923),
  9202. bottom: 0.025
  9203. }
  9204. },
  9205. fat: {
  9206. height: math.unit(5 + 9 / 12, "feet"),
  9207. weight: math.unit(900, "lb"),
  9208. name: "Front (Fat)",
  9209. image: {
  9210. source: "./media/characters/samantha-kruse/fat.svg",
  9211. extra: 2688 / 2561
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(5 + 9 / 12, "feet"),
  9219. default: true
  9220. }
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9225. {
  9226. back: {
  9227. height: math.unit(5 + 4 / 12, "feet"),
  9228. weight: math.unit(4963, "lb"),
  9229. name: "Back",
  9230. image: {
  9231. source: "./media/characters/amelia-rosie/back.svg",
  9232. extra: 1113 / 963,
  9233. bottom: 0.01
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Level 0",
  9240. height: math.unit(5 + 4 / 12, "feet")
  9241. },
  9242. {
  9243. name: "Level 1",
  9244. height: math.unit(164597, "feet"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Level 2",
  9249. height: math.unit(956243, "miles")
  9250. },
  9251. {
  9252. name: "Level 3",
  9253. height: math.unit(29421709423, "miles")
  9254. },
  9255. {
  9256. name: "Level 4",
  9257. height: math.unit(154, "lightyears")
  9258. },
  9259. {
  9260. name: "Level 5",
  9261. height: math.unit(4738272, "lightyears")
  9262. },
  9263. {
  9264. name: "Level 6",
  9265. height: math.unit(145787152896, "lightyears")
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(5 + 11 / 12, "feet"),
  9274. weight: math.unit(65, "kg"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/rook-kitara/front.svg",
  9278. extra: 1347 / 1274,
  9279. bottom: 0.005
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Totally Unfair",
  9286. height: math.unit(1.8, "mm")
  9287. },
  9288. {
  9289. name: "Lap Rookie",
  9290. height: math.unit(1.4, "feet")
  9291. },
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(5 + 11 / 12, "feet"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "How Did This Happen",
  9299. height: math.unit(80, "miles")
  9300. }
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9305. {
  9306. front: {
  9307. height: math.unit(7, "feet"),
  9308. weight: math.unit(300, "lb"),
  9309. name: "Front",
  9310. image: {
  9311. source: "./media/characters/pisces/front.svg",
  9312. extra: 2255 / 2115,
  9313. bottom: 0.03
  9314. }
  9315. },
  9316. back: {
  9317. height: math.unit(7, "feet"),
  9318. weight: math.unit(300, "lb"),
  9319. name: "Back",
  9320. image: {
  9321. source: "./media/characters/pisces/back.svg",
  9322. extra: 2146 / 2055,
  9323. bottom: 0.04
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(7, "feet"),
  9331. default: true
  9332. },
  9333. {
  9334. name: "Swimming Pool",
  9335. height: math.unit(12.2, "meters")
  9336. },
  9337. {
  9338. name: "Olympic Swimming Pool",
  9339. height: math.unit(56.3, "meters")
  9340. },
  9341. {
  9342. name: "Lake Superior",
  9343. height: math.unit(93900, "meters")
  9344. },
  9345. {
  9346. name: "Mediterranean Sea",
  9347. height: math.unit(644457, "meters")
  9348. },
  9349. {
  9350. name: "World's Oceans",
  9351. height: math.unit(4567491, "meters")
  9352. },
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(2.3, "meters"),
  9360. weight: math.unit(120, "kg"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/zelas/front.svg"
  9364. }
  9365. },
  9366. side: {
  9367. height: math.unit(2.3, "meters"),
  9368. weight: math.unit(120, "kg"),
  9369. name: "Side",
  9370. image: {
  9371. source: "./media/characters/zelas/side.svg"
  9372. }
  9373. },
  9374. back: {
  9375. height: math.unit(2.3, "meters"),
  9376. weight: math.unit(120, "kg"),
  9377. name: "Back",
  9378. image: {
  9379. source: "./media/characters/zelas/back.svg"
  9380. }
  9381. },
  9382. foot: {
  9383. height: math.unit(1.116, "feet"),
  9384. name: "Foot",
  9385. image: {
  9386. source: "./media/characters/zelas/foot.svg"
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(2.3, "meters")
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(30, "meters"),
  9398. default: true
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(1, "inch"),
  9407. weight: math.unit(0.21, "grams"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/talbot/front.svg",
  9411. extra: 594 / 544
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Micro",
  9418. height: math.unit(1, "inch"),
  9419. default: true
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9425. {
  9426. front: {
  9427. height: math.unit(3 + 3 / 12, "feet"),
  9428. weight: math.unit(51.8, "lb"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/fliss/front.svg",
  9432. extra: 840 / 640
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Teeny Tiny",
  9439. height: math.unit(1, "mm")
  9440. },
  9441. {
  9442. name: "Small",
  9443. height: math.unit(1, "inch"),
  9444. default: true
  9445. },
  9446. {
  9447. name: "Standard Sylveon",
  9448. height: math.unit(3 + 3 / 12, "feet")
  9449. },
  9450. {
  9451. name: "Large Nuisance",
  9452. height: math.unit(33, "feet")
  9453. },
  9454. {
  9455. name: "City Filler",
  9456. height: math.unit(3000, "feet")
  9457. },
  9458. {
  9459. name: "New Horizon",
  9460. height: math.unit(6000, "miles")
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(5, "cm"),
  9469. weight: math.unit(1.94, "g"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/fleta/front.svg",
  9473. extra: 835 / 803
  9474. }
  9475. },
  9476. back: {
  9477. height: math.unit(5, "cm"),
  9478. weight: math.unit(1.94, "g"),
  9479. name: "Back",
  9480. image: {
  9481. source: "./media/characters/fleta/back.svg",
  9482. extra: 835 / 803
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Micro",
  9489. height: math.unit(5, "cm"),
  9490. default: true
  9491. },
  9492. ]
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9496. {
  9497. front: {
  9498. height: math.unit(6, "feet"),
  9499. weight: math.unit(225, "lb"),
  9500. name: "Front",
  9501. image: {
  9502. source: "./media/characters/dominic/front.svg",
  9503. extra: 1770 / 1620,
  9504. bottom: 0.025
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(6, "feet"),
  9509. weight: math.unit(225, "lb"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/dominic/back.svg",
  9513. extra: 1745 / 1620,
  9514. bottom: 0.065
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Nano",
  9521. height: math.unit(0.1, "mm")
  9522. },
  9523. {
  9524. name: "Micro-",
  9525. height: math.unit(1, "mm")
  9526. },
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(4, "inches")
  9530. },
  9531. {
  9532. name: "Normal",
  9533. height: math.unit(6 + 4 / 12, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(115, "feet")
  9539. },
  9540. {
  9541. name: "Macro+",
  9542. height: math.unit(955, "feet")
  9543. },
  9544. {
  9545. name: "Megamacro",
  9546. height: math.unit(8990, "feet")
  9547. },
  9548. {
  9549. name: "Gigmacro",
  9550. height: math.unit(9310, "miles")
  9551. },
  9552. {
  9553. name: "Teramacro",
  9554. height: math.unit(1567005010, "miles")
  9555. },
  9556. {
  9557. name: "Examacro",
  9558. height: math.unit(1425, "parsecs")
  9559. },
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(400, "feet"),
  9567. weight: math.unit(44444444, "lb"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/major-colonel/front.svg"
  9571. }
  9572. },
  9573. back: {
  9574. height: math.unit(400, "feet"),
  9575. weight: math.unit(44444444, "lb"),
  9576. name: "Back",
  9577. image: {
  9578. source: "./media/characters/major-colonel/back.svg"
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(400, "feet"),
  9586. default: true
  9587. },
  9588. ]
  9589. ))
  9590. characterMakers.push(() => makeCharacter(
  9591. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9592. {
  9593. catFront: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(120, "lb"),
  9596. name: "Front (Cat Side)",
  9597. image: {
  9598. source: "./media/characters/axel-lycan/cat-front.svg",
  9599. extra: 430 / 402,
  9600. bottom: 43 / 472.35
  9601. }
  9602. },
  9603. catBack: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(120, "lb"),
  9606. name: "Back (Cat Side)",
  9607. image: {
  9608. source: "./media/characters/axel-lycan/cat-back.svg",
  9609. extra: 447 / 419,
  9610. bottom: 23.3 / 469
  9611. }
  9612. },
  9613. wolfFront: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(120, "lb"),
  9616. name: "Front (Wolf Side)",
  9617. image: {
  9618. source: "./media/characters/axel-lycan/wolf-front.svg",
  9619. extra: 485 / 456,
  9620. bottom: 19 / 504
  9621. }
  9622. },
  9623. wolfBack: {
  9624. height: math.unit(6, "feet"),
  9625. weight: math.unit(120, "lb"),
  9626. name: "Back (Wolf Side)",
  9627. image: {
  9628. source: "./media/characters/axel-lycan/wolf-back.svg",
  9629. extra: 475 / 438,
  9630. bottom: 39.2 / 514
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(1, "km"),
  9638. default: true
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(5 + 9 / 12, "feet"),
  9647. weight: math.unit(175, "lb"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/vanrel-hyena/front.svg",
  9651. extra: 1086 / 1010,
  9652. bottom: 0.04
  9653. }
  9654. },
  9655. },
  9656. [
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(5 + 9 / 12, "feet"),
  9660. default: true
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(103, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/abbott-absol/front.svg",
  9673. extra: 2010 / 1842
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Megamicro",
  9680. height: math.unit(0.1, "mm")
  9681. },
  9682. {
  9683. name: "Micro",
  9684. height: math.unit(1, "inch")
  9685. },
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(6, "feet"),
  9689. default: true
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(264, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/hector/front.svg",
  9702. extra: 2280 / 2130,
  9703. bottom: 0.07
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(12.25, "foot"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(160, "feet")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(150, "lb"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/sal/front.svg",
  9728. extra: 1846 / 1699,
  9729. bottom: 0.04
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Megamacro",
  9736. height: math.unit(10, "miles"),
  9737. default: true
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9743. {
  9744. front: {
  9745. height: math.unit(3, "meters"),
  9746. weight: math.unit(450, "kg"),
  9747. name: "front",
  9748. image: {
  9749. source: "./media/characters/ranger/front.svg",
  9750. extra: 2401 / 2243,
  9751. bottom: 0.05
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(3, "meters"),
  9759. default: true
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(14, "feet"),
  9768. weight: math.unit(800, "kg"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/theresa/front.svg",
  9772. extra: 3575 / 3346,
  9773. bottom: 0.03
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(14, "feet"),
  9781. default: true
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9787. {
  9788. front: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(3, "kg"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/ine/front.svg",
  9794. extra: 678 / 539,
  9795. bottom: 0.023
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(2.265, "feet"),
  9803. default: true
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(5, "feet"),
  9812. weight: math.unit(30, "kg"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/vial/front.svg",
  9816. extra: 1365 / 1277,
  9817. bottom: 0.04
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5, "feet"),
  9825. default: true
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9831. {
  9832. side: {
  9833. height: math.unit(3.4, "meters"),
  9834. weight: math.unit(1000, "lb"),
  9835. name: "Side",
  9836. image: {
  9837. source: "./media/characters/rovoska/side.svg",
  9838. extra: 4403 / 1515
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(3.4, "meters"),
  9846. default: true
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(8, "feet"),
  9855. weight: math.unit(315, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/gunner-rotthbauer/front.svg"
  9859. }
  9860. },
  9861. back: {
  9862. height: math.unit(8, "feet"),
  9863. weight: math.unit(315, "lb"),
  9864. name: "Back",
  9865. image: {
  9866. source: "./media/characters/gunner-rotthbauer/back.svg"
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Micro",
  9873. height: math.unit(3.5, "inches")
  9874. },
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(8, "feet"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(250, "feet")
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(1, "AU")
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(5 + 5 / 12, "feet"),
  9895. weight: math.unit(140, "lb"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/allatia/front.svg",
  9899. extra: 1227 / 1180,
  9900. bottom: 0.027
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(5 + 5 / 12, "feet")
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(250, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(8, "miles")
  9917. }
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(6, "feet"),
  9925. weight: math.unit(120, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/tene/front.svg",
  9929. extra: 1728 / 1578,
  9930. bottom: 0.022
  9931. }
  9932. },
  9933. stomping: {
  9934. height: math.unit(2.025, "meters"),
  9935. weight: math.unit(120, "lb"),
  9936. name: "Stomping",
  9937. image: {
  9938. source: "./media/characters/tene/stomping.svg",
  9939. extra: 938 / 873,
  9940. bottom: 0.01
  9941. }
  9942. },
  9943. sitting: {
  9944. height: math.unit(1, "meter"),
  9945. weight: math.unit(120, "lb"),
  9946. name: "Sitting",
  9947. image: {
  9948. source: "./media/characters/tene/sitting.svg",
  9949. extra: 437 / 415,
  9950. bottom: 0.1
  9951. }
  9952. },
  9953. feral: {
  9954. height: math.unit(3.9, "feet"),
  9955. weight: math.unit(250, "lb"),
  9956. name: "Feral",
  9957. image: {
  9958. source: "./media/characters/tene/feral.svg",
  9959. extra: 717 / 458,
  9960. bottom: 0.179
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(6, "feet")
  9968. },
  9969. {
  9970. name: "Macro",
  9971. height: math.unit(300, "feet"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Megamacro",
  9976. height: math.unit(5, "miles")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9982. {
  9983. side: {
  9984. height: math.unit(6, "feet"),
  9985. name: "Side",
  9986. image: {
  9987. source: "./media/characters/evander/side.svg",
  9988. extra: 877 / 477
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Normal",
  9995. height: math.unit(0.83, "meters"),
  9996. default: true
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(12, "feet"),
  10005. weight: math.unit(1000, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10009. extra: 1762 / 1611
  10010. }
  10011. },
  10012. back: {
  10013. height: math.unit(12, "feet"),
  10014. weight: math.unit(1000, "lb"),
  10015. name: "Back",
  10016. image: {
  10017. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10018. extra: 1762 / 1611
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(12, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Kaiju",
  10030. height: math.unit(150, "feet")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(6, "feet"),
  10039. weight: math.unit(150, "lb"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/zero-alurus/front.svg"
  10043. }
  10044. },
  10045. back: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(150, "lb"),
  10048. name: "Back",
  10049. image: {
  10050. source: "./media/characters/zero-alurus/back.svg"
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(5 + 10 / 12, "feet")
  10058. },
  10059. {
  10060. name: "Macro",
  10061. height: math.unit(60, "feet"),
  10062. default: true
  10063. },
  10064. {
  10065. name: "Macro+",
  10066. height: math.unit(450, "feet")
  10067. },
  10068. ]
  10069. ))
  10070. characterMakers.push(() => makeCharacter(
  10071. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10072. {
  10073. front: {
  10074. height: math.unit(6, "feet"),
  10075. weight: math.unit(200, "lb"),
  10076. name: "Front",
  10077. image: {
  10078. source: "./media/characters/mega-shi/front.svg",
  10079. extra: 1279 / 1250,
  10080. bottom: 0.02
  10081. }
  10082. },
  10083. back: {
  10084. height: math.unit(6, "feet"),
  10085. weight: math.unit(200, "lb"),
  10086. name: "Back",
  10087. image: {
  10088. source: "./media/characters/mega-shi/back.svg",
  10089. extra: 1279 / 1250,
  10090. bottom: 0.02
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Micro",
  10097. height: math.unit(16 + 6 / 12, "feet")
  10098. },
  10099. {
  10100. name: "Third Dimension",
  10101. height: math.unit(40, "meters")
  10102. },
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(660, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Megamacro",
  10110. height: math.unit(10, "miles")
  10111. },
  10112. {
  10113. name: "Planetary Launch",
  10114. height: math.unit(500, "miles")
  10115. },
  10116. {
  10117. name: "Interstellar",
  10118. height: math.unit(1e9, "miles")
  10119. },
  10120. {
  10121. name: "Leaving the Universe",
  10122. height: math.unit(1, "gigaparsec")
  10123. },
  10124. {
  10125. name: "Travelling Universes",
  10126. height: math.unit(30e15, "parsecs")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(5 + 4/12, "feet"),
  10135. weight: math.unit(120, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/odyssey/front.svg",
  10139. extra: 1747/1571,
  10140. bottom: 47/1794
  10141. }
  10142. },
  10143. side: {
  10144. height: math.unit(5.1, "feet"),
  10145. weight: math.unit(120, "lb"),
  10146. name: "Side",
  10147. image: {
  10148. source: "./media/characters/odyssey/side.svg",
  10149. extra: 1847/1619,
  10150. bottom: 47/1894
  10151. }
  10152. },
  10153. lounging: {
  10154. height: math.unit(1.464, "feet"),
  10155. weight: math.unit(120, "lb"),
  10156. name: "Lounging",
  10157. image: {
  10158. source: "./media/characters/odyssey/lounging.svg",
  10159. extra: 1235/837,
  10160. bottom: 551/1786
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 4 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Macro",
  10171. height: math.unit(1, "km")
  10172. },
  10173. {
  10174. name: "Megamacro",
  10175. height: math.unit(3000, "km")
  10176. },
  10177. {
  10178. name: "Gigamacro",
  10179. height: math.unit(1, "AU"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Omniversal",
  10184. height: math.unit(100e14, "lightyears")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(300, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/mekuto/front.svg",
  10197. extra: 921 / 832,
  10198. bottom: 0.03
  10199. }
  10200. },
  10201. hand: {
  10202. height: math.unit(6 / 10.24, "feet"),
  10203. name: "Hand",
  10204. image: {
  10205. source: "./media/characters/mekuto/hand.svg"
  10206. }
  10207. },
  10208. foot: {
  10209. height: math.unit(6 / 5.05, "feet"),
  10210. name: "Foot",
  10211. image: {
  10212. source: "./media/characters/mekuto/foot.svg"
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Minimicro",
  10219. height: math.unit(0.2, "inches")
  10220. },
  10221. {
  10222. name: "Micro",
  10223. height: math.unit(1.5, "inches")
  10224. },
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(5 + 11 / 12, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Minimacro",
  10232. height: math.unit(17 + 9 / 12, "feet")
  10233. },
  10234. {
  10235. name: "Macro",
  10236. height: math.unit(177.5, "feet")
  10237. },
  10238. {
  10239. name: "Megamacro",
  10240. height: math.unit(152, "miles")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6.5, "inches"),
  10249. weight: math.unit(13, "oz"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/dafydd-tomos/front.svg",
  10253. extra: 2990 / 2603,
  10254. bottom: 0.03
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Micro",
  10261. height: math.unit(6.5, "inches"),
  10262. default: true
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(6, "feet"),
  10271. weight: math.unit(150, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/splinter/front.svg",
  10275. extra: 2990 / 2882,
  10276. bottom: 0.04
  10277. }
  10278. },
  10279. back: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(150, "lb"),
  10282. name: "Back",
  10283. image: {
  10284. source: "./media/characters/splinter/back.svg",
  10285. extra: 2990 / 2882,
  10286. bottom: 0.04
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(6, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(230, "meters"),
  10298. default: true
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(4 + 10 / 12, "feet"),
  10307. weight: math.unit(480, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/snow-gabumon/front.svg",
  10311. extra: 1140 / 963,
  10312. bottom: 0.058
  10313. }
  10314. },
  10315. back: {
  10316. height: math.unit(4 + 10 / 12, "feet"),
  10317. weight: math.unit(480, "lb"),
  10318. name: "Back",
  10319. image: {
  10320. source: "./media/characters/snow-gabumon/back.svg",
  10321. extra: 1115 / 962,
  10322. bottom: 0.041
  10323. }
  10324. },
  10325. frontUndresed: {
  10326. height: math.unit(4 + 10 / 12, "feet"),
  10327. weight: math.unit(480, "lb"),
  10328. name: "Front (Undressed)",
  10329. image: {
  10330. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10331. extra: 1061 / 960,
  10332. bottom: 0.045
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Micro",
  10339. height: math.unit(1, "inch")
  10340. },
  10341. {
  10342. name: "Normal",
  10343. height: math.unit(4 + 10 / 12, "feet"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "Macro",
  10348. height: math.unit(200, "feet")
  10349. },
  10350. {
  10351. name: "Megamacro",
  10352. height: math.unit(120, "miles")
  10353. },
  10354. {
  10355. name: "Gigamacro",
  10356. height: math.unit(9800, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(1.7, "meters"),
  10365. weight: math.unit(140, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/moody/front.svg",
  10369. extra: 3226 / 3007,
  10370. bottom: 0.087
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Micro",
  10377. height: math.unit(1, "mm")
  10378. },
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(1.7, "meters"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(80, "meters")
  10387. },
  10388. {
  10389. name: "Macro+",
  10390. height: math.unit(500, "meters")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/zyas/front.svg",
  10403. extra: 1180 / 1120,
  10404. bottom: 0.045
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(10, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(500, "feet")
  10417. },
  10418. {
  10419. name: "Megamacro",
  10420. height: math.unit(5, "miles")
  10421. },
  10422. {
  10423. name: "Teramacro",
  10424. height: math.unit(150000, "miles")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/cuon/front.svg",
  10437. extra: 1390 / 1320,
  10438. bottom: 0.008
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Micro",
  10445. height: math.unit(3, "inches")
  10446. },
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(18 + 9 / 12, "feet"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Macro",
  10454. height: math.unit(360, "feet")
  10455. },
  10456. {
  10457. name: "Megamacro",
  10458. height: math.unit(360, "miles")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(2.4, "meters"),
  10467. weight: math.unit(70, "kg"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/nyanuxk/front.svg",
  10471. extra: 1172 / 1084,
  10472. bottom: 0.065
  10473. }
  10474. },
  10475. side: {
  10476. height: math.unit(2.4, "meters"),
  10477. weight: math.unit(70, "kg"),
  10478. name: "Side",
  10479. image: {
  10480. source: "./media/characters/nyanuxk/side.svg",
  10481. extra: 1190 / 1132,
  10482. bottom: 0.007
  10483. }
  10484. },
  10485. back: {
  10486. height: math.unit(2.4, "meters"),
  10487. weight: math.unit(70, "kg"),
  10488. name: "Back",
  10489. image: {
  10490. source: "./media/characters/nyanuxk/back.svg",
  10491. extra: 1200 / 1141,
  10492. bottom: 0.015
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(0.52, "meters"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/nyanuxk/foot.svg"
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Micro",
  10506. height: math.unit(2, "cm")
  10507. },
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(2.4, "meters"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Smaller Macro",
  10515. height: math.unit(120, "meters")
  10516. },
  10517. {
  10518. name: "Bigger Macro",
  10519. height: math.unit(1.2, "km")
  10520. },
  10521. {
  10522. name: "Megamacro",
  10523. height: math.unit(15, "kilometers")
  10524. },
  10525. {
  10526. name: "Gigamacro",
  10527. height: math.unit(2000, "km")
  10528. },
  10529. {
  10530. name: "Teramacro",
  10531. height: math.unit(500000, "km")
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10537. {
  10538. side: {
  10539. height: math.unit(6, "feet"),
  10540. name: "Side",
  10541. image: {
  10542. source: "./media/characters/ailbhe/side.svg",
  10543. extra: 757 / 464,
  10544. bottom: 0.041
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(1.07, "meters"),
  10552. default: true
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(120, "kg"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/zevulfius/front.svg",
  10565. extra: 965 / 903
  10566. }
  10567. },
  10568. side: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(120, "kg"),
  10571. name: "Side",
  10572. image: {
  10573. source: "./media/characters/zevulfius/side.svg",
  10574. extra: 939 / 900
  10575. }
  10576. },
  10577. back: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(120, "kg"),
  10580. name: "Back",
  10581. image: {
  10582. source: "./media/characters/zevulfius/back.svg",
  10583. extra: 918 / 854,
  10584. bottom: 0.005
  10585. }
  10586. },
  10587. foot: {
  10588. height: math.unit(6 / 3.72, "feet"),
  10589. name: "Foot",
  10590. image: {
  10591. source: "./media/characters/zevulfius/foot.svg"
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(750, "meters")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(20, "km"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Gigamacro",
  10607. height: math.unit(2000, "km")
  10608. },
  10609. {
  10610. name: "Teramacro",
  10611. height: math.unit(250000, "km")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(100, "feet"),
  10620. weight: math.unit(350, "kg"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/rikes/front.svg",
  10624. extra: 1565 / 1483,
  10625. bottom: 0.017
  10626. }
  10627. },
  10628. },
  10629. [
  10630. {
  10631. name: "Macro",
  10632. height: math.unit(100, "feet"),
  10633. default: true
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(8, "feet"),
  10642. weight: math.unit(356, "lb"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/adam-silver-mane/front.svg",
  10646. extra: 1036/937,
  10647. bottom: 63/1099
  10648. }
  10649. },
  10650. side: {
  10651. height: math.unit(8, "feet"),
  10652. weight: math.unit(356, "lb"),
  10653. name: "Side",
  10654. image: {
  10655. source: "./media/characters/adam-silver-mane/side.svg",
  10656. extra: 997/901,
  10657. bottom: 59/1056
  10658. }
  10659. },
  10660. frontNsfw: {
  10661. height: math.unit(8, "feet"),
  10662. weight: math.unit(356, "lb"),
  10663. name: "Front (NSFW)",
  10664. image: {
  10665. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10666. extra: 1036/937,
  10667. bottom: 63/1099
  10668. }
  10669. },
  10670. sideNsfw: {
  10671. height: math.unit(8, "feet"),
  10672. weight: math.unit(356, "lb"),
  10673. name: "Side (NSFW)",
  10674. image: {
  10675. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10676. extra: 997/901,
  10677. bottom: 59/1056
  10678. }
  10679. },
  10680. dick: {
  10681. height: math.unit(2.1, "feet"),
  10682. name: "Dick",
  10683. image: {
  10684. source: "./media/characters/adam-silver-mane/dick.svg"
  10685. }
  10686. },
  10687. taur: {
  10688. height: math.unit(16, "feet"),
  10689. weight: math.unit(1500, "kg"),
  10690. name: "Taur",
  10691. image: {
  10692. source: "./media/characters/adam-silver-mane/taur.svg",
  10693. extra: 1713 / 1571,
  10694. bottom: 0.01
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(8, "feet")
  10702. },
  10703. {
  10704. name: "Minimacro",
  10705. height: math.unit(80, "feet")
  10706. },
  10707. {
  10708. name: "MDA",
  10709. height: math.unit(80, "meters")
  10710. },
  10711. {
  10712. name: "Macro",
  10713. height: math.unit(800, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(8000, "feet")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(800, "miles")
  10723. },
  10724. {
  10725. name: "Teramacro",
  10726. height: math.unit(80000, "miles")
  10727. },
  10728. {
  10729. name: "Celestial",
  10730. height: math.unit(8e6, "miles")
  10731. },
  10732. {
  10733. name: "Star Dragon",
  10734. height: math.unit(800000, "parsecs")
  10735. },
  10736. {
  10737. name: "Godly",
  10738. height: math.unit(800, "teraparsecs")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/ky'owin/front.svg",
  10751. extra: 3888 / 3068,
  10752. bottom: 0.015
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(6 + 8 / 12, "feet")
  10760. },
  10761. {
  10762. name: "Large",
  10763. height: math.unit(68, "feet")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(132, "feet")
  10768. },
  10769. {
  10770. name: "Macro+",
  10771. height: math.unit(340, "feet")
  10772. },
  10773. {
  10774. name: "Macro++",
  10775. height: math.unit(680, "feet"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Megamacro",
  10780. height: math.unit(1, "mile")
  10781. },
  10782. {
  10783. name: "Megamacro+",
  10784. height: math.unit(10, "miles")
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(4, "feet"),
  10793. weight: math.unit(50, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/mal/front.svg",
  10797. extra: 785 / 724,
  10798. bottom: 0.07
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Micro",
  10805. height: math.unit(4, "inches")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(4, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Macro",
  10814. height: math.unit(200, "feet")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/jordan-deware/front.svg",
  10827. extra: 1191 / 1012
  10828. }
  10829. },
  10830. },
  10831. [
  10832. {
  10833. name: "Nano",
  10834. height: math.unit(0.01, "mm")
  10835. },
  10836. {
  10837. name: "Minimicro",
  10838. height: math.unit(1, "mm")
  10839. },
  10840. {
  10841. name: "Micro",
  10842. height: math.unit(0.5, "inches")
  10843. },
  10844. {
  10845. name: "Normal",
  10846. height: math.unit(4, "feet"),
  10847. default: true
  10848. },
  10849. {
  10850. name: "Minimacro",
  10851. height: math.unit(40, "meters")
  10852. },
  10853. {
  10854. name: "Small Macro",
  10855. height: math.unit(400, "meters")
  10856. },
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(4, "miles")
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(40, "miles")
  10864. },
  10865. {
  10866. name: "Megamacro+",
  10867. height: math.unit(400, "miles")
  10868. },
  10869. {
  10870. name: "Gigamacro",
  10871. height: math.unit(400000, "miles")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10877. {
  10878. side: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(150, "lb"),
  10881. name: "Side",
  10882. image: {
  10883. source: "./media/characters/kimiko/side.svg",
  10884. extra: 600 / 358
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(15, "feet"),
  10892. default: true
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(220, "feet")
  10897. },
  10898. {
  10899. name: "Macro+",
  10900. height: math.unit(1450, "feet")
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(11500, "feet")
  10905. },
  10906. {
  10907. name: "Gigamacro",
  10908. height: math.unit(9500, "miles")
  10909. },
  10910. {
  10911. name: "Teramacro",
  10912. height: math.unit(2208005005, "miles")
  10913. },
  10914. {
  10915. name: "Examacro",
  10916. height: math.unit(2750, "parsecs")
  10917. },
  10918. {
  10919. name: "Zettamacro",
  10920. height: math.unit(101500, "parsecs")
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(70, "kg"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/andrew-sleepy/front.svg"
  10933. }
  10934. },
  10935. side: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(70, "kg"),
  10938. name: "Side",
  10939. image: {
  10940. source: "./media/characters/andrew-sleepy/side.svg"
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Micro",
  10947. height: math.unit(1, "mm"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/judio/front.svg",
  10961. extra: 1258 / 1110
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Normal",
  10968. height: math.unit(5 + 6 / 12, "feet")
  10969. },
  10970. {
  10971. name: "Macro",
  10972. height: math.unit(1000, "feet"),
  10973. default: true
  10974. },
  10975. {
  10976. name: "Megamacro",
  10977. height: math.unit(10, "miles")
  10978. },
  10979. ]
  10980. ))
  10981. characterMakers.push(() => makeCharacter(
  10982. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10983. {
  10984. front: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(68, "kg"),
  10987. name: "Front",
  10988. image: {
  10989. source: "./media/characters/nomaxice/front.svg",
  10990. extra: 1498 / 1073,
  10991. bottom: 0.075
  10992. }
  10993. },
  10994. foot: {
  10995. height: math.unit(1.1, "feet"),
  10996. name: "Foot",
  10997. image: {
  10998. source: "./media/characters/nomaxice/foot.svg"
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Micro",
  11005. height: math.unit(8, "cm")
  11006. },
  11007. {
  11008. name: "Norm",
  11009. height: math.unit(1.82, "m")
  11010. },
  11011. {
  11012. name: "Norm+",
  11013. height: math.unit(8.8, "feet")
  11014. },
  11015. {
  11016. name: "Big",
  11017. height: math.unit(8, "meters"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(18, "meters")
  11023. },
  11024. {
  11025. name: "Macro+",
  11026. height: math.unit(88, "meters")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(12, "feet"),
  11035. weight: math.unit(1.5, "tons"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/dydros/front.svg",
  11039. extra: 863 / 800,
  11040. bottom: 0.015
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(12, "feet"),
  11045. weight: math.unit(1.5, "tons"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/dydros/back.svg",
  11049. extra: 900 / 843,
  11050. bottom: 0.005
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(12, "feet"),
  11058. default: true
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(100, "kg"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/riggi/front.svg",
  11071. extra: 5787 / 5303
  11072. }
  11073. },
  11074. hyper: {
  11075. height: math.unit(6 * 5 / 3, "feet"),
  11076. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11077. name: "Hyper",
  11078. image: {
  11079. source: "./media/characters/riggi/hyper.svg",
  11080. extra: 3595 / 3485
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Small Macro",
  11087. height: math.unit(50, "feet")
  11088. },
  11089. {
  11090. name: "Default",
  11091. height: math.unit(200, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Loom",
  11096. height: math.unit(10000, "feet")
  11097. },
  11098. {
  11099. name: "Cruising Altitude",
  11100. height: math.unit(30000, "feet")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(100, "miles")
  11105. },
  11106. {
  11107. name: "Continent Sized",
  11108. height: math.unit(2800, "miles")
  11109. },
  11110. {
  11111. name: "Earth Sized",
  11112. height: math.unit(8000, "miles")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(250, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/alexi/front.svg",
  11125. extra: 3483 / 3291,
  11126. bottom: 0.04
  11127. }
  11128. },
  11129. back: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(250, "lb"),
  11132. name: "Back",
  11133. image: {
  11134. source: "./media/characters/alexi/back.svg",
  11135. extra: 3533 / 3356,
  11136. bottom: 0.021
  11137. }
  11138. },
  11139. frontTransforming: {
  11140. height: math.unit(8.58, "feet"),
  11141. weight: math.unit(1300, "lb"),
  11142. name: "Transforming",
  11143. image: {
  11144. source: "./media/characters/alexi/front-transforming.svg",
  11145. extra: 437 / 409,
  11146. bottom: 19 / 458.66
  11147. }
  11148. },
  11149. frontTransformed: {
  11150. height: math.unit(12.5, "feet"),
  11151. weight: math.unit(4000, "lb"),
  11152. name: "Transformed",
  11153. image: {
  11154. source: "./media/characters/alexi/front-transformed.svg",
  11155. extra: 639 / 614,
  11156. bottom: 30.55 / 671
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(14, "feet"),
  11164. default: true
  11165. },
  11166. {
  11167. name: "Minimacro",
  11168. height: math.unit(30, "meters")
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(500, "meters")
  11173. },
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(9000, "km")
  11177. },
  11178. {
  11179. name: "Teramacro",
  11180. height: math.unit(384000, "km")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/kayroo/front.svg",
  11193. extra: 1153 / 1038,
  11194. bottom: 0.06
  11195. }
  11196. },
  11197. foot: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Foot",
  11201. image: {
  11202. source: "./media/characters/kayroo/foot.svg"
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(8, "feet"),
  11210. default: true
  11211. },
  11212. {
  11213. name: "Minimacro",
  11214. height: math.unit(250, "feet")
  11215. },
  11216. {
  11217. name: "Macro",
  11218. height: math.unit(2800, "feet")
  11219. },
  11220. {
  11221. name: "Megamacro",
  11222. height: math.unit(5200, "feet")
  11223. },
  11224. {
  11225. name: "Gigamacro",
  11226. height: math.unit(27000, "feet")
  11227. },
  11228. {
  11229. name: "Omega",
  11230. height: math.unit(45000, "feet")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(18, "feet"),
  11239. weight: math.unit(5800, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/rhys/front.svg",
  11243. extra: 3386 / 3090,
  11244. bottom: 0.07
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(18, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Working Size",
  11256. height: math.unit(200, "feet")
  11257. },
  11258. {
  11259. name: "Demolition Size",
  11260. height: math.unit(2000, "feet")
  11261. },
  11262. {
  11263. name: "Maximum Licensed Size",
  11264. height: math.unit(5, "miles")
  11265. },
  11266. {
  11267. name: "Maximum Observed Size",
  11268. height: math.unit(10, "yottameters")
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(250, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/toto/front.svg",
  11281. extra: 527 / 479,
  11282. bottom: 0.05
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Micro",
  11289. height: math.unit(3, "feet")
  11290. },
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(10, "feet")
  11294. },
  11295. {
  11296. name: "Macro",
  11297. height: math.unit(150, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Megamacro",
  11302. height: math.unit(1200, "feet")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "King", species: ["lion"], tags: ["anthro"] },
  11308. {
  11309. back: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Back",
  11313. image: {
  11314. source: "./media/characters/king/back.svg"
  11315. }
  11316. },
  11317. },
  11318. [
  11319. {
  11320. name: "Micro",
  11321. height: math.unit(2, "inches")
  11322. },
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(8, "feet")
  11326. },
  11327. {
  11328. name: "Macro",
  11329. height: math.unit(200, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Megamacro",
  11334. height: math.unit(50, "miles")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(11, "feet"),
  11343. weight: math.unit(1400, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/cordite/front.svg",
  11347. extra: 1919/1827,
  11348. bottom: 40/1959
  11349. }
  11350. },
  11351. side: {
  11352. height: math.unit(11, "feet"),
  11353. weight: math.unit(1400, "lb"),
  11354. name: "Side",
  11355. image: {
  11356. source: "./media/characters/cordite/side.svg",
  11357. extra: 1908/1793,
  11358. bottom: 38/1946
  11359. }
  11360. },
  11361. back: {
  11362. height: math.unit(11, "feet"),
  11363. weight: math.unit(1400, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/cordite/back.svg",
  11367. extra: 1938/1837,
  11368. bottom: 10/1948
  11369. }
  11370. },
  11371. feral: {
  11372. height: math.unit(2, "feet"),
  11373. weight: math.unit(90, "lb"),
  11374. name: "Feral",
  11375. image: {
  11376. source: "./media/characters/cordite/feral.svg",
  11377. extra: 1260 / 755,
  11378. bottom: 0.05
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(11, "feet"),
  11386. default: true
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(6, "feet"),
  11395. weight: math.unit(150, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/pianostrong/front.svg",
  11399. extra: 6577 / 6254,
  11400. bottom: 0.02
  11401. }
  11402. },
  11403. side: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(150, "lb"),
  11406. name: "Side",
  11407. image: {
  11408. source: "./media/characters/pianostrong/side.svg",
  11409. extra: 6106 / 5730
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(150, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/pianostrong/back.svg",
  11418. extra: 6085 / 5733,
  11419. bottom: 0.01
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(100, "feet")
  11427. },
  11428. {
  11429. name: "Macro+",
  11430. height: math.unit(300, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Macro++",
  11435. height: math.unit(1000, "feet")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(6, "feet"),
  11444. weight: math.unit(150, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/kona/front.svg",
  11448. extra: 2960 / 2629,
  11449. bottom: 0.005
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(11 + 8 / 12, "feet")
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(850, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Macro+",
  11465. height: math.unit(1.5, "km"),
  11466. default: true
  11467. },
  11468. {
  11469. name: "Megamacro",
  11470. height: math.unit(80, "miles")
  11471. },
  11472. {
  11473. name: "Gigamacro",
  11474. height: math.unit(3500, "miles")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11480. {
  11481. side: {
  11482. height: math.unit(1.9, "meters"),
  11483. weight: math.unit(326, "kg"),
  11484. name: "Side",
  11485. image: {
  11486. source: "./media/characters/levi/side.svg",
  11487. extra: 1704 / 1334,
  11488. bottom: 0.02
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(1.9, "meters"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(20, "meters")
  11501. },
  11502. {
  11503. name: "Macro+",
  11504. height: math.unit(200, "meters")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(2, "km")
  11509. },
  11510. {
  11511. name: "Megamacro+",
  11512. height: math.unit(20, "km")
  11513. },
  11514. {
  11515. name: "Gigamacro",
  11516. height: math.unit(2500, "km")
  11517. },
  11518. {
  11519. name: "Gigamacro+",
  11520. height: math.unit(120000, "km")
  11521. },
  11522. {
  11523. name: "Teramacro",
  11524. height: math.unit(7.77e6, "km")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11530. {
  11531. front: {
  11532. height: math.unit(6 + 4/12, "feet"),
  11533. weight: math.unit(190, "lb"),
  11534. name: "Front",
  11535. image: {
  11536. source: "./media/characters/bmc/front.svg",
  11537. extra: 1626/1472,
  11538. bottom: 79/1705
  11539. }
  11540. },
  11541. back: {
  11542. height: math.unit(6 + 4/12, "feet"),
  11543. weight: math.unit(190, "lb"),
  11544. name: "Back",
  11545. image: {
  11546. source: "./media/characters/bmc/back.svg",
  11547. extra: 1640/1479,
  11548. bottom: 45/1685
  11549. }
  11550. },
  11551. frontArmor: {
  11552. height: math.unit(6 + 4/12, "feet"),
  11553. weight: math.unit(190, "lb"),
  11554. name: "Front-armor",
  11555. image: {
  11556. source: "./media/characters/bmc/front-armor.svg",
  11557. extra: 1538/1468,
  11558. bottom: 79/1617
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Human-sized",
  11565. height: math.unit(6 + 4 / 12, "feet")
  11566. },
  11567. {
  11568. name: "Interactive Size",
  11569. height: math.unit(25, "feet")
  11570. },
  11571. {
  11572. name: "Small",
  11573. height: math.unit(250, "feet")
  11574. },
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(1250, "feet"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Good Day",
  11582. height: math.unit(88, "miles")
  11583. },
  11584. {
  11585. name: "Largest Measured Size",
  11586. height: math.unit(105.960, "galaxies")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(20, "feet"),
  11595. weight: math.unit(2016, "kg"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/sven-the-kaiju/front.svg",
  11599. extra: 1277/1250,
  11600. bottom: 35/1312
  11601. }
  11602. },
  11603. mouth: {
  11604. height: math.unit(1.85, "feet"),
  11605. name: "Mouth",
  11606. image: {
  11607. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Fairy",
  11614. height: math.unit(6, "inches")
  11615. },
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(20, "feet"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Rampage",
  11623. height: math.unit(200, "feet")
  11624. },
  11625. {
  11626. name: "Archfey Forest Guardian",
  11627. height: math.unit(1, "mile")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(4, "meters"),
  11636. weight: math.unit(2, "tons"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/marik/front.svg",
  11640. extra: 1057 / 1003,
  11641. bottom: 0.08
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(4, "meters"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Macro",
  11653. height: math.unit(20, "meters")
  11654. },
  11655. {
  11656. name: "Megamacro",
  11657. height: math.unit(50, "km")
  11658. },
  11659. {
  11660. name: "Gigamacro",
  11661. height: math.unit(100, "km")
  11662. },
  11663. {
  11664. name: "Alpha Macro",
  11665. height: math.unit(7.88e7, "yottameters")
  11666. },
  11667. ]
  11668. ))
  11669. characterMakers.push(() => makeCharacter(
  11670. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11671. {
  11672. front: {
  11673. height: math.unit(6, "feet"),
  11674. weight: math.unit(110, "lb"),
  11675. name: "Front",
  11676. image: {
  11677. source: "./media/characters/mel/front.svg",
  11678. extra: 736 / 617,
  11679. bottom: 0.017
  11680. }
  11681. },
  11682. },
  11683. [
  11684. {
  11685. name: "Pico",
  11686. height: math.unit(3, "pm")
  11687. },
  11688. {
  11689. name: "Nano",
  11690. height: math.unit(3, "nm")
  11691. },
  11692. {
  11693. name: "Micro",
  11694. height: math.unit(0.3, "mm"),
  11695. default: true
  11696. },
  11697. {
  11698. name: "Micro+",
  11699. height: math.unit(3, "mm")
  11700. },
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(5 + 10.5 / 12, "feet")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11709. {
  11710. kaiju: {
  11711. height: math.unit(1.75, "meters"),
  11712. weight: math.unit(55, "kg"),
  11713. name: "Kaiju",
  11714. image: {
  11715. source: "./media/characters/lykonous/kaiju.svg",
  11716. extra: 1055 / 946,
  11717. bottom: 0.135
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(2.5, "meters"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Kaiju Dragon",
  11729. height: math.unit(60, "meters")
  11730. },
  11731. {
  11732. name: "Mega Kaiju",
  11733. height: math.unit(120, "km")
  11734. },
  11735. {
  11736. name: "Giga Kaiju",
  11737. height: math.unit(200, "megameters")
  11738. },
  11739. {
  11740. name: "Terra Kaiju",
  11741. height: math.unit(400, "gigameters")
  11742. },
  11743. {
  11744. name: "Kaiju Dragon God",
  11745. height: math.unit(13000, "exaparsecs")
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(6, "feet"),
  11754. weight: math.unit(150, "lb"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/blü/front.svg",
  11758. extra: 1883 / 1564,
  11759. bottom: 0.031
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(13, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Big Boi",
  11771. height: math.unit(150, "meters")
  11772. },
  11773. {
  11774. name: "Mini Stomper",
  11775. height: math.unit(300, "meters")
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(1000, "meters")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(11000, "meters")
  11784. },
  11785. {
  11786. name: "Gigamacro",
  11787. height: math.unit(11000, "km")
  11788. },
  11789. {
  11790. name: "Teramacro",
  11791. height: math.unit(420000, "km")
  11792. },
  11793. {
  11794. name: "Examacro",
  11795. height: math.unit(120, "parsecs")
  11796. },
  11797. {
  11798. name: "God Tho",
  11799. height: math.unit(98000000000, "parsecs")
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11805. {
  11806. taurFront: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(200, "lb"),
  11809. name: "Taur (Front)",
  11810. image: {
  11811. source: "./media/characters/scales/taur-front.svg",
  11812. extra: 1,
  11813. bottom: 0.05
  11814. }
  11815. },
  11816. taurBack: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(200, "lb"),
  11819. name: "Taur (Back)",
  11820. image: {
  11821. source: "./media/characters/scales/taur-back.svg",
  11822. extra: 1,
  11823. bottom: 0.08
  11824. }
  11825. },
  11826. anthro: {
  11827. height: math.unit(6 * 7 / 12, "feet"),
  11828. weight: math.unit(100, "lb"),
  11829. name: "Anthro",
  11830. image: {
  11831. source: "./media/characters/scales/anthro.svg",
  11832. extra: 1,
  11833. bottom: 0.06
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(12, "feet"),
  11841. default: true
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(6, "feet"),
  11850. weight: math.unit(150, "lb"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/koragos/front.svg",
  11854. extra: 841 / 794,
  11855. bottom: 0.035
  11856. }
  11857. },
  11858. back: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/koragos/back.svg",
  11864. extra: 841 / 810,
  11865. bottom: 0.022
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(6 + 11 / 12, "feet"),
  11873. default: true
  11874. },
  11875. {
  11876. name: "Macro",
  11877. height: math.unit(490, "feet")
  11878. },
  11879. {
  11880. name: "Megamacro",
  11881. height: math.unit(10, "miles")
  11882. },
  11883. {
  11884. name: "Gigamacro",
  11885. height: math.unit(50, "miles")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(250, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/xylrem/front.svg",
  11898. extra: 3323 / 3050,
  11899. bottom: 0.065
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(4, "feet")
  11907. },
  11908. {
  11909. name: "Normal",
  11910. height: math.unit(16, "feet"),
  11911. default: true
  11912. },
  11913. {
  11914. name: "Macro",
  11915. height: math.unit(2720, "feet")
  11916. },
  11917. {
  11918. name: "Megamacro",
  11919. height: math.unit(25000, "miles")
  11920. },
  11921. ]
  11922. ))
  11923. characterMakers.push(() => makeCharacter(
  11924. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11925. {
  11926. front: {
  11927. height: math.unit(8, "feet"),
  11928. weight: math.unit(250, "kg"),
  11929. name: "Front",
  11930. image: {
  11931. source: "./media/characters/ikideru/front.svg",
  11932. extra: 930 / 870,
  11933. bottom: 0.087
  11934. }
  11935. },
  11936. back: {
  11937. height: math.unit(8, "feet"),
  11938. weight: math.unit(250, "kg"),
  11939. name: "Back",
  11940. image: {
  11941. source: "./media/characters/ikideru/back.svg",
  11942. extra: 919 / 852,
  11943. bottom: 0.055
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Rare",
  11950. height: math.unit(8, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Playful Loom",
  11955. height: math.unit(80, "feet")
  11956. },
  11957. {
  11958. name: "City Leaner",
  11959. height: math.unit(230, "feet")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(2500, "feet")
  11964. },
  11965. {
  11966. name: "Gigamacro",
  11967. height: math.unit(26400, "feet")
  11968. },
  11969. {
  11970. name: "Tectonic Shifter",
  11971. height: math.unit(1.7, "megameters")
  11972. },
  11973. {
  11974. name: "Planet Carer",
  11975. height: math.unit(21, "megameters")
  11976. },
  11977. {
  11978. name: "God",
  11979. height: math.unit(11157.22, "parsecs")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(120, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/neo/front.svg"
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(2, "inches"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Human Size",
  12003. height: math.unit(5 + 8 / 12, "feet")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(13 + 10 / 12, "feet"),
  12012. weight: math.unit(5320, "lb"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/chauncey-chantz/front.svg",
  12016. extra: 1587 / 1435,
  12017. bottom: 0.02
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Normal",
  12024. height: math.unit(13 + 10 / 12, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Macro",
  12029. height: math.unit(45, "feet")
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(250, "miles")
  12034. },
  12035. {
  12036. name: "Planetary",
  12037. height: math.unit(10000, "miles")
  12038. },
  12039. {
  12040. name: "Galactic",
  12041. height: math.unit(40000, "parsecs")
  12042. },
  12043. {
  12044. name: "Universal",
  12045. height: math.unit(1, "yottameter")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12051. {
  12052. front: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/epifox/front.svg",
  12058. extra: 1,
  12059. bottom: 0.075
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Micro",
  12066. height: math.unit(6, "inches")
  12067. },
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(12, "feet"),
  12071. default: true
  12072. },
  12073. {
  12074. name: "Macro",
  12075. height: math.unit(3810, "feet")
  12076. },
  12077. {
  12078. name: "Megamacro",
  12079. height: math.unit(500, "miles")
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(1.8796, "m"),
  12088. weight: math.unit(230, "lb"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/colin-t/front.svg",
  12092. extra: 1272 / 1193,
  12093. bottom: 0.07
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Micro",
  12100. height: math.unit(0.571, "meters")
  12101. },
  12102. {
  12103. name: "Normal",
  12104. height: math.unit(1.8796, "meters"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Tall",
  12109. height: math.unit(4, "meters")
  12110. },
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(67.241, "meters")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(371.856, "meters")
  12118. },
  12119. {
  12120. name: "Planetary",
  12121. height: math.unit(12631.5689, "km")
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12127. {
  12128. front: {
  12129. height: math.unit(1.85, "meters"),
  12130. weight: math.unit(80, "kg"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/matvei/front.svg",
  12134. extra: 614 / 594,
  12135. bottom: 0.01
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(1.85, "meters"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(5 + 9 / 12, "feet"),
  12152. weight: math.unit(70, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/quincy/front.svg",
  12156. extra: 3041 / 2751
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(5 + 9 / 12, "feet"),
  12161. weight: math.unit(70, "lb"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/quincy/back.svg",
  12165. extra: 3041 / 2751
  12166. }
  12167. },
  12168. flying: {
  12169. height: math.unit(5 + 4 / 12, "feet"),
  12170. weight: math.unit(70, "lb"),
  12171. name: "Flying",
  12172. image: {
  12173. source: "./media/characters/quincy/flying.svg",
  12174. extra: 1044 / 930
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Micro",
  12181. height: math.unit(3, "cm")
  12182. },
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(5 + 9 / 12, "feet")
  12186. },
  12187. {
  12188. name: "Macro",
  12189. height: math.unit(200, "meters"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Megamacro",
  12194. height: math.unit(1000, "meters")
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(3 + 11/12, "feet"),
  12203. weight: math.unit(50, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/vanrel/front.svg",
  12207. extra: 1104/949,
  12208. bottom: 52/1156
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(3 + 11/12, "feet"),
  12213. weight: math.unit(50, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/vanrel/back.svg",
  12217. extra: 1119/976,
  12218. bottom: 37/1156
  12219. }
  12220. },
  12221. tome: {
  12222. height: math.unit(1.35, "feet"),
  12223. weight: math.unit(10, "lb"),
  12224. name: "Vanrel's Tome",
  12225. rename: true,
  12226. image: {
  12227. source: "./media/characters/vanrel/tome.svg"
  12228. }
  12229. },
  12230. beans: {
  12231. height: math.unit(0.89, "feet"),
  12232. name: "Beans",
  12233. image: {
  12234. source: "./media/characters/vanrel/beans.svg"
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(3 + 11/12, "feet"),
  12242. default: true
  12243. },
  12244. ]
  12245. ))
  12246. characterMakers.push(() => makeCharacter(
  12247. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12248. {
  12249. front: {
  12250. height: math.unit(7 + 5 / 12, "feet"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/kuiper-vanrel/front.svg",
  12254. extra: 1219/1169,
  12255. bottom: 69/1288
  12256. }
  12257. },
  12258. back: {
  12259. height: math.unit(7 + 5 / 12, "feet"),
  12260. name: "Back",
  12261. image: {
  12262. source: "./media/characters/kuiper-vanrel/back.svg",
  12263. extra: 1236/1193,
  12264. bottom: 27/1263
  12265. }
  12266. },
  12267. foot: {
  12268. height: math.unit(0.55, "meters"),
  12269. name: "Foot",
  12270. image: {
  12271. source: "./media/characters/kuiper-vanrel/foot.svg",
  12272. }
  12273. },
  12274. battle: {
  12275. height: math.unit(6.824, "feet"),
  12276. name: "Battle",
  12277. image: {
  12278. source: "./media/characters/kuiper-vanrel/battle.svg",
  12279. extra: 1466 / 1327,
  12280. bottom: 29 / 1492.5
  12281. }
  12282. },
  12283. meerkui: {
  12284. height: math.unit(18, "inches"),
  12285. name: "Meerkui",
  12286. image: {
  12287. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12288. extra: 1354/1289,
  12289. bottom: 69/1423
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(7 + 5 / 12, "feet"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(8 + 5 / 12, "feet"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/keset-vanrel/front.svg",
  12309. extra: 1231/1148,
  12310. bottom: 82/1313
  12311. }
  12312. },
  12313. back: {
  12314. height: math.unit(8 + 5 / 12, "feet"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/keset-vanrel/back.svg",
  12318. extra: 1240/1174,
  12319. bottom: 33/1273
  12320. }
  12321. },
  12322. hand: {
  12323. height: math.unit(0.6, "meters"),
  12324. name: "Hand",
  12325. image: {
  12326. source: "./media/characters/keset-vanrel/hand.svg"
  12327. }
  12328. },
  12329. foot: {
  12330. height: math.unit(0.94978, "meters"),
  12331. name: "Foot",
  12332. image: {
  12333. source: "./media/characters/keset-vanrel/foot.svg"
  12334. }
  12335. },
  12336. battle: {
  12337. height: math.unit(7.408, "feet"),
  12338. name: "Battle",
  12339. image: {
  12340. source: "./media/characters/keset-vanrel/battle.svg",
  12341. extra: 1890 / 1386,
  12342. bottom: 73.28 / 1970
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(8 + 5 / 12, "feet"),
  12350. default: true
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12356. {
  12357. front: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/neos/front.svg",
  12363. extra: 1696 / 992,
  12364. bottom: 0.14
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(54, "cm"),
  12372. default: true
  12373. },
  12374. {
  12375. name: "Macro",
  12376. height: math.unit(100, "m")
  12377. },
  12378. {
  12379. name: "Megamacro",
  12380. height: math.unit(10, "km")
  12381. },
  12382. {
  12383. name: "Megamacro+",
  12384. height: math.unit(100, "km")
  12385. },
  12386. {
  12387. name: "Gigamacro",
  12388. height: math.unit(100, "Mm")
  12389. },
  12390. {
  12391. name: "Teramacro",
  12392. height: math.unit(100, "Gm")
  12393. },
  12394. {
  12395. name: "Examacro",
  12396. height: math.unit(100, "Em")
  12397. },
  12398. {
  12399. name: "Godly",
  12400. height: math.unit(10000, "Ym")
  12401. },
  12402. {
  12403. name: "Beyond Godly",
  12404. height: math.unit(25, "multiverses")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12410. {
  12411. feminine: {
  12412. height: math.unit(5, "feet"),
  12413. weight: math.unit(100, "lb"),
  12414. name: "Feminine",
  12415. image: {
  12416. source: "./media/characters/sammy-mouse/feminine.svg",
  12417. extra: 2526 / 2425,
  12418. bottom: 0.123
  12419. }
  12420. },
  12421. masculine: {
  12422. height: math.unit(5, "feet"),
  12423. weight: math.unit(100, "lb"),
  12424. name: "Masculine",
  12425. image: {
  12426. source: "./media/characters/sammy-mouse/masculine.svg",
  12427. extra: 2526 / 2425,
  12428. bottom: 0.123
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(5, "inches")
  12436. },
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(5, "feet"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Macro",
  12444. height: math.unit(60, "feet")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(4, "feet"),
  12453. weight: math.unit(50, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/kole/front.svg",
  12457. extra: 1423 / 1303,
  12458. bottom: 0.025
  12459. }
  12460. },
  12461. back: {
  12462. height: math.unit(4, "feet"),
  12463. weight: math.unit(50, "lb"),
  12464. name: "Back",
  12465. image: {
  12466. source: "./media/characters/kole/back.svg",
  12467. extra: 1426 / 1280,
  12468. bottom: 0.02
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(4, "feet"),
  12476. default: true
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(2.5, "feet"),
  12485. weight: math.unit(32, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/rufran/front.svg",
  12489. extra: 1313/885,
  12490. bottom: 94/1407
  12491. }
  12492. },
  12493. side: {
  12494. height: math.unit(2.5, "feet"),
  12495. weight: math.unit(32, "lb"),
  12496. name: "Side",
  12497. image: {
  12498. source: "./media/characters/rufran/side.svg",
  12499. extra: 1109/852,
  12500. bottom: 118/1227
  12501. }
  12502. },
  12503. back: {
  12504. height: math.unit(2.5, "feet"),
  12505. weight: math.unit(32, "lb"),
  12506. name: "Back",
  12507. image: {
  12508. source: "./media/characters/rufran/back.svg",
  12509. extra: 1280/878,
  12510. bottom: 131/1411
  12511. }
  12512. },
  12513. mouth: {
  12514. height: math.unit(1.13, "feet"),
  12515. name: "Mouth",
  12516. image: {
  12517. source: "./media/characters/rufran/mouth.svg"
  12518. }
  12519. },
  12520. foot: {
  12521. height: math.unit(1.33, "feet"),
  12522. name: "Foot",
  12523. image: {
  12524. source: "./media/characters/rufran/foot.svg"
  12525. }
  12526. },
  12527. koboldFront: {
  12528. height: math.unit(2 + 6 / 12, "feet"),
  12529. weight: math.unit(20, "lb"),
  12530. name: "Front (Kobold)",
  12531. image: {
  12532. source: "./media/characters/rufran/kobold-front.svg",
  12533. extra: 2041 / 1839,
  12534. bottom: 0.055
  12535. }
  12536. },
  12537. koboldBack: {
  12538. height: math.unit(2 + 6 / 12, "feet"),
  12539. weight: math.unit(20, "lb"),
  12540. name: "Back (Kobold)",
  12541. image: {
  12542. source: "./media/characters/rufran/kobold-back.svg",
  12543. extra: 2054 / 1839,
  12544. bottom: 0.01
  12545. }
  12546. },
  12547. koboldHand: {
  12548. height: math.unit(0.2166, "meters"),
  12549. name: "Hand (Kobold)",
  12550. image: {
  12551. source: "./media/characters/rufran/kobold-hand.svg"
  12552. }
  12553. },
  12554. koboldFoot: {
  12555. height: math.unit(0.185, "meters"),
  12556. name: "Foot (Kobold)",
  12557. image: {
  12558. source: "./media/characters/rufran/kobold-foot.svg"
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Micro",
  12565. height: math.unit(1, "inch")
  12566. },
  12567. {
  12568. name: "Normal",
  12569. height: math.unit(2 + 6 / 12, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Big",
  12574. height: math.unit(60, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(325, "feet")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(0.3, "meters"),
  12587. weight: math.unit(3.5, "kg"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/chip/front.svg",
  12591. extra: 748 / 674
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Micro",
  12598. height: math.unit(1, "inch"),
  12599. default: true
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12605. {
  12606. side: {
  12607. height: math.unit(2.3, "meters"),
  12608. weight: math.unit(3500, "lb"),
  12609. name: "Side",
  12610. image: {
  12611. source: "./media/characters/torvid/side.svg",
  12612. extra: 1972 / 722,
  12613. bottom: 0.035
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(2.3, "meters"),
  12621. default: true
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12627. {
  12628. front: {
  12629. height: math.unit(2, "meters"),
  12630. weight: math.unit(150.5, "kg"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/susan/front.svg",
  12634. extra: 693 / 635,
  12635. bottom: 0.05
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(505, "miles"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/raindrops/front.svg",
  12656. extra: 2655 / 2461,
  12657. bottom: 49 / 2705
  12658. }
  12659. },
  12660. back: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Back",
  12664. image: {
  12665. source: "./media/characters/raindrops/back.svg",
  12666. extra: 2574 / 2400,
  12667. bottom: 65 / 2634
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Micro",
  12674. height: math.unit(6, "inches")
  12675. },
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(6 + 2 / 12, "feet")
  12679. },
  12680. {
  12681. name: "Macro",
  12682. height: math.unit(131, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Megamacro",
  12687. height: math.unit(15, "miles")
  12688. },
  12689. {
  12690. name: "Gigamacro",
  12691. height: math.unit(4000, "miles")
  12692. },
  12693. {
  12694. name: "Teramacro",
  12695. height: math.unit(315000, "miles")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(2.794, "meters"),
  12704. weight: math.unit(325, "kg"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/tezwa/front.svg",
  12708. extra: 2083 / 1906,
  12709. bottom: 0.031
  12710. }
  12711. },
  12712. foot: {
  12713. height: math.unit(0.687, "meters"),
  12714. name: "Foot",
  12715. image: {
  12716. source: "./media/characters/tezwa/foot.svg"
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Normal",
  12723. height: math.unit(9 + 2 / 12, "feet"),
  12724. default: true
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12730. {
  12731. front: {
  12732. height: math.unit(58, "feet"),
  12733. weight: math.unit(89000, "lb"),
  12734. name: "Front",
  12735. image: {
  12736. source: "./media/characters/typhus/front.svg",
  12737. extra: 816 / 800,
  12738. bottom: 0.065
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(58, "feet"),
  12746. default: true
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(12, "feet"),
  12755. weight: math.unit(6, "tonnes"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/lyra-von-wulf/front.svg",
  12759. extra: 1,
  12760. bottom: 0.10
  12761. }
  12762. },
  12763. frontMecha: {
  12764. height: math.unit(12, "feet"),
  12765. weight: math.unit(12, "tonnes"),
  12766. name: "Front (Mecha)",
  12767. image: {
  12768. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12769. extra: 1,
  12770. bottom: 0.042
  12771. }
  12772. },
  12773. maw: {
  12774. height: math.unit(2.2, "feet"),
  12775. name: "Maw",
  12776. image: {
  12777. source: "./media/characters/lyra-von-wulf/maw.svg"
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(12, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Classic",
  12789. height: math.unit(50, "feet")
  12790. },
  12791. {
  12792. name: "Macro",
  12793. height: math.unit(500, "feet")
  12794. },
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(1, "mile")
  12798. },
  12799. {
  12800. name: "Gigamacro",
  12801. height: math.unit(400, "miles")
  12802. },
  12803. {
  12804. name: "Teramacro",
  12805. height: math.unit(22000, "miles")
  12806. },
  12807. {
  12808. name: "Solarmacro",
  12809. height: math.unit(8600000, "miles")
  12810. },
  12811. {
  12812. name: "Galactic",
  12813. height: math.unit(1057000, "lightyears")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(6 + 10 / 12, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/dixon/front.svg",
  12826. extra: 3361 / 3209,
  12827. bottom: 0.01
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(6 + 10 / 12, "feet"),
  12835. default: true
  12836. },
  12837. {
  12838. name: "Big",
  12839. height: math.unit(12, "meters")
  12840. },
  12841. {
  12842. name: "Macro",
  12843. height: math.unit(500, "meters")
  12844. },
  12845. {
  12846. name: "Megamacro",
  12847. height: math.unit(2, "km")
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12853. {
  12854. front: {
  12855. height: math.unit(185, "cm"),
  12856. weight: math.unit(68, "kg"),
  12857. name: "Front",
  12858. image: {
  12859. source: "./media/characters/kauko/front.svg",
  12860. extra: 1455 / 1421,
  12861. bottom: 0.03
  12862. }
  12863. },
  12864. back: {
  12865. height: math.unit(185, "cm"),
  12866. weight: math.unit(68, "kg"),
  12867. name: "Back",
  12868. image: {
  12869. source: "./media/characters/kauko/back.svg",
  12870. extra: 1455 / 1421,
  12871. bottom: 0.004
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(185, "cm"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(6, "feet"),
  12888. weight: math.unit(150, "kg"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/varg/front.svg",
  12892. extra: 1108 / 1018,
  12893. bottom: 0.0375
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Normal",
  12900. height: math.unit(5, "meters")
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(200, "meters")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(20, "kilometers")
  12909. },
  12910. {
  12911. name: "True Size",
  12912. height: math.unit(211, "km"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Gigamacro",
  12917. height: math.unit(1000, "km")
  12918. },
  12919. {
  12920. name: "Gigamacro+",
  12921. height: math.unit(8000, "km")
  12922. },
  12923. {
  12924. name: "Teramacro",
  12925. height: math.unit(1000000, "km")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(7 + 7 / 12, "feet"),
  12934. weight: math.unit(267, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/dayza/front.svg",
  12938. extra: 1262 / 1200,
  12939. bottom: 0.035
  12940. }
  12941. },
  12942. side: {
  12943. height: math.unit(7 + 7 / 12, "feet"),
  12944. weight: math.unit(267, "lb"),
  12945. name: "Side",
  12946. image: {
  12947. source: "./media/characters/dayza/side.svg",
  12948. extra: 1295 / 1245,
  12949. bottom: 0.05
  12950. }
  12951. },
  12952. back: {
  12953. height: math.unit(7 + 7 / 12, "feet"),
  12954. weight: math.unit(267, "lb"),
  12955. name: "Back",
  12956. image: {
  12957. source: "./media/characters/dayza/back.svg",
  12958. extra: 1241 / 1170
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(7 + 7 / 12, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Macro",
  12970. height: math.unit(155, "feet")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6 + 5 / 12, "feet"),
  12979. weight: math.unit(160, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/xanthos/front.svg",
  12983. extra: 1,
  12984. bottom: 0.04
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6 + 5 / 12, "feet"),
  12989. weight: math.unit(160, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/xanthos/back.svg",
  12993. extra: 1,
  12994. bottom: 0.03
  12995. }
  12996. },
  12997. hand: {
  12998. height: math.unit(0.928, "feet"),
  12999. name: "Hand",
  13000. image: {
  13001. source: "./media/characters/xanthos/hand.svg"
  13002. }
  13003. },
  13004. foot: {
  13005. height: math.unit(1.286, "feet"),
  13006. name: "Foot",
  13007. image: {
  13008. source: "./media/characters/xanthos/foot.svg"
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(6 + 5 / 12, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Normal+",
  13020. height: math.unit(6, "meters")
  13021. },
  13022. {
  13023. name: "Macro",
  13024. height: math.unit(40, "feet")
  13025. },
  13026. {
  13027. name: "Macro+",
  13028. height: math.unit(200, "meters")
  13029. },
  13030. {
  13031. name: "Megamacro",
  13032. height: math.unit(20, "km")
  13033. },
  13034. {
  13035. name: "Megamacro+",
  13036. height: math.unit(100, "km")
  13037. },
  13038. {
  13039. name: "Gigamacro",
  13040. height: math.unit(200, "megameters")
  13041. },
  13042. {
  13043. name: "Gigamacro+",
  13044. height: math.unit(1.5, "gigameters")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(6 + 3 / 12, "feet"),
  13053. weight: math.unit(215, "lb"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/grynn/front.svg",
  13057. extra: 4627 / 4209,
  13058. bottom: 0.047
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Micro",
  13065. height: math.unit(6, "inches")
  13066. },
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(6 + 3 / 12, "feet"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Big",
  13074. height: math.unit(104, "feet")
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(944, "feet")
  13079. },
  13080. {
  13081. name: "Macro+",
  13082. height: math.unit(9480, "feet")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(78752, "feet")
  13087. },
  13088. {
  13089. name: "Megamacro+",
  13090. height: math.unit(630128, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro++",
  13094. height: math.unit(3150695, "feet")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(7 + 5 / 12, "feet"),
  13103. weight: math.unit(450, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/mocha-aura/front.svg",
  13107. extra: 1907 / 1817,
  13108. bottom: 0.04
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(7 + 5 / 12, "feet"),
  13113. weight: math.unit(450, "lb"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/mocha-aura/back.svg",
  13117. extra: 1900 / 1825,
  13118. bottom: 0.045
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Nano",
  13125. height: math.unit(1, "nm")
  13126. },
  13127. {
  13128. name: "Megamicro",
  13129. height: math.unit(1, "mm")
  13130. },
  13131. {
  13132. name: "Micro",
  13133. height: math.unit(3, "inches")
  13134. },
  13135. {
  13136. name: "Normal",
  13137. height: math.unit(7 + 5 / 12, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Macro",
  13142. height: math.unit(30, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro",
  13146. height: math.unit(3500, "feet")
  13147. },
  13148. {
  13149. name: "Teramacro",
  13150. height: math.unit(500000, "miles")
  13151. },
  13152. {
  13153. name: "Petamacro",
  13154. height: math.unit(50000000000000000, "parsecs")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(150, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/ilisha-devya/front.svg",
  13167. extra: 1053/1049,
  13168. bottom: 270/1323
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(6, "feet"),
  13173. weight: math.unit(150, "lb"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/ilisha-devya/back.svg",
  13177. extra: 1131/1128,
  13178. bottom: 39/1170
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Macro",
  13185. height: math.unit(500, "feet"),
  13186. default: true
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(10, "miles")
  13191. },
  13192. {
  13193. name: "Gigamacro",
  13194. height: math.unit(100000, "miles")
  13195. },
  13196. {
  13197. name: "Examacro",
  13198. height: math.unit(1e9, "lightyears")
  13199. },
  13200. {
  13201. name: "Omniversal",
  13202. height: math.unit(1e33, "lightyears")
  13203. },
  13204. {
  13205. name: "Beyond Infinite",
  13206. height: math.unit(1e100, "lightyears")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13212. {
  13213. Side: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Side",
  13217. image: {
  13218. source: "./media/characters/mira/side.svg",
  13219. extra: 900 / 799,
  13220. bottom: 0.02
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Human Size",
  13227. height: math.unit(6, "feet")
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(100, "feet"),
  13232. default: true
  13233. },
  13234. {
  13235. name: "Megamacro",
  13236. height: math.unit(10, "miles")
  13237. },
  13238. {
  13239. name: "Gigamacro",
  13240. height: math.unit(25000, "miles")
  13241. },
  13242. {
  13243. name: "Teramacro",
  13244. height: math.unit(300, "AU")
  13245. },
  13246. {
  13247. name: "Full Size",
  13248. height: math.unit(4.5e10, "lightyears")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/holly/front.svg",
  13261. extra: 639 / 606
  13262. }
  13263. },
  13264. back: {
  13265. height: math.unit(6, "feet"),
  13266. weight: math.unit(150, "lb"),
  13267. name: "Back",
  13268. image: {
  13269. source: "./media/characters/holly/back.svg",
  13270. extra: 623 / 598
  13271. }
  13272. },
  13273. frontWorking: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front (Working)",
  13277. image: {
  13278. source: "./media/characters/holly/front-working.svg",
  13279. extra: 607 / 577,
  13280. bottom: 0.048
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Normal",
  13287. height: math.unit(12 + 3 / 12, "feet"),
  13288. default: true
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/porter/front.svg",
  13301. extra: 1,
  13302. bottom: 0.01
  13303. }
  13304. },
  13305. frontRobes: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front (Robes)",
  13309. image: {
  13310. source: "./media/characters/porter/front-robes.svg",
  13311. extra: 1.01,
  13312. bottom: 0.01
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(11 + 9 / 12, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13326. {
  13327. legendary: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Legendary",
  13331. image: {
  13332. source: "./media/characters/lucy/legendary.svg",
  13333. extra: 1355 / 1100,
  13334. bottom: 0.045
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Legendary",
  13341. height: math.unit(86882 * 2, "miles"),
  13342. default: true
  13343. },
  13344. ]
  13345. ))
  13346. characterMakers.push(() => makeCharacter(
  13347. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13348. {
  13349. front: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front",
  13353. image: {
  13354. source: "./media/characters/drusilla/front.svg",
  13355. extra: 678 / 635,
  13356. bottom: 0.03
  13357. }
  13358. },
  13359. back: {
  13360. height: math.unit(6, "feet"),
  13361. weight: math.unit(150, "lb"),
  13362. name: "Back",
  13363. image: {
  13364. source: "./media/characters/drusilla/back.svg",
  13365. extra: 678 / 635,
  13366. bottom: 0.005
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(100, "feet")
  13374. },
  13375. {
  13376. name: "Canon Height",
  13377. height: math.unit(2000, "feet"),
  13378. default: true
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(180, "lb"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/renard-thatch/front.svg",
  13391. extra: 2411 / 2275,
  13392. bottom: 0.01
  13393. }
  13394. },
  13395. frontPosing: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(180, "lb"),
  13398. name: "Front (Posing)",
  13399. image: {
  13400. source: "./media/characters/renard-thatch/front-posing.svg",
  13401. extra: 2381 / 2261,
  13402. bottom: 0.01
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(180, "lb"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/renard-thatch/back.svg",
  13411. extra: 2428 / 2288
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Micro",
  13418. height: math.unit(3, "inches")
  13419. },
  13420. {
  13421. name: "Default",
  13422. height: math.unit(6, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(75, "feet")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(1450, "feet"),
  13436. weight: math.unit(1.21e6, "tons"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/sekvra/front.svg",
  13440. extra: 1193/1190,
  13441. bottom: 78/1271
  13442. }
  13443. },
  13444. side: {
  13445. height: math.unit(1450, "feet"),
  13446. weight: math.unit(1.21e6, "tons"),
  13447. name: "Side",
  13448. image: {
  13449. source: "./media/characters/sekvra/side.svg",
  13450. extra: 1193/1190,
  13451. bottom: 52/1245
  13452. }
  13453. },
  13454. back: {
  13455. height: math.unit(1450, "feet"),
  13456. weight: math.unit(1.21e6, "tons"),
  13457. name: "Back",
  13458. image: {
  13459. source: "./media/characters/sekvra/back.svg",
  13460. extra: 1219/1216,
  13461. bottom: 21/1240
  13462. }
  13463. },
  13464. frontClothed: {
  13465. height: math.unit(1450, "feet"),
  13466. weight: math.unit(1.21e6, "tons"),
  13467. name: "Front (Clothed)",
  13468. image: {
  13469. source: "./media/characters/sekvra/front-clothed.svg",
  13470. extra: 1192/1189,
  13471. bottom: 79/1271
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(1450, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Megamacro",
  13483. height: math.unit(15000, "feet")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/carmine/front.svg",
  13496. extra: 1,
  13497. bottom: 0.035
  13498. }
  13499. },
  13500. frontArmor: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(150, "lb"),
  13503. name: "Front (Armor)",
  13504. image: {
  13505. source: "./media/characters/carmine/front-armor.svg",
  13506. extra: 1,
  13507. bottom: 0.035
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Large",
  13514. height: math.unit(1, "mile")
  13515. },
  13516. {
  13517. name: "Huge",
  13518. height: math.unit(40, "miles"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Colossal",
  13523. height: math.unit(2500, "miles")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/elyssia/front.svg",
  13536. extra: 2201 / 2035,
  13537. bottom: 0.05
  13538. }
  13539. },
  13540. frontClothed: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front (Clothed)",
  13544. image: {
  13545. source: "./media/characters/elyssia/front-clothed.svg",
  13546. extra: 2201 / 2035,
  13547. bottom: 0.05
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(150, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/elyssia/back.svg",
  13556. extra: 2201 / 2035,
  13557. bottom: 0.013
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Smaller",
  13564. height: math.unit(150, "feet")
  13565. },
  13566. {
  13567. name: "Standard",
  13568. height: math.unit(1400, "feet"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Distracted",
  13573. height: math.unit(15000, "feet")
  13574. },
  13575. ]
  13576. ))
  13577. characterMakers.push(() => makeCharacter(
  13578. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13579. {
  13580. front: {
  13581. height: math.unit(7 + 4/12, "feet"),
  13582. weight: math.unit(690, "lb"),
  13583. name: "Front",
  13584. image: {
  13585. source: "./media/characters/geno-maxwell/front.svg",
  13586. extra: 984/856,
  13587. bottom: 87/1071
  13588. }
  13589. },
  13590. back: {
  13591. height: math.unit(7 + 4/12, "feet"),
  13592. weight: math.unit(690, "lb"),
  13593. name: "Back",
  13594. image: {
  13595. source: "./media/characters/geno-maxwell/back.svg",
  13596. extra: 981/854,
  13597. bottom: 57/1038
  13598. }
  13599. },
  13600. frontCostume: {
  13601. height: math.unit(7 + 4/12, "feet"),
  13602. weight: math.unit(690, "lb"),
  13603. name: "Front (Costume)",
  13604. image: {
  13605. source: "./media/characters/geno-maxwell/front-costume.svg",
  13606. extra: 984/856,
  13607. bottom: 87/1071
  13608. }
  13609. },
  13610. backcostume: {
  13611. height: math.unit(7 + 4/12, "feet"),
  13612. weight: math.unit(690, "lb"),
  13613. name: "Back (Costume)",
  13614. image: {
  13615. source: "./media/characters/geno-maxwell/back-costume.svg",
  13616. extra: 981/854,
  13617. bottom: 57/1038
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Micro",
  13624. height: math.unit(3, "inches")
  13625. },
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(7 + 4 / 12, "feet"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(220, "feet")
  13634. },
  13635. {
  13636. name: "Megamacro",
  13637. height: math.unit(11, "miles")
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13643. {
  13644. front: {
  13645. height: math.unit(7 + 4/12, "feet"),
  13646. weight: math.unit(750, "lb"),
  13647. name: "Front",
  13648. image: {
  13649. source: "./media/characters/regena-maxwell/front.svg",
  13650. extra: 984/856,
  13651. bottom: 87/1071
  13652. }
  13653. },
  13654. back: {
  13655. height: math.unit(7 + 4/12, "feet"),
  13656. weight: math.unit(750, "lb"),
  13657. name: "Back",
  13658. image: {
  13659. source: "./media/characters/regena-maxwell/back.svg",
  13660. extra: 981/854,
  13661. bottom: 57/1038
  13662. }
  13663. },
  13664. frontCostume: {
  13665. height: math.unit(7 + 4/12, "feet"),
  13666. weight: math.unit(750, "lb"),
  13667. name: "Front (Costume)",
  13668. image: {
  13669. source: "./media/characters/regena-maxwell/front-costume.svg",
  13670. extra: 984/856,
  13671. bottom: 87/1071
  13672. }
  13673. },
  13674. backcostume: {
  13675. height: math.unit(7 + 4/12, "feet"),
  13676. weight: math.unit(750, "lb"),
  13677. name: "Back (Costume)",
  13678. image: {
  13679. source: "./media/characters/regena-maxwell/back-costume.svg",
  13680. extra: 981/854,
  13681. bottom: 57/1038
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Normal",
  13688. height: math.unit(7 + 4 / 12, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(220, "feet")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(11, "miles")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13710. extra: 860 / 690,
  13711. bottom: 0.03
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(1.7, "meters"),
  13719. default: true
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(6, "feet"),
  13728. weight: math.unit(150, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/quilly/front.svg",
  13732. extra: 890 / 776
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Gigamacro",
  13739. height: math.unit(404090, "miles"),
  13740. default: true
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(7 + 8 / 12, "feet"),
  13749. weight: math.unit(350, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/tempest/front.svg",
  13753. extra: 1175 / 1086,
  13754. bottom: 0.02
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(7 + 8 / 12, "feet"),
  13762. default: true
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13768. {
  13769. side: {
  13770. height: math.unit(4 + 5 / 12, "feet"),
  13771. weight: math.unit(80, "lb"),
  13772. name: "Side",
  13773. image: {
  13774. source: "./media/characters/rodger/side.svg",
  13775. extra: 1235 / 1118
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Micro",
  13782. height: math.unit(1, "inch")
  13783. },
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(4 + 5 / 12, "feet"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(120, "feet")
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(150, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/danyel/front.svg",
  13804. extra: 1185 / 1123,
  13805. bottom: 0.05
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Shrunken",
  13812. height: math.unit(0.5, "mm")
  13813. },
  13814. {
  13815. name: "Micro",
  13816. height: math.unit(1, "mm"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Upsized",
  13821. height: math.unit(5 + 5 / 12, "feet")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(5 + 6 / 12, "feet"),
  13830. weight: math.unit(200, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/vivian-bijoux/front.svg",
  13834. extra: 1217/1209,
  13835. bottom: 76/1293
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(5 + 6 / 12, "feet"),
  13840. weight: math.unit(200, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/vivian-bijoux/back.svg",
  13844. extra: 1214/1208,
  13845. bottom: 51/1265
  13846. }
  13847. },
  13848. dressed: {
  13849. height: math.unit(5 + 6 / 12, "feet"),
  13850. weight: math.unit(200, "lb"),
  13851. name: "Dressed",
  13852. image: {
  13853. source: "./media/characters/vivian-bijoux/dressed.svg",
  13854. extra: 1217/1209,
  13855. bottom: 76/1293
  13856. }
  13857. },
  13858. },
  13859. [
  13860. {
  13861. name: "Normal",
  13862. height: math.unit(5 + 6 / 12, "feet"),
  13863. default: true
  13864. },
  13865. {
  13866. name: "Bad Dream",
  13867. height: math.unit(500, "feet")
  13868. },
  13869. {
  13870. name: "Nightmare",
  13871. height: math.unit(500, "miles")
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(6 + 1 / 12, "feet"),
  13880. weight: math.unit(260, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/zeta/front.svg",
  13884. extra: 1968 / 1889,
  13885. bottom: 0.06
  13886. }
  13887. },
  13888. back: {
  13889. height: math.unit(6 + 1 / 12, "feet"),
  13890. weight: math.unit(260, "lb"),
  13891. name: "Back",
  13892. image: {
  13893. source: "./media/characters/zeta/back.svg",
  13894. extra: 1944 / 1858,
  13895. bottom: 0.03
  13896. }
  13897. },
  13898. hand: {
  13899. height: math.unit(1.112, "feet"),
  13900. name: "Hand",
  13901. image: {
  13902. source: "./media/characters/zeta/hand.svg"
  13903. }
  13904. },
  13905. foot: {
  13906. height: math.unit(1.48, "feet"),
  13907. name: "Foot",
  13908. image: {
  13909. source: "./media/characters/zeta/foot.svg"
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(6, "inches")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(6 + 1 / 12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Macro",
  13925. height: math.unit(20, "feet")
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(6, "feet"),
  13934. weight: math.unit(150, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/jamie-larsen/front.svg",
  13938. extra: 962 / 933,
  13939. bottom: 0.02
  13940. }
  13941. },
  13942. back: {
  13943. height: math.unit(6, "feet"),
  13944. weight: math.unit(150, "lb"),
  13945. name: "Back",
  13946. image: {
  13947. source: "./media/characters/jamie-larsen/back.svg",
  13948. extra: 997 / 946
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(28 + 7 / 12, "feet"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Macro+",
  13960. height: math.unit(180, "feet")
  13961. },
  13962. {
  13963. name: "Megamacro",
  13964. height: math.unit(10, "miles")
  13965. },
  13966. {
  13967. name: "Gigamacro",
  13968. height: math.unit(200000, "miles")
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(6, "feet"),
  13977. weight: math.unit(120, "lb"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/vance/front.svg",
  13981. extra: 1980 / 1890,
  13982. bottom: 0.09
  13983. }
  13984. },
  13985. back: {
  13986. height: math.unit(6, "feet"),
  13987. weight: math.unit(120, "lb"),
  13988. name: "Back",
  13989. image: {
  13990. source: "./media/characters/vance/back.svg",
  13991. extra: 2081 / 1994,
  13992. bottom: 0.014
  13993. }
  13994. },
  13995. hand: {
  13996. height: math.unit(0.88, "feet"),
  13997. name: "Hand",
  13998. image: {
  13999. source: "./media/characters/vance/hand.svg"
  14000. }
  14001. },
  14002. foot: {
  14003. height: math.unit(0.64, "feet"),
  14004. name: "Foot",
  14005. image: {
  14006. source: "./media/characters/vance/foot.svg"
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Small",
  14013. height: math.unit(90, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Macro",
  14018. height: math.unit(100, "meters")
  14019. },
  14020. {
  14021. name: "Megamacro",
  14022. height: math.unit(15, "miles")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(180, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/xochitl/front.svg",
  14035. extra: 2297 / 2261,
  14036. bottom: 0.065
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(180, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/xochitl/back.svg",
  14045. extra: 2386 / 2354,
  14046. bottom: 0.01
  14047. }
  14048. },
  14049. foot: {
  14050. height: math.unit(6 / 5 * 1.15, "feet"),
  14051. weight: math.unit(150, "lb"),
  14052. name: "Foot",
  14053. image: {
  14054. source: "./media/characters/xochitl/foot.svg"
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Macro",
  14061. height: math.unit(80, "feet")
  14062. },
  14063. {
  14064. name: "Macro+",
  14065. height: math.unit(400, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Gigamacro",
  14070. height: math.unit(80000, "miles")
  14071. },
  14072. {
  14073. name: "Gigamacro+",
  14074. height: math.unit(400000, "miles")
  14075. },
  14076. {
  14077. name: "Teramacro",
  14078. height: math.unit(300, "AU")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/vincent/front.svg",
  14091. extra: 1130 / 1080,
  14092. bottom: 0.055
  14093. }
  14094. },
  14095. beak: {
  14096. height: math.unit(6 * 0.1, "feet"),
  14097. name: "Beak",
  14098. image: {
  14099. source: "./media/characters/vincent/beak.svg"
  14100. }
  14101. },
  14102. hand: {
  14103. height: math.unit(6 * 0.85, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Hand",
  14106. image: {
  14107. source: "./media/characters/vincent/hand.svg"
  14108. }
  14109. },
  14110. foot: {
  14111. height: math.unit(6 * 0.19, "feet"),
  14112. weight: math.unit(150, "lb"),
  14113. name: "Foot",
  14114. image: {
  14115. source: "./media/characters/vincent/foot.svg"
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Base",
  14122. height: math.unit(6 + 5 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(300, "feet")
  14128. },
  14129. {
  14130. name: "Megamacro",
  14131. height: math.unit(2, "miles")
  14132. },
  14133. {
  14134. name: "Gigamacro",
  14135. height: math.unit(1000, "miles")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(2, "meters"),
  14144. weight: math.unit(500, "kg"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/coatl/front.svg",
  14148. extra: 3948 / 3500,
  14149. bottom: 0.082
  14150. }
  14151. },
  14152. },
  14153. [
  14154. {
  14155. name: "Normal",
  14156. height: math.unit(4, "meters")
  14157. },
  14158. {
  14159. name: "Macro",
  14160. height: math.unit(100, "meters"),
  14161. default: true
  14162. },
  14163. {
  14164. name: "Macro+",
  14165. height: math.unit(300, "meters")
  14166. },
  14167. {
  14168. name: "Megamacro",
  14169. height: math.unit(3, "gigameters")
  14170. },
  14171. {
  14172. name: "Megamacro+",
  14173. height: math.unit(300, "terameters")
  14174. },
  14175. {
  14176. name: "Megamacro++",
  14177. height: math.unit(3, "lightyears")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(50, "kg"),
  14187. name: "front",
  14188. image: {
  14189. source: "./media/characters/shiroryu/front.svg",
  14190. extra: 1990 / 1935
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Mortal Mingling",
  14197. height: math.unit(3, "meters")
  14198. },
  14199. {
  14200. name: "Kaiju-ish",
  14201. height: math.unit(250, "meters")
  14202. },
  14203. {
  14204. name: "Somewhat Godly",
  14205. height: math.unit(400, "km"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Planetary",
  14210. height: math.unit(300, "megameters")
  14211. },
  14212. {
  14213. name: "Galaxy-dwarfing",
  14214. height: math.unit(450, "kiloparsecs")
  14215. },
  14216. {
  14217. name: "Universe Eater",
  14218. height: math.unit(150, "gigaparsecs")
  14219. },
  14220. {
  14221. name: "Almost Immeasurable",
  14222. height: math.unit(1.3e266, "yottaparsecs")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(150, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/umeko/front.svg",
  14235. extra: 1,
  14236. bottom: 0.019
  14237. }
  14238. },
  14239. frontArmored: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Front (Armored)",
  14243. image: {
  14244. source: "./media/characters/umeko/front-armored.svg",
  14245. extra: 1,
  14246. bottom: 0.021
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Macro",
  14253. height: math.unit(220, "feet"),
  14254. default: true
  14255. },
  14256. {
  14257. name: "Guardian Dragon",
  14258. height: math.unit(50, "miles")
  14259. },
  14260. {
  14261. name: "Cosmic",
  14262. height: math.unit(800000, "miles")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(150, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/cassidy/front.svg",
  14275. extra: 810/808,
  14276. bottom: 41/851
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Canon Height",
  14283. height: math.unit(120, "feet"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Macro+",
  14288. height: math.unit(400, "feet")
  14289. },
  14290. {
  14291. name: "Macro++",
  14292. height: math.unit(4000, "feet")
  14293. },
  14294. {
  14295. name: "Megamacro",
  14296. height: math.unit(3, "miles")
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(6, "feet"),
  14305. weight: math.unit(150, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/isaac/front.svg",
  14309. extra: 896 / 815,
  14310. bottom: 0.11
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Human Size",
  14317. height: math.unit(8, "feet"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Macro",
  14322. height: math.unit(400, "feet")
  14323. },
  14324. {
  14325. name: "Megamacro",
  14326. height: math.unit(50, "miles")
  14327. },
  14328. {
  14329. name: "Canon Height",
  14330. height: math.unit(200, "AU")
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14336. {
  14337. front: {
  14338. height: math.unit(6, "feet"),
  14339. weight: math.unit(72, "kg"),
  14340. name: "Front",
  14341. image: {
  14342. source: "./media/characters/sleekit/front.svg",
  14343. extra: 4693 / 4487,
  14344. bottom: 0.012
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Minimum Height",
  14351. height: math.unit(10, "meters")
  14352. },
  14353. {
  14354. name: "Smaller",
  14355. height: math.unit(25, "meters")
  14356. },
  14357. {
  14358. name: "Larger",
  14359. height: math.unit(38, "meters"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Maximum height",
  14364. height: math.unit(100, "meters")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(6, "feet"),
  14373. weight: math.unit(150, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/nillia/front.svg",
  14377. extra: 2195 / 2037,
  14378. bottom: 0.005
  14379. }
  14380. },
  14381. back: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(150, "lb"),
  14384. name: "Back",
  14385. image: {
  14386. source: "./media/characters/nillia/back.svg",
  14387. extra: 2195 / 2037,
  14388. bottom: 0.005
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Canon Height",
  14395. height: math.unit(489, "feet"),
  14396. default: true
  14397. }
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14402. {
  14403. front: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Front",
  14407. image: {
  14408. source: "./media/characters/mesmyriza/front.svg",
  14409. extra: 2067 / 1784,
  14410. bottom: 0.035
  14411. }
  14412. },
  14413. foot: {
  14414. height: math.unit(6 / (250 / 35), "feet"),
  14415. name: "Foot",
  14416. image: {
  14417. source: "./media/characters/mesmyriza/foot.svg"
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Macro",
  14424. height: math.unit(457, "meters"),
  14425. default: true
  14426. },
  14427. {
  14428. name: "Megamacro",
  14429. height: math.unit(8, "megameters")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(6, "feet"),
  14438. weight: math.unit(250, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/saudade/front.svg",
  14442. extra: 1172 / 1139,
  14443. bottom: 0.035
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Micro",
  14450. height: math.unit(3, "inches")
  14451. },
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(6, "feet"),
  14455. default: true
  14456. },
  14457. {
  14458. name: "Macro",
  14459. height: math.unit(50, "feet")
  14460. },
  14461. {
  14462. name: "Megamacro",
  14463. height: math.unit(2800, "feet")
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(5 + 4 / 12, "feet"),
  14472. weight: math.unit(100, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/keireer/front.svg",
  14476. extra: 716 / 666,
  14477. bottom: 0.05
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5 + 4 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(90, "kg"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/mirja/front.svg",
  14498. extra: 1789 / 1683,
  14499. bottom: 0.05
  14500. }
  14501. },
  14502. frontDressed: {
  14503. height: math.unit(6, "feet"),
  14504. weight: math.unit(90, "lb"),
  14505. name: "Front (Dressed)",
  14506. image: {
  14507. source: "./media/characters/mirja/front-dressed.svg",
  14508. extra: 1789 / 1683,
  14509. bottom: 0.05
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(6, "feet"),
  14514. weight: math.unit(90, "lb"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/mirja/back.svg",
  14518. extra: 953 / 917,
  14519. bottom: 0.017
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "\"Incognito\"",
  14526. height: math.unit(3, "meters")
  14527. },
  14528. {
  14529. name: "Strolling Size",
  14530. height: math.unit(15, "km")
  14531. },
  14532. {
  14533. name: "Larger Strolling Size",
  14534. height: math.unit(400, "km")
  14535. },
  14536. {
  14537. name: "Preferred Size",
  14538. height: math.unit(5000, "km")
  14539. },
  14540. {
  14541. name: "True Size",
  14542. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(15, "feet"),
  14552. weight: math.unit(880, "kg"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/nightraver/front.svg",
  14556. extra: 2444 / 2160,
  14557. bottom: 0.027
  14558. }
  14559. },
  14560. back: {
  14561. height: math.unit(15, "feet"),
  14562. weight: math.unit(880, "kg"),
  14563. name: "Back",
  14564. image: {
  14565. source: "./media/characters/nightraver/back.svg",
  14566. extra: 2309 / 2180,
  14567. bottom: 0.005
  14568. }
  14569. },
  14570. sole: {
  14571. height: math.unit(2.878, "feet"),
  14572. name: "Sole",
  14573. image: {
  14574. source: "./media/characters/nightraver/sole.svg"
  14575. }
  14576. },
  14577. foot: {
  14578. height: math.unit(2.285, "feet"),
  14579. name: "Foot",
  14580. image: {
  14581. source: "./media/characters/nightraver/foot.svg"
  14582. }
  14583. },
  14584. maw: {
  14585. height: math.unit(2.67, "feet"),
  14586. name: "Maw",
  14587. image: {
  14588. source: "./media/characters/nightraver/maw.svg"
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Micro",
  14595. height: math.unit(1, "cm")
  14596. },
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(15, "feet"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(300, "feet")
  14605. },
  14606. {
  14607. name: "Megamacro",
  14608. height: math.unit(300, "miles")
  14609. },
  14610. {
  14611. name: "Gigamacro",
  14612. height: math.unit(10000, "miles")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14618. {
  14619. side: {
  14620. height: math.unit(2, "inches"),
  14621. weight: math.unit(5, "grams"),
  14622. name: "Side",
  14623. image: {
  14624. source: "./media/characters/arc/side.svg"
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Micro",
  14631. height: math.unit(2, "inches"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(1.1938, "meters"),
  14641. weight: math.unit(54, "kg"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/nebula-shahar/front.svg",
  14645. extra: 1642 / 1436,
  14646. bottom: 0.06
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Megamicro",
  14653. height: math.unit(0.3, "mm")
  14654. },
  14655. {
  14656. name: "Micro",
  14657. height: math.unit(3, "cm")
  14658. },
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(138, "cm"),
  14662. default: true
  14663. },
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(30, "m")
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(5.24, "feet"),
  14675. weight: math.unit(150, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/shayla/front.svg",
  14679. extra: 1512 / 1414,
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. back: {
  14684. height: math.unit(5.24, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Back",
  14687. image: {
  14688. source: "./media/characters/shayla/back.svg",
  14689. extra: 1512 / 1414
  14690. }
  14691. },
  14692. hand: {
  14693. height: math.unit(0.7781496062992126, "feet"),
  14694. name: "Hand",
  14695. image: {
  14696. source: "./media/characters/shayla/hand.svg"
  14697. }
  14698. },
  14699. foot: {
  14700. height: math.unit(1.4206036745406823, "feet"),
  14701. name: "Foot",
  14702. image: {
  14703. source: "./media/characters/shayla/foot.svg"
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Micro",
  14710. height: math.unit(0.32, "feet")
  14711. },
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(5.24, "feet"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(492.12, "feet")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(186.41, "miles")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(2.2, "m"),
  14732. weight: math.unit(120, "kg"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/pia-jr/front.svg",
  14736. extra: 1000 / 970,
  14737. bottom: 0.035
  14738. }
  14739. },
  14740. hand: {
  14741. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14742. name: "Hand",
  14743. image: {
  14744. source: "./media/characters/pia-jr/hand.svg"
  14745. }
  14746. },
  14747. paw: {
  14748. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14749. name: "Paw",
  14750. image: {
  14751. source: "./media/characters/pia-jr/paw.svg"
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Micro",
  14758. height: math.unit(1.2, "cm")
  14759. },
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(2.2, "m"),
  14763. default: true
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(180, "m")
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(420, "km")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(2, "m"),
  14780. weight: math.unit(115, "kg"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/pia-sr/front.svg",
  14784. extra: 760 / 730,
  14785. bottom: 0.015
  14786. }
  14787. },
  14788. back: {
  14789. height: math.unit(2, "m"),
  14790. weight: math.unit(115, "kg"),
  14791. name: "Back",
  14792. image: {
  14793. source: "./media/characters/pia-sr/back.svg",
  14794. extra: 760 / 730,
  14795. bottom: 0.01
  14796. }
  14797. },
  14798. hand: {
  14799. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14800. name: "Hand",
  14801. image: {
  14802. source: "./media/characters/pia-sr/hand.svg"
  14803. }
  14804. },
  14805. foot: {
  14806. height: math.unit(1.83, "feet"),
  14807. name: "Foot",
  14808. image: {
  14809. source: "./media/characters/pia-sr/foot.svg"
  14810. }
  14811. },
  14812. },
  14813. [
  14814. {
  14815. name: "Micro",
  14816. height: math.unit(88, "mm")
  14817. },
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(2, "m"),
  14821. default: true
  14822. },
  14823. {
  14824. name: "Macro",
  14825. height: math.unit(200, "m")
  14826. },
  14827. {
  14828. name: "Megamacro",
  14829. height: math.unit(420, "km")
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14835. {
  14836. front: {
  14837. height: math.unit(8 + 2 / 12, "feet"),
  14838. weight: math.unit(300, "lb"),
  14839. name: "Front",
  14840. image: {
  14841. source: "./media/characters/kibibyte/front.svg",
  14842. extra: 2221 / 2098,
  14843. bottom: 0.04
  14844. }
  14845. },
  14846. },
  14847. [
  14848. {
  14849. name: "Normal",
  14850. height: math.unit(8 + 2 / 12, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Socialable Macro",
  14855. height: math.unit(50, "feet")
  14856. },
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(300, "feet")
  14860. },
  14861. {
  14862. name: "Megamacro",
  14863. height: math.unit(500, "miles")
  14864. },
  14865. ]
  14866. ))
  14867. characterMakers.push(() => makeCharacter(
  14868. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14869. {
  14870. front: {
  14871. height: math.unit(6, "feet"),
  14872. weight: math.unit(150, "lb"),
  14873. name: "Front",
  14874. image: {
  14875. source: "./media/characters/felix/front.svg",
  14876. extra: 762 / 722,
  14877. bottom: 0.02
  14878. }
  14879. },
  14880. frontClothed: {
  14881. height: math.unit(6, "feet"),
  14882. weight: math.unit(150, "lb"),
  14883. name: "Front (Clothed)",
  14884. image: {
  14885. source: "./media/characters/felix/front-clothed.svg",
  14886. extra: 762 / 722,
  14887. bottom: 0.02
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(6 + 8 / 12, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(2600, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(450, "miles")
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14909. {
  14910. front: {
  14911. height: math.unit(6 + 1 / 12, "feet"),
  14912. weight: math.unit(250, "lb"),
  14913. name: "Front",
  14914. image: {
  14915. source: "./media/characters/tobo/front.svg",
  14916. extra: 608 / 586,
  14917. bottom: 0.023
  14918. }
  14919. },
  14920. back: {
  14921. height: math.unit(6 + 1 / 12, "feet"),
  14922. weight: math.unit(250, "lb"),
  14923. name: "Back",
  14924. image: {
  14925. source: "./media/characters/tobo/back.svg",
  14926. extra: 608 / 586
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Nano",
  14933. height: math.unit(2, "nm")
  14934. },
  14935. {
  14936. name: "Megamicro",
  14937. height: math.unit(0.1, "mm")
  14938. },
  14939. {
  14940. name: "Micro",
  14941. height: math.unit(1, "inch"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Human-sized",
  14946. height: math.unit(6 + 1 / 12, "feet")
  14947. },
  14948. {
  14949. name: "Macro",
  14950. height: math.unit(250, "feet")
  14951. },
  14952. {
  14953. name: "Megamacro",
  14954. height: math.unit(75, "miles")
  14955. },
  14956. {
  14957. name: "Texas-sized",
  14958. height: math.unit(750, "miles")
  14959. },
  14960. {
  14961. name: "Teramacro",
  14962. height: math.unit(50000, "miles")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(269, "lb"),
  14972. name: "Front",
  14973. image: {
  14974. source: "./media/characters/danny-kapowsky/front.svg",
  14975. extra: 766 / 736,
  14976. bottom: 0.044
  14977. }
  14978. },
  14979. back: {
  14980. height: math.unit(6, "feet"),
  14981. weight: math.unit(269, "lb"),
  14982. name: "Back",
  14983. image: {
  14984. source: "./media/characters/danny-kapowsky/back.svg",
  14985. extra: 797 / 760,
  14986. bottom: 0.025
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Macro",
  14993. height: math.unit(150, "feet"),
  14994. default: true
  14995. },
  14996. {
  14997. name: "Macro+",
  14998. height: math.unit(200, "feet")
  14999. },
  15000. {
  15001. name: "Macro++",
  15002. height: math.unit(300, "feet")
  15003. },
  15004. {
  15005. name: "Macro+++",
  15006. height: math.unit(400, "feet")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15012. {
  15013. side: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(170, "lb"),
  15016. name: "Side",
  15017. image: {
  15018. source: "./media/characters/finn/side.svg",
  15019. extra: 1953 / 1807,
  15020. bottom: 0.057
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Megamacro",
  15027. height: math.unit(14445, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(5 + 6 / 12, "feet"),
  15037. weight: math.unit(125, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/roy/front.svg",
  15041. extra: 1,
  15042. bottom: 0.11
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Micro",
  15049. height: math.unit(3, "inches"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(5 + 6 / 12, "feet")
  15055. },
  15056. {
  15057. name: "Lesser Macro",
  15058. height: math.unit(60, "feet")
  15059. },
  15060. {
  15061. name: "Greater Macro",
  15062. height: math.unit(120, "feet")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(100, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/aevsivs/front.svg",
  15075. extra: 1,
  15076. bottom: 0.03
  15077. }
  15078. },
  15079. back: {
  15080. height: math.unit(6, "feet"),
  15081. weight: math.unit(100, "lb"),
  15082. name: "Back",
  15083. image: {
  15084. source: "./media/characters/aevsivs/back.svg"
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Micro",
  15091. height: math.unit(2, "inches"),
  15092. default: true
  15093. },
  15094. {
  15095. name: "Normal",
  15096. height: math.unit(5, "feet")
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 7 / 12, "feet"),
  15105. weight: math.unit(159, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/hildegard/front.svg",
  15109. extra: 289 / 269,
  15110. bottom: 7.63 / 297.8
  15111. }
  15112. },
  15113. back: {
  15114. height: math.unit(5 + 7 / 12, "feet"),
  15115. weight: math.unit(159, "lb"),
  15116. name: "Back",
  15117. image: {
  15118. source: "./media/characters/hildegard/back.svg",
  15119. extra: 280 / 260,
  15120. bottom: 2.3 / 282
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(5 + 7 / 12, "feet"),
  15128. default: true
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15134. {
  15135. bernard: {
  15136. height: math.unit(2 + 7 / 12, "feet"),
  15137. weight: math.unit(66, "lb"),
  15138. name: "Bernard",
  15139. rename: true,
  15140. image: {
  15141. source: "./media/characters/bernard-wilder/bernard.svg",
  15142. extra: 192 / 128,
  15143. bottom: 0.05
  15144. }
  15145. },
  15146. wilder: {
  15147. height: math.unit(5 + 8 / 12, "feet"),
  15148. weight: math.unit(143, "lb"),
  15149. name: "Wilder",
  15150. rename: true,
  15151. image: {
  15152. source: "./media/characters/bernard-wilder/wilder.svg",
  15153. extra: 361 / 312,
  15154. bottom: 0.02
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Normal",
  15161. height: math.unit(2 + 7 / 12, "feet"),
  15162. default: true
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15168. {
  15169. anthro: {
  15170. height: math.unit(6 + 1 / 12, "feet"),
  15171. weight: math.unit(155, "lb"),
  15172. name: "Anthro",
  15173. image: {
  15174. source: "./media/characters/hearth/anthro.svg",
  15175. extra: 1178/1136,
  15176. bottom: 28/1206
  15177. }
  15178. },
  15179. feral: {
  15180. height: math.unit(3.78, "feet"),
  15181. weight: math.unit(35, "kg"),
  15182. name: "Feral",
  15183. image: {
  15184. source: "./media/characters/hearth/feral.svg",
  15185. extra: 153 / 135,
  15186. bottom: 0.03
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(6 + 1 / 12, "feet"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15200. {
  15201. front: {
  15202. height: math.unit(6, "feet"),
  15203. weight: math.unit(182, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/ingrid/front.svg",
  15207. extra: 294 / 268,
  15208. bottom: 0.027
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(6, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15222. {
  15223. eevee: {
  15224. height: math.unit(2 + 10 / 12, "feet"),
  15225. weight: math.unit(86, "lb"),
  15226. name: "Malgam",
  15227. image: {
  15228. source: "./media/characters/malgam/eevee.svg",
  15229. extra: 952/784,
  15230. bottom: 38/990
  15231. }
  15232. },
  15233. sylveon: {
  15234. height: math.unit(4, "feet"),
  15235. weight: math.unit(101, "lb"),
  15236. name: "Future Malgam",
  15237. rename: true,
  15238. image: {
  15239. source: "./media/characters/malgam/sylveon.svg",
  15240. extra: 371 / 325,
  15241. bottom: 0.015
  15242. }
  15243. },
  15244. gigantamax: {
  15245. height: math.unit(50, "feet"),
  15246. name: "Gigantamax Malgam",
  15247. rename: true,
  15248. image: {
  15249. source: "./media/characters/malgam/gigantamax.svg"
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(2 + 10 / 12, "feet"),
  15257. default: true
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(5 + 11 / 12, "feet"),
  15266. weight: math.unit(188, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/fleur/front.svg",
  15270. extra: 309 / 283,
  15271. bottom: 0.007
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(5 + 11 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(5 + 4 / 12, "feet"),
  15288. weight: math.unit(122, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/jude/front.svg",
  15292. extra: 288 / 273,
  15293. bottom: 0.03
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(5 + 4 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(5 + 11 / 12, "feet"),
  15310. weight: math.unit(190, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/seara/front.svg",
  15314. extra: 1,
  15315. bottom: 0.05
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(5 + 11 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(16 + 5 / 12, "feet"),
  15332. weight: math.unit(524, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/caspian/front.svg",
  15336. extra: 1,
  15337. bottom: 0.04
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(16 + 5 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(5 + 7 / 12, "feet"),
  15354. weight: math.unit(170, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/mika/front.svg",
  15358. extra: 1,
  15359. bottom: 0.016
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(5 + 7 / 12, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6 + 2 / 12, "feet"),
  15376. weight: math.unit(268, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/sol/front.svg",
  15380. extra: 247 / 231,
  15381. bottom: 0.05
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(6 + 2 / 12, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15395. {
  15396. buizel: {
  15397. height: math.unit(2 + 5 / 12, "feet"),
  15398. weight: math.unit(87, "lb"),
  15399. name: "Buizel",
  15400. image: {
  15401. source: "./media/characters/umiko/buizel.svg",
  15402. extra: 172 / 157,
  15403. bottom: 0.01
  15404. }
  15405. },
  15406. floatzel: {
  15407. height: math.unit(5 + 9 / 12, "feet"),
  15408. weight: math.unit(250, "lb"),
  15409. name: "Floatzel",
  15410. image: {
  15411. source: "./media/characters/umiko/floatzel.svg",
  15412. extra: 262 / 248
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(2 + 5 / 12, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. weight: math.unit(146, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/iliac/front.svg",
  15433. extra: 389 / 365,
  15434. bottom: 0.035
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(6 + 2 / 12, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15448. {
  15449. front: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(170, "lb"),
  15452. name: "Front",
  15453. image: {
  15454. source: "./media/characters/topaz/front.svg",
  15455. extra: 317 / 303,
  15456. bottom: 0.055
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(6, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(5 + 11 / 12, "feet"),
  15473. weight: math.unit(144, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/gabriel/front.svg",
  15477. extra: 285 / 262,
  15478. bottom: 0.004
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Normal",
  15485. height: math.unit(5 + 11 / 12, "feet"),
  15486. default: true
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15492. {
  15493. side: {
  15494. height: math.unit(6 + 5 / 12, "feet"),
  15495. weight: math.unit(300, "lb"),
  15496. name: "Side",
  15497. image: {
  15498. source: "./media/characters/tempest-suicune/side.svg",
  15499. extra: 195 / 154,
  15500. bottom: 0.04
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(6 + 5 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(7 + 2 / 12, "feet"),
  15517. weight: math.unit(322, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/vulcan/front.svg",
  15521. extra: 154 / 147,
  15522. bottom: 0.04
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(7 + 2 / 12, "feet"),
  15530. default: true
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(5 + 10 / 12, "feet"),
  15539. weight: math.unit(264, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/gault/front.svg",
  15543. extra: 161 / 140,
  15544. bottom: 0.028
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(5 + 10 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/shard/front.svg",
  15565. extra: 273 / 238,
  15566. bottom: 0.02
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(3 + 6 / 12, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. weight: math.unit(146, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/ashe/front.svg",
  15587. extra: 400 / 373,
  15588. bottom: 0.01
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(5 + 11 / 12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(5 + 5 / 12, "feet"),
  15605. weight: math.unit(135, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/beatrix/front.svg",
  15609. extra: 392 / 379,
  15610. bottom: 0.01
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6 + 2/12, "feet"),
  15627. weight: math.unit(135, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/ignatius/front.svg",
  15631. extra: 1380/1259,
  15632. bottom: 27/1407
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6 + 2/12, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(6 + 2 / 12, "feet"),
  15649. weight: math.unit(138, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/mei-li/front.svg",
  15653. extra: 237 / 229,
  15654. bottom: 0.03
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(6 + 2 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(2 + 4 / 12, "feet"),
  15671. weight: math.unit(62, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/puru/front.svg",
  15675. extra: 206 / 149,
  15676. bottom: 0.06
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(2 + 4 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15690. {
  15691. anthro: {
  15692. height: math.unit(5 + 8/12, "feet"),
  15693. weight: math.unit(200, "lb"),
  15694. energyNeed: math.unit(2000, "kcal"),
  15695. name: "Anthro",
  15696. image: {
  15697. source: "./media/characters/kee/anthro.svg",
  15698. extra: 3251/3184,
  15699. bottom: 250/3501
  15700. }
  15701. },
  15702. taur: {
  15703. height: math.unit(11, "feet"),
  15704. weight: math.unit(500, "lb"),
  15705. energyNeed: math.unit(5000, "kcal"),
  15706. name: "Taur",
  15707. image: {
  15708. source: "./media/characters/kee/taur.svg",
  15709. extra: 1362/1320,
  15710. bottom: 83/1445
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(5 + 8/12, "feet"),
  15718. default: true
  15719. },
  15720. {
  15721. name: "Macro",
  15722. height: math.unit(35, "feet")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15728. {
  15729. anthro: {
  15730. height: math.unit(7, "feet"),
  15731. weight: math.unit(190, "lb"),
  15732. name: "Anthro",
  15733. image: {
  15734. source: "./media/characters/cobalt-dracha/anthro.svg",
  15735. extra: 231 / 225,
  15736. bottom: 0.04
  15737. }
  15738. },
  15739. feral: {
  15740. height: math.unit(9 + 7 / 12, "feet"),
  15741. weight: math.unit(294, "lb"),
  15742. name: "Feral",
  15743. image: {
  15744. source: "./media/characters/cobalt-dracha/feral.svg",
  15745. extra: 692 / 633,
  15746. bottom: 0.05
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(7, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15760. {
  15761. fallen: {
  15762. height: math.unit(11 + 8 / 12, "feet"),
  15763. weight: math.unit(485, "lb"),
  15764. name: "Java (Fallen)",
  15765. rename: true,
  15766. image: {
  15767. source: "./media/characters/java/fallen.svg",
  15768. extra: 226 / 208,
  15769. bottom: 0.005
  15770. }
  15771. },
  15772. godkin: {
  15773. height: math.unit(10 + 6 / 12, "feet"),
  15774. weight: math.unit(328, "lb"),
  15775. name: "Java (Godkin)",
  15776. rename: true,
  15777. image: {
  15778. source: "./media/characters/java/godkin.svg",
  15779. extra: 1104/1068,
  15780. bottom: 36/1140
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(11 + 8 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(5 + 9 / 12, "feet"),
  15797. weight: math.unit(170, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/purna/front.svg",
  15801. extra: 239 / 229,
  15802. bottom: 0.01
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(5 + 9 / 12, "feet"),
  15810. default: true
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(5 + 9 / 12, "feet"),
  15819. weight: math.unit(142, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/kuva/front.svg",
  15823. extra: 281 / 271,
  15824. bottom: 0.006
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(5 + 9 / 12, "feet"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15838. {
  15839. anthro: {
  15840. height: math.unit(9 + 2 / 12, "feet"),
  15841. weight: math.unit(270, "lb"),
  15842. name: "Anthro",
  15843. image: {
  15844. source: "./media/characters/embra/anthro.svg",
  15845. extra: 200 / 187,
  15846. bottom: 0.02
  15847. }
  15848. },
  15849. feral: {
  15850. height: math.unit(18 + 8 / 12, "feet"),
  15851. weight: math.unit(576, "lb"),
  15852. name: "Feral",
  15853. image: {
  15854. source: "./media/characters/embra/feral.svg",
  15855. extra: 152 / 137,
  15856. bottom: 0.037
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Normal",
  15863. height: math.unit(9 + 2 / 12, "feet"),
  15864. default: true
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15870. {
  15871. anthro: {
  15872. height: math.unit(10 + 9 / 12, "feet"),
  15873. weight: math.unit(224, "lb"),
  15874. name: "Anthro",
  15875. image: {
  15876. source: "./media/characters/grottos/anthro.svg",
  15877. extra: 350 / 332,
  15878. bottom: 0.045
  15879. }
  15880. },
  15881. feral: {
  15882. height: math.unit(20 + 7 / 12, "feet"),
  15883. weight: math.unit(629, "lb"),
  15884. name: "Feral",
  15885. image: {
  15886. source: "./media/characters/grottos/feral.svg",
  15887. extra: 207 / 190,
  15888. bottom: 0.05
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(10 + 9 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15902. {
  15903. anthro: {
  15904. height: math.unit(9 + 6 / 12, "feet"),
  15905. weight: math.unit(298, "lb"),
  15906. name: "Anthro",
  15907. image: {
  15908. source: "./media/characters/frifna/anthro.svg",
  15909. extra: 282 / 269,
  15910. bottom: 0.015
  15911. }
  15912. },
  15913. feral: {
  15914. height: math.unit(16 + 2 / 12, "feet"),
  15915. weight: math.unit(624, "lb"),
  15916. name: "Feral",
  15917. image: {
  15918. source: "./media/characters/frifna/feral.svg"
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(9 + 6 / 12, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(6 + 2 / 12, "feet"),
  15935. weight: math.unit(168, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/elise/front.svg",
  15939. extra: 276 / 271
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(6 + 2 / 12, "feet"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(5 + 10 / 12, "feet"),
  15956. weight: math.unit(210, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/glade/front.svg",
  15960. extra: 258 / 247,
  15961. bottom: 0.008
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(5 + 10 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(5 + 10 / 12, "feet"),
  15978. weight: math.unit(129, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/rina/front.svg",
  15982. extra: 266 / 255,
  15983. bottom: 0.005
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(5 + 10 / 12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 1 / 12, "feet"),
  16000. weight: math.unit(192, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/veronica/front.svg",
  16004. extra: 319 / 309,
  16005. bottom: 0.005
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(6 + 1 / 12, "feet"),
  16013. default: true
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(9 + 3 / 12, "feet"),
  16022. weight: math.unit(1100, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/braxton/front.svg",
  16026. extra: 1057 / 984,
  16027. bottom: 0.05
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(9 + 3 / 12, "feet")
  16035. },
  16036. {
  16037. name: "Giant",
  16038. height: math.unit(300, "feet"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(700, "feet")
  16044. },
  16045. {
  16046. name: "Megamacro",
  16047. height: math.unit(6000, "feet")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(6 + 7 / 12, "feet"),
  16056. weight: math.unit(150, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/blue-feyonics/front.svg",
  16060. extra: 1403 / 1306,
  16061. bottom: 0.047
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(6 + 7 / 12, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(1.8, "meters"),
  16078. weight: math.unit(60, "kg"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/maxwell/front.svg",
  16082. extra: 2060 / 1873
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Micro",
  16089. height: math.unit(1, "mm")
  16090. },
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(1.8, "meter"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(30, "meters")
  16099. },
  16100. {
  16101. name: "Megamacro",
  16102. height: math.unit(10, "km")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/jack/front.svg",
  16115. extra: 1754 / 1640,
  16116. bottom: 0.01
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(80000, "feet"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Max size",
  16128. height: math.unit(10, "lightyears")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16134. {
  16135. urban: {
  16136. height: math.unit(5, "feet"),
  16137. weight: math.unit(240, "lb"),
  16138. name: "Urban",
  16139. image: {
  16140. source: "./media/characters/cafat/urban.svg",
  16141. extra: 1223/1126,
  16142. bottom: 205/1428
  16143. }
  16144. },
  16145. summer: {
  16146. height: math.unit(5, "feet"),
  16147. weight: math.unit(240, "lb"),
  16148. name: "Summer",
  16149. image: {
  16150. source: "./media/characters/cafat/summer.svg",
  16151. extra: 1223/1126,
  16152. bottom: 205/1428
  16153. }
  16154. },
  16155. winter: {
  16156. height: math.unit(5, "feet"),
  16157. weight: math.unit(240, "lb"),
  16158. name: "Winter",
  16159. image: {
  16160. source: "./media/characters/cafat/winter.svg",
  16161. extra: 1223/1126,
  16162. bottom: 205/1428
  16163. }
  16164. },
  16165. lingerie: {
  16166. height: math.unit(5, "feet"),
  16167. weight: math.unit(240, "lb"),
  16168. name: "Lingerie",
  16169. image: {
  16170. source: "./media/characters/cafat/lingerie.svg",
  16171. extra: 1223/1126,
  16172. bottom: 205/1428
  16173. }
  16174. },
  16175. upright: {
  16176. height: math.unit(6.3, "feet"),
  16177. weight: math.unit(240, "lb"),
  16178. name: "Upright",
  16179. image: {
  16180. source: "./media/characters/cafat/upright.svg",
  16181. bottom: 0.01
  16182. }
  16183. },
  16184. uprightFull: {
  16185. height: math.unit(6.3, "feet"),
  16186. weight: math.unit(240, "lb"),
  16187. name: "Upright (Full)",
  16188. image: {
  16189. source: "./media/characters/cafat/upright-full.svg",
  16190. bottom: 0.01
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Small",
  16197. height: math.unit(5, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Large",
  16202. height: math.unit(13, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(150, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/verin-raharra/front.svg",
  16215. extra: 5019 / 4835,
  16216. bottom: 0.023
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(7 + 5 / 12, "feet"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Upsized",
  16228. height: math.unit(20, "feet")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(7, "feet"),
  16237. weight: math.unit(230, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/nakata/front.svg",
  16241. extra: 1.005,
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(7, "feet"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Big",
  16254. height: math.unit(14, "feet")
  16255. },
  16256. {
  16257. name: "Macro",
  16258. height: math.unit(400, "feet")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(4.91, "feet"),
  16267. weight: math.unit(100, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/lily/front.svg",
  16271. extra: 1585 / 1415,
  16272. bottom: 0.02
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Normal",
  16279. height: math.unit(4.91, "feet"),
  16280. default: true
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16286. {
  16287. laying: {
  16288. height: math.unit(4 + 4 / 12, "feet"),
  16289. weight: math.unit(600, "lb"),
  16290. name: "Laying",
  16291. image: {
  16292. source: "./media/characters/sheila/laying.svg",
  16293. extra: 1333 / 1265,
  16294. bottom: 0.16
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(4 + 4 / 12, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6, "feet"),
  16311. weight: math.unit(190, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/sax/front.svg",
  16315. extra: 1187 / 973,
  16316. bottom: 0.042
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Micro",
  16323. height: math.unit(4, "inches"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(6, "feet"),
  16333. weight: math.unit(150, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/pandora/front.svg",
  16337. extra: 2720 / 2556,
  16338. bottom: 0.015
  16339. }
  16340. },
  16341. back: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Back",
  16345. image: {
  16346. source: "./media/characters/pandora/back.svg",
  16347. extra: 2720 / 2556,
  16348. bottom: 0.01
  16349. }
  16350. },
  16351. beans: {
  16352. height: math.unit(6 / 8, "feet"),
  16353. name: "Beans",
  16354. image: {
  16355. source: "./media/characters/pandora/beans.svg"
  16356. }
  16357. },
  16358. collar: {
  16359. height: math.unit(0.31, "feet"),
  16360. name: "Collar",
  16361. image: {
  16362. source: "./media/characters/pandora/collar.svg"
  16363. }
  16364. },
  16365. skirt: {
  16366. height: math.unit(6, "feet"),
  16367. weight: math.unit(150, "lb"),
  16368. name: "Skirt",
  16369. image: {
  16370. source: "./media/characters/pandora/skirt.svg",
  16371. extra: 1622 / 1525,
  16372. bottom: 0.015
  16373. }
  16374. },
  16375. hoodie: {
  16376. height: math.unit(6, "feet"),
  16377. weight: math.unit(150, "lb"),
  16378. name: "Hoodie",
  16379. image: {
  16380. source: "./media/characters/pandora/hoodie.svg",
  16381. extra: 1622 / 1525,
  16382. bottom: 0.015
  16383. }
  16384. },
  16385. casual: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Casual",
  16389. image: {
  16390. source: "./media/characters/pandora/casual.svg",
  16391. extra: 1622 / 1525,
  16392. bottom: 0.015
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6, "feet")
  16400. },
  16401. {
  16402. name: "Big Steppy",
  16403. height: math.unit(1, "km"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Galactic Steppy",
  16408. height: math.unit(2, "gigameters")
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16414. {
  16415. side: {
  16416. height: math.unit(10, "feet"),
  16417. weight: math.unit(800, "kg"),
  16418. name: "Side",
  16419. image: {
  16420. source: "./media/characters/venio-darcony/side.svg",
  16421. extra: 1373 / 1003,
  16422. bottom: 0.037
  16423. }
  16424. },
  16425. front: {
  16426. height: math.unit(19, "feet"),
  16427. weight: math.unit(800, "kg"),
  16428. name: "Front",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/front.svg"
  16431. }
  16432. },
  16433. back: {
  16434. height: math.unit(19, "feet"),
  16435. weight: math.unit(800, "kg"),
  16436. name: "Back",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/back.svg"
  16439. }
  16440. },
  16441. sideNsfw: {
  16442. height: math.unit(10, "feet"),
  16443. weight: math.unit(800, "kg"),
  16444. name: "Side (NSFW)",
  16445. image: {
  16446. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16447. extra: 1373 / 1003,
  16448. bottom: 0.037
  16449. }
  16450. },
  16451. frontNsfw: {
  16452. height: math.unit(19, "feet"),
  16453. weight: math.unit(800, "kg"),
  16454. name: "Front (NSFW)",
  16455. image: {
  16456. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16457. }
  16458. },
  16459. backNsfw: {
  16460. height: math.unit(19, "feet"),
  16461. weight: math.unit(800, "kg"),
  16462. name: "Back (NSFW)",
  16463. image: {
  16464. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16465. }
  16466. },
  16467. sideArmored: {
  16468. height: math.unit(10, "feet"),
  16469. weight: math.unit(800, "kg"),
  16470. name: "Side (Armored)",
  16471. image: {
  16472. source: "./media/characters/venio-darcony/side-armored.svg",
  16473. extra: 1373 / 1003,
  16474. bottom: 0.037
  16475. }
  16476. },
  16477. frontArmored: {
  16478. height: math.unit(19, "feet"),
  16479. weight: math.unit(900, "kg"),
  16480. name: "Front (Armored)",
  16481. image: {
  16482. source: "./media/characters/venio-darcony/front-armored.svg"
  16483. }
  16484. },
  16485. backArmored: {
  16486. height: math.unit(19, "feet"),
  16487. weight: math.unit(900, "kg"),
  16488. name: "Back (Armored)",
  16489. image: {
  16490. source: "./media/characters/venio-darcony/back-armored.svg"
  16491. }
  16492. },
  16493. sword: {
  16494. height: math.unit(10, "feet"),
  16495. weight: math.unit(50, "lb"),
  16496. name: "Sword",
  16497. image: {
  16498. source: "./media/characters/venio-darcony/sword.svg"
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(10, "feet")
  16506. },
  16507. {
  16508. name: "Macro",
  16509. height: math.unit(130, "feet"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Macro+",
  16514. height: math.unit(240, "feet")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/veski/front.svg",
  16527. extra: 1299 / 1225,
  16528. bottom: 0.04
  16529. }
  16530. },
  16531. back: {
  16532. height: math.unit(6, "feet"),
  16533. weight: math.unit(150, "lb"),
  16534. name: "Back",
  16535. image: {
  16536. source: "./media/characters/veski/back.svg",
  16537. extra: 1299 / 1225,
  16538. bottom: 0.008
  16539. }
  16540. },
  16541. maw: {
  16542. height: math.unit(1.5 * 1.21, "feet"),
  16543. name: "Maw",
  16544. image: {
  16545. source: "./media/characters/veski/maw.svg"
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Macro",
  16552. height: math.unit(2, "km"),
  16553. default: true
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(5 + 7 / 12, "feet"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/isabelle/front.svg",
  16565. extra: 2130 / 1976,
  16566. bottom: 0.05
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Supermicro",
  16573. height: math.unit(10, "micrometers")
  16574. },
  16575. {
  16576. name: "Micro",
  16577. height: math.unit(1, "inch")
  16578. },
  16579. {
  16580. name: "Tiny",
  16581. height: math.unit(5, "inches")
  16582. },
  16583. {
  16584. name: "Standard",
  16585. height: math.unit(5 + 7 / 12, "inches")
  16586. },
  16587. {
  16588. name: "Macro",
  16589. height: math.unit(80, "meters"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Megamacro",
  16594. height: math.unit(250, "meters")
  16595. },
  16596. {
  16597. name: "Gigamacro",
  16598. height: math.unit(5, "km")
  16599. },
  16600. {
  16601. name: "Cosmic",
  16602. height: math.unit(2.5e6, "miles")
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16608. {
  16609. front: {
  16610. height: math.unit(6, "feet"),
  16611. weight: math.unit(150, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/hanzo/front.svg",
  16615. extra: 374 / 344,
  16616. bottom: 0.02
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(8, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(7, "feet"),
  16633. weight: math.unit(130, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/anna/front.svg",
  16637. extra: 169 / 145,
  16638. bottom: 0.06
  16639. }
  16640. },
  16641. full: {
  16642. height: math.unit(4.96, "feet"),
  16643. weight: math.unit(220, "lb"),
  16644. name: "Full",
  16645. image: {
  16646. source: "./media/characters/anna/full.svg",
  16647. extra: 138 / 114,
  16648. bottom: 0.15
  16649. }
  16650. },
  16651. tongue: {
  16652. height: math.unit(2.53, "feet"),
  16653. name: "Tongue",
  16654. image: {
  16655. source: "./media/characters/anna/tongue.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(7, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(7, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/ian-corvid/front.svg",
  16676. extra: 150 / 142,
  16677. bottom: 0.02
  16678. }
  16679. },
  16680. back: {
  16681. height: math.unit(7, "feet"),
  16682. weight: math.unit(150, "lb"),
  16683. name: "Back",
  16684. image: {
  16685. source: "./media/characters/ian-corvid/back.svg",
  16686. extra: 150 / 143,
  16687. bottom: 0.01
  16688. }
  16689. },
  16690. stomping: {
  16691. height: math.unit(7, "feet"),
  16692. weight: math.unit(150, "lb"),
  16693. name: "Stomping",
  16694. image: {
  16695. source: "./media/characters/ian-corvid/stomping.svg",
  16696. extra: 76 / 72
  16697. }
  16698. },
  16699. sitting: {
  16700. height: math.unit(7 / 1.8, "feet"),
  16701. weight: math.unit(150, "lb"),
  16702. name: "Sitting",
  16703. image: {
  16704. source: "./media/characters/ian-corvid/sitting.svg",
  16705. extra: 1400 / 1269,
  16706. bottom: 0.15
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Tiny Microw",
  16713. height: math.unit(1, "inch")
  16714. },
  16715. {
  16716. name: "Microw",
  16717. height: math.unit(6, "inches")
  16718. },
  16719. {
  16720. name: "Crow",
  16721. height: math.unit(7 + 1 / 12, "feet"),
  16722. default: true
  16723. },
  16724. {
  16725. name: "Macrow",
  16726. height: math.unit(176, "feet")
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(5 + 7 / 12, "feet"),
  16735. weight: math.unit(147, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/natalie-kellon/front.svg",
  16739. extra: 1214 / 1141,
  16740. bottom: 0.02
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Micro",
  16747. height: math.unit(1 / 16, "inch")
  16748. },
  16749. {
  16750. name: "Tiny",
  16751. height: math.unit(4, "inches")
  16752. },
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(5 + 7 / 12, "feet"),
  16756. default: true
  16757. },
  16758. {
  16759. name: "Amazon",
  16760. height: math.unit(12, "feet")
  16761. },
  16762. {
  16763. name: "Giantess",
  16764. height: math.unit(160, "meters")
  16765. },
  16766. {
  16767. name: "Titaness",
  16768. height: math.unit(800, "meters")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(150, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/alluria/front.svg",
  16781. extra: 806 / 738,
  16782. bottom: 0.01
  16783. }
  16784. },
  16785. side: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Side",
  16789. image: {
  16790. source: "./media/characters/alluria/side.svg",
  16791. extra: 800 / 750,
  16792. }
  16793. },
  16794. back: {
  16795. height: math.unit(6, "feet"),
  16796. weight: math.unit(150, "lb"),
  16797. name: "Back",
  16798. image: {
  16799. source: "./media/characters/alluria/back.svg",
  16800. extra: 806 / 738,
  16801. }
  16802. },
  16803. frontMaid: {
  16804. height: math.unit(6, "feet"),
  16805. weight: math.unit(150, "lb"),
  16806. name: "Front (Maid)",
  16807. image: {
  16808. source: "./media/characters/alluria/front-maid.svg",
  16809. extra: 806 / 738,
  16810. bottom: 0.01
  16811. }
  16812. },
  16813. sideMaid: {
  16814. height: math.unit(6, "feet"),
  16815. weight: math.unit(150, "lb"),
  16816. name: "Side (Maid)",
  16817. image: {
  16818. source: "./media/characters/alluria/side-maid.svg",
  16819. extra: 800 / 750,
  16820. bottom: 0.005
  16821. }
  16822. },
  16823. backMaid: {
  16824. height: math.unit(6, "feet"),
  16825. weight: math.unit(150, "lb"),
  16826. name: "Back (Maid)",
  16827. image: {
  16828. source: "./media/characters/alluria/back-maid.svg",
  16829. extra: 806 / 738,
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Micro",
  16836. height: math.unit(6, "inches"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16843. {
  16844. front: {
  16845. height: math.unit(6, "feet"),
  16846. weight: math.unit(150, "lb"),
  16847. name: "Front",
  16848. image: {
  16849. source: "./media/characters/kyle/front.svg",
  16850. extra: 1069 / 962,
  16851. bottom: 77.228 / 1727.45
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(150, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(6, "feet"),
  16868. weight: math.unit(300, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/duncan/front.svg",
  16872. extra: 1650 / 1482,
  16873. bottom: 0.05
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Macro",
  16880. height: math.unit(100, "feet"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(5 + 4 / 12, "feet"),
  16890. weight: math.unit(220, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/memory/front.svg",
  16894. extra: 3641 / 3545,
  16895. bottom: 0.03
  16896. }
  16897. },
  16898. back: {
  16899. height: math.unit(5 + 4 / 12, "feet"),
  16900. weight: math.unit(220, "lb"),
  16901. name: "Back",
  16902. image: {
  16903. source: "./media/characters/memory/back.svg",
  16904. extra: 3641 / 3545,
  16905. bottom: 0.025
  16906. }
  16907. },
  16908. frontSkirt: {
  16909. height: math.unit(5 + 4 / 12, "feet"),
  16910. weight: math.unit(220, "lb"),
  16911. name: "Front (Skirt)",
  16912. image: {
  16913. source: "./media/characters/memory/front-skirt.svg",
  16914. extra: 3641 / 3545,
  16915. bottom: 0.03
  16916. }
  16917. },
  16918. frontDress: {
  16919. height: math.unit(5 + 4 / 12, "feet"),
  16920. weight: math.unit(220, "lb"),
  16921. name: "Front (Dress)",
  16922. image: {
  16923. source: "./media/characters/memory/front-dress.svg",
  16924. extra: 3641 / 3545,
  16925. bottom: 0.03
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Micro",
  16932. height: math.unit(6, "inches"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(5 + 4 / 12, "feet")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(4 + 11 / 12, "feet"),
  16946. weight: math.unit(100, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/luno/front.svg",
  16950. extra: 1535 / 1487,
  16951. bottom: 0.03
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Micro",
  16958. height: math.unit(3, "inches")
  16959. },
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(4 + 11 / 12, "feet"),
  16963. default: true
  16964. },
  16965. {
  16966. name: "Macro",
  16967. height: math.unit(300, "feet")
  16968. },
  16969. {
  16970. name: "Megamacro",
  16971. height: math.unit(700, "miles")
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(6 + 2 / 12, "feet"),
  16980. weight: math.unit(170, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/jamesy/front.svg",
  16984. extra: 440 / 382,
  16985. bottom: 0.005
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Micro",
  16992. height: math.unit(3, "inches")
  16993. },
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6 + 2 / 12, "feet"),
  16997. default: true
  16998. },
  16999. {
  17000. name: "Macro",
  17001. height: math.unit(300, "feet")
  17002. },
  17003. {
  17004. name: "Megamacro",
  17005. height: math.unit(700, "miles")
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(6, "feet"),
  17014. weight: math.unit(160, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/mark/front.svg",
  17018. extra: 3300 / 3100,
  17019. bottom: 136.42 / 3440.47
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Macro",
  17026. height: math.unit(120, "meters")
  17027. },
  17028. {
  17029. name: "Bigger Macro",
  17030. height: math.unit(350, "meters")
  17031. },
  17032. {
  17033. name: "Megamacro",
  17034. height: math.unit(8, "km"),
  17035. default: true
  17036. },
  17037. {
  17038. name: "Continental",
  17039. height: math.unit(4550, "km")
  17040. },
  17041. {
  17042. name: "Planetary",
  17043. height: math.unit(65000, "km")
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(6, "feet"),
  17052. weight: math.unit(400, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/mac/front.svg",
  17056. extra: 1048 / 987.7,
  17057. bottom: 60 / 1107.6,
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Macro",
  17064. height: math.unit(500, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(5 + 2 / 12, "feet"),
  17074. weight: math.unit(190, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/bari/front.svg",
  17078. extra: 3156 / 2880,
  17079. bottom: 0.03
  17080. }
  17081. },
  17082. back: {
  17083. height: math.unit(5 + 2 / 12, "feet"),
  17084. weight: math.unit(190, "lb"),
  17085. name: "Back",
  17086. image: {
  17087. source: "./media/characters/bari/back.svg",
  17088. extra: 3260 / 2834,
  17089. bottom: 0.025
  17090. }
  17091. },
  17092. frontPlush: {
  17093. height: math.unit(5 + 2 / 12, "feet"),
  17094. weight: math.unit(190, "lb"),
  17095. name: "Front (Plush)",
  17096. image: {
  17097. source: "./media/characters/bari/front-plush.svg",
  17098. extra: 1112 / 1061,
  17099. bottom: 0.002
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Micro",
  17106. height: math.unit(3, "inches")
  17107. },
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(5 + 2 / 12, "feet"),
  17111. default: true
  17112. },
  17113. {
  17114. name: "Macro",
  17115. height: math.unit(20, "feet")
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(6 + 1 / 12, "feet"),
  17124. weight: math.unit(275, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/hunter-misha-raven/front.svg"
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Mortal",
  17134. height: math.unit(6 + 1 / 12, "feet")
  17135. },
  17136. {
  17137. name: "Divine",
  17138. height: math.unit(1.12134e34, "parsecs"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(6 + 3 / 12, "feet"),
  17148. weight: math.unit(220, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/max-calore/front.svg",
  17152. extra: 1700 / 1648,
  17153. bottom: 0.01
  17154. }
  17155. },
  17156. back: {
  17157. height: math.unit(6 + 3 / 12, "feet"),
  17158. weight: math.unit(220, "lb"),
  17159. name: "Back",
  17160. image: {
  17161. source: "./media/characters/max-calore/back.svg",
  17162. extra: 1700 / 1648,
  17163. bottom: 0.01
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(6 + 3 / 12, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17177. {
  17178. side: {
  17179. height: math.unit(2 + 8 / 12, "feet"),
  17180. weight: math.unit(99, "lb"),
  17181. name: "Side",
  17182. image: {
  17183. source: "./media/characters/aspen/side.svg",
  17184. extra: 152 / 138,
  17185. bottom: 0.032
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(2 + 8 / 12, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17199. {
  17200. side: {
  17201. height: math.unit(3 + 2 / 12, "feet"),
  17202. weight: math.unit(224, "lb"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/sheila-feral-wolf/side.svg",
  17206. extra: 179 / 166,
  17207. bottom: 0.03
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(3 + 2 / 12, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17221. {
  17222. side: {
  17223. height: math.unit(1 + 9 / 12, "feet"),
  17224. weight: math.unit(38, "lb"),
  17225. name: "Side",
  17226. image: {
  17227. source: "./media/characters/michelle/side.svg",
  17228. extra: 147 / 136.7,
  17229. bottom: 0.03
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(1 + 9 / 12, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(1.54, "feet"),
  17246. weight: math.unit(50, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/nino/front.svg"
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(1.54, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(1, "feet"),
  17266. weight: math.unit(16, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/viola/front.svg"
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(1, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(6 + 5 / 12, "feet"),
  17286. weight: math.unit(580, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/atlas/front.svg",
  17290. extra: 298.5 / 290,
  17291. bottom: 0.015
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(6 + 5 / 12, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17305. {
  17306. side: {
  17307. height: math.unit(1 + 10 / 12, "feet"),
  17308. weight: math.unit(25, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/davy/side.svg",
  17312. extra: 200 / 170,
  17313. bottom: 0.01
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(1 + 10 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17327. {
  17328. side: {
  17329. height: math.unit(4 + 8 / 12, "feet"),
  17330. weight: math.unit(166, "lb"),
  17331. name: "Side",
  17332. image: {
  17333. source: "./media/characters/fiona/side.svg",
  17334. extra: 232 / 220,
  17335. bottom: 0.03
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(4 + 8 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17349. {
  17350. front: {
  17351. height: math.unit(3, "feet"),
  17352. weight: math.unit(100, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/lyla/front.svg",
  17356. bottom: 0.1
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(3, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17370. {
  17371. side: {
  17372. height: math.unit(1.8, "feet"),
  17373. weight: math.unit(44, "lb"),
  17374. name: "Side",
  17375. image: {
  17376. source: "./media/characters/perseus/side.svg",
  17377. bottom: 0.21
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(1.8, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17391. {
  17392. side: {
  17393. height: math.unit(4 + 2 / 12, "feet"),
  17394. weight: math.unit(20, "lb"),
  17395. name: "Side",
  17396. image: {
  17397. source: "./media/characters/remus/side.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(4 + 2 / 12, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(4 + 11 / 12, "feet"),
  17414. weight: math.unit(114, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/raf/front.svg",
  17418. extra: 1504/1339,
  17419. bottom: 26/1530
  17420. }
  17421. },
  17422. side: {
  17423. height: math.unit(4 + 11 / 12, "feet"),
  17424. weight: math.unit(114, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/raf/side.svg",
  17428. extra: 1466/1316,
  17429. bottom: 29/1495
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Micro",
  17436. height: math.unit(2, "inches")
  17437. },
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(4 + 11 / 12, "feet"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Macro",
  17445. height: math.unit(70, "feet")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(1.5, "meters"),
  17454. weight: math.unit(68, "kg"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/liam-einarr/front.svg",
  17458. extra: 2822 / 2666
  17459. }
  17460. },
  17461. back: {
  17462. height: math.unit(1.5, "meters"),
  17463. weight: math.unit(68, "kg"),
  17464. name: "Back",
  17465. image: {
  17466. source: "./media/characters/liam-einarr/back.svg",
  17467. extra: 2822 / 2666,
  17468. bottom: 0.015
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(1.5, "meters"),
  17476. default: true
  17477. },
  17478. {
  17479. name: "Macro",
  17480. height: math.unit(150, "meters")
  17481. },
  17482. {
  17483. name: "Megamacro",
  17484. height: math.unit(35, "km")
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17490. {
  17491. front: {
  17492. height: math.unit(6, "feet"),
  17493. weight: math.unit(75, "kg"),
  17494. name: "Front",
  17495. image: {
  17496. source: "./media/characters/linda/front.svg",
  17497. extra: 930 / 874,
  17498. bottom: 0.004
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(6, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(6 + 8 / 12, "feet"),
  17515. weight: math.unit(220, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/caylex/front.svg",
  17519. extra: 821 / 772,
  17520. bottom: 0.07
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(6 + 8 / 12, "feet"),
  17525. weight: math.unit(220, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/caylex/back.svg",
  17529. extra: 821 / 772,
  17530. bottom: 0.022
  17531. }
  17532. },
  17533. hand: {
  17534. height: math.unit(1.25, "feet"),
  17535. name: "Hand",
  17536. image: {
  17537. source: "./media/characters/caylex/hand.svg"
  17538. }
  17539. },
  17540. foot: {
  17541. height: math.unit(1.6, "feet"),
  17542. name: "Foot",
  17543. image: {
  17544. source: "./media/characters/caylex/foot.svg"
  17545. }
  17546. },
  17547. armored: {
  17548. height: math.unit(6 + 8 / 12, "feet"),
  17549. weight: math.unit(250, "lb"),
  17550. name: "Armored",
  17551. image: {
  17552. source: "./media/characters/caylex/armored.svg",
  17553. extra: 1420 / 1310,
  17554. bottom: 0.045
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(6 + 8 / 12, "feet"),
  17562. default: true
  17563. },
  17564. {
  17565. name: "Normal+",
  17566. height: math.unit(12, "feet")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(7 + 6 / 12, "feet"),
  17575. weight: math.unit(288, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/alana/front.svg",
  17579. extra: 679 / 653,
  17580. bottom: 22.5 / 701
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(7 + 6 / 12, "feet")
  17588. },
  17589. {
  17590. name: "Large",
  17591. height: math.unit(50, "feet")
  17592. },
  17593. {
  17594. name: "Macro",
  17595. height: math.unit(100, "feet"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Macro+",
  17600. height: math.unit(200, "feet")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6 + 1 / 12, "feet"),
  17609. weight: math.unit(210, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/hasani/front.svg",
  17613. extra: 244 / 232,
  17614. bottom: 0.01
  17615. }
  17616. },
  17617. back: {
  17618. height: math.unit(6 + 1 / 12, "feet"),
  17619. weight: math.unit(210, "lb"),
  17620. name: "Back",
  17621. image: {
  17622. source: "./media/characters/hasani/back.svg",
  17623. extra: 244 / 232,
  17624. bottom: 0.01
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(6 + 1 / 12, "feet")
  17632. },
  17633. {
  17634. name: "Macro",
  17635. height: math.unit(175, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(1.82, "meters"),
  17645. weight: math.unit(140, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/nita/front.svg",
  17649. extra: 2473 / 2363,
  17650. bottom: 0.01
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(1.82, "m")
  17658. },
  17659. {
  17660. name: "Macro",
  17661. height: math.unit(300, "m")
  17662. },
  17663. {
  17664. name: "Mistake Canon",
  17665. height: math.unit(0.5, "miles"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Big Mistake",
  17670. height: math.unit(13, "miles")
  17671. },
  17672. {
  17673. name: "Playing God",
  17674. height: math.unit(2450, "miles")
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(4, "feet"),
  17683. weight: math.unit(120, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/shiriko/front.svg",
  17687. extra: 970/934,
  17688. bottom: 5/975
  17689. }
  17690. },
  17691. },
  17692. [
  17693. {
  17694. name: "Normal",
  17695. height: math.unit(4, "feet"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. name: "front",
  17706. image: {
  17707. source: "./media/characters/deja/front.svg",
  17708. extra: 926 / 840,
  17709. bottom: 0.07
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Planck Length",
  17716. height: math.unit(1.6e-35, "meters")
  17717. },
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(30.48, "meters"),
  17721. default: true
  17722. },
  17723. {
  17724. name: "Universal",
  17725. height: math.unit(8.8e26, "meters")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17731. {
  17732. side: {
  17733. height: math.unit(8, "feet"),
  17734. weight: math.unit(6300, "lb"),
  17735. name: "Side",
  17736. image: {
  17737. source: "./media/characters/anima/side.svg",
  17738. bottom: 0.035
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(8, "feet"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(8, "feet"),
  17755. weight: math.unit(350, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/bianca/front.svg",
  17759. extra: 234 / 225,
  17760. bottom: 0.03
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(8, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17774. {
  17775. front: {
  17776. height: math.unit(6, "feet"),
  17777. weight: math.unit(150, "lb"),
  17778. name: "Front",
  17779. image: {
  17780. source: "./media/characters/adinia/front.svg",
  17781. extra: 1845 / 1672,
  17782. bottom: 0.02
  17783. }
  17784. },
  17785. back: {
  17786. height: math.unit(6, "feet"),
  17787. weight: math.unit(150, "lb"),
  17788. name: "Back",
  17789. image: {
  17790. source: "./media/characters/adinia/back.svg",
  17791. extra: 1845 / 1672,
  17792. bottom: 0.002
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(11 + 5 / 12, "feet"),
  17800. default: true
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(3, "meters"),
  17809. weight: math.unit(200, "kg"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/lykasa/front.svg",
  17813. extra: 1076 / 976,
  17814. bottom: 0.06
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(3, "meters")
  17822. },
  17823. {
  17824. name: "Kaiju",
  17825. height: math.unit(120, "meters"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Mega Kaiju",
  17830. height: math.unit(240, "km")
  17831. },
  17832. {
  17833. name: "Giga Kaiju",
  17834. height: math.unit(400, "megameters")
  17835. },
  17836. {
  17837. name: "Tera Kaiju",
  17838. height: math.unit(800, "gigameters")
  17839. },
  17840. {
  17841. name: "Kaiju Dragon Goddess",
  17842. height: math.unit(26, "zettaparsecs")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17848. {
  17849. side: {
  17850. height: math.unit(283 / 124 * 6, "feet"),
  17851. weight: math.unit(35000, "lb"),
  17852. name: "Side",
  17853. image: {
  17854. source: "./media/characters/malfaren/side.svg",
  17855. extra: 1310/529,
  17856. bottom: 24/1334
  17857. }
  17858. },
  17859. front: {
  17860. height: math.unit(22.36, "feet"),
  17861. weight: math.unit(35000, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/malfaren/front.svg",
  17865. extra: 1237/1115,
  17866. bottom: 32/1269
  17867. }
  17868. },
  17869. maw: {
  17870. height: math.unit(6.9, "feet"),
  17871. name: "Maw",
  17872. image: {
  17873. source: "./media/characters/malfaren/maw.svg"
  17874. }
  17875. },
  17876. dick: {
  17877. height: math.unit(6.19, "feet"),
  17878. name: "Dick",
  17879. image: {
  17880. source: "./media/characters/malfaren/dick.svg"
  17881. }
  17882. },
  17883. eye: {
  17884. height: math.unit(0.69, "feet"),
  17885. name: "Eye",
  17886. image: {
  17887. source: "./media/characters/malfaren/eye.svg"
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Big",
  17894. height: math.unit(283 / 162 * 6, "feet"),
  17895. },
  17896. {
  17897. name: "Bigger",
  17898. height: math.unit(283 / 124 * 6, "feet")
  17899. },
  17900. {
  17901. name: "Massive",
  17902. height: math.unit(283 / 92 * 6, "feet"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "👀💦",
  17907. height: math.unit(283 / 73 * 6, "feet"),
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17913. {
  17914. front: {
  17915. height: math.unit(1.7, "m"),
  17916. weight: math.unit(70, "kg"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/kernel/front.svg",
  17920. extra: 222 / 210,
  17921. bottom: 0.007
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Nano",
  17928. height: math.unit(17, "micrometers")
  17929. },
  17930. {
  17931. name: "Micro",
  17932. height: math.unit(1.7, "mm")
  17933. },
  17934. {
  17935. name: "Small",
  17936. height: math.unit(1.7, "cm")
  17937. },
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(1.7, "m"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(1.75, "meters"),
  17950. weight: math.unit(65, "kg"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/jayne-folest/front.svg",
  17954. extra: 2115 / 2007,
  17955. bottom: 0.02
  17956. }
  17957. },
  17958. back: {
  17959. height: math.unit(1.75, "meters"),
  17960. weight: math.unit(65, "kg"),
  17961. name: "Back",
  17962. image: {
  17963. source: "./media/characters/jayne-folest/back.svg",
  17964. extra: 2115 / 2007,
  17965. bottom: 0.005
  17966. }
  17967. },
  17968. frontClothed: {
  17969. height: math.unit(1.75, "meters"),
  17970. weight: math.unit(65, "kg"),
  17971. name: "Front (Clothed)",
  17972. image: {
  17973. source: "./media/characters/jayne-folest/front-clothed.svg",
  17974. extra: 2115 / 2007,
  17975. bottom: 0.035
  17976. }
  17977. },
  17978. hand: {
  17979. height: math.unit(1 / 1.260, "feet"),
  17980. name: "Hand",
  17981. image: {
  17982. source: "./media/characters/jayne-folest/hand.svg"
  17983. }
  17984. },
  17985. foot: {
  17986. height: math.unit(1 / 0.918, "feet"),
  17987. name: "Foot",
  17988. image: {
  17989. source: "./media/characters/jayne-folest/foot.svg"
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Micro",
  17996. height: math.unit(4, "cm")
  17997. },
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(1.75, "meters")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(47.5, "meters"),
  18005. default: true
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18011. {
  18012. front: {
  18013. height: math.unit(180, "cm"),
  18014. weight: math.unit(70, "kg"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/algier/front.svg",
  18018. extra: 596 / 572,
  18019. bottom: 0.04
  18020. }
  18021. },
  18022. back: {
  18023. height: math.unit(180, "cm"),
  18024. weight: math.unit(70, "kg"),
  18025. name: "Back",
  18026. image: {
  18027. source: "./media/characters/algier/back.svg",
  18028. extra: 596 / 572,
  18029. bottom: 0.025
  18030. }
  18031. },
  18032. frontdressed: {
  18033. height: math.unit(180, "cm"),
  18034. weight: math.unit(150, "kg"),
  18035. name: "Front-dressed",
  18036. image: {
  18037. source: "./media/characters/algier/front-dressed.svg",
  18038. extra: 596 / 572,
  18039. bottom: 0.038
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Micro",
  18046. height: math.unit(5, "cm")
  18047. },
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(180, "cm"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Macro",
  18055. height: math.unit(64, "m")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18061. {
  18062. upright: {
  18063. height: math.unit(7, "feet"),
  18064. weight: math.unit(300, "lb"),
  18065. name: "Upright",
  18066. image: {
  18067. source: "./media/characters/pretzel/upright.svg",
  18068. extra: 534 / 522,
  18069. bottom: 0.065
  18070. }
  18071. },
  18072. sprawling: {
  18073. height: math.unit(3.75, "feet"),
  18074. weight: math.unit(300, "lb"),
  18075. name: "Sprawling",
  18076. image: {
  18077. source: "./media/characters/pretzel/sprawling.svg",
  18078. extra: 314 / 281,
  18079. bottom: 0.1
  18080. }
  18081. },
  18082. tongue: {
  18083. height: math.unit(2, "feet"),
  18084. name: "Tongue",
  18085. image: {
  18086. source: "./media/characters/pretzel/tongue.svg"
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(7, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Oversized",
  18098. height: math.unit(15, "feet")
  18099. },
  18100. {
  18101. name: "Huge",
  18102. height: math.unit(30, "feet")
  18103. },
  18104. {
  18105. name: "Macro",
  18106. height: math.unit(250, "feet")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18112. {
  18113. sideFront: {
  18114. height: math.unit(5 + 2 / 12, "feet"),
  18115. weight: math.unit(120, "lb"),
  18116. name: "Front Side",
  18117. image: {
  18118. source: "./media/characters/roxi/side-front.svg",
  18119. extra: 2924 / 2717,
  18120. bottom: 0.08
  18121. }
  18122. },
  18123. sideBack: {
  18124. height: math.unit(5 + 2 / 12, "feet"),
  18125. weight: math.unit(120, "lb"),
  18126. name: "Back Side",
  18127. image: {
  18128. source: "./media/characters/roxi/side-back.svg",
  18129. extra: 2904 / 2693,
  18130. bottom: 0.06
  18131. }
  18132. },
  18133. front: {
  18134. height: math.unit(5 + 2 / 12, "feet"),
  18135. weight: math.unit(120, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/roxi/front.svg",
  18139. extra: 2028 / 1907,
  18140. bottom: 0.01
  18141. }
  18142. },
  18143. frontAlt: {
  18144. height: math.unit(5 + 2 / 12, "feet"),
  18145. weight: math.unit(120, "lb"),
  18146. name: "Front (Alt)",
  18147. image: {
  18148. source: "./media/characters/roxi/front-alt.svg",
  18149. extra: 1828 / 1798,
  18150. bottom: 0.01
  18151. }
  18152. },
  18153. sitting: {
  18154. height: math.unit(2.8, "feet"),
  18155. weight: math.unit(120, "lb"),
  18156. name: "Sitting",
  18157. image: {
  18158. source: "./media/characters/roxi/sitting.svg",
  18159. extra: 2660 / 2462,
  18160. bottom: 0.1
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(5 + 2 / 12, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18174. {
  18175. side: {
  18176. height: math.unit(55, "feet"),
  18177. weight: math.unit(153, "tons"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/shadow/side.svg",
  18181. extra: 701 / 628,
  18182. bottom: 0.02
  18183. }
  18184. },
  18185. flying: {
  18186. height: math.unit(145, "feet"),
  18187. weight: math.unit(153, "tons"),
  18188. name: "Flying",
  18189. image: {
  18190. source: "./media/characters/shadow/flying.svg"
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(55, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(6, "feet"),
  18207. weight: math.unit(200, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/marcie/front.svg",
  18211. extra: 960 / 876,
  18212. bottom: 58 / 1017.87
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(1, "mile"),
  18220. default: true
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(7, "feet"),
  18229. weight: math.unit(200, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/kachina/front.svg",
  18233. extra: 1290.68 / 1119,
  18234. bottom: 36.5 / 1327.18
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(7, "feet"),
  18242. default: true
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18248. {
  18249. looking: {
  18250. height: math.unit(2, "meters"),
  18251. weight: math.unit(300, "kg"),
  18252. name: "Looking",
  18253. image: {
  18254. source: "./media/characters/kash/looking.svg",
  18255. extra: 474 / 344,
  18256. bottom: 0.03
  18257. }
  18258. },
  18259. side: {
  18260. height: math.unit(2, "meters"),
  18261. weight: math.unit(300, "kg"),
  18262. name: "Side",
  18263. image: {
  18264. source: "./media/characters/kash/side.svg",
  18265. extra: 302 / 251,
  18266. bottom: 0.03
  18267. }
  18268. },
  18269. front: {
  18270. height: math.unit(2, "meters"),
  18271. weight: math.unit(300, "kg"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/kash/front.svg",
  18275. extra: 495 / 360,
  18276. bottom: 0.015
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(2, "meters"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Big",
  18288. height: math.unit(3, "meters")
  18289. },
  18290. {
  18291. name: "Large",
  18292. height: math.unit(5, "meters")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18298. {
  18299. feeding: {
  18300. height: math.unit(6.7, "feet"),
  18301. weight: math.unit(350, "lb"),
  18302. name: "Feeding",
  18303. image: {
  18304. source: "./media/characters/lalim/feeding.svg",
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(6.7, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(9.5, "feet"),
  18321. weight: math.unit(600, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/de'vout/front.svg",
  18325. extra: 1443 / 1328,
  18326. bottom: 0.025
  18327. }
  18328. },
  18329. back: {
  18330. height: math.unit(9.5, "feet"),
  18331. weight: math.unit(600, "lb"),
  18332. name: "Back",
  18333. image: {
  18334. source: "./media/characters/de'vout/back.svg",
  18335. extra: 1443 / 1328
  18336. }
  18337. },
  18338. frontDressed: {
  18339. height: math.unit(9.5, "feet"),
  18340. weight: math.unit(600, "lb"),
  18341. name: "Front (Dressed",
  18342. image: {
  18343. source: "./media/characters/de'vout/front-dressed.svg",
  18344. extra: 1443 / 1328,
  18345. bottom: 0.025
  18346. }
  18347. },
  18348. backDressed: {
  18349. height: math.unit(9.5, "feet"),
  18350. weight: math.unit(600, "lb"),
  18351. name: "Back (Dressed",
  18352. image: {
  18353. source: "./media/characters/de'vout/back-dressed.svg",
  18354. extra: 1443 / 1328
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(9.5, "feet"),
  18362. default: true
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(8, "feet"),
  18371. weight: math.unit(225, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/talana/front.svg",
  18375. extra: 1410 / 1300,
  18376. bottom: 0.015
  18377. }
  18378. },
  18379. frontDressed: {
  18380. height: math.unit(8, "feet"),
  18381. weight: math.unit(225, "lb"),
  18382. name: "Front (Dressed",
  18383. image: {
  18384. source: "./media/characters/talana/front-dressed.svg",
  18385. extra: 1410 / 1300,
  18386. bottom: 0.015
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(8, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18400. {
  18401. side: {
  18402. height: math.unit(7.2, "feet"),
  18403. weight: math.unit(150, "lb"),
  18404. name: "Side",
  18405. image: {
  18406. source: "./media/characters/xeauvok/side.svg",
  18407. extra: 1975 / 1523,
  18408. bottom: 0.07
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(7.2, "feet"),
  18416. default: true
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18422. {
  18423. side: {
  18424. height: math.unit(10, "feet"),
  18425. weight: math.unit(900, "kg"),
  18426. name: "Side",
  18427. image: {
  18428. source: "./media/characters/zara/side.svg",
  18429. extra: 504 / 498
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(10, "feet"),
  18437. default: true
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18443. {
  18444. side: {
  18445. height: math.unit(6, "feet"),
  18446. weight: math.unit(150, "lb"),
  18447. name: "Side",
  18448. image: {
  18449. source: "./media/characters/richard-dragon/side.svg",
  18450. extra: 845 / 340,
  18451. bottom: 0.017
  18452. }
  18453. },
  18454. maw: {
  18455. height: math.unit(2.97, "feet"),
  18456. name: "Maw",
  18457. image: {
  18458. source: "./media/characters/richard-dragon/maw.svg"
  18459. }
  18460. },
  18461. },
  18462. [
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(4, "feet"),
  18470. weight: math.unit(100, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/richard-smeargle/front.svg",
  18474. extra: 2952 / 2820,
  18475. bottom: 0.028
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(4, "feet"),
  18483. default: true
  18484. },
  18485. {
  18486. name: "Dynamax",
  18487. height: math.unit(20, "meters")
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(110, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/klay/front.svg",
  18500. extra: 962 / 883,
  18501. bottom: 0.04
  18502. }
  18503. },
  18504. back: {
  18505. height: math.unit(6, "feet"),
  18506. weight: math.unit(110, "lb"),
  18507. name: "Back",
  18508. image: {
  18509. source: "./media/characters/klay/back.svg",
  18510. extra: 962 / 883
  18511. }
  18512. },
  18513. beans: {
  18514. height: math.unit(1.15, "feet"),
  18515. name: "Beans",
  18516. image: {
  18517. source: "./media/characters/klay/beans.svg"
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Micro",
  18524. height: math.unit(6, "inches")
  18525. },
  18526. {
  18527. name: "Mini",
  18528. height: math.unit(3, "feet")
  18529. },
  18530. {
  18531. name: "Normal",
  18532. height: math.unit(6, "feet"),
  18533. default: true
  18534. },
  18535. {
  18536. name: "Big",
  18537. height: math.unit(25, "feet")
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(100, "feet")
  18542. },
  18543. {
  18544. name: "Megamacro",
  18545. height: math.unit(400, "feet")
  18546. },
  18547. ]
  18548. ))
  18549. characterMakers.push(() => makeCharacter(
  18550. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18551. {
  18552. front: {
  18553. height: math.unit(6, "feet"),
  18554. weight: math.unit(160, "lb"),
  18555. name: "Front",
  18556. image: {
  18557. source: "./media/characters/marcus/front.svg",
  18558. extra: 734 / 676,
  18559. bottom: 0.03
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Little",
  18566. height: math.unit(6, "feet")
  18567. },
  18568. {
  18569. name: "Normal",
  18570. height: math.unit(110, "feet"),
  18571. default: true
  18572. },
  18573. {
  18574. name: "Macro",
  18575. height: math.unit(250, "feet")
  18576. },
  18577. {
  18578. name: "Megamacro",
  18579. height: math.unit(1000, "feet")
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18585. {
  18586. front: {
  18587. height: math.unit(7, "feet"),
  18588. weight: math.unit(275, "lb"),
  18589. name: "Front",
  18590. image: {
  18591. source: "./media/characters/claude-delroute/front.svg",
  18592. extra: 902/827,
  18593. bottom: 26/928
  18594. }
  18595. },
  18596. side: {
  18597. height: math.unit(7, "feet"),
  18598. weight: math.unit(275, "lb"),
  18599. name: "Side",
  18600. image: {
  18601. source: "./media/characters/claude-delroute/side.svg",
  18602. extra: 908/853,
  18603. bottom: 16/924
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(7, "feet"),
  18608. weight: math.unit(275, "lb"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/claude-delroute/back.svg",
  18612. extra: 911/829,
  18613. bottom: 18/929
  18614. }
  18615. },
  18616. maw: {
  18617. height: math.unit(0.6407, "meters"),
  18618. name: "Maw",
  18619. image: {
  18620. source: "./media/characters/claude-delroute/maw.svg"
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(7, "feet"),
  18628. default: true
  18629. },
  18630. {
  18631. name: "Lorge",
  18632. height: math.unit(20, "feet")
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18638. {
  18639. front: {
  18640. height: math.unit(8 + 4 / 12, "feet"),
  18641. weight: math.unit(600, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/dragonien/front.svg",
  18645. extra: 100 / 94,
  18646. bottom: 3.3 / 103.3445
  18647. }
  18648. },
  18649. back: {
  18650. height: math.unit(8 + 4 / 12, "feet"),
  18651. weight: math.unit(600, "lb"),
  18652. name: "Back",
  18653. image: {
  18654. source: "./media/characters/dragonien/back.svg",
  18655. extra: 776 / 746,
  18656. bottom: 6.4 / 782.0616
  18657. }
  18658. },
  18659. foot: {
  18660. height: math.unit(1.54, "feet"),
  18661. name: "Foot",
  18662. image: {
  18663. source: "./media/characters/dragonien/foot.svg",
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(8 + 4 / 12, "feet"),
  18671. default: true
  18672. },
  18673. {
  18674. name: "Macro",
  18675. height: math.unit(200, "feet")
  18676. },
  18677. {
  18678. name: "Megamacro",
  18679. height: math.unit(1, "mile")
  18680. },
  18681. {
  18682. name: "Gigamacro",
  18683. height: math.unit(1000, "miles")
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(5 + 2 / 12, "feet"),
  18692. weight: math.unit(110, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/desta/front.svg",
  18696. extra: 767 / 726,
  18697. bottom: 11.7 / 779
  18698. }
  18699. },
  18700. back: {
  18701. height: math.unit(5 + 2 / 12, "feet"),
  18702. weight: math.unit(110, "lb"),
  18703. name: "Back",
  18704. image: {
  18705. source: "./media/characters/desta/back.svg",
  18706. extra: 777 / 728,
  18707. bottom: 6 / 784
  18708. }
  18709. },
  18710. frontAlt: {
  18711. height: math.unit(5 + 2 / 12, "feet"),
  18712. weight: math.unit(110, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/desta/front-alt.svg",
  18716. extra: 1482 / 1417
  18717. }
  18718. },
  18719. side: {
  18720. height: math.unit(5 + 2 / 12, "feet"),
  18721. weight: math.unit(110, "lb"),
  18722. name: "Side",
  18723. image: {
  18724. source: "./media/characters/desta/side.svg",
  18725. extra: 2579 / 2491,
  18726. bottom: 0.053
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Micro",
  18733. height: math.unit(6, "inches")
  18734. },
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(5 + 2 / 12, "feet"),
  18738. default: true
  18739. },
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(62, "feet")
  18743. },
  18744. {
  18745. name: "Megamacro",
  18746. height: math.unit(1800, "feet")
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(10, "feet"),
  18755. weight: math.unit(700, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/storm-alystar/front.svg",
  18759. extra: 2112 / 1898,
  18760. bottom: 0.034
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Micro",
  18767. height: math.unit(3.5, "inches")
  18768. },
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(10, "feet"),
  18772. default: true
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(400, "feet")
  18777. },
  18778. {
  18779. name: "Deific",
  18780. height: math.unit(60, "miles")
  18781. },
  18782. ]
  18783. ))
  18784. characterMakers.push(() => makeCharacter(
  18785. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18786. {
  18787. front: {
  18788. height: math.unit(2.35, "meters"),
  18789. weight: math.unit(119, "kg"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/ilia/front.svg",
  18793. extra: 1285 / 1255,
  18794. bottom: 0.06
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(2.35, "meters")
  18802. },
  18803. {
  18804. name: "Macro",
  18805. height: math.unit(140, "meters"),
  18806. default: true
  18807. },
  18808. {
  18809. name: "Megamacro",
  18810. height: math.unit(100, "miles")
  18811. },
  18812. ]
  18813. ))
  18814. characterMakers.push(() => makeCharacter(
  18815. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18816. {
  18817. front: {
  18818. height: math.unit(6 + 5 / 12, "feet"),
  18819. weight: math.unit(190, "lb"),
  18820. name: "Front",
  18821. image: {
  18822. source: "./media/characters/kingdead/front.svg",
  18823. extra: 1228 / 1177
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Micro",
  18830. height: math.unit(7, "inches")
  18831. },
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(6 + 5 / 12, "feet")
  18835. },
  18836. {
  18837. name: "Macro",
  18838. height: math.unit(150, "feet"),
  18839. default: true
  18840. },
  18841. {
  18842. name: "Megamacro",
  18843. height: math.unit(200, "miles")
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18849. {
  18850. front: {
  18851. height: math.unit(8, "feet"),
  18852. weight: math.unit(600, "lb"),
  18853. name: "Front",
  18854. image: {
  18855. source: "./media/characters/kyrehx/front.svg",
  18856. extra: 1195 / 1095,
  18857. bottom: 0.034
  18858. }
  18859. },
  18860. },
  18861. [
  18862. {
  18863. name: "Micro",
  18864. height: math.unit(2, "inches")
  18865. },
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(8, "feet"),
  18869. default: true
  18870. },
  18871. {
  18872. name: "Macro",
  18873. height: math.unit(255, "feet")
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18879. {
  18880. front: {
  18881. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18882. weight: math.unit(184, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/xang/front.svg",
  18886. extra: 845 / 755
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18894. default: true
  18895. },
  18896. {
  18897. name: "Macro",
  18898. height: math.unit(0.935 * 146, "feet")
  18899. },
  18900. {
  18901. name: "Megamacro",
  18902. height: math.unit(0.935 * 3, "miles")
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18908. {
  18909. frontDressed: {
  18910. height: math.unit(5 + 7 / 12, "feet"),
  18911. weight: math.unit(140, "lb"),
  18912. name: "Front (Dressed)",
  18913. image: {
  18914. source: "./media/characters/doc-weardno/front-dressed.svg",
  18915. extra: 263 / 234
  18916. }
  18917. },
  18918. backDressed: {
  18919. height: math.unit(5 + 7 / 12, "feet"),
  18920. weight: math.unit(140, "lb"),
  18921. name: "Back (Dressed)",
  18922. image: {
  18923. source: "./media/characters/doc-weardno/back-dressed.svg",
  18924. extra: 266 / 238
  18925. }
  18926. },
  18927. front: {
  18928. height: math.unit(5 + 7 / 12, "feet"),
  18929. weight: math.unit(140, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/doc-weardno/front.svg",
  18933. extra: 254 / 233
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(3, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(5 + 7 / 12, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(25, "feet")
  18950. },
  18951. {
  18952. name: "Megamacro",
  18953. height: math.unit(2, "miles")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 2 / 12, "feet"),
  18962. weight: math.unit(153, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/seth-whilst/front.svg",
  18966. bottom: 0.07
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Micro",
  18973. height: math.unit(5, "inches")
  18974. },
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(6 + 2 / 12, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(3, "inches"),
  18987. weight: math.unit(8, "grams"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/pocket-jabari/front.svg",
  18991. extra: 1024 / 974,
  18992. bottom: 0.039
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Minimicro",
  18999. height: math.unit(8, "mm")
  19000. },
  19001. {
  19002. name: "Micro",
  19003. height: math.unit(3, "inches"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(3, "feet")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19014. {
  19015. front: {
  19016. height: math.unit(15, "feet"),
  19017. weight: math.unit(3280, "lb"),
  19018. name: "Front",
  19019. image: {
  19020. source: "./media/characters/sapphy/front.svg",
  19021. extra: 671 / 577,
  19022. bottom: 0.085
  19023. }
  19024. },
  19025. back: {
  19026. height: math.unit(15, "feet"),
  19027. weight: math.unit(3280, "lb"),
  19028. name: "Back",
  19029. image: {
  19030. source: "./media/characters/sapphy/back.svg",
  19031. extra: 631 / 607,
  19032. bottom: 0.045
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(15, "feet")
  19040. },
  19041. {
  19042. name: "Casual Macro",
  19043. height: math.unit(120, "feet")
  19044. },
  19045. {
  19046. name: "Macro",
  19047. height: math.unit(2150, "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Megamacro",
  19052. height: math.unit(8, "miles")
  19053. },
  19054. {
  19055. name: "Galaxy Mom",
  19056. height: math.unit(6, "megalightyears")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19062. {
  19063. front: {
  19064. height: math.unit(6, "feet"),
  19065. weight: math.unit(170, "lb"),
  19066. name: "Front",
  19067. image: {
  19068. source: "./media/characters/kiro/front.svg",
  19069. extra: 1064 / 1012,
  19070. bottom: 0.052
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Micro",
  19077. height: math.unit(6, "inches")
  19078. },
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(6, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(72, "feet")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(5 + 9 / 12, "feet"),
  19095. weight: math.unit(175, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/irishfox/front.svg",
  19099. extra: 1912 / 1680,
  19100. bottom: 0.02
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Nano",
  19107. height: math.unit(1, "mm")
  19108. },
  19109. {
  19110. name: "Micro",
  19111. height: math.unit(2, "inches")
  19112. },
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(5 + 9 / 12, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(45, "feet")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(6 + 1 / 12, "feet"),
  19129. weight: math.unit(75, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/aronai-sieyes/front.svg",
  19133. extra: 1532/1450,
  19134. bottom: 42/1574
  19135. }
  19136. },
  19137. side: {
  19138. height: math.unit(6 + 1 / 12, "feet"),
  19139. weight: math.unit(75, "lb"),
  19140. name: "Side",
  19141. image: {
  19142. source: "./media/characters/aronai-sieyes/side.svg",
  19143. extra: 1422/1365,
  19144. bottom: 148/1570
  19145. }
  19146. },
  19147. back: {
  19148. height: math.unit(6 + 1 / 12, "feet"),
  19149. weight: math.unit(75, "lb"),
  19150. name: "Back",
  19151. image: {
  19152. source: "./media/characters/aronai-sieyes/back.svg",
  19153. extra: 1526/1464,
  19154. bottom: 51/1577
  19155. }
  19156. },
  19157. dressed: {
  19158. height: math.unit(6 + 1 / 12, "feet"),
  19159. weight: math.unit(75, "lb"),
  19160. name: "Dressed",
  19161. image: {
  19162. source: "./media/characters/aronai-sieyes/dressed.svg",
  19163. extra: 1559/1483,
  19164. bottom: 39/1598
  19165. }
  19166. },
  19167. slit: {
  19168. height: math.unit(1.3, "feet"),
  19169. name: "Slit",
  19170. image: {
  19171. source: "./media/characters/aronai-sieyes/slit.svg"
  19172. }
  19173. },
  19174. slitSpread: {
  19175. height: math.unit(0.9, "feet"),
  19176. name: "Slit (Spread)",
  19177. image: {
  19178. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19179. }
  19180. },
  19181. rump: {
  19182. height: math.unit(1.3, "feet"),
  19183. name: "Rump",
  19184. image: {
  19185. source: "./media/characters/aronai-sieyes/rump.svg"
  19186. }
  19187. },
  19188. maw: {
  19189. height: math.unit(1.25, "feet"),
  19190. name: "Maw",
  19191. image: {
  19192. source: "./media/characters/aronai-sieyes/maw.svg"
  19193. }
  19194. },
  19195. feral: {
  19196. height: math.unit(18, "feet"),
  19197. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19198. name: "Feral",
  19199. image: {
  19200. source: "./media/characters/aronai-sieyes/feral.svg",
  19201. extra: 1530 / 1240,
  19202. bottom: 0.035
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Micro",
  19209. height: math.unit(2, "inches")
  19210. },
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 1 / 12, "feet"),
  19214. default: true
  19215. }
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(12, "feet"),
  19223. weight: math.unit(410, "kg"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/xuna/front.svg",
  19227. extra: 2184 / 1980
  19228. }
  19229. },
  19230. side: {
  19231. height: math.unit(12, "feet"),
  19232. weight: math.unit(410, "kg"),
  19233. name: "Side",
  19234. image: {
  19235. source: "./media/characters/xuna/side.svg",
  19236. extra: 2184 / 1980
  19237. }
  19238. },
  19239. back: {
  19240. height: math.unit(12, "feet"),
  19241. weight: math.unit(410, "kg"),
  19242. name: "Back",
  19243. image: {
  19244. source: "./media/characters/xuna/back.svg",
  19245. extra: 2184 / 1980
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Nano glow",
  19252. height: math.unit(10, "nm")
  19253. },
  19254. {
  19255. name: "Micro floof",
  19256. height: math.unit(0.3, "m")
  19257. },
  19258. {
  19259. name: "Huggable softy boi",
  19260. height: math.unit(3.6576, "m"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Admirable floof",
  19265. height: math.unit(80, "meters")
  19266. },
  19267. {
  19268. name: "Gentle macro",
  19269. height: math.unit(300, "meters")
  19270. },
  19271. {
  19272. name: "Very careful floof",
  19273. height: math.unit(3200, "meters")
  19274. },
  19275. {
  19276. name: "The mega floof",
  19277. height: math.unit(36000, "meters")
  19278. },
  19279. {
  19280. name: "Giga-fur-Wicker",
  19281. height: math.unit(4800000, "meters")
  19282. },
  19283. {
  19284. name: "Licky world",
  19285. height: math.unit(20000000, "meters")
  19286. },
  19287. {
  19288. name: "Floofy cyan sun",
  19289. height: math.unit(1500000000, "meters")
  19290. },
  19291. {
  19292. name: "Milky Wicker",
  19293. height: math.unit(1000000000000000000000, "meters")
  19294. },
  19295. {
  19296. name: "The observing Wicker",
  19297. height: math.unit(999999999999999999999999999, "meters")
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(5 + 9 / 12, "feet"),
  19306. weight: math.unit(150, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/arokha-sieyes/front.svg",
  19310. extra: 1425 / 1284,
  19311. bottom: 0.05
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(5 + 9 / 12, "feet")
  19319. },
  19320. {
  19321. name: "Macro",
  19322. height: math.unit(30, "meters"),
  19323. default: true
  19324. },
  19325. ]
  19326. ))
  19327. characterMakers.push(() => makeCharacter(
  19328. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19329. {
  19330. front: {
  19331. height: math.unit(6, "feet"),
  19332. weight: math.unit(180, "lb"),
  19333. name: "Front",
  19334. image: {
  19335. source: "./media/characters/arokh-sieyes/front.svg",
  19336. extra: 1830 / 1769,
  19337. bottom: 0.01
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(6, "feet")
  19345. },
  19346. {
  19347. name: "Macro",
  19348. height: math.unit(30, "meters"),
  19349. default: true
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19355. {
  19356. side: {
  19357. height: math.unit(13 + 1 / 12, "feet"),
  19358. weight: math.unit(8.5, "tonnes"),
  19359. name: "Side",
  19360. image: {
  19361. source: "./media/characters/goldeneye/side.svg",
  19362. extra: 1182 / 778,
  19363. bottom: 0.067
  19364. }
  19365. },
  19366. paw: {
  19367. height: math.unit(3.4, "feet"),
  19368. name: "Paw",
  19369. image: {
  19370. source: "./media/characters/goldeneye/paw.svg"
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(13 + 1 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6 + 1 / 12, "feet"),
  19387. weight: math.unit(210, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/leonardo-lycheborne/front.svg",
  19391. extra: 776/723,
  19392. bottom: 34/810
  19393. }
  19394. },
  19395. side: {
  19396. height: math.unit(6 + 1 / 12, "feet"),
  19397. weight: math.unit(210, "lb"),
  19398. name: "Side",
  19399. image: {
  19400. source: "./media/characters/leonardo-lycheborne/side.svg",
  19401. extra: 780/728,
  19402. bottom: 12/792
  19403. }
  19404. },
  19405. back: {
  19406. height: math.unit(6 + 1 / 12, "feet"),
  19407. weight: math.unit(210, "lb"),
  19408. name: "Back",
  19409. image: {
  19410. source: "./media/characters/leonardo-lycheborne/back.svg",
  19411. extra: 775/721,
  19412. bottom: 17/792
  19413. }
  19414. },
  19415. hand: {
  19416. height: math.unit(1.08, "feet"),
  19417. name: "Hand",
  19418. image: {
  19419. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19420. }
  19421. },
  19422. foot: {
  19423. height: math.unit(1.32, "feet"),
  19424. name: "Foot",
  19425. image: {
  19426. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19427. }
  19428. },
  19429. maw: {
  19430. height: math.unit(1, "feet"),
  19431. name: "Maw",
  19432. image: {
  19433. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19434. }
  19435. },
  19436. were: {
  19437. height: math.unit(20, "feet"),
  19438. weight: math.unit(7800, "lb"),
  19439. name: "Were",
  19440. image: {
  19441. source: "./media/characters/leonardo-lycheborne/were.svg",
  19442. extra: 1224/1165,
  19443. bottom: 72/1296
  19444. }
  19445. },
  19446. feral: {
  19447. height: math.unit(7.5, "feet"),
  19448. weight: math.unit(600, "lb"),
  19449. name: "Feral",
  19450. image: {
  19451. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19452. extra: 797/702,
  19453. bottom: 139/936
  19454. }
  19455. },
  19456. taur: {
  19457. height: math.unit(11, "feet"),
  19458. weight: math.unit(3300, "lb"),
  19459. name: "Taur",
  19460. image: {
  19461. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19462. extra: 1271/1197,
  19463. bottom: 47/1318
  19464. }
  19465. },
  19466. barghest: {
  19467. height: math.unit(11, "feet"),
  19468. weight: math.unit(1300, "lb"),
  19469. name: "Barghest",
  19470. image: {
  19471. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19472. extra: 1291/1204,
  19473. bottom: 37/1328
  19474. }
  19475. },
  19476. dick: {
  19477. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19478. name: "Dick",
  19479. image: {
  19480. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19481. }
  19482. },
  19483. dickWere: {
  19484. height: math.unit((20) / 3.8, "feet"),
  19485. name: "Dick (Were)",
  19486. image: {
  19487. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(6 + 1 / 12, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(10, "feet"),
  19504. weight: math.unit(350, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/jet/front.svg",
  19508. extra: 2050 / 1980,
  19509. bottom: 0.013
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(10, "feet"),
  19514. weight: math.unit(350, "lb"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/jet/back.svg",
  19518. extra: 2050 / 1980,
  19519. bottom: 0.013
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Micro",
  19526. height: math.unit(6, "inches")
  19527. },
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(10, "feet"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Macro",
  19535. height: math.unit(100, "feet")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19541. {
  19542. front: {
  19543. height: math.unit(15, "feet"),
  19544. weight: math.unit(2800, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/tanarath/front.svg",
  19548. extra: 2392 / 2220,
  19549. bottom: 0.03
  19550. }
  19551. },
  19552. back: {
  19553. height: math.unit(15, "feet"),
  19554. weight: math.unit(2800, "lb"),
  19555. name: "Back",
  19556. image: {
  19557. source: "./media/characters/tanarath/back.svg",
  19558. extra: 2392 / 2220,
  19559. bottom: 0.03
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(15, "feet"),
  19567. default: true
  19568. },
  19569. ]
  19570. ))
  19571. characterMakers.push(() => makeCharacter(
  19572. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19573. {
  19574. front: {
  19575. height: math.unit(7 + 1 / 12, "feet"),
  19576. weight: math.unit(175, "lb"),
  19577. name: "Front",
  19578. image: {
  19579. source: "./media/characters/patty-cattybatty/front.svg",
  19580. extra: 908 / 874,
  19581. bottom: 0.025
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Micro",
  19588. height: math.unit(1, "inch")
  19589. },
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(7 + 1 / 12, "feet")
  19593. },
  19594. {
  19595. name: "Mini Macro",
  19596. height: math.unit(155, "feet")
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(1077, "feet")
  19601. },
  19602. {
  19603. name: "Mega Macro",
  19604. height: math.unit(47650, "feet"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Giga Macro",
  19609. height: math.unit(440, "miles")
  19610. },
  19611. {
  19612. name: "Tera Macro",
  19613. height: math.unit(8700, "miles")
  19614. },
  19615. {
  19616. name: "Planetary Macro",
  19617. height: math.unit(32700, "miles")
  19618. },
  19619. {
  19620. name: "Solar Macro",
  19621. height: math.unit(550000, "miles")
  19622. },
  19623. {
  19624. name: "Celestial Macro",
  19625. height: math.unit(2.5, "AU")
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(4 + 5 / 12, "feet"),
  19634. weight: math.unit(90, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/cappu/front.svg",
  19638. extra: 1247 / 1152,
  19639. bottom: 0.012
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(4 + 5 / 12, "feet"),
  19647. default: true
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19653. {
  19654. frontDressed: {
  19655. height: math.unit(70, "cm"),
  19656. weight: math.unit(6, "kg"),
  19657. name: "Front (Dressed)",
  19658. image: {
  19659. source: "./media/characters/sebi/front-dressed.svg",
  19660. extra: 713.5 / 686.5,
  19661. bottom: 0.003
  19662. }
  19663. },
  19664. front: {
  19665. height: math.unit(70, "cm"),
  19666. weight: math.unit(5, "kg"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/sebi/front.svg",
  19670. extra: 713.5 / 686.5,
  19671. bottom: 0.003
  19672. }
  19673. }
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(70, "cm"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Macro",
  19683. height: math.unit(8, "meters")
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(6, "feet"),
  19692. weight: math.unit(150, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/typhek/front.svg",
  19696. extra: 1948 / 1929,
  19697. bottom: 0.025
  19698. }
  19699. },
  19700. side: {
  19701. height: math.unit(6, "feet"),
  19702. weight: math.unit(150, "lb"),
  19703. name: "Side",
  19704. image: {
  19705. source: "./media/characters/typhek/side.svg",
  19706. extra: 2034 / 2010,
  19707. bottom: 0.003
  19708. }
  19709. },
  19710. back: {
  19711. height: math.unit(6, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Back",
  19714. image: {
  19715. source: "./media/characters/typhek/back.svg",
  19716. extra: 2005 / 1978,
  19717. bottom: 0.004
  19718. }
  19719. },
  19720. palm: {
  19721. height: math.unit(1.2, "feet"),
  19722. name: "Palm",
  19723. image: {
  19724. source: "./media/characters/typhek/palm.svg"
  19725. }
  19726. },
  19727. fist: {
  19728. height: math.unit(1.1, "feet"),
  19729. name: "Fist",
  19730. image: {
  19731. source: "./media/characters/typhek/fist.svg"
  19732. }
  19733. },
  19734. foot: {
  19735. height: math.unit(1.57, "feet"),
  19736. name: "Foot",
  19737. image: {
  19738. source: "./media/characters/typhek/foot.svg"
  19739. }
  19740. },
  19741. sole: {
  19742. height: math.unit(2.05, "feet"),
  19743. name: "Sole",
  19744. image: {
  19745. source: "./media/characters/typhek/sole.svg"
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Macro",
  19752. height: math.unit(40, "stories"),
  19753. default: true
  19754. },
  19755. {
  19756. name: "Megamacro",
  19757. height: math.unit(1, "mile")
  19758. },
  19759. {
  19760. name: "Gigamacro",
  19761. height: math.unit(4000, "solarradii")
  19762. },
  19763. {
  19764. name: "Universal",
  19765. height: math.unit(1.1, "universes")
  19766. }
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19771. {
  19772. side: {
  19773. height: math.unit(5 + 7 / 12, "feet"),
  19774. weight: math.unit(150, "lb"),
  19775. name: "Side",
  19776. image: {
  19777. source: "./media/characters/kassy/side.svg",
  19778. extra: 1280 / 1225,
  19779. bottom: 0.002
  19780. }
  19781. },
  19782. front: {
  19783. height: math.unit(5 + 7 / 12, "feet"),
  19784. weight: math.unit(150, "lb"),
  19785. name: "Front",
  19786. image: {
  19787. source: "./media/characters/kassy/front.svg",
  19788. extra: 1280 / 1225,
  19789. bottom: 0.025
  19790. }
  19791. },
  19792. back: {
  19793. height: math.unit(5 + 7 / 12, "feet"),
  19794. weight: math.unit(150, "lb"),
  19795. name: "Back",
  19796. image: {
  19797. source: "./media/characters/kassy/back.svg",
  19798. extra: 1280 / 1225,
  19799. bottom: 0.002
  19800. }
  19801. },
  19802. foot: {
  19803. height: math.unit(1.266, "feet"),
  19804. name: "Foot",
  19805. image: {
  19806. source: "./media/characters/kassy/foot.svg"
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(5 + 7 / 12, "feet")
  19814. },
  19815. {
  19816. name: "Macro",
  19817. height: math.unit(137, "feet"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Megamacro",
  19822. height: math.unit(1, "mile")
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(6 + 1 / 12, "feet"),
  19831. weight: math.unit(200, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/neil/front.svg",
  19835. extra: 1326 / 1250,
  19836. bottom: 0.023
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(6 + 1 / 12, "feet"),
  19844. default: true
  19845. },
  19846. {
  19847. name: "Macro",
  19848. height: math.unit(200, "feet")
  19849. },
  19850. ]
  19851. ))
  19852. characterMakers.push(() => makeCharacter(
  19853. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19854. {
  19855. front: {
  19856. height: math.unit(5 + 9 / 12, "feet"),
  19857. weight: math.unit(190, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/atticus/front.svg",
  19861. extra: 2934 / 2785,
  19862. bottom: 0.025
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(5 + 9 / 12, "feet"),
  19870. default: true
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(180, "feet")
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19880. {
  19881. side: {
  19882. height: math.unit(9, "feet"),
  19883. weight: math.unit(650, "lb"),
  19884. name: "Side",
  19885. image: {
  19886. source: "./media/characters/milo/side.svg",
  19887. extra: 2644 / 2310,
  19888. bottom: 0.032
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(9, "feet"),
  19896. default: true
  19897. },
  19898. {
  19899. name: "Macro",
  19900. height: math.unit(300, "feet")
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19906. {
  19907. side: {
  19908. height: math.unit(8, "meters"),
  19909. weight: math.unit(90000, "kg"),
  19910. name: "Side",
  19911. image: {
  19912. source: "./media/characters/ijzer/side.svg",
  19913. extra: 2756 / 1600,
  19914. bottom: 0.01
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Small",
  19921. height: math.unit(3, "meters")
  19922. },
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(8, "meters"),
  19926. default: true
  19927. },
  19928. {
  19929. name: "Normal+",
  19930. height: math.unit(10, "meters")
  19931. },
  19932. {
  19933. name: "Bigger",
  19934. height: math.unit(24, "meters")
  19935. },
  19936. {
  19937. name: "Huge",
  19938. height: math.unit(80, "meters")
  19939. },
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(6 + 2 / 12, "feet"),
  19947. weight: math.unit(153, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/luca-cervicum/front.svg",
  19951. extra: 370 / 327,
  19952. bottom: 0.015
  19953. }
  19954. },
  19955. back: {
  19956. height: math.unit(6 + 2 / 12, "feet"),
  19957. weight: math.unit(153, "lb"),
  19958. name: "Back",
  19959. image: {
  19960. source: "./media/characters/luca-cervicum/back.svg",
  19961. extra: 367 / 333,
  19962. bottom: 0.005
  19963. }
  19964. },
  19965. frontGear: {
  19966. height: math.unit(6 + 2 / 12, "feet"),
  19967. weight: math.unit(173, "lb"),
  19968. name: "Front (Gear)",
  19969. image: {
  19970. source: "./media/characters/luca-cervicum/front-gear.svg",
  19971. extra: 377 / 333,
  19972. bottom: 0.006
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(6 + 2 / 12, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(6 + 1 / 12, "feet"),
  19989. weight: math.unit(304, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/oliver/front.svg",
  19993. extra: 157 / 143,
  19994. bottom: 0.08
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(6 + 1 / 12, "feet"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(5 + 7 / 12, "feet"),
  20011. weight: math.unit(140, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/shane/front.svg",
  20015. extra: 304 / 289,
  20016. bottom: 0.005
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(5 + 7 / 12, "feet"),
  20024. default: true
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(5 + 9 / 12, "feet"),
  20033. weight: math.unit(178, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/shin/front.svg",
  20037. extra: 159 / 151,
  20038. bottom: 0.015
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(5 + 9 / 12, "feet"),
  20046. default: true
  20047. },
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20052. {
  20053. front: {
  20054. height: math.unit(5 + 10 / 12, "feet"),
  20055. weight: math.unit(168, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/xerxes/front.svg",
  20059. extra: 282 / 260,
  20060. bottom: 0.045
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(5 + 10 / 12, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6 + 7 / 12, "feet"),
  20077. weight: math.unit(208, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/chaska/front.svg",
  20081. extra: 332 / 319,
  20082. bottom: 0.015
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(6 + 7 / 12, "feet"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(5 + 8 / 12, "feet"),
  20099. weight: math.unit(208, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/enuk/front.svg",
  20103. extra: 437 / 406,
  20104. bottom: 0.02
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(5 + 8 / 12, "feet"),
  20112. default: true
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20118. {
  20119. front: {
  20120. height: math.unit(5 + 10 / 12, "feet"),
  20121. weight: math.unit(252, "lb"),
  20122. name: "Front",
  20123. image: {
  20124. source: "./media/characters/bruun/front.svg",
  20125. extra: 197 / 187,
  20126. bottom: 0.012
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(5 + 10 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(6 + 10 / 12, "feet"),
  20143. weight: math.unit(255, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/alexeev/front.svg",
  20147. extra: 213 / 200,
  20148. bottom: 0.05
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(6 + 10 / 12, "feet"),
  20156. default: true
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(2 + 8 / 12, "feet"),
  20165. weight: math.unit(22, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/evelyn/front.svg",
  20169. extra: 208 / 180
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(2 + 8 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(5 + 9 / 12, "feet"),
  20186. weight: math.unit(139, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/inca/front.svg",
  20190. extra: 294 / 291,
  20191. bottom: 0.03
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 9 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6 + 3 / 12, "feet"),
  20208. weight: math.unit(185, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/mera/front.svg",
  20212. extra: 291 / 277,
  20213. bottom: 0.03
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(6 + 3 / 12, "feet"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(6 + 7 / 12, "feet"),
  20230. weight: math.unit(160, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/ceres/front.svg",
  20234. extra: 1023 / 950,
  20235. bottom: 0.027
  20236. }
  20237. },
  20238. back: {
  20239. height: math.unit(6 + 7 / 12, "feet"),
  20240. weight: math.unit(160, "lb"),
  20241. name: "Back",
  20242. image: {
  20243. source: "./media/characters/ceres/back.svg",
  20244. extra: 1023 / 950
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(6 + 7 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(5 + 10 / 12, "feet"),
  20261. weight: math.unit(150, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/kris/front.svg",
  20265. extra: 885 / 803,
  20266. bottom: 0.03
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 10 / 12, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(7, "feet"),
  20283. weight: math.unit(120, "kg"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/taluthus/front.svg",
  20287. extra: 903 / 833,
  20288. bottom: 0.015
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(7, "feet"),
  20296. default: true
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(300, "feet")
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(5 + 9 / 12, "feet"),
  20309. weight: math.unit(145, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/dawn/front.svg",
  20313. extra: 2094 / 2016,
  20314. bottom: 0.025
  20315. }
  20316. },
  20317. back: {
  20318. height: math.unit(5 + 9 / 12, "feet"),
  20319. weight: math.unit(160, "lb"),
  20320. name: "Back",
  20321. image: {
  20322. source: "./media/characters/dawn/back.svg",
  20323. extra: 2112 / 2080,
  20324. bottom: 0.005
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(6 + 7 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20338. {
  20339. anthro: {
  20340. height: math.unit(8 + 3 / 12, "feet"),
  20341. weight: math.unit(450, "lb"),
  20342. name: "Anthro",
  20343. image: {
  20344. source: "./media/characters/arador/anthro.svg",
  20345. extra: 1835 / 1718,
  20346. bottom: 0.025
  20347. }
  20348. },
  20349. feral: {
  20350. height: math.unit(4, "feet"),
  20351. weight: math.unit(200, "lb"),
  20352. name: "Feral",
  20353. image: {
  20354. source: "./media/characters/arador/feral.svg",
  20355. extra: 1683 / 1514,
  20356. bottom: 0.07
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Normal",
  20363. height: math.unit(8 + 3 / 12, "feet")
  20364. },
  20365. {
  20366. name: "Macro",
  20367. height: math.unit(82.5, "feet"),
  20368. default: true
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(5 + 10 / 12, "feet"),
  20377. weight: math.unit(125, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/dharsi/front.svg",
  20381. extra: 716 / 630,
  20382. bottom: 0.035
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Nano",
  20389. height: math.unit(100, "nm")
  20390. },
  20391. {
  20392. name: "Micro",
  20393. height: math.unit(2, "inches")
  20394. },
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5 + 10 / 12, "feet"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(1000, "feet")
  20403. },
  20404. {
  20405. name: "Megamacro",
  20406. height: math.unit(10, "miles")
  20407. },
  20408. {
  20409. name: "Gigamacro",
  20410. height: math.unit(3000, "miles")
  20411. },
  20412. {
  20413. name: "Teramacro",
  20414. height: math.unit(500000, "miles")
  20415. },
  20416. {
  20417. name: "Teramacro+",
  20418. height: math.unit(30, "galaxies")
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(6, "feet"),
  20427. weight: math.unit(150, "lb"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/deathy/front.svg",
  20431. extra: 1552 / 1463,
  20432. bottom: 0.025
  20433. }
  20434. },
  20435. side: {
  20436. height: math.unit(6, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Side",
  20439. image: {
  20440. source: "./media/characters/deathy/side.svg",
  20441. extra: 1604 / 1455,
  20442. bottom: 0.025
  20443. }
  20444. },
  20445. back: {
  20446. height: math.unit(6, "feet"),
  20447. weight: math.unit(150, "lb"),
  20448. name: "Back",
  20449. image: {
  20450. source: "./media/characters/deathy/back.svg",
  20451. extra: 1580 / 1463,
  20452. bottom: 0.005
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Micro",
  20459. height: math.unit(5, "millimeters")
  20460. },
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(6 + 5 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20470. {
  20471. front: {
  20472. height: math.unit(16, "feet"),
  20473. weight: math.unit(4000, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/juniper/front.svg",
  20477. bottom: 0.04
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(16, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20491. {
  20492. front: {
  20493. height: math.unit(6, "feet"),
  20494. weight: math.unit(150, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/hipster/front.svg",
  20498. extra: 1312 / 1209,
  20499. bottom: 0.025
  20500. }
  20501. },
  20502. back: {
  20503. height: math.unit(6, "feet"),
  20504. weight: math.unit(150, "lb"),
  20505. name: "Back",
  20506. image: {
  20507. source: "./media/characters/hipster/back.svg",
  20508. extra: 1281 / 1196,
  20509. bottom: 0.01
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Micro",
  20516. height: math.unit(1, "mm")
  20517. },
  20518. {
  20519. name: "Normal",
  20520. height: math.unit(4, "inches"),
  20521. default: true
  20522. },
  20523. {
  20524. name: "Macro",
  20525. height: math.unit(500, "feet")
  20526. },
  20527. {
  20528. name: "Megamacro",
  20529. height: math.unit(1000, "miles")
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20535. {
  20536. front: {
  20537. height: math.unit(6, "feet"),
  20538. weight: math.unit(150, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/tendirmuldr/front.svg",
  20542. extra: 1878 / 1772,
  20543. bottom: 0.015
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Megamacro",
  20550. height: math.unit(1500, "miles"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20557. {
  20558. front: {
  20559. height: math.unit(14, "feet"),
  20560. weight: math.unit(12000, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/mort/front.svg",
  20564. extra: 365 / 318,
  20565. bottom: 0.01
  20566. }
  20567. },
  20568. side: {
  20569. height: math.unit(14, "feet"),
  20570. weight: math.unit(12000, "lb"),
  20571. name: "Side",
  20572. image: {
  20573. source: "./media/characters/mort/side.svg",
  20574. extra: 365 / 318,
  20575. bottom: 0.052
  20576. },
  20577. default: true
  20578. },
  20579. back: {
  20580. height: math.unit(14, "feet"),
  20581. weight: math.unit(12000, "lb"),
  20582. name: "Back",
  20583. image: {
  20584. source: "./media/characters/mort/back.svg",
  20585. extra: 371 / 332,
  20586. bottom: 0.18
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(14, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20600. {
  20601. front: {
  20602. height: math.unit(8, "feet"),
  20603. weight: math.unit(1, "ton"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/lycoa/front.svg",
  20607. extra: 1875 / 1789,
  20608. bottom: 0.022
  20609. }
  20610. },
  20611. back: {
  20612. height: math.unit(8, "feet"),
  20613. weight: math.unit(1, "ton"),
  20614. name: "Back",
  20615. image: {
  20616. source: "./media/characters/lycoa/back.svg",
  20617. extra: 1835 / 1781,
  20618. bottom: 0.03
  20619. }
  20620. },
  20621. head: {
  20622. height: math.unit(2.1, "feet"),
  20623. name: "Head",
  20624. image: {
  20625. source: "./media/characters/lycoa/head.svg"
  20626. }
  20627. },
  20628. tailmaw: {
  20629. height: math.unit(1.9, "feet"),
  20630. name: "Tailmaw",
  20631. image: {
  20632. source: "./media/characters/lycoa/tailmaw.svg"
  20633. }
  20634. },
  20635. tentacles: {
  20636. height: math.unit(2.1, "feet"),
  20637. name: "Tentacles",
  20638. image: {
  20639. source: "./media/characters/lycoa/tentacles.svg"
  20640. }
  20641. },
  20642. dick: {
  20643. height: math.unit(1.73, "feet"),
  20644. name: "Dick",
  20645. image: {
  20646. source: "./media/characters/lycoa/dick.svg"
  20647. }
  20648. },
  20649. },
  20650. [
  20651. {
  20652. name: "Normal",
  20653. height: math.unit(8, "feet"),
  20654. default: true
  20655. },
  20656. {
  20657. name: "Macro",
  20658. height: math.unit(30, "feet")
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20664. {
  20665. front: {
  20666. height: math.unit(4 + 2 / 12, "feet"),
  20667. weight: math.unit(70, "lb"),
  20668. name: "Front",
  20669. image: {
  20670. source: "./media/characters/naldara/front.svg",
  20671. extra: 841 / 720,
  20672. bottom: 0.04
  20673. }
  20674. },
  20675. naga: {
  20676. height: math.unit(23, "feet"),
  20677. weight: math.unit(15000, "kg"),
  20678. name: "Naga",
  20679. image: {
  20680. source: "./media/characters/naldara/naga.svg",
  20681. extra: 3290 / 2959,
  20682. bottom: 124 / 3432
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(4 + 2 / 12, "feet"),
  20690. default: true
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(13 + 7 / 12, "feet"),
  20699. weight: math.unit(1500, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/briar/front.svg",
  20703. extra: 626 / 596,
  20704. bottom: 0.08
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(13 + 7 / 12, "feet"),
  20712. default: true
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20718. {
  20719. side: {
  20720. height: math.unit(10, "feet"),
  20721. weight: math.unit(500, "lb"),
  20722. name: "Side",
  20723. image: {
  20724. source: "./media/characters/vanguard/side.svg",
  20725. extra: 502 / 425,
  20726. bottom: 0.087
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(10, "feet"),
  20734. default: true
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(7.5, "feet"),
  20743. weight: math.unit(2, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/artemis/front.svg",
  20747. extra: 1192 / 1075,
  20748. bottom: 0.07
  20749. }
  20750. },
  20751. frontNsfw: {
  20752. height: math.unit(7.5, "feet"),
  20753. weight: math.unit(2, "lb"),
  20754. name: "Front (NSFW)",
  20755. image: {
  20756. source: "./media/characters/artemis/front-nsfw.svg",
  20757. extra: 1192 / 1075,
  20758. bottom: 0.07
  20759. }
  20760. },
  20761. frontNsfwer: {
  20762. height: math.unit(7.5, "feet"),
  20763. weight: math.unit(2, "lb"),
  20764. name: "Front (NSFW-er)",
  20765. image: {
  20766. source: "./media/characters/artemis/front-nsfwer.svg",
  20767. extra: 1192 / 1075,
  20768. bottom: 0.07
  20769. }
  20770. },
  20771. side: {
  20772. height: math.unit(7.5, "feet"),
  20773. weight: math.unit(2, "lb"),
  20774. name: "Side",
  20775. image: {
  20776. source: "./media/characters/artemis/side.svg",
  20777. extra: 1192 / 1075,
  20778. bottom: 0.07
  20779. }
  20780. },
  20781. sideNsfw: {
  20782. height: math.unit(7.5, "feet"),
  20783. weight: math.unit(2, "lb"),
  20784. name: "Side (NSFW)",
  20785. image: {
  20786. source: "./media/characters/artemis/side-nsfw.svg",
  20787. extra: 1192 / 1075,
  20788. bottom: 0.07
  20789. }
  20790. },
  20791. sideNsfwer: {
  20792. height: math.unit(7.5, "feet"),
  20793. weight: math.unit(2, "lb"),
  20794. name: "Side (NSFW-er)",
  20795. image: {
  20796. source: "./media/characters/artemis/side-nsfwer.svg",
  20797. extra: 1192 / 1075,
  20798. bottom: 0.07
  20799. }
  20800. },
  20801. maw: {
  20802. height: math.unit(1.1, "feet"),
  20803. name: "Maw",
  20804. image: {
  20805. source: "./media/characters/artemis/maw.svg"
  20806. }
  20807. },
  20808. stomach: {
  20809. height: math.unit(0.95, "feet"),
  20810. name: "Stomach",
  20811. image: {
  20812. source: "./media/characters/artemis/stomach.svg"
  20813. }
  20814. },
  20815. dickCanine: {
  20816. height: math.unit(1, "feet"),
  20817. name: "Dick (Canine)",
  20818. image: {
  20819. source: "./media/characters/artemis/dick-canine.svg"
  20820. }
  20821. },
  20822. dickEquine: {
  20823. height: math.unit(0.85, "feet"),
  20824. name: "Dick (Equine)",
  20825. image: {
  20826. source: "./media/characters/artemis/dick-equine.svg"
  20827. }
  20828. },
  20829. dickExotic: {
  20830. height: math.unit(0.85, "feet"),
  20831. name: "Dick (Exotic)",
  20832. image: {
  20833. source: "./media/characters/artemis/dick-exotic.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(7.5, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Enlarged",
  20845. height: math.unit(12, "feet")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(5 + 3 / 12, "feet"),
  20854. weight: math.unit(160, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/kira/front.svg",
  20858. extra: 906 / 786,
  20859. bottom: 0.01
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(5 + 3 / 12, "feet"),
  20864. weight: math.unit(160, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/kira/back.svg",
  20868. extra: 882 / 757,
  20869. bottom: 0.005
  20870. }
  20871. },
  20872. frontDressed: {
  20873. height: math.unit(5 + 3 / 12, "feet"),
  20874. weight: math.unit(160, "lb"),
  20875. name: "Front (Dressed)",
  20876. image: {
  20877. source: "./media/characters/kira/front-dressed.svg",
  20878. extra: 906 / 786,
  20879. bottom: 0.01
  20880. }
  20881. },
  20882. beans: {
  20883. height: math.unit(0.92, "feet"),
  20884. name: "Beans",
  20885. image: {
  20886. source: "./media/characters/kira/beans.svg"
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Normal",
  20893. height: math.unit(5 + 3 / 12, "feet"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20900. {
  20901. front: {
  20902. height: math.unit(5 + 4 / 12, "feet"),
  20903. weight: math.unit(145, "lb"),
  20904. name: "Front",
  20905. image: {
  20906. source: "./media/characters/scramble/front.svg",
  20907. extra: 763 / 727,
  20908. bottom: 0.05
  20909. }
  20910. },
  20911. back: {
  20912. height: math.unit(5 + 4 / 12, "feet"),
  20913. weight: math.unit(145, "lb"),
  20914. name: "Back",
  20915. image: {
  20916. source: "./media/characters/scramble/back.svg",
  20917. extra: 826 / 737,
  20918. bottom: 0.002
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(5 + 4 / 12, "feet"),
  20926. default: true
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20932. {
  20933. side: {
  20934. height: math.unit(6 + 2 / 12, "feet"),
  20935. weight: math.unit(190, "lb"),
  20936. name: "Side",
  20937. image: {
  20938. source: "./media/characters/biscuit/side.svg",
  20939. extra: 858 / 791,
  20940. bottom: 0.044
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(6 + 2 / 12, "feet"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20954. {
  20955. front: {
  20956. height: math.unit(5 + 2 / 12, "feet"),
  20957. weight: math.unit(120, "lb"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/poffin/front.svg",
  20961. extra: 786 / 680,
  20962. bottom: 0.005
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(5 + 2 / 12, "feet"),
  20970. default: true
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(6 + 3 / 12, "feet"),
  20979. weight: math.unit(519, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/dhari/front.svg",
  20983. extra: 1048 / 946,
  20984. bottom: 0.015
  20985. }
  20986. },
  20987. back: {
  20988. height: math.unit(6 + 3 / 12, "feet"),
  20989. weight: math.unit(519, "lb"),
  20990. name: "Back",
  20991. image: {
  20992. source: "./media/characters/dhari/back.svg",
  20993. extra: 1048 / 931,
  20994. bottom: 0.005
  20995. }
  20996. },
  20997. frontDressed: {
  20998. height: math.unit(6 + 3 / 12, "feet"),
  20999. weight: math.unit(519, "lb"),
  21000. name: "Front (Dressed)",
  21001. image: {
  21002. source: "./media/characters/dhari/front-dressed.svg",
  21003. extra: 1713 / 1546,
  21004. bottom: 0.02
  21005. }
  21006. },
  21007. backDressed: {
  21008. height: math.unit(6 + 3 / 12, "feet"),
  21009. weight: math.unit(519, "lb"),
  21010. name: "Back (Dressed)",
  21011. image: {
  21012. source: "./media/characters/dhari/back-dressed.svg",
  21013. extra: 1699 / 1537,
  21014. bottom: 0.01
  21015. }
  21016. },
  21017. maw: {
  21018. height: math.unit(0.95, "feet"),
  21019. name: "Maw",
  21020. image: {
  21021. source: "./media/characters/dhari/maw.svg"
  21022. }
  21023. },
  21024. wereFront: {
  21025. height: math.unit(12 + 8 / 12, "feet"),
  21026. weight: math.unit(4000, "lb"),
  21027. name: "Front (Were)",
  21028. image: {
  21029. source: "./media/characters/dhari/were-front.svg",
  21030. extra: 1065 / 969,
  21031. bottom: 0.015
  21032. }
  21033. },
  21034. wereBack: {
  21035. height: math.unit(12 + 8 / 12, "feet"),
  21036. weight: math.unit(4000, "lb"),
  21037. name: "Back (Were)",
  21038. image: {
  21039. source: "./media/characters/dhari/were-back.svg",
  21040. extra: 1065 / 969,
  21041. bottom: 0.012
  21042. }
  21043. },
  21044. wereMaw: {
  21045. height: math.unit(0.625, "meters"),
  21046. name: "Maw (Were)",
  21047. image: {
  21048. source: "./media/characters/dhari/were-maw.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(6 + 3 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21062. {
  21063. anthro: {
  21064. height: math.unit(5 + 7 / 12, "feet"),
  21065. weight: math.unit(175, "lb"),
  21066. name: "Anthro",
  21067. image: {
  21068. source: "./media/characters/rena-dyne/anthro.svg",
  21069. extra: 1849 / 1785,
  21070. bottom: 0.005
  21071. }
  21072. },
  21073. taur: {
  21074. height: math.unit(15 + 6 / 12, "feet"),
  21075. weight: math.unit(8000, "lb"),
  21076. name: "Taur",
  21077. image: {
  21078. source: "./media/characters/rena-dyne/taur.svg",
  21079. extra: 2315 / 2234,
  21080. bottom: 0.033
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(5 + 7 / 12, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(8, "feet"),
  21097. weight: math.unit(600, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/weremeep/front.svg",
  21101. extra: 967 / 862,
  21102. bottom: 0.01
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(8, "feet"),
  21110. default: true
  21111. },
  21112. {
  21113. name: "Lorg",
  21114. height: math.unit(12, "feet")
  21115. },
  21116. {
  21117. name: "Oh Lawd She Comin'",
  21118. height: math.unit(20, "feet")
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21124. {
  21125. front: {
  21126. height: math.unit(4, "feet"),
  21127. weight: math.unit(90, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/reza/front.svg",
  21131. extra: 1183 / 1111,
  21132. bottom: 0.017
  21133. }
  21134. },
  21135. back: {
  21136. height: math.unit(4, "feet"),
  21137. weight: math.unit(90, "lb"),
  21138. name: "Back",
  21139. image: {
  21140. source: "./media/characters/reza/back.svg",
  21141. extra: 1183 / 1111,
  21142. bottom: 0.01
  21143. }
  21144. },
  21145. drake: {
  21146. height: math.unit(30, "feet"),
  21147. weight: math.unit(246960, "lb"),
  21148. name: "Drake",
  21149. image: {
  21150. source: "./media/characters/reza/drake.svg",
  21151. extra: 2350 / 2024,
  21152. bottom: 60.7 / 2403
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(4, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21166. {
  21167. side: {
  21168. height: math.unit(15, "feet"),
  21169. weight: math.unit(14, "tons"),
  21170. name: "Side",
  21171. image: {
  21172. source: "./media/characters/athea/side.svg",
  21173. extra: 960 / 540,
  21174. bottom: 0.003
  21175. }
  21176. },
  21177. sitting: {
  21178. height: math.unit(6 * 2.85, "feet"),
  21179. weight: math.unit(14, "tons"),
  21180. name: "Sitting",
  21181. image: {
  21182. source: "./media/characters/athea/sitting.svg",
  21183. extra: 621 / 581,
  21184. bottom: 0.075
  21185. }
  21186. },
  21187. maw: {
  21188. height: math.unit(7.59498031496063, "feet"),
  21189. name: "Maw",
  21190. image: {
  21191. source: "./media/characters/athea/maw.svg"
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Lap Cat",
  21198. height: math.unit(2.5, "feet")
  21199. },
  21200. {
  21201. name: "Minimacro",
  21202. height: math.unit(15, "feet"),
  21203. default: true
  21204. },
  21205. {
  21206. name: "Macro",
  21207. height: math.unit(120, "feet")
  21208. },
  21209. {
  21210. name: "Macro+",
  21211. height: math.unit(640, "feet")
  21212. },
  21213. {
  21214. name: "Colossus",
  21215. height: math.unit(2.2, "miles")
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(8 + 8 / 12, "feet"),
  21224. weight: math.unit(130, "kg"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/seroko/front.svg",
  21228. extra: 1385 / 1280,
  21229. bottom: 0.025
  21230. }
  21231. },
  21232. back: {
  21233. height: math.unit(8 + 8 / 12, "feet"),
  21234. weight: math.unit(130, "kg"),
  21235. name: "Back",
  21236. image: {
  21237. source: "./media/characters/seroko/back.svg",
  21238. extra: 1369 / 1238,
  21239. bottom: 0.018
  21240. }
  21241. },
  21242. frontDressed: {
  21243. height: math.unit(8 + 8 / 12, "feet"),
  21244. weight: math.unit(130, "kg"),
  21245. name: "Front (Dressed)",
  21246. image: {
  21247. source: "./media/characters/seroko/front-dressed.svg",
  21248. extra: 1366 / 1275,
  21249. bottom: 0.03
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(8 + 8 / 12, "feet"),
  21257. default: true
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21263. {
  21264. front: {
  21265. height: math.unit(5.5, "feet"),
  21266. weight: math.unit(160, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/quatzi/front.svg",
  21270. extra: 2346 / 2242,
  21271. bottom: 0.015
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(5.5, "feet"),
  21279. default: true
  21280. },
  21281. {
  21282. name: "Big",
  21283. height: math.unit(7.7, "feet")
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21289. {
  21290. front: {
  21291. height: math.unit(5 + 11 / 12, "feet"),
  21292. weight: math.unit(180, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/sen/front.svg",
  21296. extra: 1321 / 1254,
  21297. bottom: 0.015
  21298. }
  21299. },
  21300. side: {
  21301. height: math.unit(5 + 11 / 12, "feet"),
  21302. weight: math.unit(180, "lb"),
  21303. name: "Side",
  21304. image: {
  21305. source: "./media/characters/sen/side.svg",
  21306. extra: 1321 / 1254,
  21307. bottom: 0.007
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(5 + 11 / 12, "feet"),
  21312. weight: math.unit(180, "lb"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/sen/back.svg",
  21316. extra: 1321 / 1254
  21317. }
  21318. },
  21319. },
  21320. [
  21321. {
  21322. name: "Normal",
  21323. height: math.unit(5 + 11 / 12, "feet"),
  21324. default: true
  21325. },
  21326. ]
  21327. ))
  21328. characterMakers.push(() => makeCharacter(
  21329. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21330. {
  21331. front: {
  21332. height: math.unit(166.6, "cm"),
  21333. weight: math.unit(66.6, "kg"),
  21334. name: "Front",
  21335. image: {
  21336. source: "./media/characters/fruity/front.svg",
  21337. extra: 1510 / 1386,
  21338. bottom: 0.04
  21339. }
  21340. },
  21341. back: {
  21342. height: math.unit(166.6, "cm"),
  21343. weight: math.unit(66.6, "lb"),
  21344. name: "Back",
  21345. image: {
  21346. source: "./media/characters/fruity/back.svg",
  21347. extra: 1563 / 1435,
  21348. bottom: 0.005
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(166.6, "cm"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Demonic",
  21360. height: math.unit(166.6, "feet")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21366. {
  21367. side: {
  21368. height: math.unit(10, "feet"),
  21369. weight: math.unit(500, "lb"),
  21370. name: "Side",
  21371. image: {
  21372. source: "./media/characters/zost/side.svg",
  21373. extra: 966 / 880,
  21374. bottom: 0.075
  21375. }
  21376. },
  21377. mawFront: {
  21378. height: math.unit(1.08, "meters"),
  21379. name: "Maw (Front)",
  21380. image: {
  21381. source: "./media/characters/zost/maw-front.svg"
  21382. }
  21383. },
  21384. mawSide: {
  21385. height: math.unit(2.66, "feet"),
  21386. name: "Maw (Side)",
  21387. image: {
  21388. source: "./media/characters/zost/maw-side.svg"
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(10, "feet"),
  21396. default: true
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21402. {
  21403. front: {
  21404. height: math.unit(5 + 4 / 12, "feet"),
  21405. weight: math.unit(120, "lb"),
  21406. name: "Front",
  21407. image: {
  21408. source: "./media/characters/luci/front.svg",
  21409. extra: 1985 / 1884,
  21410. bottom: 0.04
  21411. }
  21412. },
  21413. back: {
  21414. height: math.unit(5 + 4 / 12, "feet"),
  21415. weight: math.unit(120, "lb"),
  21416. name: "Back",
  21417. image: {
  21418. source: "./media/characters/luci/back.svg",
  21419. extra: 1892 / 1791,
  21420. bottom: 0.002
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(5 + 4 / 12, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(1500, "feet"),
  21437. weight: math.unit(3.8e6, "tons"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/2th/front.svg",
  21441. extra: 3489 / 3350,
  21442. bottom: 0.1
  21443. }
  21444. },
  21445. foot: {
  21446. height: math.unit(461, "feet"),
  21447. name: "Foot",
  21448. image: {
  21449. source: "./media/characters/2th/foot.svg"
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "\"Micro\"",
  21456. height: math.unit(15 + 7 / 12, "feet")
  21457. },
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(1500, "feet"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Macro",
  21465. height: math.unit(5000, "feet")
  21466. },
  21467. {
  21468. name: "Megamacro",
  21469. height: math.unit(15, "miles")
  21470. },
  21471. {
  21472. name: "Gigamacro",
  21473. height: math.unit(4000, "miles")
  21474. },
  21475. {
  21476. name: "Galactic",
  21477. height: math.unit(50, "AU")
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21483. {
  21484. front: {
  21485. height: math.unit(5 + 6 / 12, "feet"),
  21486. weight: math.unit(220, "lb"),
  21487. name: "Front",
  21488. image: {
  21489. source: "./media/characters/amethyst/front.svg",
  21490. extra: 2078 / 2040,
  21491. bottom: 0.045
  21492. }
  21493. },
  21494. back: {
  21495. height: math.unit(5 + 6 / 12, "feet"),
  21496. weight: math.unit(220, "lb"),
  21497. name: "Back",
  21498. image: {
  21499. source: "./media/characters/amethyst/back.svg",
  21500. extra: 2021 / 1989,
  21501. bottom: 0.02
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Normal",
  21508. height: math.unit(5 + 6 / 12, "feet"),
  21509. default: true
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(4 + 11 / 12, "feet"),
  21518. weight: math.unit(120, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/yumi-akiyama/front.svg",
  21522. extra: 1327 / 1235,
  21523. bottom: 0.02
  21524. }
  21525. },
  21526. back: {
  21527. height: math.unit(4 + 11 / 12, "feet"),
  21528. weight: math.unit(120, "lb"),
  21529. name: "Back",
  21530. image: {
  21531. source: "./media/characters/yumi-akiyama/back.svg",
  21532. extra: 1287 / 1245,
  21533. bottom: 0.002
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Galactic",
  21540. height: math.unit(50, "galaxies"),
  21541. default: true
  21542. },
  21543. {
  21544. name: "Universal",
  21545. height: math.unit(100, "universes")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(8, "feet"),
  21554. weight: math.unit(500, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/rifter-yrmori/front.svg",
  21558. extra: 1180 / 1125,
  21559. bottom: 0.02
  21560. }
  21561. },
  21562. back: {
  21563. height: math.unit(8, "feet"),
  21564. weight: math.unit(500, "lb"),
  21565. name: "Back",
  21566. image: {
  21567. source: "./media/characters/rifter-yrmori/back.svg",
  21568. extra: 1190 / 1145,
  21569. bottom: 0.001
  21570. }
  21571. },
  21572. wings: {
  21573. height: math.unit(7.75, "feet"),
  21574. weight: math.unit(500, "lb"),
  21575. name: "Wings",
  21576. image: {
  21577. source: "./media/characters/rifter-yrmori/wings.svg",
  21578. extra: 1357 / 1285
  21579. }
  21580. },
  21581. maw: {
  21582. height: math.unit(0.8, "feet"),
  21583. name: "Maw",
  21584. image: {
  21585. source: "./media/characters/rifter-yrmori/maw.svg"
  21586. }
  21587. },
  21588. mawfront: {
  21589. height: math.unit(1.45, "feet"),
  21590. name: "Maw (Front)",
  21591. image: {
  21592. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(8, "feet"),
  21600. default: true
  21601. },
  21602. {
  21603. name: "Macro",
  21604. height: math.unit(42, "meters")
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21610. {
  21611. were: {
  21612. height: math.unit(25 + 6 / 12, "feet"),
  21613. weight: math.unit(10000, "lb"),
  21614. name: "Were",
  21615. image: {
  21616. source: "./media/characters/tahajin/were.svg",
  21617. extra: 801 / 770,
  21618. bottom: 0.042
  21619. }
  21620. },
  21621. aquatic: {
  21622. height: math.unit(6 + 4 / 12, "feet"),
  21623. weight: math.unit(160, "lb"),
  21624. name: "Aquatic",
  21625. image: {
  21626. source: "./media/characters/tahajin/aquatic.svg",
  21627. extra: 572 / 542,
  21628. bottom: 0.04
  21629. }
  21630. },
  21631. chow: {
  21632. height: math.unit(8 + 11 / 12, "feet"),
  21633. weight: math.unit(450, "lb"),
  21634. name: "Chow",
  21635. image: {
  21636. source: "./media/characters/tahajin/chow.svg",
  21637. extra: 660 / 640,
  21638. bottom: 0.015
  21639. }
  21640. },
  21641. demiNaga: {
  21642. height: math.unit(6 + 8 / 12, "feet"),
  21643. weight: math.unit(300, "lb"),
  21644. name: "Demi Naga",
  21645. image: {
  21646. source: "./media/characters/tahajin/demi-naga.svg",
  21647. extra: 643 / 615,
  21648. bottom: 0.1
  21649. }
  21650. },
  21651. data: {
  21652. height: math.unit(5, "inches"),
  21653. weight: math.unit(0.1, "lb"),
  21654. name: "Data",
  21655. image: {
  21656. source: "./media/characters/tahajin/data.svg"
  21657. }
  21658. },
  21659. fluu: {
  21660. height: math.unit(5 + 7 / 12, "feet"),
  21661. weight: math.unit(140, "lb"),
  21662. name: "Fluu",
  21663. image: {
  21664. source: "./media/characters/tahajin/fluu.svg",
  21665. extra: 628 / 592,
  21666. bottom: 0.02
  21667. }
  21668. },
  21669. starWarrior: {
  21670. height: math.unit(4 + 5 / 12, "feet"),
  21671. weight: math.unit(50, "lb"),
  21672. name: "Star Warrior",
  21673. image: {
  21674. source: "./media/characters/tahajin/star-warrior.svg"
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(25 + 6 / 12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(8, "feet"),
  21691. weight: math.unit(350, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/gabira/front.svg",
  21695. extra: 608 / 580,
  21696. bottom: 0.03
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(8, "feet"),
  21701. weight: math.unit(350, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/gabira/back.svg",
  21705. extra: 608 / 580,
  21706. bottom: 0.03
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(8, "feet"),
  21714. default: true
  21715. },
  21716. ]
  21717. ))
  21718. characterMakers.push(() => makeCharacter(
  21719. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21720. {
  21721. front: {
  21722. height: math.unit(5 + 3 / 12, "feet"),
  21723. weight: math.unit(137, "lb"),
  21724. name: "Front",
  21725. image: {
  21726. source: "./media/characters/sasha-katraine/front.svg",
  21727. bottom: 0.045
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Micro",
  21734. height: math.unit(5, "inches")
  21735. },
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 3 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21745. {
  21746. side: {
  21747. height: math.unit(4, "inches"),
  21748. weight: math.unit(200, "grams"),
  21749. name: "Side",
  21750. image: {
  21751. source: "./media/characters/der/side.svg",
  21752. extra: 719 / 400,
  21753. bottom: 30.6 / 749.9187
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Micro",
  21760. height: math.unit(4, "inches"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21767. {
  21768. side: {
  21769. height: math.unit(30, "meters"),
  21770. weight: math.unit(700, "tonnes"),
  21771. name: "Side",
  21772. image: {
  21773. source: "./media/characters/fixerdragon/side.svg",
  21774. extra: (1293.0514 - 116.03) / 1106.86,
  21775. bottom: 116.03 / 1293.0514
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Planck",
  21782. height: math.unit(1.6e-35, "meters")
  21783. },
  21784. {
  21785. name: "Micro",
  21786. height: math.unit(0.4, "meters")
  21787. },
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(30, "meters"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Megamacro",
  21795. height: math.unit(1.2, "megameters")
  21796. },
  21797. {
  21798. name: "Teramacro",
  21799. height: math.unit(130, "terameters")
  21800. },
  21801. {
  21802. name: "Yottamacro",
  21803. height: math.unit(6200, "yottameters")
  21804. },
  21805. ]
  21806. ));
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(8, "feet"),
  21812. weight: math.unit(250, "lb"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/kite/front.svg",
  21816. extra: 2796 / 2659,
  21817. bottom: 0.002
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Normal",
  21824. height: math.unit(8, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(360, "feet")
  21830. },
  21831. {
  21832. name: "Megamacro",
  21833. height: math.unit(1500, "feet")
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(5 + 11/12, "feet"),
  21842. weight: math.unit(170, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/poojawa-vynar/front.svg",
  21846. extra: 1735/1585,
  21847. bottom: 96/1831
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(5 + 11/12, "feet"),
  21852. weight: math.unit(170, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/poojawa-vynar/back.svg",
  21856. extra: 1749/1607,
  21857. bottom: 28/1777
  21858. }
  21859. },
  21860. male: {
  21861. height: math.unit(5 + 11/12, "feet"),
  21862. weight: math.unit(170, "lb"),
  21863. name: "Male",
  21864. image: {
  21865. source: "./media/characters/poojawa-vynar/male.svg",
  21866. extra: 1855/1713,
  21867. bottom: 63/1918
  21868. }
  21869. },
  21870. taur: {
  21871. height: math.unit(5 + 11/12, "feet"),
  21872. weight: math.unit(170, "lb"),
  21873. name: "Taur",
  21874. image: {
  21875. source: "./media/characters/poojawa-vynar/taur.svg",
  21876. extra: 1151/1059,
  21877. bottom: 356/1507
  21878. }
  21879. },
  21880. frontDressed: {
  21881. height: math.unit(5 + 11/12, "feet"),
  21882. weight: math.unit(170, "lb"),
  21883. name: "Front (Dressed)",
  21884. image: {
  21885. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21886. extra: 1735/1585,
  21887. bottom: 96/1831
  21888. }
  21889. },
  21890. backDressed: {
  21891. height: math.unit(5 + 11/12, "feet"),
  21892. weight: math.unit(170, "lb"),
  21893. name: "Back (Dressed)",
  21894. image: {
  21895. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21896. extra: 1749/1607,
  21897. bottom: 28/1777
  21898. }
  21899. },
  21900. maleDressed: {
  21901. height: math.unit(5 + 11/12, "feet"),
  21902. weight: math.unit(170, "lb"),
  21903. name: "Male (Dressed)",
  21904. image: {
  21905. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21906. extra: 1855/1713,
  21907. bottom: 63/1918
  21908. }
  21909. },
  21910. taurDressed: {
  21911. height: math.unit(5 + 11/12, "feet"),
  21912. weight: math.unit(170, "lb"),
  21913. name: "Taur (Dressed)",
  21914. image: {
  21915. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21916. extra: 1151/1059,
  21917. bottom: 356/1507
  21918. }
  21919. },
  21920. maw: {
  21921. height: math.unit(1.46, "feet"),
  21922. name: "Maw",
  21923. image: {
  21924. source: "./media/characters/poojawa-vynar/maw.svg"
  21925. }
  21926. },
  21927. head: {
  21928. height: math.unit(2.34, "feet"),
  21929. name: "Head",
  21930. image: {
  21931. source: "./media/characters/poojawa-vynar/head.svg"
  21932. }
  21933. },
  21934. paw: {
  21935. height: math.unit(1.61, "feet"),
  21936. name: "Paw",
  21937. image: {
  21938. source: "./media/characters/poojawa-vynar/paw.svg"
  21939. }
  21940. },
  21941. pawToering: {
  21942. height: math.unit(1.72, "feet"),
  21943. name: "Paw (Toering)",
  21944. image: {
  21945. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21946. }
  21947. },
  21948. toering: {
  21949. height: math.unit(2.9, "inches"),
  21950. name: "Toering",
  21951. image: {
  21952. source: "./media/characters/poojawa-vynar/toering.svg"
  21953. }
  21954. },
  21955. shaft: {
  21956. height: math.unit(0.625, "feet"),
  21957. name: "Shaft",
  21958. image: {
  21959. source: "./media/characters/poojawa-vynar/shaft.svg"
  21960. }
  21961. },
  21962. spade: {
  21963. height: math.unit(0.42, "feet"),
  21964. name: "Spade",
  21965. image: {
  21966. source: "./media/characters/poojawa-vynar/spade.svg"
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Shortstack",
  21973. height: math.unit(4, "feet")
  21974. },
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(5 + 11 / 12, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Tauric",
  21982. height: math.unit(4, "meters")
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(293, "meters"),
  21991. weight: math.unit(70400, "tons"),
  21992. name: "Front",
  21993. image: {
  21994. source: "./media/characters/violette/front.svg",
  21995. extra: 1227 / 1180,
  21996. bottom: 0.005
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(293, "meters"),
  22001. weight: math.unit(70400, "tons"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/violette/back.svg",
  22005. extra: 1227 / 1180,
  22006. bottom: 0.005
  22007. }
  22008. },
  22009. },
  22010. [
  22011. {
  22012. name: "Macro",
  22013. height: math.unit(293, "meters"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(1050, "feet"),
  22023. weight: math.unit(200000, "tons"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/alessandra/front.svg",
  22027. extra: 960 / 912,
  22028. bottom: 0.06
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(1050, "feet")
  22036. },
  22037. {
  22038. name: "Macro+",
  22039. height: math.unit(900, "meters"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(5, "feet"),
  22049. weight: math.unit(187, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/person/front.svg",
  22053. extra: 3087 / 2945,
  22054. bottom: 91 / 3181
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Micro",
  22061. height: math.unit(3, "inches")
  22062. },
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(5, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(90, "feet")
  22071. },
  22072. {
  22073. name: "Max Size",
  22074. height: math.unit(280, "feet")
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(4.5, "meters"),
  22083. weight: math.unit(3200, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/ty/front.svg",
  22087. extra: 1038 / 960,
  22088. bottom: 31.156 / 1068
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(4.5, "meters"),
  22093. weight: math.unit(3200, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/ty/back.svg",
  22097. extra: 1044 / 966,
  22098. bottom: 7.48 / 1049
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(4.5, "meters"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(5 + 4 / 12, "feet"),
  22115. weight: math.unit(115, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/rocky/front.svg",
  22119. extra: 1012 / 975,
  22120. bottom: 54 / 1066
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(5 + 4 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22134. {
  22135. upright: {
  22136. height: math.unit(6, "meters"),
  22137. weight: math.unit(4000, "kg"),
  22138. name: "Upright",
  22139. image: {
  22140. source: "./media/characters/ruin/upright.svg",
  22141. extra: 668 / 661,
  22142. bottom: 42 / 799.8396
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(6, "meters"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(5, "feet"),
  22159. weight: math.unit(106, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/robin/front.svg",
  22163. extra: 862 / 799,
  22164. bottom: 42.4 / 914.8856
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(5, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22178. {
  22179. side: {
  22180. height: math.unit(3, "feet"),
  22181. weight: math.unit(225, "lb"),
  22182. name: "Side",
  22183. image: {
  22184. source: "./media/characters/saian/side.svg",
  22185. extra: 566 / 356,
  22186. bottom: 79.7 / 643
  22187. }
  22188. },
  22189. maw: {
  22190. height: math.unit(2.85, "feet"),
  22191. name: "Maw",
  22192. image: {
  22193. source: "./media/characters/saian/maw.svg"
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(3, "feet"),
  22201. default: true
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22207. {
  22208. side: {
  22209. height: math.unit(8, "feet"),
  22210. weight: math.unit(300, "lb"),
  22211. name: "Side",
  22212. image: {
  22213. source: "./media/characters/equus-silvermane/side.svg",
  22214. extra: 2176 / 2050,
  22215. bottom: 65.7 / 2245
  22216. }
  22217. },
  22218. front: {
  22219. height: math.unit(8, "feet"),
  22220. weight: math.unit(300, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/equus-silvermane/front.svg",
  22224. extra: 4633 / 4400,
  22225. bottom: 71.3 / 4706.915
  22226. }
  22227. },
  22228. sideStepping: {
  22229. height: math.unit(8, "feet"),
  22230. weight: math.unit(300, "lb"),
  22231. name: "Side (Stepping)",
  22232. image: {
  22233. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22234. extra: 1968 / 1860,
  22235. bottom: 16.4 / 1989
  22236. }
  22237. },
  22238. },
  22239. [
  22240. {
  22241. name: "Normal",
  22242. height: math.unit(8, "feet")
  22243. },
  22244. {
  22245. name: "Minimacro",
  22246. height: math.unit(75, "feet"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Macro",
  22251. height: math.unit(150, "feet")
  22252. },
  22253. {
  22254. name: "Macro+",
  22255. height: math.unit(1000, "feet")
  22256. },
  22257. {
  22258. name: "Megamacro",
  22259. height: math.unit(1, "mile")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22265. {
  22266. side: {
  22267. height: math.unit(20, "feet"),
  22268. weight: math.unit(30000, "kg"),
  22269. name: "Side",
  22270. image: {
  22271. source: "./media/characters/windar/side.svg",
  22272. extra: 1491 / 1248,
  22273. bottom: 82.56 / 1568
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(20, "feet"),
  22281. default: true
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22287. {
  22288. side: {
  22289. height: math.unit(15.66, "feet"),
  22290. weight: math.unit(150, "lb"),
  22291. name: "Side",
  22292. image: {
  22293. source: "./media/characters/melody/side.svg",
  22294. extra: 1097 / 944,
  22295. bottom: 11.8 / 1109
  22296. }
  22297. },
  22298. sideOutfit: {
  22299. height: math.unit(15.66, "feet"),
  22300. weight: math.unit(150, "lb"),
  22301. name: "Side (Outfit)",
  22302. image: {
  22303. source: "./media/characters/melody/side-outfit.svg",
  22304. extra: 1097 / 944,
  22305. bottom: 11.8 / 1109
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "Normal",
  22312. height: math.unit(15.66, "feet"),
  22313. default: true
  22314. },
  22315. ]
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22319. {
  22320. front: {
  22321. height: math.unit(8, "feet"),
  22322. weight: math.unit(325, "lb"),
  22323. name: "Front",
  22324. image: {
  22325. source: "./media/characters/windera/front.svg",
  22326. extra: 3180 / 2845,
  22327. bottom: 178 / 3365
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(8, "feet"),
  22335. default: true
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22341. {
  22342. front: {
  22343. height: math.unit(28.75, "feet"),
  22344. weight: math.unit(2000, "kg"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/sonear/front.svg",
  22348. extra: 1041.1 / 964.9,
  22349. bottom: 53.7 / 1096.6
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(28.75, "feet"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22363. {
  22364. side: {
  22365. height: math.unit(25.5, "feet"),
  22366. weight: math.unit(23000, "kg"),
  22367. name: "Side",
  22368. image: {
  22369. source: "./media/characters/kanara/side.svg"
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(25.5, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22383. {
  22384. side: {
  22385. height: math.unit(10, "feet"),
  22386. weight: math.unit(1000, "kg"),
  22387. name: "Side",
  22388. image: {
  22389. source: "./media/characters/ereus/side.svg",
  22390. extra: 1157 / 959,
  22391. bottom: 153 / 1312.5
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(10, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22405. {
  22406. side: {
  22407. height: math.unit(4.5, "feet"),
  22408. weight: math.unit(500, "lb"),
  22409. name: "Side",
  22410. image: {
  22411. source: "./media/characters/e-ter/side.svg",
  22412. extra: 1550 / 1248,
  22413. bottom: 146 / 1694
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(4.5, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22427. {
  22428. side: {
  22429. height: math.unit(9.7, "feet"),
  22430. weight: math.unit(4000, "kg"),
  22431. name: "Side",
  22432. image: {
  22433. source: "./media/characters/yamie/side.svg"
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Normal",
  22440. height: math.unit(9.7, "feet"),
  22441. default: true
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(50, "feet"),
  22450. weight: math.unit(50000, "kg"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/anders/front.svg",
  22454. extra: 570 / 539,
  22455. bottom: 14.7 / 586.7
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Large",
  22462. height: math.unit(50, "feet")
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(2000, "feet"),
  22467. default: true
  22468. },
  22469. {
  22470. name: "Megamacro",
  22471. height: math.unit(12, "miles")
  22472. },
  22473. ]
  22474. ))
  22475. characterMakers.push(() => makeCharacter(
  22476. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22477. {
  22478. front: {
  22479. height: math.unit(7 + 2 / 12, "feet"),
  22480. weight: math.unit(300, "lb"),
  22481. name: "Front",
  22482. image: {
  22483. source: "./media/characters/reban/front.svg",
  22484. extra: 1287/1212,
  22485. bottom: 148/1435
  22486. }
  22487. },
  22488. head: {
  22489. height: math.unit(1.95, "feet"),
  22490. name: "Head",
  22491. image: {
  22492. source: "./media/characters/reban/head.svg"
  22493. }
  22494. },
  22495. maw: {
  22496. height: math.unit(0.95, "feet"),
  22497. name: "Maw",
  22498. image: {
  22499. source: "./media/characters/reban/maw.svg"
  22500. }
  22501. },
  22502. foot: {
  22503. height: math.unit(1.65, "feet"),
  22504. name: "Foot",
  22505. image: {
  22506. source: "./media/characters/reban/foot.svg"
  22507. }
  22508. },
  22509. dick: {
  22510. height: math.unit(7 / 5, "feet"),
  22511. name: "Dick",
  22512. image: {
  22513. source: "./media/characters/reban/dick.svg"
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Natural Height",
  22520. height: math.unit(7 + 2 / 12, "feet")
  22521. },
  22522. {
  22523. name: "Macro",
  22524. height: math.unit(500, "feet"),
  22525. default: true
  22526. },
  22527. {
  22528. name: "Canon Height",
  22529. height: math.unit(50, "AU")
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(6, "feet"),
  22538. weight: math.unit(150, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/terrance-keayes/front.svg",
  22542. extra: 1.005,
  22543. bottom: 151 / 1615
  22544. }
  22545. },
  22546. side: {
  22547. height: math.unit(6, "feet"),
  22548. weight: math.unit(150, "lb"),
  22549. name: "Side",
  22550. image: {
  22551. source: "./media/characters/terrance-keayes/side.svg",
  22552. extra: 1.005,
  22553. bottom: 129.4 / 1544
  22554. }
  22555. },
  22556. back: {
  22557. height: math.unit(6, "feet"),
  22558. weight: math.unit(150, "lb"),
  22559. name: "Back",
  22560. image: {
  22561. source: "./media/characters/terrance-keayes/back.svg",
  22562. extra: 1.005,
  22563. bottom: 58.4 / 1557.3
  22564. }
  22565. },
  22566. dick: {
  22567. height: math.unit(6 * 0.208, "feet"),
  22568. name: "Dick",
  22569. image: {
  22570. source: "./media/characters/terrance-keayes/dick.svg"
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Canon Height",
  22577. height: math.unit(35, "miles"),
  22578. default: true
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22584. {
  22585. front: {
  22586. height: math.unit(6, "feet"),
  22587. weight: math.unit(150, "lb"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/ofelia/front.svg",
  22591. extra: 1130/1117,
  22592. bottom: 91/1221
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(150, "lb"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/ofelia/back.svg",
  22601. extra: 1172/1159,
  22602. bottom: 28/1200
  22603. }
  22604. },
  22605. maw: {
  22606. height: math.unit(1, "feet"),
  22607. name: "Maw",
  22608. image: {
  22609. source: "./media/characters/ofelia/maw.svg"
  22610. }
  22611. },
  22612. foot: {
  22613. height: math.unit(1.949, "feet"),
  22614. name: "Foot",
  22615. image: {
  22616. source: "./media/characters/ofelia/foot.svg"
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Canon Height",
  22623. height: math.unit(2000, "miles"),
  22624. default: true
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(6, "feet"),
  22633. weight: math.unit(150, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/samuel/front.svg",
  22637. extra: 265 / 258,
  22638. bottom: 2 / 266.1566
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Macro",
  22645. height: math.unit(100, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Full Size",
  22650. height: math.unit(1000, "miles")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(6, "feet"),
  22659. weight: math.unit(300, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/beishir-kiel/front.svg",
  22663. extra: 569 / 547,
  22664. bottom: 41.9 / 609
  22665. }
  22666. },
  22667. maw: {
  22668. height: math.unit(6 * 0.202, "feet"),
  22669. name: "Maw",
  22670. image: {
  22671. source: "./media/characters/beishir-kiel/maw.svg"
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(300, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(5 + 7/12, "feet"),
  22688. weight: math.unit(120, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/logan-grey/front.svg",
  22692. extra: 1836/1738,
  22693. bottom: 108/1944
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(5 + 7/12, "feet"),
  22698. weight: math.unit(120, "lb"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/logan-grey/back.svg",
  22702. extra: 1880/1794,
  22703. bottom: 24/1904
  22704. }
  22705. },
  22706. frontSfw: {
  22707. height: math.unit(5 + 7/12, "feet"),
  22708. weight: math.unit(120, "lb"),
  22709. name: "Front (SFW)",
  22710. image: {
  22711. source: "./media/characters/logan-grey/front-sfw.svg",
  22712. extra: 1836/1738,
  22713. bottom: 108/1944
  22714. }
  22715. },
  22716. backSfw: {
  22717. height: math.unit(5 + 7/12, "feet"),
  22718. weight: math.unit(120, "lb"),
  22719. name: "Back (SFW)",
  22720. image: {
  22721. source: "./media/characters/logan-grey/back-sfw.svg",
  22722. extra: 1880/1794,
  22723. bottom: 24/1904
  22724. }
  22725. },
  22726. hands: {
  22727. height: math.unit(0.84, "feet"),
  22728. name: "Hands",
  22729. image: {
  22730. source: "./media/characters/logan-grey/hands.svg"
  22731. }
  22732. },
  22733. paws: {
  22734. height: math.unit(0.72, "feet"),
  22735. name: "Paws",
  22736. image: {
  22737. source: "./media/characters/logan-grey/paws.svg"
  22738. }
  22739. },
  22740. cock: {
  22741. height: math.unit(1.45, "feet"),
  22742. name: "Cock",
  22743. image: {
  22744. source: "./media/characters/logan-grey/cock.svg"
  22745. }
  22746. },
  22747. cockAlt: {
  22748. height: math.unit(1.437, "feet"),
  22749. name: "Cock (alt)",
  22750. image: {
  22751. source: "./media/characters/logan-grey/cock-alt.svg"
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(5 + 8 / 12, "feet")
  22759. },
  22760. {
  22761. name: "The 500 Foot Femboy",
  22762. height: math.unit(500, "feet"),
  22763. default: true
  22764. },
  22765. {
  22766. name: "Megmacro",
  22767. height: math.unit(20, "miles")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(8 + 2 / 12, "feet"),
  22776. weight: math.unit(275, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/draganta/front.svg",
  22780. extra: 1177 / 1135,
  22781. bottom: 33.46 / 1212.1
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Normal",
  22788. height: math.unit(8 + 6 / 12, "feet"),
  22789. default: true
  22790. },
  22791. {
  22792. name: "Macro",
  22793. height: math.unit(150, "feet")
  22794. },
  22795. {
  22796. name: "Megamacro",
  22797. height: math.unit(1000, "miles")
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(1.72, "m"),
  22806. weight: math.unit(80, "lb"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/voski/front.svg",
  22810. extra: 2076.22 / 2022.4,
  22811. bottom: 102.7 / 2177.3866
  22812. }
  22813. },
  22814. frontNsfw: {
  22815. height: math.unit(1.72, "m"),
  22816. weight: math.unit(80, "lb"),
  22817. name: "Front (NSFW)",
  22818. image: {
  22819. source: "./media/characters/voski/front-nsfw.svg",
  22820. extra: 2076.22 / 2022.4,
  22821. bottom: 102.7 / 2177.3866
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(1.72, "m"),
  22826. weight: math.unit(80, "lb"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/voski/back.svg",
  22830. extra: 2104 / 2051,
  22831. bottom: 10.45 / 2113.63
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(1.72, "m")
  22839. },
  22840. {
  22841. name: "Macro",
  22842. height: math.unit(55, "m"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro+",
  22847. height: math.unit(300, "m")
  22848. },
  22849. {
  22850. name: "Macro++",
  22851. height: math.unit(700, "m")
  22852. },
  22853. {
  22854. name: "Macro+++",
  22855. height: math.unit(4500, "m")
  22856. },
  22857. {
  22858. name: "Macro++++",
  22859. height: math.unit(45, "km")
  22860. },
  22861. {
  22862. name: "Macro+++++",
  22863. height: math.unit(1220, "km")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(2.3, "m"),
  22872. weight: math.unit(304, "kg"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/icowom-lee/front.svg",
  22876. extra: 985 / 955,
  22877. bottom: 25.4 / 1012
  22878. }
  22879. },
  22880. fronttentacles: {
  22881. height: math.unit(2.3, "m"),
  22882. weight: math.unit(304, "kg"),
  22883. name: "Front-tentacles",
  22884. image: {
  22885. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22886. extra: 985 / 955,
  22887. bottom: 25.4 / 1012
  22888. }
  22889. },
  22890. back: {
  22891. height: math.unit(2.3, "m"),
  22892. weight: math.unit(304, "kg"),
  22893. name: "Back",
  22894. image: {
  22895. source: "./media/characters/icowom-lee/back.svg",
  22896. extra: 975 / 954,
  22897. bottom: 9.5 / 985
  22898. }
  22899. },
  22900. backtentacles: {
  22901. height: math.unit(2.3, "m"),
  22902. weight: math.unit(304, "kg"),
  22903. name: "Back-tentacles",
  22904. image: {
  22905. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22906. extra: 975 / 954,
  22907. bottom: 9.5 / 985
  22908. }
  22909. },
  22910. frontDressed: {
  22911. height: math.unit(2.3, "m"),
  22912. weight: math.unit(304, "kg"),
  22913. name: "Front (Dressed)",
  22914. image: {
  22915. source: "./media/characters/icowom-lee/front-dressed.svg",
  22916. extra: 3076 / 2933,
  22917. bottom: 51.4 / 3125.1889
  22918. }
  22919. },
  22920. rump: {
  22921. height: math.unit(0.776, "meters"),
  22922. name: "Rump",
  22923. image: {
  22924. source: "./media/characters/icowom-lee/rump.svg"
  22925. }
  22926. },
  22927. genitals: {
  22928. height: math.unit(0.78, "meters"),
  22929. name: "Genitals",
  22930. image: {
  22931. source: "./media/characters/icowom-lee/genitals.svg"
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(2.3, "meters"),
  22939. default: true
  22940. },
  22941. {
  22942. name: "Macro",
  22943. height: math.unit(94, "meters"),
  22944. default: true
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(22, "meters"),
  22953. weight: math.unit(21000, "kg"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/shock-diamond/front.svg",
  22957. extra: 2204 / 2053,
  22958. bottom: 65 / 2239.47
  22959. }
  22960. },
  22961. frontNude: {
  22962. height: math.unit(22, "meters"),
  22963. weight: math.unit(21000, "kg"),
  22964. name: "Front (Nude)",
  22965. image: {
  22966. source: "./media/characters/shock-diamond/front-nude.svg",
  22967. extra: 2514 / 2285,
  22968. bottom: 13 / 2527.56
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(3, "meters")
  22976. },
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(22, "meters"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22986. {
  22987. front: {
  22988. height: math.unit(5 + 4 / 12, "feet"),
  22989. weight: math.unit(120, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/rory/front.svg",
  22993. extra: 1318/1241,
  22994. bottom: 42/1360
  22995. }
  22996. },
  22997. back: {
  22998. height: math.unit(5 + 4 / 12, "feet"),
  22999. weight: math.unit(120, "lb"),
  23000. name: "Back",
  23001. image: {
  23002. source: "./media/characters/rory/back.svg",
  23003. extra: 1318/1241,
  23004. bottom: 42/1360
  23005. }
  23006. },
  23007. butt: {
  23008. height: math.unit(1.74, "feet"),
  23009. name: "Butt",
  23010. image: {
  23011. source: "./media/characters/rory/butt.svg"
  23012. }
  23013. },
  23014. dick: {
  23015. height: math.unit(1.02, "feet"),
  23016. name: "Dick",
  23017. image: {
  23018. source: "./media/characters/rory/dick.svg"
  23019. }
  23020. },
  23021. paws: {
  23022. height: math.unit(1, "feet"),
  23023. name: "Paws",
  23024. image: {
  23025. source: "./media/characters/rory/paws.svg"
  23026. }
  23027. },
  23028. frontAlt: {
  23029. height: math.unit(5 + 4 / 12, "feet"),
  23030. weight: math.unit(120, "lb"),
  23031. name: "Front (Alt)",
  23032. image: {
  23033. source: "./media/characters/rory/front-alt.svg",
  23034. extra: 589 / 556,
  23035. bottom: 45.7 / 635.76
  23036. }
  23037. },
  23038. frontAltNude: {
  23039. height: math.unit(5 + 4 / 12, "feet"),
  23040. weight: math.unit(120, "lb"),
  23041. name: "Front (Alt, Nude)",
  23042. image: {
  23043. source: "./media/characters/rory/front-alt-nude.svg",
  23044. extra: 589 / 556,
  23045. bottom: 45.7 / 635.76
  23046. }
  23047. },
  23048. side: {
  23049. height: math.unit(5 + 4 / 12, "feet"),
  23050. weight: math.unit(120, "lb"),
  23051. name: "Side",
  23052. image: {
  23053. source: "./media/characters/rory/side.svg",
  23054. extra: 597 / 564,
  23055. bottom: 55 / 653
  23056. }
  23057. },
  23058. backAlt: {
  23059. height: math.unit(5 + 4 / 12, "feet"),
  23060. weight: math.unit(120, "lb"),
  23061. name: "Back (Alt)",
  23062. image: {
  23063. source: "./media/characters/rory/back-alt.svg",
  23064. extra: 620 / 585,
  23065. bottom: 8.86 / 630.43
  23066. }
  23067. },
  23068. dickAlt: {
  23069. height: math.unit(0.86, "feet"),
  23070. name: "Dick (Alt)",
  23071. image: {
  23072. source: "./media/characters/rory/dick-alt.svg"
  23073. }
  23074. },
  23075. },
  23076. [
  23077. {
  23078. name: "Normal",
  23079. height: math.unit(5 + 4 / 12, "feet"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(100, "feet")
  23085. },
  23086. {
  23087. name: "Macro+",
  23088. height: math.unit(140, "feet")
  23089. },
  23090. {
  23091. name: "Macro++",
  23092. height: math.unit(300, "feet")
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(5 + 9 / 12, "feet"),
  23101. weight: math.unit(190, "lb"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/sprisk/front.svg",
  23105. extra: 1225 / 1180,
  23106. bottom: 42.7 / 1266.4
  23107. }
  23108. },
  23109. frontNsfw: {
  23110. height: math.unit(5 + 9 / 12, "feet"),
  23111. weight: math.unit(190, "lb"),
  23112. name: "Front (NSFW)",
  23113. image: {
  23114. source: "./media/characters/sprisk/front-nsfw.svg",
  23115. extra: 1225 / 1180,
  23116. bottom: 42.7 / 1266.4
  23117. }
  23118. },
  23119. back: {
  23120. height: math.unit(5 + 9 / 12, "feet"),
  23121. weight: math.unit(190, "lb"),
  23122. name: "Back",
  23123. image: {
  23124. source: "./media/characters/sprisk/back.svg",
  23125. extra: 1247 / 1200,
  23126. bottom: 5.6 / 1253.04
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Tiny",
  23133. height: math.unit(2, "inches")
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(5 + 9 / 12, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Mini Macro",
  23142. height: math.unit(18, "feet")
  23143. },
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(100, "feet")
  23147. },
  23148. {
  23149. name: "MACRO",
  23150. height: math.unit(50, "miles")
  23151. },
  23152. {
  23153. name: "M A C R O",
  23154. height: math.unit(300, "miles")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23160. {
  23161. side: {
  23162. height: math.unit(15.6, "meters"),
  23163. weight: math.unit(700000, "kg"),
  23164. name: "Side",
  23165. image: {
  23166. source: "./media/characters/bunsen/side.svg",
  23167. extra: 1644 / 358
  23168. }
  23169. },
  23170. foot: {
  23171. height: math.unit(1.611 * 1644 / 358, "meter"),
  23172. name: "Foot",
  23173. image: {
  23174. source: "./media/characters/bunsen/foot.svg"
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Small",
  23181. height: math.unit(10, "feet")
  23182. },
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(15.6, "meters"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(4 + 11 / 12, "feet"),
  23195. weight: math.unit(140, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/sesh/front.svg",
  23199. extra: 3420 / 3231,
  23200. bottom: 72 / 3949.5
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(4 + 11 / 12, "feet")
  23208. },
  23209. {
  23210. name: "Grown",
  23211. height: math.unit(15, "feet"),
  23212. default: true
  23213. },
  23214. {
  23215. name: "Macro",
  23216. height: math.unit(1500, "feet")
  23217. },
  23218. {
  23219. name: "Megamacro",
  23220. height: math.unit(30, "miles")
  23221. },
  23222. {
  23223. name: "Continental",
  23224. height: math.unit(3000, "miles")
  23225. },
  23226. {
  23227. name: "Gravity Mass",
  23228. height: math.unit(300000, "miles")
  23229. },
  23230. {
  23231. name: "Planet Buster",
  23232. height: math.unit(30000000, "miles")
  23233. },
  23234. {
  23235. name: "Big",
  23236. height: math.unit(3000000000, "miles")
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(9, "feet"),
  23245. weight: math.unit(350, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/pepper/front.svg",
  23249. extra: 1448 / 1312,
  23250. bottom: 9.4 / 1457.88
  23251. }
  23252. },
  23253. back: {
  23254. height: math.unit(9, "feet"),
  23255. weight: math.unit(350, "lb"),
  23256. name: "Back",
  23257. image: {
  23258. source: "./media/characters/pepper/back.svg",
  23259. extra: 1423 / 1300,
  23260. bottom: 4.6 / 1429
  23261. }
  23262. },
  23263. maw: {
  23264. height: math.unit(0.932, "feet"),
  23265. name: "Maw",
  23266. image: {
  23267. source: "./media/characters/pepper/maw.svg"
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(9, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(6, "feet"),
  23284. weight: math.unit(150, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/maelstrom/front.svg",
  23288. extra: 2100 / 1883,
  23289. bottom: 94 / 2196.7
  23290. }
  23291. },
  23292. },
  23293. [
  23294. {
  23295. name: "Less Kaiju",
  23296. height: math.unit(200, "feet")
  23297. },
  23298. {
  23299. name: "Kaiju",
  23300. height: math.unit(400, "feet"),
  23301. default: true
  23302. },
  23303. {
  23304. name: "Kaiju-er",
  23305. height: math.unit(600, "feet")
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(6 + 5 / 12, "feet"),
  23314. weight: math.unit(180, "lb"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/lexir/front.svg",
  23318. extra: 180 / 172,
  23319. bottom: 12 / 192
  23320. }
  23321. },
  23322. back: {
  23323. height: math.unit(6 + 5 / 12, "feet"),
  23324. weight: math.unit(180, "lb"),
  23325. name: "Back",
  23326. image: {
  23327. source: "./media/characters/lexir/back.svg",
  23328. extra: 183.84 / 175.5,
  23329. bottom: 3.1 / 187
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Very Smal",
  23336. height: math.unit(1, "nm")
  23337. },
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(6 + 5 / 12, "feet"),
  23341. default: true
  23342. },
  23343. {
  23344. name: "Macro",
  23345. height: math.unit(1, "mile")
  23346. },
  23347. {
  23348. name: "Megamacro",
  23349. height: math.unit(50, "miles")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(1.5, "meters"),
  23358. weight: math.unit(100, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/maksio/front.svg",
  23362. extra: 1549 / 1531,
  23363. bottom: 123.7 / 1674.5429
  23364. }
  23365. },
  23366. back: {
  23367. height: math.unit(1.5, "meters"),
  23368. weight: math.unit(100, "lb"),
  23369. name: "Back",
  23370. image: {
  23371. source: "./media/characters/maksio/back.svg",
  23372. extra: 1541 / 1509,
  23373. bottom: 97 / 1639
  23374. }
  23375. },
  23376. hand: {
  23377. height: math.unit(0.621, "feet"),
  23378. name: "Hand",
  23379. image: {
  23380. source: "./media/characters/maksio/hand.svg"
  23381. }
  23382. },
  23383. foot: {
  23384. height: math.unit(1.611, "feet"),
  23385. name: "Foot",
  23386. image: {
  23387. source: "./media/characters/maksio/foot.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Shrunken",
  23394. height: math.unit(10, "cm")
  23395. },
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(150, "cm"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(100, "feet"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/erza-bear/front.svg",
  23411. extra: 2449 / 2390,
  23412. bottom: 46 / 2494
  23413. }
  23414. },
  23415. back: {
  23416. height: math.unit(100, "feet"),
  23417. name: "Back",
  23418. image: {
  23419. source: "./media/characters/erza-bear/back.svg",
  23420. extra: 2489 / 2430,
  23421. bottom: 85.4 / 2480
  23422. }
  23423. },
  23424. tail: {
  23425. height: math.unit(42, "feet"),
  23426. name: "Tail",
  23427. image: {
  23428. source: "./media/characters/erza-bear/tail.svg"
  23429. }
  23430. },
  23431. tongue: {
  23432. height: math.unit(8, "feet"),
  23433. name: "Tongue",
  23434. image: {
  23435. source: "./media/characters/erza-bear/tongue.svg"
  23436. }
  23437. },
  23438. dick: {
  23439. height: math.unit(10.5, "feet"),
  23440. name: "Dick",
  23441. image: {
  23442. source: "./media/characters/erza-bear/dick.svg"
  23443. }
  23444. },
  23445. dickVertical: {
  23446. height: math.unit(16.9, "feet"),
  23447. name: "Dick (Vertical)",
  23448. image: {
  23449. source: "./media/characters/erza-bear/dick-vertical.svg"
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(100, "feet"),
  23457. default: true
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(172, "cm"),
  23466. weight: math.unit(73, "kg"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/violet-flor/front.svg",
  23470. extra: 1530 / 1442,
  23471. bottom: 61.9 / 1588.8
  23472. }
  23473. },
  23474. back: {
  23475. height: math.unit(180, "cm"),
  23476. weight: math.unit(73, "kg"),
  23477. name: "Back",
  23478. image: {
  23479. source: "./media/characters/violet-flor/back.svg",
  23480. extra: 1692 / 1630,
  23481. bottom: 20 / 1712
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(172, "cm"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23495. {
  23496. front: {
  23497. height: math.unit(6, "feet"),
  23498. weight: math.unit(220, "lb"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/lynn-rhea/front.svg",
  23502. extra: 310 / 273
  23503. }
  23504. },
  23505. back: {
  23506. height: math.unit(6, "feet"),
  23507. weight: math.unit(220, "lb"),
  23508. name: "Back",
  23509. image: {
  23510. source: "./media/characters/lynn-rhea/back.svg",
  23511. extra: 310 / 273
  23512. }
  23513. },
  23514. dicks: {
  23515. height: math.unit(0.9, "feet"),
  23516. name: "Dicks",
  23517. image: {
  23518. source: "./media/characters/lynn-rhea/dicks.svg"
  23519. }
  23520. },
  23521. slit: {
  23522. height: math.unit(0.4, "feet"),
  23523. name: "Slit",
  23524. image: {
  23525. source: "./media/characters/lynn-rhea/slit.svg"
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Micro",
  23532. height: math.unit(1, "inch")
  23533. },
  23534. {
  23535. name: "Macro",
  23536. height: math.unit(60, "feet"),
  23537. default: true
  23538. },
  23539. {
  23540. name: "Megamacro",
  23541. height: math.unit(2, "miles")
  23542. },
  23543. {
  23544. name: "Gigamacro",
  23545. height: math.unit(3, "earths")
  23546. },
  23547. {
  23548. name: "Galactic",
  23549. height: math.unit(0.8, "galaxies")
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23555. {
  23556. front: {
  23557. height: math.unit(1600, "feet"),
  23558. weight: math.unit(85758785169, "kg"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/valathos/front.svg",
  23562. extra: 1451 / 1339
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(1600, "feet"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23576. {
  23577. front: {
  23578. height: math.unit(7 + 5 / 12, "feet"),
  23579. weight: math.unit(300, "lb"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/azula/front.svg",
  23583. extra: 3208 / 2880,
  23584. bottom: 80.2 / 3277
  23585. }
  23586. },
  23587. back: {
  23588. height: math.unit(7 + 5 / 12, "feet"),
  23589. weight: math.unit(300, "lb"),
  23590. name: "Back",
  23591. image: {
  23592. source: "./media/characters/azula/back.svg",
  23593. extra: 3169 / 2822,
  23594. bottom: 150.6 / 3321
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(7 + 5 / 12, "feet"),
  23602. default: true
  23603. },
  23604. {
  23605. name: "Big",
  23606. height: math.unit(20, "feet")
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(5 + 1 / 12, "feet"),
  23615. weight: math.unit(110, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/rupert/front.svg",
  23619. extra: 1549 / 1495,
  23620. bottom: 54.2 / 1604.4
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(5 + 1 / 12, "feet"),
  23628. default: true
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23634. {
  23635. front: {
  23636. height: math.unit(8 + 4 / 12, "feet"),
  23637. weight: math.unit(350, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/sheera-castellar/front.svg",
  23641. extra: 1957 / 1894,
  23642. bottom: 26.97 / 1975.017
  23643. }
  23644. },
  23645. side: {
  23646. height: math.unit(8 + 4 / 12, "feet"),
  23647. weight: math.unit(350, "lb"),
  23648. name: "Side",
  23649. image: {
  23650. source: "./media/characters/sheera-castellar/side.svg",
  23651. extra: 1957 / 1894
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(8 + 4 / 12, "feet"),
  23656. weight: math.unit(350, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/sheera-castellar/back.svg",
  23660. extra: 1957 / 1894
  23661. }
  23662. },
  23663. angled: {
  23664. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23665. weight: math.unit(350, "lb"),
  23666. name: "Angled",
  23667. image: {
  23668. source: "./media/characters/sheera-castellar/angled.svg",
  23669. extra: 1807 / 1707,
  23670. bottom: 68 / 1875
  23671. }
  23672. },
  23673. genitals: {
  23674. height: math.unit(2.2, "feet"),
  23675. name: "Genitals",
  23676. image: {
  23677. source: "./media/characters/sheera-castellar/genitals.svg"
  23678. }
  23679. },
  23680. taur: {
  23681. height: math.unit(10 + 6/12, "feet"),
  23682. name: "Taur",
  23683. image: {
  23684. source: "./media/characters/sheera-castellar/taur.svg",
  23685. extra: 2017/1909,
  23686. bottom: 185/2202
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(8 + 4 / 12, "feet")
  23694. },
  23695. {
  23696. name: "Macro",
  23697. height: math.unit(150, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Macro+",
  23702. height: math.unit(800, "feet")
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(6, "feet"),
  23711. weight: math.unit(150, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/jaipur/front.svg",
  23715. extra: 3860 / 3731,
  23716. bottom: 287 / 4140
  23717. }
  23718. },
  23719. back: {
  23720. height: math.unit(6, "feet"),
  23721. weight: math.unit(150, "lb"),
  23722. name: "Back",
  23723. image: {
  23724. source: "./media/characters/jaipur/back.svg",
  23725. extra: 4060 / 3930,
  23726. bottom: 151 / 4200
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(1.85, "meters"),
  23734. default: true
  23735. },
  23736. {
  23737. name: "Macro",
  23738. height: math.unit(150, "meters")
  23739. },
  23740. {
  23741. name: "Macro+",
  23742. height: math.unit(0.5, "miles")
  23743. },
  23744. {
  23745. name: "Macro++",
  23746. height: math.unit(2.5, "miles")
  23747. },
  23748. {
  23749. name: "Macro+++",
  23750. height: math.unit(12, "miles")
  23751. },
  23752. {
  23753. name: "Macro++++",
  23754. height: math.unit(120, "miles")
  23755. },
  23756. {
  23757. name: "Macro+++++",
  23758. height: math.unit(1200, "miles")
  23759. },
  23760. ]
  23761. ))
  23762. characterMakers.push(() => makeCharacter(
  23763. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23764. {
  23765. front: {
  23766. height: math.unit(6, "feet"),
  23767. weight: math.unit(150, "lb"),
  23768. name: "Front",
  23769. image: {
  23770. source: "./media/characters/sheila-wolf/front.svg",
  23771. extra: 1931 / 1808,
  23772. bottom: 29.5 / 1960
  23773. }
  23774. },
  23775. dick: {
  23776. height: math.unit(1.464, "feet"),
  23777. name: "Dick",
  23778. image: {
  23779. source: "./media/characters/sheila-wolf/dick.svg"
  23780. }
  23781. },
  23782. muzzle: {
  23783. height: math.unit(0.513, "feet"),
  23784. name: "Muzzle",
  23785. image: {
  23786. source: "./media/characters/sheila-wolf/muzzle.svg"
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(70, "feet"),
  23794. default: true
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23800. {
  23801. front: {
  23802. height: math.unit(32, "meters"),
  23803. weight: math.unit(300000, "kg"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/almor/front.svg",
  23807. extra: 1408 / 1322,
  23808. bottom: 94.6 / 1506.5
  23809. }
  23810. },
  23811. },
  23812. [
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(32, "meters"),
  23816. default: true
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23822. {
  23823. front: {
  23824. height: math.unit(7, "feet"),
  23825. weight: math.unit(200, "lb"),
  23826. name: "Front",
  23827. image: {
  23828. source: "./media/characters/silver/front.svg",
  23829. extra: 472.1 / 450.5,
  23830. bottom: 26.5 / 499.424
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Normal",
  23837. height: math.unit(7, "feet"),
  23838. default: true
  23839. },
  23840. {
  23841. name: "Macro",
  23842. height: math.unit(800, "feet")
  23843. },
  23844. {
  23845. name: "Megamacro",
  23846. height: math.unit(250, "miles")
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(6, "feet"),
  23855. weight: math.unit(150, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/pliskin/front.svg",
  23859. extra: 1469 / 1359,
  23860. bottom: 70 / 1540
  23861. }
  23862. },
  23863. },
  23864. [
  23865. {
  23866. name: "Micro",
  23867. height: math.unit(3, "inches")
  23868. },
  23869. {
  23870. name: "Normal",
  23871. height: math.unit(5 + 11 / 12, "feet"),
  23872. default: true
  23873. },
  23874. {
  23875. name: "Macro",
  23876. height: math.unit(120, "feet")
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(6, "feet"),
  23885. weight: math.unit(150, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/sammy/front.svg",
  23889. extra: 1193 / 1089,
  23890. bottom: 30.5 / 1226
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Macro",
  23897. height: math.unit(1700, "feet"),
  23898. default: true
  23899. },
  23900. {
  23901. name: "Examacro",
  23902. height: math.unit(2.5e9, "lightyears")
  23903. },
  23904. ]
  23905. ))
  23906. characterMakers.push(() => makeCharacter(
  23907. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23908. {
  23909. front: {
  23910. height: math.unit(21, "meters"),
  23911. weight: math.unit(12, "tonnes"),
  23912. name: "Front",
  23913. image: {
  23914. source: "./media/characters/kuru/front.svg",
  23915. extra: 4301 / 3785,
  23916. bottom: 371.3 / 4691
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Macro",
  23923. height: math.unit(21, "meters"),
  23924. default: true
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23930. {
  23931. front: {
  23932. height: math.unit(23, "meters"),
  23933. weight: math.unit(12.2, "tonnes"),
  23934. name: "Front",
  23935. image: {
  23936. source: "./media/characters/rakka/front.svg",
  23937. extra: 4670 / 4169,
  23938. bottom: 301 / 4968.7
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Macro",
  23945. height: math.unit(23, "meters"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(6, "feet"),
  23955. weight: math.unit(150, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/rhys-feline/front.svg",
  23959. extra: 2488 / 2308,
  23960. bottom: 35.67 / 2519.19
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Really Small",
  23967. height: math.unit(1, "nm")
  23968. },
  23969. {
  23970. name: "Micro",
  23971. height: math.unit(4, "inches")
  23972. },
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(4 + 10 / 12, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(100, "feet")
  23981. },
  23982. {
  23983. name: "Megamacto",
  23984. height: math.unit(50, "miles")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23990. {
  23991. side: {
  23992. height: math.unit(30, "feet"),
  23993. weight: math.unit(35000, "kg"),
  23994. name: "Side",
  23995. image: {
  23996. source: "./media/characters/alydar/side.svg",
  23997. extra: 234 / 222,
  23998. bottom: 6.5 / 241
  23999. }
  24000. },
  24001. front: {
  24002. height: math.unit(30, "feet"),
  24003. weight: math.unit(35000, "kg"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/alydar/front.svg",
  24007. extra: 223.37 / 210.2,
  24008. bottom: 22.3 / 246.76
  24009. }
  24010. },
  24011. top: {
  24012. height: math.unit(64.54, "feet"),
  24013. weight: math.unit(35000, "kg"),
  24014. name: "Top",
  24015. image: {
  24016. source: "./media/characters/alydar/top.svg"
  24017. }
  24018. },
  24019. anthro: {
  24020. height: math.unit(30, "feet"),
  24021. weight: math.unit(9000, "kg"),
  24022. name: "Anthro",
  24023. image: {
  24024. source: "./media/characters/alydar/anthro.svg",
  24025. extra: 432 / 421,
  24026. bottom: 7.18 / 440
  24027. }
  24028. },
  24029. maw: {
  24030. height: math.unit(11.693, "feet"),
  24031. name: "Maw",
  24032. image: {
  24033. source: "./media/characters/alydar/maw.svg"
  24034. }
  24035. },
  24036. head: {
  24037. height: math.unit(11.693, "feet"),
  24038. name: "Head",
  24039. image: {
  24040. source: "./media/characters/alydar/head.svg"
  24041. }
  24042. },
  24043. headAlt: {
  24044. height: math.unit(12.861, "feet"),
  24045. name: "Head (Alt)",
  24046. image: {
  24047. source: "./media/characters/alydar/head-alt.svg"
  24048. }
  24049. },
  24050. wing: {
  24051. height: math.unit(20.712, "feet"),
  24052. name: "Wing",
  24053. image: {
  24054. source: "./media/characters/alydar/wing.svg"
  24055. }
  24056. },
  24057. wingFeather: {
  24058. height: math.unit(9.662, "feet"),
  24059. name: "Wing Feather",
  24060. image: {
  24061. source: "./media/characters/alydar/wing-feather.svg"
  24062. }
  24063. },
  24064. countourFeather: {
  24065. height: math.unit(4.154, "feet"),
  24066. name: "Contour Feather",
  24067. image: {
  24068. source: "./media/characters/alydar/contour-feather.svg"
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Diplomatic",
  24075. height: math.unit(13, "feet"),
  24076. default: true
  24077. },
  24078. {
  24079. name: "Small",
  24080. height: math.unit(30, "feet")
  24081. },
  24082. {
  24083. name: "Normal",
  24084. height: math.unit(95, "feet"),
  24085. default: true
  24086. },
  24087. {
  24088. name: "Large",
  24089. height: math.unit(285, "feet")
  24090. },
  24091. {
  24092. name: "Incomprehensible",
  24093. height: math.unit(450, "megameters")
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24099. {
  24100. side: {
  24101. height: math.unit(11, "feet"),
  24102. weight: math.unit(1750, "kg"),
  24103. name: "Side",
  24104. image: {
  24105. source: "./media/characters/selicia/side.svg",
  24106. extra: 440 / 396,
  24107. bottom: 24.8 / 465.979
  24108. }
  24109. },
  24110. maw: {
  24111. height: math.unit(4.665, "feet"),
  24112. name: "Maw",
  24113. image: {
  24114. source: "./media/characters/selicia/maw.svg"
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(11, "feet"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24128. {
  24129. side: {
  24130. height: math.unit(2 + 6 / 12, "feet"),
  24131. weight: math.unit(30, "lb"),
  24132. name: "Side",
  24133. image: {
  24134. source: "./media/characters/layla/side.svg",
  24135. extra: 244 / 188,
  24136. bottom: 18.2 / 262.1
  24137. }
  24138. },
  24139. back: {
  24140. height: math.unit(2 + 6 / 12, "feet"),
  24141. weight: math.unit(30, "lb"),
  24142. name: "Back",
  24143. image: {
  24144. source: "./media/characters/layla/back.svg",
  24145. extra: 308 / 241.5,
  24146. bottom: 8.9 / 316.8
  24147. }
  24148. },
  24149. cumming: {
  24150. height: math.unit(2 + 6 / 12, "feet"),
  24151. weight: math.unit(30, "lb"),
  24152. name: "Cumming",
  24153. image: {
  24154. source: "./media/characters/layla/cumming.svg",
  24155. extra: 342 / 279,
  24156. bottom: 595 / 938
  24157. }
  24158. },
  24159. dickFlaccid: {
  24160. height: math.unit(2.595, "feet"),
  24161. name: "Flaccid Genitals",
  24162. image: {
  24163. source: "./media/characters/layla/dick-flaccid.svg"
  24164. }
  24165. },
  24166. dickErect: {
  24167. height: math.unit(2.359, "feet"),
  24168. name: "Erect Genitals",
  24169. image: {
  24170. source: "./media/characters/layla/dick-erect.svg"
  24171. }
  24172. },
  24173. dragon: {
  24174. height: math.unit(40, "feet"),
  24175. name: "Dragon",
  24176. image: {
  24177. source: "./media/characters/layla/dragon.svg",
  24178. extra: 610/535,
  24179. bottom: 367/977
  24180. }
  24181. },
  24182. taur: {
  24183. height: math.unit(30, "feet"),
  24184. name: "Taur",
  24185. image: {
  24186. source: "./media/characters/layla/taur.svg",
  24187. extra: 1268/1199,
  24188. bottom: 112/1380
  24189. }
  24190. },
  24191. },
  24192. [
  24193. {
  24194. name: "Micro",
  24195. height: math.unit(1, "inch")
  24196. },
  24197. {
  24198. name: "Small",
  24199. height: math.unit(1, "foot")
  24200. },
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(2 + 6 / 12, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(200, "feet")
  24209. },
  24210. {
  24211. name: "Megamacro",
  24212. height: math.unit(1000, "miles")
  24213. },
  24214. {
  24215. name: "Planetary",
  24216. height: math.unit(8000, "miles")
  24217. },
  24218. {
  24219. name: "True Layla",
  24220. height: math.unit(200000 * 7, "multiverses")
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24226. {
  24227. back: {
  24228. height: math.unit(10.5, "feet"),
  24229. weight: math.unit(800, "lb"),
  24230. name: "Back",
  24231. image: {
  24232. source: "./media/characters/knox/back.svg",
  24233. extra: 1486 / 1089,
  24234. bottom: 107 / 1601.4
  24235. }
  24236. },
  24237. side: {
  24238. height: math.unit(10.5, "feet"),
  24239. weight: math.unit(800, "lb"),
  24240. name: "Side",
  24241. image: {
  24242. source: "./media/characters/knox/side.svg",
  24243. extra: 244 / 218,
  24244. bottom: 14 / 260
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Compact",
  24251. height: math.unit(10.5, "feet"),
  24252. default: true
  24253. },
  24254. {
  24255. name: "Dynamax",
  24256. height: math.unit(210, "feet")
  24257. },
  24258. {
  24259. name: "Full Macro",
  24260. height: math.unit(850, "feet")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(28, "feet"),
  24269. weight: math.unit(10500, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/kayda/front.svg",
  24273. extra: 1536 / 1428,
  24274. bottom: 68.7 / 1603
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(28, "feet"),
  24279. weight: math.unit(10500, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/kayda/back.svg",
  24283. extra: 1557 / 1464,
  24284. bottom: 39.5 / 1597.49
  24285. }
  24286. },
  24287. dick: {
  24288. height: math.unit(3.858, "feet"),
  24289. name: "Dick",
  24290. image: {
  24291. source: "./media/characters/kayda/dick.svg"
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(28, "feet"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(10 + 11 / 12, "feet"),
  24308. weight: math.unit(1400, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/brian/front.svg",
  24312. extra: 737 / 692,
  24313. bottom: 55.4 / 785
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(10 + 11 / 12, "feet"),
  24321. default: true
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(5 + 8 / 12, "feet"),
  24330. weight: math.unit(140, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/khemri/front.svg",
  24334. extra: 4780 / 4059,
  24335. bottom: 80.1 / 4859.25
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Micro",
  24342. height: math.unit(6, "inches")
  24343. },
  24344. {
  24345. name: "Normal",
  24346. height: math.unit(5 + 8 / 12, "feet"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24353. {
  24354. front: {
  24355. height: math.unit(13, "feet"),
  24356. weight: math.unit(1700, "lb"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/felix-braveheart/front.svg",
  24360. extra: 1222 / 1157,
  24361. bottom: 53.2 / 1280
  24362. }
  24363. },
  24364. back: {
  24365. height: math.unit(13, "feet"),
  24366. weight: math.unit(1700, "lb"),
  24367. name: "Back",
  24368. image: {
  24369. source: "./media/characters/felix-braveheart/back.svg",
  24370. extra: 1277 / 1203,
  24371. bottom: 50.2 / 1327
  24372. }
  24373. },
  24374. feral: {
  24375. height: math.unit(6, "feet"),
  24376. weight: math.unit(400, "lb"),
  24377. name: "Feral",
  24378. image: {
  24379. source: "./media/characters/felix-braveheart/feral.svg",
  24380. extra: 682 / 625,
  24381. bottom: 6.9 / 688
  24382. }
  24383. },
  24384. },
  24385. [
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(13, "feet"),
  24389. default: true
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24395. {
  24396. side: {
  24397. height: math.unit(5 + 11 / 12, "feet"),
  24398. weight: math.unit(1400, "lb"),
  24399. name: "Side",
  24400. image: {
  24401. source: "./media/characters/shadow-blade/side.svg",
  24402. extra: 1726 / 1267,
  24403. bottom: 58.4 / 1785
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(5 + 11 / 12, "feet"),
  24411. default: true
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(1 + 6 / 12, "feet"),
  24420. weight: math.unit(25, "lb"),
  24421. name: "Front",
  24422. image: {
  24423. source: "./media/characters/karla-halldor/front.svg",
  24424. extra: 1459 / 1383,
  24425. bottom: 12 / 1472
  24426. }
  24427. },
  24428. },
  24429. [
  24430. {
  24431. name: "Normal",
  24432. height: math.unit(1 + 6 / 12, "feet"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(6 + 2 / 12, "feet"),
  24442. weight: math.unit(160, "lb"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/ariam/front.svg",
  24446. extra: 1073/976,
  24447. bottom: 52/1125
  24448. }
  24449. },
  24450. back: {
  24451. height: math.unit(6 + 2/12, "feet"),
  24452. weight: math.unit(160, "lb"),
  24453. name: "Back",
  24454. image: {
  24455. source: "./media/characters/ariam/back.svg",
  24456. extra: 1103/1023,
  24457. bottom: 9/1112
  24458. }
  24459. },
  24460. dressed: {
  24461. height: math.unit(6 + 2/12, "feet"),
  24462. weight: math.unit(160, "lb"),
  24463. name: "Dressed",
  24464. image: {
  24465. source: "./media/characters/ariam/dressed.svg",
  24466. extra: 1099/1009,
  24467. bottom: 25/1124
  24468. }
  24469. },
  24470. squatting: {
  24471. height: math.unit(4.1, "feet"),
  24472. weight: math.unit(160, "lb"),
  24473. name: "Squatting",
  24474. image: {
  24475. source: "./media/characters/ariam/squatting.svg",
  24476. extra: 2617 / 2112,
  24477. bottom: 61.2 / 2681,
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(6 + 2 / 12, "feet"),
  24485. default: true
  24486. },
  24487. {
  24488. name: "Normal+",
  24489. height: math.unit(4, "meters")
  24490. },
  24491. {
  24492. name: "Macro",
  24493. height: math.unit(50, "meters")
  24494. },
  24495. {
  24496. name: "Macro+",
  24497. height: math.unit(100, "meters")
  24498. },
  24499. {
  24500. name: "Megamacro",
  24501. height: math.unit(20, "km")
  24502. },
  24503. {
  24504. name: "Caretaker",
  24505. height: math.unit(444, "megameters")
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(1.67, "meters"),
  24514. weight: math.unit(140, "lb"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24518. extra: 438 / 410,
  24519. bottom: 0.75 / 439
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Shrunken",
  24526. height: math.unit(7.6, "cm")
  24527. },
  24528. {
  24529. name: "Human Scale",
  24530. height: math.unit(1.67, "meters")
  24531. },
  24532. {
  24533. name: "Wolxi Scale",
  24534. height: math.unit(36.7, "meters"),
  24535. default: true
  24536. },
  24537. ]
  24538. ))
  24539. characterMakers.push(() => makeCharacter(
  24540. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24541. {
  24542. front: {
  24543. height: math.unit(1.73, "meters"),
  24544. weight: math.unit(240, "lb"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/izue-two-mothers/front.svg",
  24548. extra: 469 / 437,
  24549. bottom: 1.24 / 470.6
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Shrunken",
  24556. height: math.unit(7.86, "cm")
  24557. },
  24558. {
  24559. name: "Human Scale",
  24560. height: math.unit(1.73, "meters")
  24561. },
  24562. {
  24563. name: "Wolxi Scale",
  24564. height: math.unit(38, "meters"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24571. {
  24572. front: {
  24573. height: math.unit(1.55, "meters"),
  24574. weight: math.unit(120, "lb"),
  24575. name: "Front",
  24576. image: {
  24577. source: "./media/characters/teeku-love-shack/front.svg",
  24578. extra: 387 / 362,
  24579. bottom: 1.51 / 388
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Shrunken",
  24586. height: math.unit(7, "cm")
  24587. },
  24588. {
  24589. name: "Human Scale",
  24590. height: math.unit(1.55, "meters")
  24591. },
  24592. {
  24593. name: "Wolxi Scale",
  24594. height: math.unit(34.1, "meters"),
  24595. default: true
  24596. },
  24597. ]
  24598. ))
  24599. characterMakers.push(() => makeCharacter(
  24600. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24601. {
  24602. front: {
  24603. height: math.unit(1.83, "meters"),
  24604. weight: math.unit(135, "lb"),
  24605. name: "Front",
  24606. image: {
  24607. source: "./media/characters/dejma-the-red/front.svg",
  24608. extra: 480 / 458,
  24609. bottom: 1.8 / 482
  24610. }
  24611. },
  24612. },
  24613. [
  24614. {
  24615. name: "Shrunken",
  24616. height: math.unit(8.3, "cm")
  24617. },
  24618. {
  24619. name: "Human Scale",
  24620. height: math.unit(1.83, "meters")
  24621. },
  24622. {
  24623. name: "Wolxi Scale",
  24624. height: math.unit(40, "meters"),
  24625. default: true
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24631. {
  24632. front: {
  24633. height: math.unit(1.78, "meters"),
  24634. weight: math.unit(65, "kg"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/aki/front.svg",
  24638. extra: 452 / 415
  24639. }
  24640. },
  24641. frontNsfw: {
  24642. height: math.unit(1.78, "meters"),
  24643. weight: math.unit(65, "kg"),
  24644. name: "Front (NSFW)",
  24645. image: {
  24646. source: "./media/characters/aki/front-nsfw.svg",
  24647. extra: 452 / 415
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(1.78, "meters"),
  24652. weight: math.unit(65, "kg"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/aki/back.svg",
  24656. extra: 452 / 415
  24657. }
  24658. },
  24659. rump: {
  24660. height: math.unit(2.05, "feet"),
  24661. name: "Rump",
  24662. image: {
  24663. source: "./media/characters/aki/rump.svg"
  24664. }
  24665. },
  24666. dick: {
  24667. height: math.unit(0.95, "feet"),
  24668. name: "Dick",
  24669. image: {
  24670. source: "./media/characters/aki/dick.svg"
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Micro",
  24677. height: math.unit(15, "cm")
  24678. },
  24679. {
  24680. name: "Normal",
  24681. height: math.unit(178, "cm"),
  24682. default: true
  24683. },
  24684. {
  24685. name: "Macro",
  24686. height: math.unit(214, "m")
  24687. },
  24688. {
  24689. name: "Macro+",
  24690. height: math.unit(534, "m")
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(5 + 5 / 12, "feet"),
  24699. weight: math.unit(120, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/ari/front.svg",
  24703. extra: 714.5 / 682,
  24704. bottom: 8 / 722.5
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Normal",
  24711. height: math.unit(5 + 5 / 12, "feet")
  24712. },
  24713. {
  24714. name: "Macro",
  24715. height: math.unit(100, "feet"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Megamacro",
  24720. height: math.unit(100, "miles")
  24721. },
  24722. {
  24723. name: "Gigamacro",
  24724. height: math.unit(80000, "miles")
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24730. {
  24731. side: {
  24732. height: math.unit(9, "feet"),
  24733. weight: math.unit(400, "kg"),
  24734. name: "Side",
  24735. image: {
  24736. source: "./media/characters/bolt/side.svg",
  24737. extra: 1126 / 896,
  24738. bottom: 60 / 1187.3,
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Micro",
  24745. height: math.unit(5, "inches")
  24746. },
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(9, "feet"),
  24750. default: true
  24751. },
  24752. {
  24753. name: "Macro",
  24754. height: math.unit(700, "feet")
  24755. },
  24756. {
  24757. name: "Max Size",
  24758. height: math.unit(1.52e22, "yottameters")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(4.53, "meters"),
  24767. weight: math.unit(3, "tons"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/draekon-sylviar/front.svg",
  24771. extra: 1228 / 1068,
  24772. bottom: 41 / 1270
  24773. }
  24774. },
  24775. tail: {
  24776. height: math.unit(1.772, "meter"),
  24777. name: "Tail",
  24778. image: {
  24779. source: "./media/characters/draekon-sylviar/tail.svg"
  24780. }
  24781. },
  24782. head: {
  24783. height: math.unit(1.331, "meter"),
  24784. name: "Head",
  24785. image: {
  24786. source: "./media/characters/draekon-sylviar/head.svg"
  24787. }
  24788. },
  24789. hand: {
  24790. height: math.unit(0.564, "meter"),
  24791. name: "Hand",
  24792. image: {
  24793. source: "./media/characters/draekon-sylviar/hand.svg"
  24794. }
  24795. },
  24796. foot: {
  24797. height: math.unit(0.621, "meter"),
  24798. name: "Foot",
  24799. image: {
  24800. source: "./media/characters/draekon-sylviar/foot.svg",
  24801. bottom: 32 / 324
  24802. }
  24803. },
  24804. dick: {
  24805. height: math.unit(61, "cm"),
  24806. name: "Dick",
  24807. image: {
  24808. source: "./media/characters/draekon-sylviar/dick.svg"
  24809. }
  24810. },
  24811. dickseparated: {
  24812. height: math.unit(61, "cm"),
  24813. name: "Dick-separated",
  24814. image: {
  24815. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24816. }
  24817. },
  24818. },
  24819. [
  24820. {
  24821. name: "Small",
  24822. height: math.unit(4.53 / 2, "meters"),
  24823. default: true
  24824. },
  24825. {
  24826. name: "Normal",
  24827. height: math.unit(4.53, "meters"),
  24828. default: true
  24829. },
  24830. {
  24831. name: "Large",
  24832. height: math.unit(4.53 * 2, "meters"),
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24838. {
  24839. front: {
  24840. height: math.unit(6 + 2 / 12, "feet"),
  24841. weight: math.unit(180, "lb"),
  24842. name: "Front",
  24843. image: {
  24844. source: "./media/characters/brawler/front.svg",
  24845. extra: 3301 / 3027,
  24846. bottom: 138 / 3439
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Normal",
  24853. height: math.unit(6 + 2 / 12, "feet"),
  24854. default: true
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(11, "feet"),
  24863. weight: math.unit(1000, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/alex/front.svg",
  24867. bottom: 44.5 / 620
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Micro",
  24874. height: math.unit(5, "inches")
  24875. },
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(11, "feet"),
  24879. default: true
  24880. },
  24881. {
  24882. name: "Macro",
  24883. height: math.unit(9.5e9, "feet")
  24884. },
  24885. {
  24886. name: "Max Size",
  24887. height: math.unit(1.4e283, "yottameters")
  24888. },
  24889. ]
  24890. ))
  24891. characterMakers.push(() => makeCharacter(
  24892. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24893. {
  24894. female: {
  24895. height: math.unit(29.9, "m"),
  24896. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24897. name: "Female",
  24898. image: {
  24899. source: "./media/characters/zenari/female.svg",
  24900. extra: 3281.6 / 3217,
  24901. bottom: 72.2 / 3353
  24902. }
  24903. },
  24904. male: {
  24905. height: math.unit(27.7, "m"),
  24906. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24907. name: "Male",
  24908. image: {
  24909. source: "./media/characters/zenari/male.svg",
  24910. extra: 3008 / 2991,
  24911. bottom: 54.6 / 3069
  24912. }
  24913. },
  24914. },
  24915. [
  24916. {
  24917. name: "Macro",
  24918. height: math.unit(29.7, "meters"),
  24919. default: true
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24925. {
  24926. female: {
  24927. height: math.unit(23.8, "m"),
  24928. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24929. name: "Female",
  24930. image: {
  24931. source: "./media/characters/mactarian/female.svg",
  24932. extra: 2662 / 2569,
  24933. bottom: 73 / 2736
  24934. }
  24935. },
  24936. male: {
  24937. height: math.unit(23.8, "m"),
  24938. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24939. name: "Male",
  24940. image: {
  24941. source: "./media/characters/mactarian/male.svg",
  24942. extra: 2673 / 2600,
  24943. bottom: 76 / 2750
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Macro",
  24950. height: math.unit(23.8, "meters"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24957. {
  24958. female: {
  24959. height: math.unit(19.3, "m"),
  24960. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24961. name: "Female",
  24962. image: {
  24963. source: "./media/characters/umok/female.svg",
  24964. extra: 2186 / 2078,
  24965. bottom: 87 / 2277
  24966. }
  24967. },
  24968. male: {
  24969. height: math.unit(19.5, "m"),
  24970. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24971. name: "Male",
  24972. image: {
  24973. source: "./media/characters/umok/male.svg",
  24974. extra: 2233 / 2140,
  24975. bottom: 24.4 / 2258
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Macro",
  24982. height: math.unit(19.3, "meters"),
  24983. default: true
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24989. {
  24990. female: {
  24991. height: math.unit(26.15, "m"),
  24992. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24993. name: "Female",
  24994. image: {
  24995. source: "./media/characters/joraxian/female.svg",
  24996. extra: 2912 / 2824,
  24997. bottom: 36 / 2956
  24998. }
  24999. },
  25000. male: {
  25001. height: math.unit(25.4, "m"),
  25002. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25003. name: "Male",
  25004. image: {
  25005. source: "./media/characters/joraxian/male.svg",
  25006. extra: 2877 / 2721,
  25007. bottom: 82 / 2967
  25008. }
  25009. },
  25010. },
  25011. [
  25012. {
  25013. name: "Macro",
  25014. height: math.unit(26.15, "meters"),
  25015. default: true
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25021. {
  25022. female: {
  25023. height: math.unit(21.6, "m"),
  25024. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25025. name: "Female",
  25026. image: {
  25027. source: "./media/characters/sthara/female.svg",
  25028. extra: 2516 / 2347,
  25029. bottom: 21.5 / 2537
  25030. }
  25031. },
  25032. male: {
  25033. height: math.unit(24, "m"),
  25034. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25035. name: "Male",
  25036. image: {
  25037. source: "./media/characters/sthara/male.svg",
  25038. extra: 2732 / 2607,
  25039. bottom: 23 / 2732
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Macro",
  25046. height: math.unit(21.6, "meters"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25053. {
  25054. front: {
  25055. height: math.unit(6 + 4 / 12, "feet"),
  25056. weight: math.unit(175, "lb"),
  25057. name: "Front",
  25058. image: {
  25059. source: "./media/characters/luka-bryzant/front.svg",
  25060. extra: 311 / 289,
  25061. bottom: 4 / 315
  25062. }
  25063. },
  25064. back: {
  25065. height: math.unit(6 + 4 / 12, "feet"),
  25066. weight: math.unit(175, "lb"),
  25067. name: "Back",
  25068. image: {
  25069. source: "./media/characters/luka-bryzant/back.svg",
  25070. extra: 311 / 289,
  25071. bottom: 3.8 / 313.7
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Micro",
  25078. height: math.unit(10, "inches")
  25079. },
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(6 + 4 / 12, "feet"),
  25083. default: true
  25084. },
  25085. {
  25086. name: "Large",
  25087. height: math.unit(12, "feet")
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(5 + 7 / 12, "feet"),
  25096. weight: math.unit(185, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/aman-aquila/front.svg",
  25100. extra: 1013 / 976,
  25101. bottom: 45.6 / 1057
  25102. }
  25103. },
  25104. side: {
  25105. height: math.unit(5 + 7 / 12, "feet"),
  25106. weight: math.unit(185, "lb"),
  25107. name: "Side",
  25108. image: {
  25109. source: "./media/characters/aman-aquila/side.svg",
  25110. extra: 1054 / 1011,
  25111. bottom: 15 / 1070
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(5 + 7 / 12, "feet"),
  25116. weight: math.unit(185, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/aman-aquila/back.svg",
  25120. extra: 1026 / 970,
  25121. bottom: 12 / 1039
  25122. }
  25123. },
  25124. head: {
  25125. height: math.unit(1.211, "feet"),
  25126. name: "Head",
  25127. image: {
  25128. source: "./media/characters/aman-aquila/head.svg",
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Minimicro",
  25135. height: math.unit(0.057, "inches")
  25136. },
  25137. {
  25138. name: "Micro",
  25139. height: math.unit(7, "inches")
  25140. },
  25141. {
  25142. name: "Mini",
  25143. height: math.unit(3 + 7 / 12, "feet")
  25144. },
  25145. {
  25146. name: "Normal",
  25147. height: math.unit(5 + 7 / 12, "feet"),
  25148. default: true
  25149. },
  25150. {
  25151. name: "Macro",
  25152. height: math.unit(157 + 7 / 12, "feet")
  25153. },
  25154. {
  25155. name: "Megamacro",
  25156. height: math.unit(1557 + 7 / 12, "feet")
  25157. },
  25158. {
  25159. name: "Gigamacro",
  25160. height: math.unit(15557 + 7 / 12, "feet")
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(3 + 2 / 12, "inches"),
  25169. weight: math.unit(0.3, "ounces"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/hiphae/front.svg",
  25173. extra: 1931 / 1683,
  25174. bottom: 24 / 1955
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(3 + 1 / 2, "inches"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(5 + 10 / 12, "feet"),
  25191. weight: math.unit(165, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/nicky/front.svg",
  25195. extra: 3144 / 2886,
  25196. bottom: 45.6 / 3192
  25197. }
  25198. },
  25199. back: {
  25200. height: math.unit(5 + 10 / 12, "feet"),
  25201. weight: math.unit(165, "lb"),
  25202. name: "Back",
  25203. image: {
  25204. source: "./media/characters/nicky/back.svg",
  25205. extra: 3055 / 2804,
  25206. bottom: 28.4 / 3087
  25207. }
  25208. },
  25209. frontclothed: {
  25210. height: math.unit(5 + 10 / 12, "feet"),
  25211. weight: math.unit(165, "lb"),
  25212. name: "Front-clothed",
  25213. image: {
  25214. source: "./media/characters/nicky/front-clothed.svg",
  25215. extra: 3184.9 / 2926.9,
  25216. bottom: 86.5 / 3239.9
  25217. }
  25218. },
  25219. foot: {
  25220. height: math.unit(1.16, "feet"),
  25221. name: "Foot",
  25222. image: {
  25223. source: "./media/characters/nicky/foot.svg"
  25224. }
  25225. },
  25226. feet: {
  25227. height: math.unit(1.34, "feet"),
  25228. name: "Feet",
  25229. image: {
  25230. source: "./media/characters/nicky/feet.svg"
  25231. }
  25232. },
  25233. maw: {
  25234. height: math.unit(0.9, "feet"),
  25235. name: "Maw",
  25236. image: {
  25237. source: "./media/characters/nicky/maw.svg"
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(5 + 10 / 12, "feet"),
  25245. default: true
  25246. },
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(60, "feet")
  25250. },
  25251. {
  25252. name: "Megamacro",
  25253. height: math.unit(1, "mile")
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25259. {
  25260. side: {
  25261. height: math.unit(10, "feet"),
  25262. weight: math.unit(600, "lb"),
  25263. name: "Side",
  25264. image: {
  25265. source: "./media/characters/blair/side.svg",
  25266. bottom: 16.6 / 475,
  25267. extra: 458 / 431
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Micro",
  25274. height: math.unit(8, "inches")
  25275. },
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(10, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Macro",
  25283. height: math.unit(180, "feet")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(5 + 4 / 12, "feet"),
  25292. weight: math.unit(125, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/fisher/front.svg",
  25296. extra: 444 / 390,
  25297. bottom: 2 / 444.8
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Micro",
  25304. height: math.unit(4, "inches")
  25305. },
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(5 + 4 / 12, "feet"),
  25309. default: true
  25310. },
  25311. {
  25312. name: "Macro",
  25313. height: math.unit(100, "feet")
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(6.71, "feet"),
  25322. weight: math.unit(200, "lb"),
  25323. capacity: math.unit(1000000, "people"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/gliss/front.svg",
  25327. extra: 2347 / 2231,
  25328. bottom: 113 / 2462
  25329. }
  25330. },
  25331. hammerspaceSize: {
  25332. height: math.unit(6.71 * 717, "feet"),
  25333. weight: math.unit(200, "lb"),
  25334. capacity: math.unit(1000000, "people"),
  25335. name: "Hammerspace Size",
  25336. image: {
  25337. source: "./media/characters/gliss/front.svg",
  25338. extra: 2347 / 2231,
  25339. bottom: 113 / 2462
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(6.71, "feet"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25353. {
  25354. side: {
  25355. height: math.unit(1.44, "m"),
  25356. weight: math.unit(80, "kg"),
  25357. name: "Side",
  25358. image: {
  25359. source: "./media/characters/dune-anderson/side.svg",
  25360. bottom: 49 / 1426
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Wolf-sized",
  25367. height: math.unit(1.44, "meters")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(5.05, "meters"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Big",
  25376. height: math.unit(14.4, "meters")
  25377. },
  25378. {
  25379. name: "Huge",
  25380. height: math.unit(144, "meters")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(7, "feet"),
  25389. weight: math.unit(425, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/hind/front.svg",
  25393. extra: 2091 / 1860,
  25394. bottom: 129 / 2220
  25395. }
  25396. },
  25397. back: {
  25398. height: math.unit(7, "feet"),
  25399. weight: math.unit(425, "lb"),
  25400. name: "Back",
  25401. image: {
  25402. source: "./media/characters/hind/back.svg",
  25403. extra: 2091 / 1860,
  25404. bottom: 24.6 / 2309
  25405. }
  25406. },
  25407. tail: {
  25408. height: math.unit(2.8, "feet"),
  25409. name: "Tail",
  25410. image: {
  25411. source: "./media/characters/hind/tail.svg"
  25412. }
  25413. },
  25414. head: {
  25415. height: math.unit(2.55, "feet"),
  25416. name: "Head",
  25417. image: {
  25418. source: "./media/characters/hind/head.svg"
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "XS",
  25425. height: math.unit(0.7, "feet")
  25426. },
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(7, "feet"),
  25430. default: true
  25431. },
  25432. {
  25433. name: "XL",
  25434. height: math.unit(70, "feet")
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(2.1, "meters"),
  25443. weight: math.unit(150, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/tharquench-sizestealer/front.svg",
  25447. extra: 1605/1470,
  25448. bottom: 36/1641
  25449. }
  25450. },
  25451. frontAlt: {
  25452. height: math.unit(2.1, "meters"),
  25453. weight: math.unit(150, "lb"),
  25454. name: "Front (Alt)",
  25455. image: {
  25456. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25457. extra: 2318 / 2063,
  25458. bottom: 93.4 / 2410
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Nano",
  25465. height: math.unit(1, "mm")
  25466. },
  25467. {
  25468. name: "Micro",
  25469. height: math.unit(1, "cm")
  25470. },
  25471. {
  25472. name: "Normal",
  25473. height: math.unit(2.1, "meters"),
  25474. default: true
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25480. {
  25481. front: {
  25482. height: math.unit(7 + 5 / 12, "feet"),
  25483. weight: math.unit(357, "lb"),
  25484. name: "Front",
  25485. image: {
  25486. source: "./media/characters/solex-draconov/front.svg",
  25487. extra: 1993 / 1865,
  25488. bottom: 117 / 2111
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Natural Height",
  25495. height: math.unit(7 + 5 / 12, "feet"),
  25496. default: true
  25497. },
  25498. {
  25499. name: "Macro",
  25500. height: math.unit(350, "feet")
  25501. },
  25502. {
  25503. name: "Macro+",
  25504. height: math.unit(1000, "feet")
  25505. },
  25506. {
  25507. name: "Megamacro",
  25508. height: math.unit(20, "km")
  25509. },
  25510. {
  25511. name: "Megamacro+",
  25512. height: math.unit(1000, "km")
  25513. },
  25514. {
  25515. name: "Gigamacro",
  25516. height: math.unit(2.5, "Gm")
  25517. },
  25518. {
  25519. name: "Teramacro",
  25520. height: math.unit(15, "Tm")
  25521. },
  25522. {
  25523. name: "Galactic",
  25524. height: math.unit(30, "Zm")
  25525. },
  25526. {
  25527. name: "Universal",
  25528. height: math.unit(21000, "Ym")
  25529. },
  25530. {
  25531. name: "Omniversal",
  25532. height: math.unit(9.861e50, "Ym")
  25533. },
  25534. {
  25535. name: "Existential",
  25536. height: math.unit(1e300, "meters")
  25537. },
  25538. ]
  25539. ))
  25540. characterMakers.push(() => makeCharacter(
  25541. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25542. {
  25543. side: {
  25544. height: math.unit(25, "feet"),
  25545. weight: math.unit(90000, "lb"),
  25546. name: "Side",
  25547. image: {
  25548. source: "./media/characters/mandarax/side.svg",
  25549. extra: 614 / 332,
  25550. bottom: 55 / 630
  25551. }
  25552. },
  25553. head: {
  25554. height: math.unit(11.4, "feet"),
  25555. name: "Head",
  25556. image: {
  25557. source: "./media/characters/mandarax/head.svg"
  25558. }
  25559. },
  25560. belly: {
  25561. height: math.unit(33, "feet"),
  25562. name: "Belly",
  25563. capacity: math.unit(500, "people"),
  25564. image: {
  25565. source: "./media/characters/mandarax/belly.svg"
  25566. }
  25567. },
  25568. dick: {
  25569. height: math.unit(8.46, "feet"),
  25570. name: "Dick",
  25571. image: {
  25572. source: "./media/characters/mandarax/dick.svg"
  25573. }
  25574. },
  25575. top: {
  25576. height: math.unit(28, "meters"),
  25577. name: "Top",
  25578. image: {
  25579. source: "./media/characters/mandarax/top.svg"
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(25, "feet"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(5, "feet"),
  25596. weight: math.unit(90, "lb"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/pixil/front.svg",
  25600. extra: 2000 / 1618,
  25601. bottom: 12.3 / 2011
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Normal",
  25608. height: math.unit(5, "feet"),
  25609. default: true
  25610. },
  25611. {
  25612. name: "Megamacro",
  25613. height: math.unit(10, "miles"),
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(7 + 2 / 12, "feet"),
  25622. weight: math.unit(200, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/angel/front.svg",
  25626. extra: 1830 / 1737,
  25627. bottom: 22.6 / 1854,
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(7 + 2 / 12, "feet"),
  25635. default: true
  25636. },
  25637. {
  25638. name: "Macro",
  25639. height: math.unit(1000, "feet")
  25640. },
  25641. {
  25642. name: "Megamacro",
  25643. height: math.unit(2, "miles")
  25644. },
  25645. {
  25646. name: "Gigamacro",
  25647. height: math.unit(20, "earths")
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25653. {
  25654. front: {
  25655. height: math.unit(5, "feet"),
  25656. weight: math.unit(180, "lb"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/mekana/front.svg",
  25660. extra: 1671 / 1605,
  25661. bottom: 3.5 / 1691
  25662. }
  25663. },
  25664. side: {
  25665. height: math.unit(5, "feet"),
  25666. weight: math.unit(180, "lb"),
  25667. name: "Side",
  25668. image: {
  25669. source: "./media/characters/mekana/side.svg",
  25670. extra: 1671 / 1605,
  25671. bottom: 3.5 / 1691
  25672. }
  25673. },
  25674. back: {
  25675. height: math.unit(5, "feet"),
  25676. weight: math.unit(180, "lb"),
  25677. name: "Back",
  25678. image: {
  25679. source: "./media/characters/mekana/back.svg",
  25680. extra: 1671 / 1605,
  25681. bottom: 3.5 / 1691
  25682. }
  25683. },
  25684. },
  25685. [
  25686. {
  25687. name: "Normal",
  25688. height: math.unit(5, "feet"),
  25689. default: true
  25690. },
  25691. ]
  25692. ))
  25693. characterMakers.push(() => makeCharacter(
  25694. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25695. {
  25696. front: {
  25697. height: math.unit(4 + 6 / 12, "feet"),
  25698. weight: math.unit(80, "lb"),
  25699. name: "Front",
  25700. image: {
  25701. source: "./media/characters/pixie/front.svg",
  25702. extra: 1924 / 1825,
  25703. bottom: 22.4 / 1946
  25704. }
  25705. },
  25706. },
  25707. [
  25708. {
  25709. name: "Normal",
  25710. height: math.unit(4 + 6 / 12, "feet"),
  25711. default: true
  25712. },
  25713. {
  25714. name: "Macro",
  25715. height: math.unit(40, "feet")
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(2.1, "meters"),
  25724. weight: math.unit(200, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/the-lascivious/front.svg",
  25728. extra: 1 / 0.893,
  25729. bottom: 3.5 / 573.7
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Human Scale",
  25736. height: math.unit(2.1, "meters")
  25737. },
  25738. {
  25739. name: "Wolxi Scale",
  25740. height: math.unit(46.2, "m"),
  25741. default: true
  25742. },
  25743. {
  25744. name: "Boinker of Buildings",
  25745. height: math.unit(10, "km")
  25746. },
  25747. {
  25748. name: "Shagger of Skyscrapers",
  25749. height: math.unit(40, "km")
  25750. },
  25751. {
  25752. name: "Banger of Boroughs",
  25753. height: math.unit(4000, "km")
  25754. },
  25755. {
  25756. name: "Screwer of States",
  25757. height: math.unit(100000, "km")
  25758. },
  25759. {
  25760. name: "Pounder of Planets",
  25761. height: math.unit(2000000, "km")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25767. {
  25768. front: {
  25769. height: math.unit(6, "feet"),
  25770. weight: math.unit(150, "lb"),
  25771. name: "Front",
  25772. image: {
  25773. source: "./media/characters/aj/front.svg",
  25774. extra: 2039 / 1562,
  25775. bottom: 40 / 2079
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Normal",
  25782. height: math.unit(11 + 6 / 12, "feet"),
  25783. default: true
  25784. },
  25785. {
  25786. name: "Megamacro",
  25787. height: math.unit(60, "megameters")
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25793. {
  25794. side: {
  25795. height: math.unit(31 + 8 / 12, "feet"),
  25796. weight: math.unit(75000, "kg"),
  25797. name: "Side",
  25798. image: {
  25799. source: "./media/characters/koros/side.svg",
  25800. extra: 1442 / 1297,
  25801. bottom: 122.7 / 1562
  25802. }
  25803. },
  25804. dicksKingsCrown: {
  25805. height: math.unit(6, "feet"),
  25806. name: "Dicks (King's Crown)",
  25807. image: {
  25808. source: "./media/characters/koros/dicks-kings-crown.svg"
  25809. }
  25810. },
  25811. dicksTailSet: {
  25812. height: math.unit(3, "feet"),
  25813. name: "Dicks (Tail Set)",
  25814. image: {
  25815. source: "./media/characters/koros/dicks-tail-set.svg"
  25816. }
  25817. },
  25818. dickCumming: {
  25819. height: math.unit(7.98, "feet"),
  25820. name: "Dick (Cumming)",
  25821. image: {
  25822. source: "./media/characters/koros/dick-cumming.svg"
  25823. }
  25824. },
  25825. dicksBack: {
  25826. height: math.unit(5.9, "feet"),
  25827. name: "Dicks (Back)",
  25828. image: {
  25829. source: "./media/characters/koros/dicks-back.svg"
  25830. }
  25831. },
  25832. dicksFront: {
  25833. height: math.unit(3.72, "feet"),
  25834. name: "Dicks (Front)",
  25835. image: {
  25836. source: "./media/characters/koros/dicks-front.svg"
  25837. }
  25838. },
  25839. dicksPeeking: {
  25840. height: math.unit(3.0, "feet"),
  25841. name: "Dicks (Peeking)",
  25842. image: {
  25843. source: "./media/characters/koros/dicks-peeking.svg"
  25844. }
  25845. },
  25846. eye: {
  25847. height: math.unit(1.7, "feet"),
  25848. name: "Eye",
  25849. image: {
  25850. source: "./media/characters/koros/eye.svg"
  25851. }
  25852. },
  25853. headFront: {
  25854. height: math.unit(11.69, "feet"),
  25855. name: "Head (Front)",
  25856. image: {
  25857. source: "./media/characters/koros/head-front.svg"
  25858. }
  25859. },
  25860. headSide: {
  25861. height: math.unit(14, "feet"),
  25862. name: "Head (Side)",
  25863. image: {
  25864. source: "./media/characters/koros/head-side.svg"
  25865. }
  25866. },
  25867. leg: {
  25868. height: math.unit(17, "feet"),
  25869. name: "Leg",
  25870. image: {
  25871. source: "./media/characters/koros/leg.svg"
  25872. }
  25873. },
  25874. mawSide: {
  25875. height: math.unit(12.8, "feet"),
  25876. name: "Maw (Side)",
  25877. image: {
  25878. source: "./media/characters/koros/maw-side.svg"
  25879. }
  25880. },
  25881. mawSpitting: {
  25882. height: math.unit(17, "feet"),
  25883. name: "Maw (Spitting)",
  25884. image: {
  25885. source: "./media/characters/koros/maw-spitting.svg"
  25886. }
  25887. },
  25888. slit: {
  25889. height: math.unit(2.8, "feet"),
  25890. name: "Slit",
  25891. image: {
  25892. source: "./media/characters/koros/slit.svg"
  25893. }
  25894. },
  25895. stomach: {
  25896. height: math.unit(6.8, "feet"),
  25897. capacity: math.unit(20, "people"),
  25898. name: "Stomach",
  25899. image: {
  25900. source: "./media/characters/koros/stomach.svg"
  25901. }
  25902. },
  25903. wingspanBottom: {
  25904. height: math.unit(114, "feet"),
  25905. name: "Wingspan (Bottom)",
  25906. image: {
  25907. source: "./media/characters/koros/wingspan-bottom.svg"
  25908. }
  25909. },
  25910. wingspanTop: {
  25911. height: math.unit(104, "feet"),
  25912. name: "Wingspan (Top)",
  25913. image: {
  25914. source: "./media/characters/koros/wingspan-top.svg"
  25915. }
  25916. },
  25917. },
  25918. [
  25919. {
  25920. name: "Normal",
  25921. height: math.unit(31 + 8 / 12, "feet"),
  25922. default: true
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(18 + 5 / 12, "feet"),
  25931. weight: math.unit(3750, "kg"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/vexx/front.svg",
  25935. extra: 426 / 396,
  25936. bottom: 31.5 / 458
  25937. }
  25938. },
  25939. maw: {
  25940. height: math.unit(6, "feet"),
  25941. name: "Maw",
  25942. image: {
  25943. source: "./media/characters/vexx/maw.svg"
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(18 + 5 / 12, "feet"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(17 + 6 / 12, "feet"),
  25960. weight: math.unit(150, "lb"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/baadra/front.svg",
  25964. extra: 3137 / 2890,
  25965. bottom: 168.4 / 3305
  25966. }
  25967. },
  25968. back: {
  25969. height: math.unit(17 + 6 / 12, "feet"),
  25970. weight: math.unit(150, "lb"),
  25971. name: "Back",
  25972. image: {
  25973. source: "./media/characters/baadra/back.svg",
  25974. extra: 3142 / 2890,
  25975. bottom: 220 / 3371
  25976. }
  25977. },
  25978. head: {
  25979. height: math.unit(5.45, "feet"),
  25980. name: "Head",
  25981. image: {
  25982. source: "./media/characters/baadra/head.svg"
  25983. }
  25984. },
  25985. headAngry: {
  25986. height: math.unit(4.95, "feet"),
  25987. name: "Head (Angry)",
  25988. image: {
  25989. source: "./media/characters/baadra/head-angry.svg"
  25990. }
  25991. },
  25992. headOpen: {
  25993. height: math.unit(6, "feet"),
  25994. name: "Head (Open)",
  25995. image: {
  25996. source: "./media/characters/baadra/head-open.svg"
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(17 + 6 / 12, "feet"),
  26004. default: true
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(7 + 3 / 12, "feet"),
  26013. weight: math.unit(180, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/juri/front.svg",
  26017. extra: 1401 / 1237,
  26018. bottom: 18.5 / 1418
  26019. }
  26020. },
  26021. side: {
  26022. height: math.unit(7 + 3 / 12, "feet"),
  26023. weight: math.unit(180, "lb"),
  26024. name: "Side",
  26025. image: {
  26026. source: "./media/characters/juri/side.svg",
  26027. extra: 1424 / 1242,
  26028. bottom: 18.5 / 1447
  26029. }
  26030. },
  26031. sitting: {
  26032. height: math.unit(6, "feet"),
  26033. weight: math.unit(180, "lb"),
  26034. name: "Sitting",
  26035. image: {
  26036. source: "./media/characters/juri/sitting.svg",
  26037. extra: 1270 / 1143,
  26038. bottom: 100 / 1343
  26039. }
  26040. },
  26041. back: {
  26042. height: math.unit(7 + 3 / 12, "feet"),
  26043. weight: math.unit(180, "lb"),
  26044. name: "Back",
  26045. image: {
  26046. source: "./media/characters/juri/back.svg",
  26047. extra: 1377 / 1240,
  26048. bottom: 23.7 / 1405
  26049. }
  26050. },
  26051. maw: {
  26052. height: math.unit(2.8, "feet"),
  26053. name: "Maw",
  26054. image: {
  26055. source: "./media/characters/juri/maw.svg"
  26056. }
  26057. },
  26058. stomach: {
  26059. height: math.unit(0.89, "feet"),
  26060. capacity: math.unit(4, "liters"),
  26061. name: "Stomach",
  26062. image: {
  26063. source: "./media/characters/juri/stomach.svg"
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(7 + 3 / 12, "feet"),
  26071. default: true
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26077. {
  26078. fox: {
  26079. height: math.unit(5 + 6 / 12, "feet"),
  26080. weight: math.unit(140, "lb"),
  26081. name: "Fox",
  26082. image: {
  26083. source: "./media/characters/maxene-sita/fox.svg",
  26084. extra: 146 / 138,
  26085. bottom: 2.1 / 148.19
  26086. }
  26087. },
  26088. foxLaying: {
  26089. height: math.unit(1.70, "feet"),
  26090. weight: math.unit(140, "lb"),
  26091. name: "Fox (Laying)",
  26092. image: {
  26093. source: "./media/characters/maxene-sita/fox-laying.svg",
  26094. extra: 910 / 572,
  26095. bottom: 71 / 981
  26096. }
  26097. },
  26098. kitsune: {
  26099. height: math.unit(10, "feet"),
  26100. weight: math.unit(800, "lb"),
  26101. name: "Kitsune",
  26102. image: {
  26103. source: "./media/characters/maxene-sita/kitsune.svg",
  26104. extra: 185 / 176,
  26105. bottom: 4.7 / 189.9
  26106. }
  26107. },
  26108. hellhound: {
  26109. height: math.unit(10, "feet"),
  26110. weight: math.unit(700, "lb"),
  26111. name: "Hellhound",
  26112. image: {
  26113. source: "./media/characters/maxene-sita/hellhound.svg",
  26114. extra: 1600 / 1545,
  26115. bottom: 81 / 1681
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(5 + 6 / 12, "feet"),
  26123. default: true
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26129. {
  26130. front: {
  26131. height: math.unit(3 + 4 / 12, "feet"),
  26132. weight: math.unit(70, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/maia/front.svg",
  26136. extra: 227 / 219.5,
  26137. bottom: 40 / 267
  26138. }
  26139. },
  26140. back: {
  26141. height: math.unit(3 + 4 / 12, "feet"),
  26142. weight: math.unit(70, "lb"),
  26143. name: "Back",
  26144. image: {
  26145. source: "./media/characters/maia/back.svg",
  26146. extra: 237 / 225
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Normal",
  26153. height: math.unit(3 + 4 / 12, "feet"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(5 + 10 / 12, "feet"),
  26163. weight: math.unit(197, "lb"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/jabaro/front.svg",
  26167. extra: 225 / 216,
  26168. bottom: 5.06 / 230
  26169. }
  26170. },
  26171. back: {
  26172. height: math.unit(5 + 10 / 12, "feet"),
  26173. weight: math.unit(197, "lb"),
  26174. name: "Back",
  26175. image: {
  26176. source: "./media/characters/jabaro/back.svg",
  26177. extra: 225 / 219,
  26178. bottom: 1.9 / 227
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(5 + 10 / 12, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(5 + 8 / 12, "feet"),
  26195. weight: math.unit(139, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/risa/front.svg",
  26199. extra: 270 / 260,
  26200. bottom: 11.2 / 282
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(5 + 8 / 12, "feet"),
  26205. weight: math.unit(139, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/risa/back.svg",
  26209. extra: 264 / 255,
  26210. bottom: 4 / 268
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(5 + 8 / 12, "feet"),
  26218. default: true
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(2 + 11 / 12, "feet"),
  26227. weight: math.unit(30, "lb"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/weatley/front.svg",
  26231. bottom: 10.7 / 414,
  26232. extra: 403.5 / 362
  26233. }
  26234. },
  26235. back: {
  26236. height: math.unit(2 + 11 / 12, "feet"),
  26237. weight: math.unit(30, "lb"),
  26238. name: "Back",
  26239. image: {
  26240. source: "./media/characters/weatley/back.svg",
  26241. bottom: 10.7 / 414,
  26242. extra: 403.5 / 362
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(2 + 11 / 12, "feet"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(5 + 2 / 12, "feet"),
  26259. weight: math.unit(50, "kg"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/mercury-crescent/front.svg",
  26263. extra: 1088 / 1033,
  26264. bottom: 18.9 / 1109
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Normal",
  26271. height: math.unit(5 + 2 / 12, "feet"),
  26272. default: true
  26273. },
  26274. ]
  26275. ))
  26276. characterMakers.push(() => makeCharacter(
  26277. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26278. {
  26279. front: {
  26280. height: math.unit(2, "feet"),
  26281. weight: math.unit(15, "kg"),
  26282. name: "Front",
  26283. image: {
  26284. source: "./media/characters/diamond-jones/front.svg",
  26285. extra: 727/723,
  26286. bottom: 46/773
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(2, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(3, "feet"),
  26303. weight: math.unit(30, "kg"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/sweet-bit/front.svg",
  26307. extra: 675 / 567,
  26308. bottom: 27.7 / 703
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Normal",
  26315. height: math.unit(3, "feet"),
  26316. default: true
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26322. {
  26323. side: {
  26324. height: math.unit(9.178, "feet"),
  26325. weight: math.unit(500, "lb"),
  26326. name: "Side",
  26327. image: {
  26328. source: "./media/characters/umbrazen/side.svg",
  26329. extra: 1730 / 1473,
  26330. bottom: 34.6 / 1765
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(9.178, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(10, "feet"),
  26347. weight: math.unit(750, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/arlist/front.svg",
  26351. extra: 961 / 778,
  26352. bottom: 6.2 / 986
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(10, "feet"),
  26360. default: true
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26366. {
  26367. front: {
  26368. height: math.unit(5 + 1 / 12, "feet"),
  26369. weight: math.unit(110, "lb"),
  26370. name: "Front",
  26371. image: {
  26372. source: "./media/characters/aradel/front.svg",
  26373. extra: 324 / 303,
  26374. bottom: 3.6 / 329.4
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(5 + 1 / 12, "feet"),
  26382. default: true
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26388. {
  26389. front: {
  26390. height: math.unit(3 + 8 / 12, "feet"),
  26391. weight: math.unit(50, "lb"),
  26392. name: "Front",
  26393. image: {
  26394. source: "./media/characters/serryn/front.svg",
  26395. extra: 1792 / 1656,
  26396. bottom: 43.5 / 1840
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(3 + 8 / 12, "feet"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(7 + 10 / 12, "feet"),
  26413. weight: math.unit(255, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/xavier-thyme/front.svg",
  26417. extra: 3733 / 3642,
  26418. bottom: 131 / 3869
  26419. }
  26420. },
  26421. frontRaven: {
  26422. height: math.unit(7 + 10 / 12, "feet"),
  26423. weight: math.unit(255, "lb"),
  26424. name: "Front (Raven)",
  26425. image: {
  26426. source: "./media/characters/xavier-thyme/front-raven.svg",
  26427. extra: 4385 / 3642,
  26428. bottom: 131 / 4517
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(7 + 10 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(1.6, "m"),
  26445. weight: math.unit(50, "kg"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/kiki/front.svg",
  26449. extra: 4682 / 3610,
  26450. bottom: 115 / 4777
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(1.6, "meters"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(50, "m"),
  26467. weight: math.unit(500, "tonnes"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/ryoko/front.svg",
  26471. extra: 4632 / 3926,
  26472. bottom: 193 / 4823
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(50, "meters"),
  26480. default: true
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(30, "m"),
  26489. weight: math.unit(22, "tonnes"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/elio/front.svg",
  26493. extra: 4582 / 3720,
  26494. bottom: 236 / 4828
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(30, "meters"),
  26502. default: true
  26503. },
  26504. ]
  26505. ))
  26506. characterMakers.push(() => makeCharacter(
  26507. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26508. {
  26509. front: {
  26510. height: math.unit(6 + 3 / 12, "feet"),
  26511. weight: math.unit(120, "lb"),
  26512. name: "Front",
  26513. image: {
  26514. source: "./media/characters/azura/front.svg",
  26515. extra: 1149 / 1135,
  26516. bottom: 45 / 1194
  26517. }
  26518. },
  26519. frontClothed: {
  26520. height: math.unit(6 + 3 / 12, "feet"),
  26521. weight: math.unit(120, "lb"),
  26522. name: "Front (Clothed)",
  26523. image: {
  26524. source: "./media/characters/azura/front-clothed.svg",
  26525. extra: 1149 / 1135,
  26526. bottom: 45 / 1194
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(6 + 3 / 12, "feet"),
  26534. default: true
  26535. },
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(20 + 6 / 12, "feet")
  26539. },
  26540. {
  26541. name: "Megamacro",
  26542. height: math.unit(12, "miles")
  26543. },
  26544. {
  26545. name: "Gigamacro",
  26546. height: math.unit(10000, "miles")
  26547. },
  26548. {
  26549. name: "Teramacro",
  26550. height: math.unit(900000, "miles")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(12, "feet"),
  26559. weight: math.unit(1, "ton"),
  26560. capacity: math.unit(660000, "gallons"),
  26561. name: "Front",
  26562. image: {
  26563. source: "./media/characters/zeus/front.svg",
  26564. extra: 5005 / 4717,
  26565. bottom: 363 / 5388
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(12, "feet")
  26573. },
  26574. {
  26575. name: "Preferred Size",
  26576. height: math.unit(0.5, "miles"),
  26577. default: true
  26578. },
  26579. {
  26580. name: "Giga Horse",
  26581. height: math.unit(300, "miles")
  26582. },
  26583. {
  26584. name: "Riding Planets",
  26585. height: math.unit(30, "megameters")
  26586. },
  26587. {
  26588. name: "Cosmic Giant",
  26589. height: math.unit(3, "zettameters")
  26590. },
  26591. {
  26592. name: "Breeding God",
  26593. height: math.unit(9.92e22, "yottameters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26599. {
  26600. side: {
  26601. height: math.unit(9, "feet"),
  26602. weight: math.unit(1500, "kg"),
  26603. name: "Side",
  26604. image: {
  26605. source: "./media/characters/fang/side.svg",
  26606. extra: 924 / 866,
  26607. bottom: 47.5 / 972.3
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(9, "feet"),
  26615. default: true
  26616. },
  26617. {
  26618. name: "Macro",
  26619. height: math.unit(75 + 6 / 12, "feet")
  26620. },
  26621. {
  26622. name: "Teramacro",
  26623. height: math.unit(50000, "miles")
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(10, "feet"),
  26632. weight: math.unit(2, "tons"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/rekhit/front.svg",
  26636. extra: 2796 / 2590,
  26637. bottom: 225 / 3022
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(10, "feet"),
  26645. default: true
  26646. },
  26647. {
  26648. name: "Macro",
  26649. height: math.unit(500, "feet")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(7 + 6.451 / 12, "feet"),
  26658. weight: math.unit(310, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/dahlia-verrick/front.svg",
  26662. extra: 1488 / 1365,
  26663. bottom: 6.2 / 1495
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(7 + 6.451 / 12, "feet"),
  26668. weight: math.unit(310, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/dahlia-verrick/back.svg",
  26672. extra: 1472 / 1351,
  26673. bottom: 5.28 / 1477
  26674. }
  26675. },
  26676. frontBusiness: {
  26677. height: math.unit(7 + 6.451 / 12, "feet"),
  26678. weight: math.unit(200, "lb"),
  26679. name: "Front (Business)",
  26680. image: {
  26681. source: "./media/characters/dahlia-verrick/front-business.svg",
  26682. extra: 1478 / 1381,
  26683. bottom: 5.5 / 1484
  26684. }
  26685. },
  26686. frontCasual: {
  26687. height: math.unit(7 + 6.451 / 12, "feet"),
  26688. weight: math.unit(200, "lb"),
  26689. name: "Front (Casual)",
  26690. image: {
  26691. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26692. extra: 1478 / 1381,
  26693. bottom: 5.5 / 1484
  26694. }
  26695. },
  26696. },
  26697. [
  26698. {
  26699. name: "Travel-Sized",
  26700. height: math.unit(7.45, "inches")
  26701. },
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(7 + 6.451 / 12, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Hitting the Town",
  26709. height: math.unit(37 + 8 / 12, "feet")
  26710. },
  26711. {
  26712. name: "Stomp in the Suburbs",
  26713. height: math.unit(964 + 9.728 / 12, "feet")
  26714. },
  26715. {
  26716. name: "Sit on the City",
  26717. height: math.unit(61747 + 10.592 / 12, "feet")
  26718. },
  26719. {
  26720. name: "Glomp the Globe",
  26721. height: math.unit(252919327 + 4.832 / 12, "feet")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6 + 4 / 12, "feet"),
  26730. weight: math.unit(320, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/balina-mahigan/front.svg",
  26734. extra: 447 / 428,
  26735. bottom: 18 / 466
  26736. }
  26737. },
  26738. back: {
  26739. height: math.unit(6 + 4 / 12, "feet"),
  26740. weight: math.unit(320, "lb"),
  26741. name: "Back",
  26742. image: {
  26743. source: "./media/characters/balina-mahigan/back.svg",
  26744. extra: 445 / 428,
  26745. bottom: 4.07 / 448
  26746. }
  26747. },
  26748. arm: {
  26749. height: math.unit(1.88, "feet"),
  26750. name: "Arm",
  26751. image: {
  26752. source: "./media/characters/balina-mahigan/arm.svg"
  26753. }
  26754. },
  26755. backPort: {
  26756. height: math.unit(0.685, "feet"),
  26757. name: "Back Port",
  26758. image: {
  26759. source: "./media/characters/balina-mahigan/back-port.svg"
  26760. }
  26761. },
  26762. hoofpaw: {
  26763. height: math.unit(1.41, "feet"),
  26764. name: "Hoofpaw",
  26765. image: {
  26766. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26767. }
  26768. },
  26769. leftHandBack: {
  26770. height: math.unit(0.938, "feet"),
  26771. name: "Left Hand (Back)",
  26772. image: {
  26773. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26774. }
  26775. },
  26776. leftHandFront: {
  26777. height: math.unit(0.938, "feet"),
  26778. name: "Left Hand (Front)",
  26779. image: {
  26780. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26781. }
  26782. },
  26783. rightHandBack: {
  26784. height: math.unit(0.95, "feet"),
  26785. name: "Right Hand (Back)",
  26786. image: {
  26787. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26788. }
  26789. },
  26790. rightHandFront: {
  26791. height: math.unit(0.95, "feet"),
  26792. name: "Right Hand (Front)",
  26793. image: {
  26794. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Normal",
  26801. height: math.unit(6 + 4 / 12, "feet"),
  26802. default: true
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(6, "feet"),
  26811. weight: math.unit(320, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/balina-mejeri/front.svg",
  26815. extra: 517 / 488,
  26816. bottom: 44.2 / 561
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(6 + 4 / 12, "feet")
  26824. },
  26825. {
  26826. name: "Business",
  26827. height: math.unit(155, "feet"),
  26828. default: true
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26834. {
  26835. kneeling: {
  26836. height: math.unit(6 + 4 / 12, "feet"),
  26837. weight: math.unit(300 * 20, "lb"),
  26838. name: "Kneeling",
  26839. image: {
  26840. source: "./media/characters/balbarian/kneeling.svg",
  26841. extra: 922 / 862,
  26842. bottom: 42.4 / 965
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(6 + 4 / 12, "feet")
  26850. },
  26851. {
  26852. name: "Treasured",
  26853. height: math.unit(18 + 9 / 12, "feet"),
  26854. default: true
  26855. },
  26856. {
  26857. name: "Macro",
  26858. height: math.unit(900, "feet")
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26864. {
  26865. front: {
  26866. height: math.unit(6 + 4 / 12, "feet"),
  26867. weight: math.unit(325, "lb"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/balina-amarini/front.svg",
  26871. extra: 415 / 403,
  26872. bottom: 19 / 433.4
  26873. }
  26874. },
  26875. back: {
  26876. height: math.unit(6 + 4 / 12, "feet"),
  26877. weight: math.unit(325, "lb"),
  26878. name: "Back",
  26879. image: {
  26880. source: "./media/characters/balina-amarini/back.svg",
  26881. extra: 415 / 403,
  26882. bottom: 13.5 / 432
  26883. }
  26884. },
  26885. overdrive: {
  26886. height: math.unit(6 + 4 / 12, "feet"),
  26887. weight: math.unit(400, "lb"),
  26888. name: "Overdrive",
  26889. image: {
  26890. source: "./media/characters/balina-amarini/overdrive.svg",
  26891. extra: 269 / 259,
  26892. bottom: 12 / 282
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Boom",
  26899. height: math.unit(9 + 10 / 12, "feet"),
  26900. default: true
  26901. },
  26902. {
  26903. name: "Macro",
  26904. height: math.unit(280, "feet")
  26905. },
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26910. {
  26911. goddess: {
  26912. height: math.unit(600, "feet"),
  26913. weight: math.unit(2000000, "tons"),
  26914. name: "Goddess",
  26915. image: {
  26916. source: "./media/characters/lady-kubwa/goddess.svg",
  26917. extra: 1240.5 / 1223,
  26918. bottom: 22 / 1263
  26919. }
  26920. },
  26921. goddesser: {
  26922. height: math.unit(900, "feet"),
  26923. weight: math.unit(20000000, "lb"),
  26924. name: "Goddess-er",
  26925. image: {
  26926. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26927. extra: 899 / 888,
  26928. bottom: 12.6 / 912
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Macro",
  26935. height: math.unit(600, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Megamacro",
  26940. height: math.unit(250, "miles")
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(7 + 7 / 12, "feet"),
  26949. weight: math.unit(250, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/tala-grovehorn/front.svg",
  26953. extra: 2636 / 2525,
  26954. bottom: 147 / 2781
  26955. }
  26956. },
  26957. back: {
  26958. height: math.unit(7 + 7 / 12, "feet"),
  26959. weight: math.unit(250, "lb"),
  26960. name: "Back",
  26961. image: {
  26962. source: "./media/characters/tala-grovehorn/back.svg",
  26963. extra: 2635 / 2539,
  26964. bottom: 100 / 2732.8
  26965. }
  26966. },
  26967. mouth: {
  26968. height: math.unit(1.15, "feet"),
  26969. name: "Mouth",
  26970. image: {
  26971. source: "./media/characters/tala-grovehorn/mouth.svg"
  26972. }
  26973. },
  26974. dick: {
  26975. height: math.unit(2.36, "feet"),
  26976. name: "Dick",
  26977. image: {
  26978. source: "./media/characters/tala-grovehorn/dick.svg"
  26979. }
  26980. },
  26981. slit: {
  26982. height: math.unit(0.61, "feet"),
  26983. name: "Slit",
  26984. image: {
  26985. source: "./media/characters/tala-grovehorn/slit.svg"
  26986. }
  26987. },
  26988. },
  26989. [
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26994. {
  26995. front: {
  26996. height: math.unit(7 + 7 / 12, "feet"),
  26997. weight: math.unit(225, "lb"),
  26998. name: "Front",
  26999. image: {
  27000. source: "./media/characters/epona/front.svg",
  27001. extra: 2445 / 2290,
  27002. bottom: 251 / 2696
  27003. }
  27004. },
  27005. back: {
  27006. height: math.unit(7 + 7 / 12, "feet"),
  27007. weight: math.unit(225, "lb"),
  27008. name: "Back",
  27009. image: {
  27010. source: "./media/characters/epona/back.svg",
  27011. extra: 2546 / 2408,
  27012. bottom: 44 / 2589
  27013. }
  27014. },
  27015. genitals: {
  27016. height: math.unit(1.5, "feet"),
  27017. name: "Genitals",
  27018. image: {
  27019. source: "./media/characters/epona/genitals.svg"
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(7 + 7 / 12, "feet"),
  27027. default: true
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(7, "feet"),
  27036. weight: math.unit(518, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/avia-bloodbourn/front.svg",
  27040. extra: 1466 / 1350,
  27041. bottom: 65 / 1527
  27042. }
  27043. },
  27044. },
  27045. [
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27050. {
  27051. front: {
  27052. height: math.unit(9.35, "feet"),
  27053. weight: math.unit(600, "lb"),
  27054. name: "Front",
  27055. image: {
  27056. source: "./media/characters/amera/front.svg",
  27057. extra: 891 / 818,
  27058. bottom: 30 / 922.7
  27059. }
  27060. },
  27061. back: {
  27062. height: math.unit(9.35, "feet"),
  27063. weight: math.unit(600, "lb"),
  27064. name: "Back",
  27065. image: {
  27066. source: "./media/characters/amera/back.svg",
  27067. extra: 876 / 824,
  27068. bottom: 6.8 / 884
  27069. }
  27070. },
  27071. dick: {
  27072. height: math.unit(2.14, "feet"),
  27073. name: "Dick",
  27074. image: {
  27075. source: "./media/characters/amera/dick.svg"
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Normal",
  27082. height: math.unit(9.35, "feet"),
  27083. default: true
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27089. {
  27090. kneeling: {
  27091. height: math.unit(3 + 4 / 12, "feet"),
  27092. weight: math.unit(90, "lb"),
  27093. name: "Kneeling",
  27094. image: {
  27095. source: "./media/characters/rosewen/kneeling.svg",
  27096. extra: 1835 / 1571,
  27097. bottom: 27.7 / 1862
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(3 + 4 / 12, "feet"),
  27105. default: true
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(5 + 10 / 12, "feet"),
  27114. weight: math.unit(200, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/sabah/front.svg",
  27118. extra: 849 / 763,
  27119. bottom: 33.9 / 881
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(5 + 10 / 12, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27133. {
  27134. front: {
  27135. height: math.unit(3 + 5 / 12, "feet"),
  27136. weight: math.unit(40, "kg"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/purple-flame/front.svg",
  27140. extra: 1577 / 1412,
  27141. bottom: 97 / 1694
  27142. }
  27143. },
  27144. frontDressed: {
  27145. height: math.unit(3 + 5 / 12, "feet"),
  27146. weight: math.unit(40, "kg"),
  27147. name: "Front (Dressed)",
  27148. image: {
  27149. source: "./media/characters/purple-flame/front-dressed.svg",
  27150. extra: 1577 / 1412,
  27151. bottom: 97 / 1694
  27152. }
  27153. },
  27154. headphones: {
  27155. height: math.unit(0.85, "feet"),
  27156. name: "Headphones",
  27157. image: {
  27158. source: "./media/characters/purple-flame/headphones.svg"
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Really Small",
  27165. height: math.unit(5, "cm")
  27166. },
  27167. {
  27168. name: "Micro",
  27169. height: math.unit(1 + 5 / 12, "feet")
  27170. },
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(3 + 5 / 12, "feet"),
  27174. default: true
  27175. },
  27176. {
  27177. name: "Minimacro",
  27178. height: math.unit(125, "feet")
  27179. },
  27180. {
  27181. name: "Macro",
  27182. height: math.unit(0.5, "miles")
  27183. },
  27184. {
  27185. name: "Megamacro",
  27186. height: math.unit(50, "miles")
  27187. },
  27188. {
  27189. name: "Gigantic",
  27190. height: math.unit(750, "miles")
  27191. },
  27192. {
  27193. name: "Planetary",
  27194. height: math.unit(15000, "miles")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(14, "feet"),
  27203. weight: math.unit(959, "lb"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/arsenal/front.svg",
  27207. extra: 2357 / 2157,
  27208. bottom: 93 / 2458
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(14, "feet"),
  27216. default: true
  27217. },
  27218. ]
  27219. ))
  27220. characterMakers.push(() => makeCharacter(
  27221. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27222. {
  27223. front: {
  27224. height: math.unit(6, "feet"),
  27225. weight: math.unit(150, "lb"),
  27226. name: "Front",
  27227. image: {
  27228. source: "./media/characters/adira/front.svg",
  27229. extra: 1078 / 1029,
  27230. bottom: 87 / 1166
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Micro",
  27237. height: math.unit(4, "inches"),
  27238. default: true
  27239. },
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(50, "feet")
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(16, "feet"),
  27251. weight: math.unit(1000, "lb"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/grim/front.svg",
  27255. extra: 622 / 614,
  27256. bottom: 18.1 / 642
  27257. }
  27258. },
  27259. back: {
  27260. height: math.unit(16, "feet"),
  27261. weight: math.unit(1000, "lb"),
  27262. name: "Back",
  27263. image: {
  27264. source: "./media/characters/grim/back.svg",
  27265. extra: 610.6 / 602,
  27266. bottom: 40.8 / 652
  27267. }
  27268. },
  27269. hunched: {
  27270. height: math.unit(9.75, "feet"),
  27271. weight: math.unit(1000, "lb"),
  27272. name: "Hunched",
  27273. image: {
  27274. source: "./media/characters/grim/hunched.svg",
  27275. extra: 304 / 297,
  27276. bottom: 35.4 / 394
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(16, "feet"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(2.3, "meters"),
  27293. weight: math.unit(300, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/sinja/front-sfw.svg",
  27297. extra: 1393 / 1294,
  27298. bottom: 70 / 1463
  27299. }
  27300. },
  27301. frontNsfw: {
  27302. height: math.unit(2.3, "meters"),
  27303. weight: math.unit(300, "lb"),
  27304. name: "Front (NSFW)",
  27305. image: {
  27306. source: "./media/characters/sinja/front-nsfw.svg",
  27307. extra: 1393 / 1294,
  27308. bottom: 70 / 1463
  27309. }
  27310. },
  27311. back: {
  27312. height: math.unit(2.3, "meters"),
  27313. weight: math.unit(300, "lb"),
  27314. name: "Back",
  27315. image: {
  27316. source: "./media/characters/sinja/back.svg",
  27317. extra: 1393 / 1294,
  27318. bottom: 70 / 1463
  27319. }
  27320. },
  27321. head: {
  27322. height: math.unit(1.771, "feet"),
  27323. name: "Head",
  27324. image: {
  27325. source: "./media/characters/sinja/head.svg"
  27326. }
  27327. },
  27328. slit: {
  27329. height: math.unit(0.8, "feet"),
  27330. name: "Slit",
  27331. image: {
  27332. source: "./media/characters/sinja/slit.svg"
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(2.3, "meters")
  27340. },
  27341. {
  27342. name: "Macro",
  27343. height: math.unit(91, "meters"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Megamacro",
  27348. height: math.unit(91440, "meters")
  27349. },
  27350. {
  27351. name: "Gigamacro",
  27352. height: math.unit(60960000, "meters")
  27353. },
  27354. {
  27355. name: "Teramacro",
  27356. height: math.unit(9144000000, "meters")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(1.7, "meters"),
  27365. weight: math.unit(130, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/kyu/front.svg",
  27369. extra: 415 / 395,
  27370. bottom: 5 / 420
  27371. }
  27372. },
  27373. head: {
  27374. height: math.unit(1.75, "feet"),
  27375. name: "Head",
  27376. image: {
  27377. source: "./media/characters/kyu/head.svg"
  27378. }
  27379. },
  27380. foot: {
  27381. height: math.unit(0.81, "feet"),
  27382. name: "Foot",
  27383. image: {
  27384. source: "./media/characters/kyu/foot.svg"
  27385. }
  27386. },
  27387. },
  27388. [
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(1.7, "meters")
  27392. },
  27393. {
  27394. name: "Macro",
  27395. height: math.unit(131, "feet"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Megamacro",
  27400. height: math.unit(91440, "meters")
  27401. },
  27402. {
  27403. name: "Gigamacro",
  27404. height: math.unit(60960000, "meters")
  27405. },
  27406. {
  27407. name: "Teramacro",
  27408. height: math.unit(9144000000, "meters")
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(7 + 1 / 12, "feet"),
  27417. weight: math.unit(250, "lb"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/joey/front.svg",
  27421. extra: 1791 / 1537,
  27422. bottom: 28 / 1816
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Micro",
  27429. height: math.unit(3, "inches")
  27430. },
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(7 + 1 / 12, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(165, "cm"),
  27443. weight: math.unit(140, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/sam-evans/front.svg",
  27447. extra: 3417 / 3230,
  27448. bottom: 41.3 / 3417
  27449. }
  27450. },
  27451. frontSixTails: {
  27452. height: math.unit(165, "cm"),
  27453. weight: math.unit(140, "lb"),
  27454. name: "Front-six-tails",
  27455. image: {
  27456. source: "./media/characters/sam-evans/front-six-tails.svg",
  27457. extra: 3417 / 3230,
  27458. bottom: 41.3 / 3417
  27459. }
  27460. },
  27461. back: {
  27462. height: math.unit(165, "cm"),
  27463. weight: math.unit(140, "lb"),
  27464. name: "Back",
  27465. image: {
  27466. source: "./media/characters/sam-evans/back.svg",
  27467. extra: 3227 / 3032,
  27468. bottom: 6.8 / 3234
  27469. }
  27470. },
  27471. face: {
  27472. height: math.unit(0.68, "feet"),
  27473. name: "Face",
  27474. image: {
  27475. source: "./media/characters/sam-evans/face.svg"
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Normal",
  27482. height: math.unit(165, "cm"),
  27483. default: true
  27484. },
  27485. {
  27486. name: "Macro",
  27487. height: math.unit(100, "meters")
  27488. },
  27489. {
  27490. name: "Macro+",
  27491. height: math.unit(800, "meters")
  27492. },
  27493. {
  27494. name: "Macro++",
  27495. height: math.unit(3, "km")
  27496. },
  27497. {
  27498. name: "Macro+++",
  27499. height: math.unit(30, "km")
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(10, "feet"),
  27508. weight: math.unit(750, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/juliet-a/front.svg",
  27512. extra: 1766 / 1720,
  27513. bottom: 43 / 1809
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(10, "feet"),
  27518. weight: math.unit(750, "lb"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/juliet-a/back.svg",
  27522. extra: 1781 / 1734,
  27523. bottom: 35 / 1810,
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Normal",
  27530. height: math.unit(10, "feet"),
  27531. default: true
  27532. },
  27533. {
  27534. name: "Dragon Form",
  27535. height: math.unit(250, "feet")
  27536. },
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(1000, "feet")
  27540. },
  27541. {
  27542. name: "Megamacro",
  27543. height: math.unit(10000, "feet")
  27544. }
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27549. {
  27550. regular: {
  27551. height: math.unit(7 + 3 / 12, "feet"),
  27552. weight: math.unit(260, "lb"),
  27553. name: "Regular",
  27554. image: {
  27555. source: "./media/characters/wild/regular.svg",
  27556. extra: 97.45 / 92,
  27557. bottom: 6.8 / 104.3
  27558. }
  27559. },
  27560. biggums: {
  27561. height: math.unit(8 + 6 / 12, "feet"),
  27562. weight: math.unit(425, "lb"),
  27563. name: "Biggums",
  27564. image: {
  27565. source: "./media/characters/wild/biggums.svg",
  27566. extra: 97.45 / 92,
  27567. bottom: 7.5 / 132.34
  27568. }
  27569. },
  27570. mawRegular: {
  27571. height: math.unit(1.24, "feet"),
  27572. name: "Maw (Regular)",
  27573. image: {
  27574. source: "./media/characters/wild/maw.svg"
  27575. }
  27576. },
  27577. mawBiggums: {
  27578. height: math.unit(1.47, "feet"),
  27579. name: "Maw (Biggums)",
  27580. image: {
  27581. source: "./media/characters/wild/maw.svg"
  27582. }
  27583. },
  27584. },
  27585. [
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(7 + 3 / 12, "feet"),
  27589. default: true
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27595. {
  27596. front: {
  27597. height: math.unit(2.5, "meters"),
  27598. weight: math.unit(200, "kg"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/vidar/front.svg",
  27602. extra: 2994 / 2795,
  27603. bottom: 56 / 3061
  27604. }
  27605. },
  27606. back: {
  27607. height: math.unit(2.5, "meters"),
  27608. weight: math.unit(200, "kg"),
  27609. name: "Back",
  27610. image: {
  27611. source: "./media/characters/vidar/back.svg",
  27612. extra: 3131 / 2928,
  27613. bottom: 13.5 / 3141.5
  27614. }
  27615. },
  27616. feral: {
  27617. height: math.unit(2.5, "meters"),
  27618. weight: math.unit(2000, "kg"),
  27619. name: "Feral",
  27620. image: {
  27621. source: "./media/characters/vidar/feral.svg",
  27622. extra: 2790 / 1765,
  27623. bottom: 6 / 2796
  27624. }
  27625. },
  27626. },
  27627. [
  27628. {
  27629. name: "Normal",
  27630. height: math.unit(2.5, "meters"),
  27631. default: true
  27632. },
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(100, "meters")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(5 + 9 / 12, "feet"),
  27644. weight: math.unit(120, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/ash/front.svg",
  27648. extra: 2189 / 1961,
  27649. bottom: 5.2 / 2194
  27650. }
  27651. },
  27652. },
  27653. [
  27654. {
  27655. name: "Normal",
  27656. height: math.unit(5 + 9 / 12, "feet"),
  27657. default: true
  27658. },
  27659. ]
  27660. ))
  27661. characterMakers.push(() => makeCharacter(
  27662. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27663. {
  27664. front: {
  27665. height: math.unit(9, "feet"),
  27666. weight: math.unit(10000, "lb"),
  27667. name: "Front",
  27668. image: {
  27669. source: "./media/characters/gygabite/front.svg",
  27670. bottom: 31.7 / 537.8,
  27671. extra: 505 / 370
  27672. }
  27673. },
  27674. },
  27675. [
  27676. {
  27677. name: "Normal",
  27678. height: math.unit(9, "feet"),
  27679. default: true
  27680. },
  27681. ]
  27682. ))
  27683. characterMakers.push(() => makeCharacter(
  27684. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27685. {
  27686. front: {
  27687. height: math.unit(12, "feet"),
  27688. weight: math.unit(35000, "lb"),
  27689. name: "Front",
  27690. image: {
  27691. source: "./media/characters/p0tat0/front.svg",
  27692. extra: 1065 / 921,
  27693. bottom: 55.7 / 1121.25
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(12, "feet"),
  27701. default: true
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27707. {
  27708. side: {
  27709. height: math.unit(6.5, "feet"),
  27710. weight: math.unit(800, "lb"),
  27711. name: "Side",
  27712. image: {
  27713. source: "./media/characters/dusk/side.svg",
  27714. extra: 615 / 373,
  27715. bottom: 53 / 664
  27716. }
  27717. },
  27718. sitting: {
  27719. height: math.unit(7, "feet"),
  27720. weight: math.unit(800, "lb"),
  27721. name: "Sitting",
  27722. image: {
  27723. source: "./media/characters/dusk/sitting.svg",
  27724. extra: 753 / 425,
  27725. bottom: 33 / 774
  27726. }
  27727. },
  27728. head: {
  27729. height: math.unit(6.1, "feet"),
  27730. name: "Head",
  27731. image: {
  27732. source: "./media/characters/dusk/head.svg"
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Normal",
  27739. height: math.unit(7, "feet"),
  27740. default: true
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(15, "feet"),
  27749. weight: math.unit(7000, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/jay-direwolf/front.svg",
  27753. extra: 1810 / 1732,
  27754. bottom: 66 / 1892
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(15, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(4 + 9 / 12, "feet"),
  27771. weight: math.unit(130, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/anchovie/front.svg",
  27775. extra: 382 / 350,
  27776. bottom: 25 / 409
  27777. }
  27778. },
  27779. back: {
  27780. height: math.unit(4 + 9 / 12, "feet"),
  27781. weight: math.unit(130, "lb"),
  27782. name: "Back",
  27783. image: {
  27784. source: "./media/characters/anchovie/back.svg",
  27785. extra: 385 / 352,
  27786. bottom: 16.6 / 402
  27787. }
  27788. },
  27789. frontDressed: {
  27790. height: math.unit(4 + 9 / 12, "feet"),
  27791. weight: math.unit(130, "lb"),
  27792. name: "Front (Dressed)",
  27793. image: {
  27794. source: "./media/characters/anchovie/front-dressed.svg",
  27795. extra: 382 / 350,
  27796. bottom: 25 / 409
  27797. }
  27798. },
  27799. backDressed: {
  27800. height: math.unit(4 + 9 / 12, "feet"),
  27801. weight: math.unit(130, "lb"),
  27802. name: "Back (Dressed)",
  27803. image: {
  27804. source: "./media/characters/anchovie/back-dressed.svg",
  27805. extra: 385 / 352,
  27806. bottom: 16.6 / 402
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Micro",
  27813. height: math.unit(6.4, "inches")
  27814. },
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(4 + 9 / 12, "feet"),
  27818. default: true
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(2, "meters"),
  27827. weight: math.unit(180, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/acidrenamon/front.svg",
  27831. extra: 987 / 890,
  27832. bottom: 22.8 / 1009
  27833. }
  27834. },
  27835. back: {
  27836. height: math.unit(2, "meters"),
  27837. weight: math.unit(180, "lb"),
  27838. name: "Back",
  27839. image: {
  27840. source: "./media/characters/acidrenamon/back.svg",
  27841. extra: 983 / 891,
  27842. bottom: 8.4 / 992
  27843. }
  27844. },
  27845. head: {
  27846. height: math.unit(1.92, "feet"),
  27847. name: "Head",
  27848. image: {
  27849. source: "./media/characters/acidrenamon/head.svg"
  27850. }
  27851. },
  27852. rump: {
  27853. height: math.unit(1.72, "feet"),
  27854. name: "Rump",
  27855. image: {
  27856. source: "./media/characters/acidrenamon/rump.svg"
  27857. }
  27858. },
  27859. tail: {
  27860. height: math.unit(4.2, "feet"),
  27861. name: "Tail",
  27862. image: {
  27863. source: "./media/characters/acidrenamon/tail.svg"
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(2, "meters"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Minimacro",
  27875. height: math.unit(7, "meters")
  27876. },
  27877. {
  27878. name: "Macro",
  27879. height: math.unit(200, "meters")
  27880. },
  27881. {
  27882. name: "Gigamacro",
  27883. height: math.unit(0.2, "earths")
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(152, "feet"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/kenzie-lee/front.svg",
  27895. extra: 1869/1774,
  27896. bottom: 128/1997
  27897. }
  27898. },
  27899. side: {
  27900. height: math.unit(86, "feet"),
  27901. name: "Side",
  27902. image: {
  27903. source: "./media/characters/kenzie-lee/side.svg",
  27904. extra: 930/815,
  27905. bottom: 177/1107
  27906. }
  27907. },
  27908. paw: {
  27909. height: math.unit(15, "feet"),
  27910. name: "Paw",
  27911. image: {
  27912. source: "./media/characters/kenzie-lee/paw.svg"
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Micro",
  27919. height: math.unit(1.5, "inches")
  27920. },
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(152, "feet"),
  27924. default: true
  27925. },
  27926. {
  27927. name: "Megamacro",
  27928. height: math.unit(7, "miles")
  27929. },
  27930. {
  27931. name: "Gigamacro",
  27932. height: math.unit(8000, "miles")
  27933. },
  27934. ]
  27935. ))
  27936. characterMakers.push(() => makeCharacter(
  27937. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27938. {
  27939. side: {
  27940. height: math.unit(6, "feet"),
  27941. weight: math.unit(150, "lb"),
  27942. name: "Side",
  27943. image: {
  27944. source: "./media/characters/withers/side.svg",
  27945. extra: 1830 / 1728,
  27946. bottom: 96 / 1927
  27947. }
  27948. },
  27949. front: {
  27950. height: math.unit(6, "feet"),
  27951. weight: math.unit(150, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/withers/front.svg",
  27955. extra: 1514 / 1438,
  27956. bottom: 118 / 1632
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(168, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Megamacro",
  27968. height: math.unit(15, "miles")
  27969. }
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(6 + 7 / 12, "feet"),
  27977. weight: math.unit(250, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/nemoskii/front.svg",
  27981. extra: 2270 / 1734,
  27982. bottom: 86 / 2354
  27983. }
  27984. },
  27985. back: {
  27986. height: math.unit(6 + 7 / 12, "feet"),
  27987. weight: math.unit(250, "lb"),
  27988. name: "Back",
  27989. image: {
  27990. source: "./media/characters/nemoskii/back.svg",
  27991. extra: 1845 / 1788,
  27992. bottom: 10.5 / 1852
  27993. }
  27994. },
  27995. head: {
  27996. height: math.unit(1.31, "feet"),
  27997. name: "Head",
  27998. image: {
  27999. source: "./media/characters/nemoskii/head.svg"
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Micro",
  28006. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28007. },
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(6 + 7 / 12, "feet"),
  28011. default: true
  28012. },
  28013. {
  28014. name: "Macro",
  28015. height: math.unit((6 + 7 / 12) * 150, "feet")
  28016. },
  28017. {
  28018. name: "Macro+",
  28019. height: math.unit((6 + 7 / 12) * 500, "feet")
  28020. },
  28021. {
  28022. name: "Megamacro",
  28023. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28029. {
  28030. front: {
  28031. height: math.unit(1, "mile"),
  28032. weight: math.unit(265261.9, "lb"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/shui/front.svg",
  28036. extra: 1633 / 1564,
  28037. bottom: 91.5 / 1726
  28038. }
  28039. },
  28040. },
  28041. [
  28042. {
  28043. name: "Macro",
  28044. height: math.unit(1, "mile"),
  28045. default: true
  28046. },
  28047. ]
  28048. ))
  28049. characterMakers.push(() => makeCharacter(
  28050. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28051. {
  28052. front: {
  28053. height: math.unit(12 + 6 / 12, "feet"),
  28054. weight: math.unit(1342, "lb"),
  28055. name: "Front",
  28056. image: {
  28057. source: "./media/characters/arokh-takakura/front.svg",
  28058. extra: 1089 / 1043,
  28059. bottom: 77.4 / 1176.7
  28060. }
  28061. },
  28062. back: {
  28063. height: math.unit(12 + 6 / 12, "feet"),
  28064. weight: math.unit(1342, "lb"),
  28065. name: "Back",
  28066. image: {
  28067. source: "./media/characters/arokh-takakura/back.svg",
  28068. extra: 1046 / 1019,
  28069. bottom: 102 / 1150
  28070. }
  28071. },
  28072. },
  28073. [
  28074. {
  28075. name: "Big",
  28076. height: math.unit(12 + 6 / 12, "feet"),
  28077. default: true
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28083. {
  28084. front: {
  28085. height: math.unit(5 + 6 / 12, "feet"),
  28086. weight: math.unit(150, "lb"),
  28087. name: "Front",
  28088. image: {
  28089. source: "./media/characters/theo/front.svg",
  28090. extra: 1184 / 1131,
  28091. bottom: 7.4 / 1191
  28092. }
  28093. },
  28094. },
  28095. [
  28096. {
  28097. name: "Micro",
  28098. height: math.unit(5, "inches")
  28099. },
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(5 + 6 / 12, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(5 + 9 / 12, "feet"),
  28112. weight: math.unit(130, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/cecelia-swift/front.svg",
  28116. extra: 502 / 484,
  28117. bottom: 23 / 523
  28118. }
  28119. },
  28120. back: {
  28121. height: math.unit(5 + 9 / 12, "feet"),
  28122. weight: math.unit(130, "lb"),
  28123. name: "Back",
  28124. image: {
  28125. source: "./media/characters/cecelia-swift/back.svg",
  28126. extra: 499 / 485,
  28127. bottom: 12 / 511
  28128. }
  28129. },
  28130. head: {
  28131. height: math.unit(0.90, "feet"),
  28132. name: "Head",
  28133. image: {
  28134. source: "./media/characters/cecelia-swift/head.svg"
  28135. }
  28136. },
  28137. rump: {
  28138. height: math.unit(1.75, "feet"),
  28139. name: "Rump",
  28140. image: {
  28141. source: "./media/characters/cecelia-swift/rump.svg"
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Normal",
  28148. height: math.unit(5 + 9 / 12, "feet"),
  28149. default: true
  28150. },
  28151. {
  28152. name: "Big",
  28153. height: math.unit(50, "feet")
  28154. },
  28155. {
  28156. name: "Macro",
  28157. height: math.unit(100, "feet")
  28158. },
  28159. {
  28160. name: "Macro+",
  28161. height: math.unit(500, "feet")
  28162. },
  28163. {
  28164. name: "Macro++",
  28165. height: math.unit(1000, "feet")
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28171. {
  28172. front: {
  28173. height: math.unit(6, "feet"),
  28174. weight: math.unit(150, "lb"),
  28175. name: "Front",
  28176. image: {
  28177. source: "./media/characters/kaunan/front.svg",
  28178. extra: 2890 / 2523,
  28179. bottom: 49 / 2939
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Macro",
  28186. height: math.unit(150, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(175, "cm"),
  28196. weight: math.unit(60, "kg"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/fei/front.svg",
  28200. extra: 1873/1723,
  28201. bottom: 53/1926
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Mortal",
  28208. height: math.unit(175, "cm")
  28209. },
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(3500, "m"),
  28213. default: true
  28214. },
  28215. {
  28216. name: "Stroll",
  28217. height: math.unit(17.5, "km")
  28218. },
  28219. {
  28220. name: "Showoff",
  28221. height: math.unit(175, "km")
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28227. {
  28228. front: {
  28229. height: math.unit(7, "feet"),
  28230. weight: math.unit(1000, "kg"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/edrax/front.svg",
  28234. extra: 2838 / 2550,
  28235. bottom: 130 / 2968
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Small",
  28242. height: math.unit(7, "feet")
  28243. },
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(1500, "meters")
  28247. },
  28248. {
  28249. name: "Mega",
  28250. height: math.unit(12000000, "km"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Megamacro",
  28255. height: math.unit(10600000, "lightyears")
  28256. },
  28257. {
  28258. name: "Hypermacro",
  28259. height: math.unit(256, "yottameters")
  28260. },
  28261. ]
  28262. ))
  28263. characterMakers.push(() => makeCharacter(
  28264. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28265. {
  28266. front: {
  28267. height: math.unit(10, "feet"),
  28268. weight: math.unit(750, "lb"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/clove/front.svg",
  28272. extra: 1918/1751,
  28273. bottom: 52/1970
  28274. }
  28275. },
  28276. back: {
  28277. height: math.unit(10, "feet"),
  28278. weight: math.unit(750, "lb"),
  28279. name: "Back",
  28280. image: {
  28281. source: "./media/characters/clove/back.svg",
  28282. extra: 1912/1747,
  28283. bottom: 50/1962
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(10, "feet"),
  28291. default: true
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(4, "feet"),
  28300. weight: math.unit(50, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/alex-rabbit/front.svg",
  28304. extra: 507 / 458,
  28305. bottom: 18.5 / 527
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(4, "feet"),
  28310. weight: math.unit(50, "lb"),
  28311. name: "Back",
  28312. image: {
  28313. source: "./media/characters/alex-rabbit/back.svg",
  28314. extra: 502 / 460,
  28315. bottom: 18.9 / 521
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Normal",
  28322. height: math.unit(4, "feet"),
  28323. default: true
  28324. },
  28325. ]
  28326. ))
  28327. characterMakers.push(() => makeCharacter(
  28328. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28329. {
  28330. front: {
  28331. height: math.unit(1 + 3 / 12, "feet"),
  28332. weight: math.unit(80, "lb"),
  28333. name: "Front",
  28334. image: {
  28335. source: "./media/characters/zander-rose/front.svg",
  28336. extra: 916 / 797,
  28337. bottom: 17 / 933
  28338. }
  28339. },
  28340. back: {
  28341. height: math.unit(1 + 3 / 12, "feet"),
  28342. weight: math.unit(80, "lb"),
  28343. name: "Back",
  28344. image: {
  28345. source: "./media/characters/zander-rose/back.svg",
  28346. extra: 903 / 779,
  28347. bottom: 31 / 934
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(1 + 3 / 12, "feet"),
  28355. default: true
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28361. {
  28362. anthro: {
  28363. height: math.unit(6, "feet"),
  28364. weight: math.unit(150, "lb"),
  28365. name: "Anthro",
  28366. image: {
  28367. source: "./media/characters/razz/anthro.svg",
  28368. extra: 1437 / 1343,
  28369. bottom: 48 / 1485
  28370. }
  28371. },
  28372. feral: {
  28373. height: math.unit(6, "feet"),
  28374. weight: math.unit(150, "lb"),
  28375. name: "Feral",
  28376. image: {
  28377. source: "./media/characters/razz/feral.svg",
  28378. extra: 2569 / 1385,
  28379. bottom: 95 / 2664
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(6, "feet"),
  28387. default: true
  28388. },
  28389. ]
  28390. ))
  28391. characterMakers.push(() => makeCharacter(
  28392. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28393. {
  28394. front: {
  28395. height: math.unit(9 + 4 / 12, "feet"),
  28396. weight: math.unit(500, "lb"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/morrigan/front.svg",
  28400. extra: 2707 / 2579,
  28401. bottom: 156 / 2863
  28402. }
  28403. },
  28404. },
  28405. [
  28406. {
  28407. name: "Normal",
  28408. height: math.unit(9 + 4 / 12, "feet"),
  28409. default: true
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(5, "stories"),
  28418. weight: math.unit(4000, "lb"),
  28419. name: "Front",
  28420. image: {
  28421. source: "./media/characters/jenene/front.svg",
  28422. extra: 1780 / 1710,
  28423. bottom: 57 / 1837
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(5, "stories"),
  28431. default: true
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28437. {
  28438. taurSfw: {
  28439. height: math.unit(10, "meters"),
  28440. weight: math.unit(17500, "kg"),
  28441. name: "Taur",
  28442. image: {
  28443. source: "./media/characters/faey/taur-sfw.svg",
  28444. extra: 1200 / 968,
  28445. bottom: 41 / 1241
  28446. }
  28447. },
  28448. chestmaw: {
  28449. height: math.unit(2.01, "meters"),
  28450. name: "Chestmaw",
  28451. image: {
  28452. source: "./media/characters/faey/chestmaw.svg"
  28453. }
  28454. },
  28455. foot: {
  28456. height: math.unit(2.43, "meters"),
  28457. name: "Foot",
  28458. image: {
  28459. source: "./media/characters/faey/foot.svg"
  28460. }
  28461. },
  28462. jaws: {
  28463. height: math.unit(1.66, "meters"),
  28464. name: "Jaws",
  28465. image: {
  28466. source: "./media/characters/faey/jaws.svg"
  28467. }
  28468. },
  28469. tongues: {
  28470. height: math.unit(2.01, "meters"),
  28471. name: "Tongues",
  28472. image: {
  28473. source: "./media/characters/faey/tongues.svg"
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Small",
  28480. height: math.unit(10, "meters"),
  28481. default: true
  28482. },
  28483. {
  28484. name: "Big",
  28485. height: math.unit(500000, "km")
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(7, "feet"),
  28494. weight: math.unit(275, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/roku/front.svg",
  28498. extra: 903 / 878,
  28499. bottom: 37 / 940
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Normal",
  28506. height: math.unit(7, "feet"),
  28507. default: true
  28508. },
  28509. {
  28510. name: "Macro",
  28511. height: math.unit(500, "feet")
  28512. },
  28513. {
  28514. name: "Megamacro",
  28515. height: math.unit(200, "miles")
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(6 + 2 / 12, "feet"),
  28524. weight: math.unit(150, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/lira/front.svg",
  28528. extra: 1727 / 1605,
  28529. bottom: 26 / 1753
  28530. }
  28531. },
  28532. back: {
  28533. height: math.unit(6 + 2 / 12, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Back",
  28536. image: {
  28537. source: "./media/characters/lira/back.svg",
  28538. extra: 1713/1621,
  28539. bottom: 20/1733
  28540. }
  28541. },
  28542. hand: {
  28543. height: math.unit(0.75, "feet"),
  28544. name: "Hand",
  28545. image: {
  28546. source: "./media/characters/lira/hand.svg"
  28547. }
  28548. },
  28549. maw: {
  28550. height: math.unit(0.65, "feet"),
  28551. name: "Maw",
  28552. image: {
  28553. source: "./media/characters/lira/maw.svg"
  28554. }
  28555. },
  28556. pawDigi: {
  28557. height: math.unit(1.6, "feet"),
  28558. name: "Paw Digi",
  28559. image: {
  28560. source: "./media/characters/lira/paw-digi.svg"
  28561. }
  28562. },
  28563. pawPlanti: {
  28564. height: math.unit(1.4, "feet"),
  28565. name: "Paw Planti",
  28566. image: {
  28567. source: "./media/characters/lira/paw-planti.svg"
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(6 + 2 / 12, "feet"),
  28575. default: true
  28576. },
  28577. {
  28578. name: "Macro",
  28579. height: math.unit(100, "feet")
  28580. },
  28581. {
  28582. name: "Macro²",
  28583. height: math.unit(1600, "feet")
  28584. },
  28585. {
  28586. name: "Planetary",
  28587. height: math.unit(20, "earths")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(6, "feet"),
  28596. weight: math.unit(150, "lb"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/hadjet/front.svg",
  28600. extra: 1480 / 1346,
  28601. bottom: 26 / 1506
  28602. }
  28603. },
  28604. frontNsfw: {
  28605. height: math.unit(6, "feet"),
  28606. weight: math.unit(150, "lb"),
  28607. name: "Front (NSFW)",
  28608. image: {
  28609. source: "./media/characters/hadjet/front-nsfw.svg",
  28610. extra: 1440 / 1358,
  28611. bottom: 52 / 1492
  28612. }
  28613. },
  28614. },
  28615. [
  28616. {
  28617. name: "Macro",
  28618. height: math.unit(10, "stories"),
  28619. default: true
  28620. },
  28621. {
  28622. name: "Megamacro",
  28623. height: math.unit(1.5, "miles")
  28624. },
  28625. {
  28626. name: "Megamacro+",
  28627. height: math.unit(5, "miles")
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28633. {
  28634. side: {
  28635. height: math.unit(106, "feet"),
  28636. weight: math.unit(500, "tonnes"),
  28637. name: "Side",
  28638. image: {
  28639. source: "./media/characters/kodran/side.svg",
  28640. extra: 553 / 480,
  28641. bottom: 33 / 586
  28642. }
  28643. },
  28644. front: {
  28645. height: math.unit(132, "feet"),
  28646. weight: math.unit(500, "tonnes"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/kodran/front.svg",
  28650. extra: 667 / 643,
  28651. bottom: 42 / 709
  28652. }
  28653. },
  28654. flying: {
  28655. height: math.unit(350, "feet"),
  28656. weight: math.unit(500, "tonnes"),
  28657. name: "Flying",
  28658. image: {
  28659. source: "./media/characters/kodran/flying.svg"
  28660. }
  28661. },
  28662. foot: {
  28663. height: math.unit(33, "feet"),
  28664. name: "Foot",
  28665. image: {
  28666. source: "./media/characters/kodran/foot.svg"
  28667. }
  28668. },
  28669. footFront: {
  28670. height: math.unit(19, "feet"),
  28671. name: "Foot (Front)",
  28672. image: {
  28673. source: "./media/characters/kodran/foot-front.svg",
  28674. extra: 261 / 261,
  28675. bottom: 91 / 352
  28676. }
  28677. },
  28678. headFront: {
  28679. height: math.unit(53, "feet"),
  28680. name: "Head (Front)",
  28681. image: {
  28682. source: "./media/characters/kodran/head-front.svg"
  28683. }
  28684. },
  28685. headSide: {
  28686. height: math.unit(65, "feet"),
  28687. name: "Head (Side)",
  28688. image: {
  28689. source: "./media/characters/kodran/head-side.svg"
  28690. }
  28691. },
  28692. throat: {
  28693. height: math.unit(79, "feet"),
  28694. name: "Throat",
  28695. image: {
  28696. source: "./media/characters/kodran/throat.svg"
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Large",
  28703. height: math.unit(106, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28710. {
  28711. side: {
  28712. height: math.unit(11, "feet"),
  28713. weight: math.unit(150, "lb"),
  28714. name: "Side",
  28715. image: {
  28716. source: "./media/characters/pyxaron/side.svg",
  28717. extra: 305 / 195,
  28718. bottom: 17 / 322
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(11, "feet"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(6, "feet"),
  28735. weight: math.unit(150, "lb"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/meep/front.svg",
  28739. extra: 88 / 80,
  28740. bottom: 6 / 94
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Fun Sized",
  28747. height: math.unit(2, "inches"),
  28748. default: true
  28749. },
  28750. {
  28751. name: "Friend Sized",
  28752. height: math.unit(8, "inches")
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(15, "feet"),
  28761. weight: math.unit(2500, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/holly-rabbit/front.svg",
  28765. extra: 1433 / 1233,
  28766. bottom: 125 / 1558
  28767. }
  28768. },
  28769. dick: {
  28770. height: math.unit(4.6, "feet"),
  28771. name: "Dick",
  28772. image: {
  28773. source: "./media/characters/holly-rabbit/dick.svg"
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(15, "feet"),
  28781. default: true
  28782. },
  28783. {
  28784. name: "Macro",
  28785. height: math.unit(250, "feet")
  28786. },
  28787. {
  28788. name: "Macro+",
  28789. height: math.unit(2500, "feet")
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(3.02, "meters"),
  28798. weight: math.unit(500, "kg"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/drena/front.svg",
  28802. extra: 282 / 243,
  28803. bottom: 8 / 290
  28804. }
  28805. },
  28806. side: {
  28807. height: math.unit(3.02, "meters"),
  28808. weight: math.unit(500, "kg"),
  28809. name: "Side",
  28810. image: {
  28811. source: "./media/characters/drena/side.svg",
  28812. extra: 280 / 245,
  28813. bottom: 10 / 290
  28814. }
  28815. },
  28816. back: {
  28817. height: math.unit(3.02, "meters"),
  28818. weight: math.unit(500, "kg"),
  28819. name: "Back",
  28820. image: {
  28821. source: "./media/characters/drena/back.svg",
  28822. extra: 278 / 243,
  28823. bottom: 2 / 280
  28824. }
  28825. },
  28826. foot: {
  28827. height: math.unit(0.75, "meters"),
  28828. name: "Foot",
  28829. image: {
  28830. source: "./media/characters/drena/foot.svg"
  28831. }
  28832. },
  28833. maw: {
  28834. height: math.unit(0.82, "meters"),
  28835. name: "Maw",
  28836. image: {
  28837. source: "./media/characters/drena/maw.svg"
  28838. }
  28839. },
  28840. rump: {
  28841. height: math.unit(0.93, "meters"),
  28842. name: "Rump",
  28843. image: {
  28844. source: "./media/characters/drena/rump.svg"
  28845. }
  28846. },
  28847. },
  28848. [
  28849. {
  28850. name: "Normal",
  28851. height: math.unit(3.02, "meters"),
  28852. default: true
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(6 + 4 / 12, "feet"),
  28861. weight: math.unit(250, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/remmyzilla/front.svg",
  28865. extra: 4033 / 3588,
  28866. bottom: 123 / 4156
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(6 + 4 / 12, "feet"),
  28871. weight: math.unit(250, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/remmyzilla/back.svg",
  28875. extra: 2687 / 2555,
  28876. bottom: 48 / 2735
  28877. }
  28878. },
  28879. paw: {
  28880. height: math.unit(1.73, "feet"),
  28881. name: "Paw",
  28882. image: {
  28883. source: "./media/characters/remmyzilla/paw.svg"
  28884. }
  28885. },
  28886. maw: {
  28887. height: math.unit(1.73, "feet"),
  28888. name: "Maw",
  28889. image: {
  28890. source: "./media/characters/remmyzilla/maw.svg"
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(6 + 4 / 12, "feet")
  28898. },
  28899. {
  28900. name: "Minimacro",
  28901. height: math.unit(12 + 8 / 12, "feet")
  28902. },
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(640, "feet"),
  28906. default: true
  28907. },
  28908. {
  28909. name: "Megamacro",
  28910. height: math.unit(6400, "feet")
  28911. },
  28912. {
  28913. name: "Gigamacro",
  28914. height: math.unit(64000, "miles")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(2.5, "meters"),
  28923. weight: math.unit(300, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/lawrence/front.svg",
  28927. extra: 357 / 335,
  28928. bottom: 30 / 387
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(2.5, "meters"),
  28933. weight: math.unit(300, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/lawrence/back.svg",
  28937. extra: 357 / 338,
  28938. bottom: 16 / 373
  28939. }
  28940. },
  28941. head: {
  28942. height: math.unit(0.9, "meter"),
  28943. name: "Head",
  28944. image: {
  28945. source: "./media/characters/lawrence/head.svg"
  28946. }
  28947. },
  28948. maw: {
  28949. height: math.unit(0.7, "meter"),
  28950. name: "Maw",
  28951. image: {
  28952. source: "./media/characters/lawrence/maw.svg"
  28953. }
  28954. },
  28955. footBottom: {
  28956. height: math.unit(0.5, "meter"),
  28957. name: "Foot (Bottom)",
  28958. image: {
  28959. source: "./media/characters/lawrence/foot-bottom.svg"
  28960. }
  28961. },
  28962. footTop: {
  28963. height: math.unit(0.5, "meter"),
  28964. name: "Foot (Top)",
  28965. image: {
  28966. source: "./media/characters/lawrence/foot-top.svg"
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(2.5, "meters"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Macro",
  28978. height: math.unit(95, "meters")
  28979. },
  28980. {
  28981. name: "Megamacro",
  28982. height: math.unit(150, "km")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28988. {
  28989. front: {
  28990. height: math.unit(4.2, "meters"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/sydney/front.svg",
  28994. extra: 1323 / 1277,
  28995. bottom: 111 / 1434
  28996. }
  28997. },
  28998. },
  28999. [
  29000. {
  29001. name: "Normal",
  29002. height: math.unit(4.2, "meters"),
  29003. default: true
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29009. {
  29010. back: {
  29011. height: math.unit(201, "feet"),
  29012. name: "Back",
  29013. image: {
  29014. source: "./media/characters/jessica/back.svg",
  29015. extra: 273 / 259,
  29016. bottom: 7 / 280
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(201, "feet"),
  29024. default: true
  29025. },
  29026. {
  29027. name: "Megamacro",
  29028. height: math.unit(8, "miles")
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29034. {
  29035. side: {
  29036. height: math.unit(5.6, "m"),
  29037. weight: math.unit(8000, "kg"),
  29038. name: "Side",
  29039. image: {
  29040. source: "./media/characters/victoria/side.svg",
  29041. extra: 1542/1229,
  29042. bottom: 124/1666
  29043. }
  29044. },
  29045. maw: {
  29046. height: math.unit(7.14, "feet"),
  29047. name: "Maw",
  29048. image: {
  29049. source: "./media/characters/victoria/maw.svg"
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Normal",
  29056. height: math.unit(5.6, "m"),
  29057. default: true
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29063. {
  29064. front: {
  29065. height: math.unit(5 + 6 / 12, "feet"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/cat/front.svg",
  29069. extra: 1449/1295,
  29070. bottom: 34/1483
  29071. },
  29072. form: "cat",
  29073. default: true
  29074. },
  29075. back: {
  29076. height: math.unit(5 + 6 / 12, "feet"),
  29077. name: "Back",
  29078. image: {
  29079. source: "./media/characters/cat/back.svg",
  29080. extra: 1466/1301,
  29081. bottom: 19/1485
  29082. },
  29083. form: "cat"
  29084. },
  29085. taur: {
  29086. height: math.unit(7, "feet"),
  29087. name: "Taur",
  29088. image: {
  29089. source: "./media/characters/cat/taur.svg",
  29090. extra: 1389/1233,
  29091. bottom: 83/1472
  29092. },
  29093. form: "taur",
  29094. default: true
  29095. },
  29096. lucarioFront: {
  29097. height: math.unit(4, "feet"),
  29098. name: "Lucario (Front)",
  29099. image: {
  29100. source: "./media/characters/cat/lucario-front.svg",
  29101. extra: 1149/1019,
  29102. bottom: 84/1233
  29103. },
  29104. form: "lucario",
  29105. default: true
  29106. },
  29107. lucarioBack: {
  29108. height: math.unit(4, "feet"),
  29109. name: "Lucario (Back)",
  29110. image: {
  29111. source: "./media/characters/cat/lucario-back.svg",
  29112. extra: 1190/1059,
  29113. bottom: 33/1223
  29114. },
  29115. form: "lucario"
  29116. },
  29117. megaLucario: {
  29118. height: math.unit(4, "feet"),
  29119. name: "Mega Lucario",
  29120. image: {
  29121. source: "./media/characters/cat/mega-lucario.svg",
  29122. extra: 1515 / 1319,
  29123. bottom: 63 / 1578
  29124. },
  29125. form: "lucario"
  29126. },
  29127. nickit: {
  29128. height: math.unit(2, "feet"),
  29129. name: "Nickit",
  29130. image: {
  29131. source: "./media/characters/cat/nickit.svg",
  29132. extra: 1980 / 1585,
  29133. bottom: 102 / 2082
  29134. },
  29135. form: "nickit",
  29136. default: true
  29137. },
  29138. lopunnyFront: {
  29139. height: math.unit(5, "feet"),
  29140. name: "Lopunny (Front)",
  29141. image: {
  29142. source: "./media/characters/cat/lopunny-front.svg",
  29143. extra: 1782 / 1469,
  29144. bottom: 38 / 1820
  29145. },
  29146. form: "lopunny",
  29147. default: true
  29148. },
  29149. lopunnyBack: {
  29150. height: math.unit(5, "feet"),
  29151. name: "Lopunny (Back)",
  29152. image: {
  29153. source: "./media/characters/cat/lopunny-back.svg",
  29154. extra: 1660 / 1490,
  29155. bottom: 25 / 1685
  29156. },
  29157. form: "lopunny"
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Really small",
  29163. height: math.unit(1, "nm")
  29164. },
  29165. {
  29166. name: "Micro",
  29167. height: math.unit(5, "inches")
  29168. },
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(5 + 6 / 12, "feet"),
  29172. default: true
  29173. },
  29174. {
  29175. name: "Macro",
  29176. height: math.unit(50, "feet")
  29177. },
  29178. {
  29179. name: "Macro+",
  29180. height: math.unit(150, "feet")
  29181. },
  29182. {
  29183. name: "Megamacro",
  29184. height: math.unit(100, "miles")
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29190. {
  29191. front: {
  29192. height: math.unit(63.4, "meters"),
  29193. weight: math.unit(3.28349e+6, "kilograms"),
  29194. name: "Front",
  29195. image: {
  29196. source: "./media/characters/kirina-violet/front.svg",
  29197. extra: 2812 / 2725,
  29198. bottom: 0 / 2812
  29199. }
  29200. },
  29201. back: {
  29202. height: math.unit(63.4, "meters"),
  29203. weight: math.unit(3.28349e+6, "kilograms"),
  29204. name: "Back",
  29205. image: {
  29206. source: "./media/characters/kirina-violet/back.svg",
  29207. extra: 2812 / 2725,
  29208. bottom: 0 / 2812
  29209. }
  29210. },
  29211. mouth: {
  29212. height: math.unit(4.35, "meters"),
  29213. name: "Mouth",
  29214. image: {
  29215. source: "./media/characters/kirina-violet/mouth.svg"
  29216. }
  29217. },
  29218. paw: {
  29219. height: math.unit(5.6, "meters"),
  29220. name: "Paw",
  29221. image: {
  29222. source: "./media/characters/kirina-violet/paw.svg"
  29223. }
  29224. },
  29225. tail: {
  29226. height: math.unit(18, "meters"),
  29227. name: "Tail",
  29228. image: {
  29229. source: "./media/characters/kirina-violet/tail.svg"
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Macro",
  29236. height: math.unit(63.4, "meters"),
  29237. default: true
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(75, "feet"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/cat-gigachu/front.svg",
  29249. extra: 1239/1027,
  29250. bottom: 32/1271
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(75, "feet"),
  29255. name: "Back",
  29256. image: {
  29257. source: "./media/characters/cat-gigachu/back.svg",
  29258. extra: 1229/1030,
  29259. bottom: 9/1238
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Dynamax",
  29266. height: math.unit(75, "feet"),
  29267. default: true
  29268. },
  29269. ]
  29270. ))
  29271. characterMakers.push(() => makeCharacter(
  29272. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29273. {
  29274. front: {
  29275. height: math.unit(6, "feet"),
  29276. weight: math.unit(150, "lb"),
  29277. name: "Front",
  29278. image: {
  29279. source: "./media/characters/sfaiyan/front.svg",
  29280. extra: 999 / 978,
  29281. bottom: 5 / 1004
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(1.82, "meters")
  29289. },
  29290. {
  29291. name: "Giant",
  29292. height: math.unit(2.27, "km"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(179, "cm"),
  29302. weight: math.unit(100, "kg"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/raunehkeli/front.svg",
  29306. extra: 1934 / 1926,
  29307. bottom: 0 / 1934
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(179, "cm")
  29315. },
  29316. {
  29317. name: "Maximum",
  29318. height: math.unit(575, "meters"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(6, "feet"),
  29328. weight: math.unit(150, "lb"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29332. extra: 2625 / 2518,
  29333. bottom: 60 / 2685
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(6 + 2 / 12, "feet")
  29341. },
  29342. {
  29343. name: "Macro",
  29344. height: math.unit(1180, "feet"),
  29345. default: true
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(5 + 6 / 12, "feet"),
  29354. weight: math.unit(108, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/lilith-zott/front.svg",
  29358. extra: 2510 / 2238,
  29359. bottom: 100 / 2610
  29360. }
  29361. },
  29362. frontDressed: {
  29363. height: math.unit(5 + 6 / 12, "feet"),
  29364. weight: math.unit(108, "lb"),
  29365. name: "Front (Dressed)",
  29366. image: {
  29367. source: "./media/characters/lilith-zott/front-dressed.svg",
  29368. extra: 2510 / 2238,
  29369. bottom: 100 / 2610
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Normal",
  29376. height: math.unit(5 + 6 / 12, "feet")
  29377. },
  29378. {
  29379. name: "Macro",
  29380. height: math.unit(1030, "feet"),
  29381. default: true
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(6, "feet"),
  29390. weight: math.unit(150, "lb"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29394. extra: 2567 / 2435,
  29395. bottom: 39 / 2606
  29396. }
  29397. },
  29398. frontSuper: {
  29399. height: math.unit(6, "feet"),
  29400. name: "Front (Super)",
  29401. image: {
  29402. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29403. extra: 2567 / 2435,
  29404. bottom: 39 / 2606
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(5 + 10 / 12, "feet")
  29412. },
  29413. {
  29414. name: "Macro",
  29415. height: math.unit(1100, "feet"),
  29416. default: true
  29417. },
  29418. ]
  29419. ))
  29420. characterMakers.push(() => makeCharacter(
  29421. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29422. {
  29423. front: {
  29424. height: math.unit(100, "miles"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/sona/front.svg",
  29428. extra: 2433 / 2201,
  29429. bottom: 53 / 2486
  29430. }
  29431. },
  29432. foot: {
  29433. height: math.unit(16.1, "miles"),
  29434. name: "Foot",
  29435. image: {
  29436. source: "./media/characters/sona/foot.svg"
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Macro",
  29443. height: math.unit(100, "miles"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29450. {
  29451. front: {
  29452. height: math.unit(6, "feet"),
  29453. weight: math.unit(150, "lb"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/bailey/front.svg",
  29457. extra: 1778 / 1724,
  29458. bottom: 30 / 1808
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Micro",
  29465. height: math.unit(4, "inches")
  29466. },
  29467. {
  29468. name: "Normal",
  29469. height: math.unit(5 + 5 / 12, "feet"),
  29470. default: true
  29471. },
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(250, "feet")
  29475. },
  29476. {
  29477. name: "Megamacro",
  29478. height: math.unit(100, "miles")
  29479. },
  29480. ]
  29481. ))
  29482. characterMakers.push(() => makeCharacter(
  29483. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29484. {
  29485. front: {
  29486. height: math.unit(5 + 2 / 12, "feet"),
  29487. weight: math.unit(120, "lb"),
  29488. name: "Front",
  29489. image: {
  29490. source: "./media/characters/snaps/front.svg",
  29491. extra: 2370 / 2177,
  29492. bottom: 48 / 2418
  29493. }
  29494. },
  29495. back: {
  29496. height: math.unit(5 + 2 / 12, "feet"),
  29497. weight: math.unit(120, "lb"),
  29498. name: "Back",
  29499. image: {
  29500. source: "./media/characters/snaps/back.svg",
  29501. extra: 2408 / 2258,
  29502. bottom: 15 / 2423
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Micro",
  29509. height: math.unit(9, "inches")
  29510. },
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(5 + 2 / 12, "feet"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Mini Macro",
  29518. height: math.unit(10, "feet")
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(1.8, "meters"),
  29527. weight: math.unit(85, "kg"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/azteck/front.svg",
  29531. extra: 2815 / 2625,
  29532. bottom: 89 / 2904
  29533. }
  29534. },
  29535. back: {
  29536. height: math.unit(1.8, "meters"),
  29537. weight: math.unit(85, "kg"),
  29538. name: "Back",
  29539. image: {
  29540. source: "./media/characters/azteck/back.svg",
  29541. extra: 2856 / 2648,
  29542. bottom: 85 / 2941
  29543. }
  29544. },
  29545. frontDressed: {
  29546. height: math.unit(1.8, "meters"),
  29547. weight: math.unit(85, "kg"),
  29548. name: "Front (Dressed)",
  29549. image: {
  29550. source: "./media/characters/azteck/front-dressed.svg",
  29551. extra: 2147 / 2003,
  29552. bottom: 68 / 2215
  29553. }
  29554. },
  29555. head: {
  29556. height: math.unit(0.47, "meters"),
  29557. weight: math.unit(85, "kg"),
  29558. name: "Head",
  29559. image: {
  29560. source: "./media/characters/azteck/head.svg"
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Bite sized",
  29567. height: math.unit(16, "cm")
  29568. },
  29569. {
  29570. name: "Normal",
  29571. height: math.unit(1.8, "meters"),
  29572. default: true
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(6, "feet"),
  29581. weight: math.unit(150, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/pidge/front.svg",
  29585. extra: 620 / 588,
  29586. bottom: 9 / 629
  29587. }
  29588. },
  29589. back: {
  29590. height: math.unit(6, "feet"),
  29591. weight: math.unit(150, "lb"),
  29592. name: "Back",
  29593. image: {
  29594. source: "./media/characters/pidge/back.svg",
  29595. extra: 620 / 588,
  29596. bottom: 9 / 629
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Macro",
  29603. height: math.unit(1, "mile"),
  29604. default: true
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/en/front.svg",
  29617. extra: 1697 / 1563,
  29618. bottom: 103 / 1800
  29619. }
  29620. },
  29621. back: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Back",
  29625. image: {
  29626. source: "./media/characters/en/back.svg",
  29627. extra: 1700 / 1570,
  29628. bottom: 51 / 1751
  29629. }
  29630. },
  29631. frontDressed: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Front (Dressed)",
  29635. image: {
  29636. source: "./media/characters/en/front-dressed.svg",
  29637. extra: 1697 / 1563,
  29638. bottom: 103 / 1800
  29639. }
  29640. },
  29641. backDressed: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(150, "lb"),
  29644. name: "Back (Dressed)",
  29645. image: {
  29646. source: "./media/characters/en/back-dressed.svg",
  29647. extra: 1700 / 1570,
  29648. bottom: 51 / 1751
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(210, "feet"),
  29656. default: true
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(6, "feet"),
  29665. weight: math.unit(150, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/haze-orris/front.svg",
  29669. extra: 3975 / 3525,
  29670. bottom: 137 / 4112
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Micro",
  29677. height: math.unit(150, "mm"),
  29678. default: true
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(6, "feet"),
  29687. weight: math.unit(150, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/casselene-yaro/front.svg",
  29691. extra: 4721 / 4541,
  29692. bottom: 82 / 4803
  29693. }
  29694. },
  29695. back: {
  29696. height: math.unit(6, "feet"),
  29697. weight: math.unit(150, "lb"),
  29698. name: "Back",
  29699. image: {
  29700. source: "./media/characters/casselene-yaro/back.svg",
  29701. extra: 4569 / 4377,
  29702. bottom: 69 / 4638
  29703. }
  29704. },
  29705. frontDressed: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(150, "lb"),
  29708. name: "Front-dressed",
  29709. image: {
  29710. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29711. extra: 4721 / 4541,
  29712. bottom: 82 / 4803
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Macro",
  29719. height: math.unit(190, "feet"),
  29720. default: true
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(6, "feet"),
  29729. weight: math.unit(150, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/myra-rue-delore/front.svg",
  29733. extra: 1340 / 1308,
  29734. bottom: 67 / 1407
  29735. }
  29736. },
  29737. back: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(150, "lb"),
  29740. name: "Back",
  29741. image: {
  29742. source: "./media/characters/myra-rue-delore/back.svg",
  29743. extra: 1341 / 1310,
  29744. bottom: 40 / 1381
  29745. }
  29746. },
  29747. frontDressed: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(150, "lb"),
  29750. name: "Front (Dressed)",
  29751. image: {
  29752. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29753. extra: 1340 / 1308,
  29754. bottom: 67 / 1407
  29755. }
  29756. },
  29757. },
  29758. [
  29759. {
  29760. name: "Macro",
  29761. height: math.unit(150, "feet"),
  29762. default: true
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(10, "feet"),
  29771. weight: math.unit(15015, "lb"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/fem!plat/front.svg",
  29775. extra: 2799 / 2604,
  29776. bottom: 149 / 2948
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(10, "feet"),
  29784. default: true
  29785. },
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(100, "feet")
  29789. },
  29790. {
  29791. name: "Megamacro",
  29792. height: math.unit(1000, "feet")
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(15 + 5 / 12, "feet"),
  29801. weight: math.unit(4600, "lb"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/neapolitan-ananassa/front.svg",
  29805. extra: 2903 / 2736,
  29806. bottom: 0 / 2903
  29807. }
  29808. },
  29809. side: {
  29810. height: math.unit(15 + 5 / 12, "feet"),
  29811. weight: math.unit(4600, "lb"),
  29812. name: "Side",
  29813. image: {
  29814. source: "./media/characters/neapolitan-ananassa/side.svg",
  29815. extra: 2925 / 2719,
  29816. bottom: 0 / 2925
  29817. }
  29818. },
  29819. back: {
  29820. height: math.unit(15 + 5 / 12, "feet"),
  29821. weight: math.unit(4600, "lb"),
  29822. name: "Back",
  29823. image: {
  29824. source: "./media/characters/neapolitan-ananassa/back.svg",
  29825. extra: 2903 / 2736,
  29826. bottom: 0 / 2903
  29827. }
  29828. },
  29829. },
  29830. [
  29831. {
  29832. name: "Normal",
  29833. height: math.unit(15 + 5 / 12, "feet"),
  29834. default: true
  29835. },
  29836. {
  29837. name: "Post-Millenium",
  29838. height: math.unit(35 + 5 / 12, "feet")
  29839. },
  29840. {
  29841. name: "Post-Era",
  29842. height: math.unit(450 + 5 / 12, "feet")
  29843. },
  29844. ]
  29845. ))
  29846. characterMakers.push(() => makeCharacter(
  29847. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29848. {
  29849. front: {
  29850. height: math.unit(300, "meters"),
  29851. weight: math.unit(125000, "tonnes"),
  29852. name: "Front",
  29853. image: {
  29854. source: "./media/characters/pazuzu/front.svg",
  29855. extra: 877 / 794,
  29856. bottom: 47 / 924
  29857. }
  29858. },
  29859. },
  29860. [
  29861. {
  29862. name: "Macro",
  29863. height: math.unit(300, "meters"),
  29864. default: true
  29865. },
  29866. ]
  29867. ))
  29868. characterMakers.push(() => makeCharacter(
  29869. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29870. {
  29871. side: {
  29872. height: math.unit(10 + 7 / 12, "feet"),
  29873. weight: math.unit(2.5, "tons"),
  29874. name: "Side",
  29875. image: {
  29876. source: "./media/characters/aasha/side.svg",
  29877. extra: 1345 / 1245,
  29878. bottom: 111 / 1456
  29879. }
  29880. },
  29881. back: {
  29882. height: math.unit(10 + 7 / 12, "feet"),
  29883. weight: math.unit(2.5, "tons"),
  29884. name: "Back",
  29885. image: {
  29886. source: "./media/characters/aasha/back.svg",
  29887. extra: 1133 / 1057,
  29888. bottom: 257 / 1390
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(10 + 7 / 12, "feet"),
  29896. default: true
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(6 + 3 / 12, "feet"),
  29905. name: "Front",
  29906. image: {
  29907. source: "./media/characters/nevan/front.svg",
  29908. extra: 704 / 704,
  29909. bottom: 28 / 732
  29910. }
  29911. },
  29912. back: {
  29913. height: math.unit(6 + 3 / 12, "feet"),
  29914. name: "Back",
  29915. image: {
  29916. source: "./media/characters/nevan/back.svg",
  29917. extra: 714 / 714,
  29918. bottom: 21 / 735
  29919. }
  29920. },
  29921. frontFlaccid: {
  29922. height: math.unit(6 + 3 / 12, "feet"),
  29923. name: "Front (Flaccid)",
  29924. image: {
  29925. source: "./media/characters/nevan/front-flaccid.svg",
  29926. extra: 704 / 704,
  29927. bottom: 28 / 732
  29928. }
  29929. },
  29930. frontErect: {
  29931. height: math.unit(6 + 3 / 12, "feet"),
  29932. name: "Front (Erect)",
  29933. image: {
  29934. source: "./media/characters/nevan/front-erect.svg",
  29935. extra: 704 / 704,
  29936. bottom: 28 / 732
  29937. }
  29938. },
  29939. backFlaccid: {
  29940. height: math.unit(6 + 3 / 12, "feet"),
  29941. name: "Back (Flaccid)",
  29942. image: {
  29943. source: "./media/characters/nevan/back-flaccid.svg",
  29944. extra: 714 / 714,
  29945. bottom: 21 / 735
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(6 + 3 / 12, "feet"),
  29953. default: true
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(4, "feet"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/arhan/front.svg",
  29965. extra: 3368 / 3133,
  29966. bottom: 0 / 3368
  29967. }
  29968. },
  29969. side: {
  29970. height: math.unit(4, "feet"),
  29971. name: "Side",
  29972. image: {
  29973. source: "./media/characters/arhan/side.svg",
  29974. extra: 3347 / 3105,
  29975. bottom: 0 / 3347
  29976. }
  29977. },
  29978. tongue: {
  29979. height: math.unit(1.42, "feet"),
  29980. name: "Tongue",
  29981. image: {
  29982. source: "./media/characters/arhan/tongue.svg"
  29983. }
  29984. },
  29985. head: {
  29986. height: math.unit(0.85, "feet"),
  29987. name: "Head",
  29988. image: {
  29989. source: "./media/characters/arhan/head.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Normal",
  29996. height: math.unit(4, "feet"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(5 + 7.5 / 12, "feet"),
  30006. weight: math.unit(120, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/digi-duncan/front.svg",
  30010. extra: 330 / 326,
  30011. bottom: 16 / 346
  30012. }
  30013. },
  30014. side: {
  30015. height: math.unit(5 + 7.5 / 12, "feet"),
  30016. weight: math.unit(120, "lb"),
  30017. name: "Side",
  30018. image: {
  30019. source: "./media/characters/digi-duncan/side.svg",
  30020. extra: 341 / 337,
  30021. bottom: 1 / 342
  30022. }
  30023. },
  30024. back: {
  30025. height: math.unit(5 + 7.5 / 12, "feet"),
  30026. weight: math.unit(120, "lb"),
  30027. name: "Back",
  30028. image: {
  30029. source: "./media/characters/digi-duncan/back.svg",
  30030. extra: 330 / 326,
  30031. bottom: 12 / 342
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Speck",
  30038. height: math.unit(0.25, "mm")
  30039. },
  30040. {
  30041. name: "Micro",
  30042. height: math.unit(5, "mm")
  30043. },
  30044. {
  30045. name: "Tiny",
  30046. height: math.unit(0.5, "inches"),
  30047. default: true
  30048. },
  30049. {
  30050. name: "Human",
  30051. height: math.unit(5 + 7.5 / 12, "feet")
  30052. },
  30053. {
  30054. name: "Minigiant",
  30055. height: math.unit(8 + 5.25, "feet")
  30056. },
  30057. {
  30058. name: "Giant",
  30059. height: math.unit(2000, "feet")
  30060. },
  30061. {
  30062. name: "Mega",
  30063. height: math.unit(371.1, "miles")
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(2, "meters"),
  30072. weight: math.unit(350, "kg"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30076. extra: 898 / 838,
  30077. bottom: 9 / 907
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Micro",
  30084. height: math.unit(8, "meters")
  30085. },
  30086. {
  30087. name: "Normal",
  30088. height: math.unit(50, "meters"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(500, "meters")
  30094. },
  30095. ]
  30096. ))
  30097. characterMakers.push(() => makeCharacter(
  30098. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30099. {
  30100. front: {
  30101. height: math.unit(6 + 6 / 12, "feet"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/khardesh/front.svg",
  30105. extra: 1788/1596,
  30106. bottom: 66/1854
  30107. }
  30108. },
  30109. back: {
  30110. height: math.unit(6 + 6 / 12, "feet"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/khardesh/back.svg",
  30114. extra: 1781/1584,
  30115. bottom: 68/1849
  30116. }
  30117. },
  30118. },
  30119. [
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(6 + 6 / 12, "feet"),
  30123. default: true
  30124. },
  30125. {
  30126. name: "Normal+",
  30127. height: math.unit(4, "meters")
  30128. },
  30129. {
  30130. name: "Macro",
  30131. height: math.unit(50, "meters")
  30132. },
  30133. {
  30134. name: "Macro+",
  30135. height: math.unit(100, "meters")
  30136. },
  30137. {
  30138. name: "Megamacro",
  30139. height: math.unit(20, "km")
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30145. {
  30146. front: {
  30147. height: math.unit(6, "feet"),
  30148. weight: math.unit(150, "lb"),
  30149. name: "Front",
  30150. image: {
  30151. source: "./media/characters/kosho/front.svg",
  30152. extra: 1847 / 1847,
  30153. bottom: 86 / 1933
  30154. }
  30155. },
  30156. },
  30157. [
  30158. {
  30159. name: "Second-stage micro",
  30160. height: math.unit(0.5, "inches")
  30161. },
  30162. {
  30163. name: "First-stage micro",
  30164. height: math.unit(6, "inches")
  30165. },
  30166. {
  30167. name: "Normal",
  30168. height: math.unit(6, "feet"),
  30169. default: true
  30170. },
  30171. {
  30172. name: "First-stage macro",
  30173. height: math.unit(72, "feet")
  30174. },
  30175. {
  30176. name: "Second-stage macro",
  30177. height: math.unit(864, "feet")
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30183. {
  30184. normal: {
  30185. height: math.unit(4 + 6 / 12, "feet"),
  30186. name: "Normal",
  30187. image: {
  30188. source: "./media/characters/hydra/normal.svg",
  30189. extra: 2833 / 2634,
  30190. bottom: 68 / 2901
  30191. }
  30192. },
  30193. smol: {
  30194. height: math.unit(0.705, "inches"),
  30195. name: "Smol",
  30196. image: {
  30197. source: "./media/characters/hydra/smol.svg",
  30198. extra: 2715 / 2540,
  30199. bottom: 0 / 2715
  30200. }
  30201. },
  30202. },
  30203. [
  30204. {
  30205. name: "Normal",
  30206. height: math.unit(4 + 6 / 12, "feet"),
  30207. default: true
  30208. }
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30213. {
  30214. front: {
  30215. height: math.unit(0.6, "cm"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/daz/front.svg",
  30219. extra: 1682 / 1164,
  30220. bottom: 42 / 1724
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(0.6, "cm"),
  30228. default: true
  30229. },
  30230. ]
  30231. ))
  30232. characterMakers.push(() => makeCharacter(
  30233. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30234. {
  30235. front: {
  30236. height: math.unit(6, "feet"),
  30237. weight: math.unit(235, "lb"),
  30238. name: "Front",
  30239. image: {
  30240. source: "./media/characters/theo-pangolin/front.svg",
  30241. extra: 1996 / 1969,
  30242. bottom: 115 / 2111
  30243. }
  30244. },
  30245. back: {
  30246. height: math.unit(6, "feet"),
  30247. weight: math.unit(235, "lb"),
  30248. name: "Back",
  30249. image: {
  30250. source: "./media/characters/theo-pangolin/back.svg",
  30251. extra: 1979 / 1979,
  30252. bottom: 40 / 2019
  30253. }
  30254. },
  30255. feral: {
  30256. height: math.unit(2, "feet"),
  30257. weight: math.unit(30, "lb"),
  30258. name: "Feral",
  30259. image: {
  30260. source: "./media/characters/theo-pangolin/feral.svg",
  30261. extra: 803 / 791,
  30262. bottom: 181 / 984
  30263. }
  30264. },
  30265. footFive: {
  30266. height: math.unit(1.43, "feet"),
  30267. name: "Foot (Five Toes)",
  30268. image: {
  30269. source: "./media/characters/theo-pangolin/foot-five.svg"
  30270. }
  30271. },
  30272. footFour: {
  30273. height: math.unit(1.43, "feet"),
  30274. name: "Foot (Four Toes)",
  30275. image: {
  30276. source: "./media/characters/theo-pangolin/foot-four.svg"
  30277. }
  30278. },
  30279. handFour: {
  30280. height: math.unit(0.81, "feet"),
  30281. name: "Hand (Four Fingers)",
  30282. image: {
  30283. source: "./media/characters/theo-pangolin/hand-four.svg"
  30284. }
  30285. },
  30286. handThree: {
  30287. height: math.unit(0.81, "feet"),
  30288. name: "Hand (Three Fingers)",
  30289. image: {
  30290. source: "./media/characters/theo-pangolin/hand-three.svg"
  30291. }
  30292. },
  30293. headFront: {
  30294. height: math.unit(1.37, "feet"),
  30295. name: "Head (Front)",
  30296. image: {
  30297. source: "./media/characters/theo-pangolin/head-front.svg"
  30298. }
  30299. },
  30300. headSide: {
  30301. height: math.unit(1.43, "feet"),
  30302. name: "Head (Side)",
  30303. image: {
  30304. source: "./media/characters/theo-pangolin/head-side.svg"
  30305. }
  30306. },
  30307. tongue: {
  30308. height: math.unit(2.29, "feet"),
  30309. name: "Tongue",
  30310. image: {
  30311. source: "./media/characters/theo-pangolin/tongue.svg"
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(6, "feet")
  30319. },
  30320. {
  30321. name: "Macro",
  30322. height: math.unit(400, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(6, "inches"),
  30332. weight: math.unit(0.036, "kg"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/renée/front.svg",
  30336. extra: 900 / 886,
  30337. bottom: 8 / 908
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Nano",
  30344. height: math.unit(1, "nm")
  30345. },
  30346. {
  30347. name: "Micro",
  30348. height: math.unit(1, "mm")
  30349. },
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(6, "inches")
  30353. },
  30354. {
  30355. name: "Macro",
  30356. height: math.unit(2000, "feet"),
  30357. default: true
  30358. },
  30359. {
  30360. name: "Megamacro",
  30361. height: math.unit(2, "km")
  30362. },
  30363. {
  30364. name: "Gigamacro",
  30365. height: math.unit(2000, "km")
  30366. },
  30367. {
  30368. name: "Teramacro",
  30369. height: math.unit(250000, "km")
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(4, "meters"),
  30378. weight: math.unit(150, "kg"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/caledvwlch/front.svg",
  30382. extra: 1760 / 1551,
  30383. bottom: 28 / 1788
  30384. }
  30385. },
  30386. side: {
  30387. height: math.unit(4, "meters"),
  30388. weight: math.unit(150, "kg"),
  30389. name: "Side",
  30390. image: {
  30391. source: "./media/characters/caledvwlch/side.svg",
  30392. extra: 1605 / 1536,
  30393. bottom: 31 / 1636
  30394. }
  30395. },
  30396. back: {
  30397. height: math.unit(4, "meters"),
  30398. weight: math.unit(150, "kg"),
  30399. name: "Back",
  30400. image: {
  30401. source: "./media/characters/caledvwlch/back.svg",
  30402. extra: 1635 / 1565,
  30403. bottom: 27 / 1662
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "\"Incognito\"",
  30410. height: math.unit(4, "meters")
  30411. },
  30412. {
  30413. name: "Small rampage",
  30414. height: math.unit(600, "meters")
  30415. },
  30416. {
  30417. name: "Mega",
  30418. height: math.unit(30, "km")
  30419. },
  30420. {
  30421. name: "Home-size",
  30422. height: math.unit(50, "km"),
  30423. default: true
  30424. },
  30425. {
  30426. name: "Giga",
  30427. height: math.unit(300, "km")
  30428. },
  30429. {
  30430. name: "Lounging",
  30431. height: math.unit(11000, "km")
  30432. },
  30433. {
  30434. name: "Planet snacking",
  30435. height: math.unit(2000000, "km")
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(6, "feet"),
  30444. weight: math.unit(215, "lb"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/sapphire-svell/front.svg",
  30448. extra: 495 / 455,
  30449. bottom: 20 / 515
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(6, "feet"),
  30454. weight: math.unit(216, "lb"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/sapphire-svell/back.svg",
  30458. extra: 497 / 477,
  30459. bottom: 7 / 504
  30460. }
  30461. },
  30462. maw: {
  30463. height: math.unit(1.57, "feet"),
  30464. name: "Maw",
  30465. image: {
  30466. source: "./media/characters/sapphire-svell/maw.svg"
  30467. }
  30468. },
  30469. foot: {
  30470. height: math.unit(1.07, "feet"),
  30471. name: "Foot",
  30472. image: {
  30473. source: "./media/characters/sapphire-svell/foot.svg"
  30474. }
  30475. },
  30476. toering: {
  30477. height: math.unit(1.7, "inch"),
  30478. name: "Toering",
  30479. image: {
  30480. source: "./media/characters/sapphire-svell/toering.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(300, "feet"),
  30488. default: true
  30489. },
  30490. {
  30491. name: "Augmented",
  30492. height: math.unit(1250, "feet")
  30493. },
  30494. {
  30495. name: "Unleashed",
  30496. height: math.unit(3000, "feet")
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30502. {
  30503. side: {
  30504. height: math.unit(2 + 3 / 12, "feet"),
  30505. weight: math.unit(110, "lb"),
  30506. name: "Side",
  30507. image: {
  30508. source: "./media/characters/glitch-flux/side.svg",
  30509. extra: 997 / 805,
  30510. bottom: 20 / 1017
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Normal",
  30517. height: math.unit(2 + 3 / 12, "feet"),
  30518. default: true
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30524. {
  30525. front: {
  30526. height: math.unit(4, "meters"),
  30527. name: "Front",
  30528. image: {
  30529. source: "./media/characters/mid/front.svg",
  30530. extra: 507 / 476,
  30531. bottom: 17 / 524
  30532. }
  30533. },
  30534. back: {
  30535. height: math.unit(4, "meters"),
  30536. name: "Back",
  30537. image: {
  30538. source: "./media/characters/mid/back.svg",
  30539. extra: 519 / 487,
  30540. bottom: 7 / 526
  30541. }
  30542. },
  30543. stuck: {
  30544. height: math.unit(2.2, "meters"),
  30545. name: "Stuck",
  30546. image: {
  30547. source: "./media/characters/mid/stuck.svg",
  30548. extra: 1951 / 1869,
  30549. bottom: 88 / 2039
  30550. }
  30551. }
  30552. },
  30553. [
  30554. {
  30555. name: "Normal",
  30556. height: math.unit(4, "meters"),
  30557. default: true
  30558. },
  30559. {
  30560. name: "Big",
  30561. height: math.unit(10, "meters")
  30562. },
  30563. {
  30564. name: "Macro",
  30565. height: math.unit(800, "meters")
  30566. },
  30567. {
  30568. name: "Megamacro",
  30569. height: math.unit(100, "km")
  30570. },
  30571. {
  30572. name: "Overgrown",
  30573. height: math.unit(1, "parsec")
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(2.5, "meters"),
  30582. weight: math.unit(225, "kg"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/iris/front.svg",
  30586. extra: 3348 / 3251,
  30587. bottom: 205 / 3553
  30588. }
  30589. },
  30590. maw: {
  30591. height: math.unit(0.56, "meter"),
  30592. name: "Maw",
  30593. image: {
  30594. source: "./media/characters/iris/maw.svg"
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Mewter cat",
  30601. height: math.unit(1.2, "meters")
  30602. },
  30603. {
  30604. name: "Minimacro",
  30605. height: math.unit(2.5, "meters"),
  30606. default: true
  30607. },
  30608. {
  30609. name: "Macro",
  30610. height: math.unit(180, "meters")
  30611. },
  30612. {
  30613. name: "Megamacro",
  30614. height: math.unit(2746, "meters")
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30620. {
  30621. front: {
  30622. height: math.unit(6, "feet"),
  30623. weight: math.unit(135, "lb"),
  30624. name: "Front",
  30625. image: {
  30626. source: "./media/characters/axel/front.svg",
  30627. extra: 908 / 908,
  30628. bottom: 58 / 966
  30629. }
  30630. },
  30631. side: {
  30632. height: math.unit(6, "feet"),
  30633. weight: math.unit(135, "lb"),
  30634. name: "Side",
  30635. image: {
  30636. source: "./media/characters/axel/side.svg",
  30637. extra: 958 / 958,
  30638. bottom: 11 / 969
  30639. }
  30640. },
  30641. back: {
  30642. height: math.unit(6, "feet"),
  30643. weight: math.unit(135, "lb"),
  30644. name: "Back",
  30645. image: {
  30646. source: "./media/characters/axel/back.svg",
  30647. extra: 887 / 887,
  30648. bottom: 34 / 921
  30649. }
  30650. },
  30651. head: {
  30652. height: math.unit(1.07, "feet"),
  30653. name: "Head",
  30654. image: {
  30655. source: "./media/characters/axel/head.svg"
  30656. }
  30657. },
  30658. beak: {
  30659. height: math.unit(1.4, "feet"),
  30660. name: "Beak",
  30661. image: {
  30662. source: "./media/characters/axel/beak.svg"
  30663. }
  30664. },
  30665. beakSide: {
  30666. height: math.unit(1.4, "feet"),
  30667. name: "Beak Side",
  30668. image: {
  30669. source: "./media/characters/axel/beak-side.svg"
  30670. }
  30671. },
  30672. sheath: {
  30673. height: math.unit(0.5, "feet"),
  30674. name: "Sheath",
  30675. image: {
  30676. source: "./media/characters/axel/sheath.svg"
  30677. }
  30678. },
  30679. dick: {
  30680. height: math.unit(0.98, "feet"),
  30681. name: "Dick",
  30682. image: {
  30683. source: "./media/characters/axel/dick.svg"
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Macro",
  30690. height: math.unit(68, "meters"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(3.5, "meters"),
  30700. weight: math.unit(1200, "kg"),
  30701. name: "Front",
  30702. image: {
  30703. source: "./media/characters/joanna/front.svg",
  30704. extra: 1596 / 1488,
  30705. bottom: 29 / 1625
  30706. }
  30707. },
  30708. back: {
  30709. height: math.unit(3.5, "meters"),
  30710. weight: math.unit(1200, "kg"),
  30711. name: "Back",
  30712. image: {
  30713. source: "./media/characters/joanna/back.svg",
  30714. extra: 1594 / 1495,
  30715. bottom: 26 / 1620
  30716. }
  30717. },
  30718. frontShorts: {
  30719. height: math.unit(3.5, "meters"),
  30720. weight: math.unit(1200, "kg"),
  30721. name: "Front (Shorts)",
  30722. image: {
  30723. source: "./media/characters/joanna/front-shorts.svg",
  30724. extra: 1596 / 1488,
  30725. bottom: 29 / 1625
  30726. }
  30727. },
  30728. frontBiker: {
  30729. height: math.unit(3.5, "meters"),
  30730. weight: math.unit(1200, "kg"),
  30731. name: "Front (Biker)",
  30732. image: {
  30733. source: "./media/characters/joanna/front-biker.svg",
  30734. extra: 1596 / 1488,
  30735. bottom: 29 / 1625
  30736. }
  30737. },
  30738. backBiker: {
  30739. height: math.unit(3.5, "meters"),
  30740. weight: math.unit(1200, "kg"),
  30741. name: "Back (Biker)",
  30742. image: {
  30743. source: "./media/characters/joanna/back-biker.svg",
  30744. extra: 1594 / 1495,
  30745. bottom: 88 / 1682
  30746. }
  30747. },
  30748. bikeLeft: {
  30749. height: math.unit(2.4, "meters"),
  30750. weight: math.unit(1600, "kg"),
  30751. name: "Bike (Left)",
  30752. image: {
  30753. source: "./media/characters/joanna/bike-left.svg",
  30754. extra: 720 / 720,
  30755. bottom: 8 / 728
  30756. }
  30757. },
  30758. bikeRight: {
  30759. height: math.unit(2.4, "meters"),
  30760. weight: math.unit(1600, "kg"),
  30761. name: "Bike (Right)",
  30762. image: {
  30763. source: "./media/characters/joanna/bike-right.svg",
  30764. extra: 720 / 720,
  30765. bottom: 8 / 728
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Incognito",
  30772. height: math.unit(3.5, "meters")
  30773. },
  30774. {
  30775. name: "Casual Big",
  30776. height: math.unit(200, "meters")
  30777. },
  30778. {
  30779. name: "Macro",
  30780. height: math.unit(600, "meters")
  30781. },
  30782. {
  30783. name: "Original",
  30784. height: math.unit(20, "km"),
  30785. default: true
  30786. },
  30787. {
  30788. name: "Giga",
  30789. height: math.unit(400, "km")
  30790. },
  30791. {
  30792. name: "Lounging",
  30793. height: math.unit(1500, "km")
  30794. },
  30795. {
  30796. name: "Planetary",
  30797. height: math.unit(200000, "km")
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30803. {
  30804. front: {
  30805. height: math.unit(6, "feet"),
  30806. weight: math.unit(150, "lb"),
  30807. name: "Front",
  30808. image: {
  30809. source: "./media/characters/hugo-sigil/front.svg",
  30810. extra: 522 / 500,
  30811. bottom: 2 / 524
  30812. }
  30813. },
  30814. back: {
  30815. height: math.unit(6, "feet"),
  30816. weight: math.unit(150, "lb"),
  30817. name: "Back",
  30818. image: {
  30819. source: "./media/characters/hugo-sigil/back.svg",
  30820. extra: 519 / 495,
  30821. bottom: 5 / 524
  30822. }
  30823. },
  30824. maw: {
  30825. height: math.unit(1.4, "feet"),
  30826. weight: math.unit(150, "lb"),
  30827. name: "Maw",
  30828. image: {
  30829. source: "./media/characters/hugo-sigil/maw.svg"
  30830. }
  30831. },
  30832. feet: {
  30833. height: math.unit(1.56, "feet"),
  30834. weight: math.unit(150, "lb"),
  30835. name: "Feet",
  30836. image: {
  30837. source: "./media/characters/hugo-sigil/feet.svg",
  30838. extra: 177 / 177,
  30839. bottom: 12 / 189
  30840. }
  30841. },
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(6, "feet")
  30847. },
  30848. {
  30849. name: "Macro",
  30850. height: math.unit(200, "feet"),
  30851. default: true
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6, "feet"),
  30860. weight: math.unit(150, "lb"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/peri/front.svg",
  30864. extra: 2354 / 2233,
  30865. bottom: 49 / 2403
  30866. }
  30867. },
  30868. },
  30869. [
  30870. {
  30871. name: "Really Small",
  30872. height: math.unit(1, "nm")
  30873. },
  30874. {
  30875. name: "Micro",
  30876. height: math.unit(4, "inches")
  30877. },
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(7, "inches"),
  30881. default: true
  30882. },
  30883. {
  30884. name: "Macro",
  30885. height: math.unit(400, "feet")
  30886. },
  30887. {
  30888. name: "Megamacro",
  30889. height: math.unit(100, "miles")
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30895. {
  30896. frontSlim: {
  30897. height: math.unit(7, "feet"),
  30898. name: "Front (Slim)",
  30899. image: {
  30900. source: "./media/characters/issilora/front-slim.svg",
  30901. extra: 529 / 449,
  30902. bottom: 53 / 582
  30903. }
  30904. },
  30905. sideSlim: {
  30906. height: math.unit(7, "feet"),
  30907. name: "Side (Slim)",
  30908. image: {
  30909. source: "./media/characters/issilora/side-slim.svg",
  30910. extra: 570 / 480,
  30911. bottom: 30 / 600
  30912. }
  30913. },
  30914. backSlim: {
  30915. height: math.unit(7, "feet"),
  30916. name: "Back (Slim)",
  30917. image: {
  30918. source: "./media/characters/issilora/back-slim.svg",
  30919. extra: 537 / 455,
  30920. bottom: 46 / 583
  30921. }
  30922. },
  30923. frontBuff: {
  30924. height: math.unit(7, "feet"),
  30925. name: "Front (Buff)",
  30926. image: {
  30927. source: "./media/characters/issilora/front-buff.svg",
  30928. extra: 2310 / 2035,
  30929. bottom: 335 / 2645
  30930. }
  30931. },
  30932. head: {
  30933. height: math.unit(1.94, "feet"),
  30934. name: "Head",
  30935. image: {
  30936. source: "./media/characters/issilora/head.svg"
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Minimum",
  30943. height: math.unit(7, "feet")
  30944. },
  30945. {
  30946. name: "Comfortable",
  30947. height: math.unit(17, "feet")
  30948. },
  30949. {
  30950. name: "Fun Size",
  30951. height: math.unit(47, "feet")
  30952. },
  30953. {
  30954. name: "Natural Macro",
  30955. height: math.unit(137, "feet"),
  30956. default: true
  30957. },
  30958. {
  30959. name: "Maximum Kaiju",
  30960. height: math.unit(397, "feet")
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30966. {
  30967. front: {
  30968. height: math.unit(50 + 9/12, "feet"),
  30969. weight: math.unit(32.8, "tons"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/irb'iiritaahn/front.svg",
  30973. extra: 1878/1826,
  30974. bottom: 326/2204
  30975. }
  30976. },
  30977. back: {
  30978. height: math.unit(50 + 9/12, "feet"),
  30979. weight: math.unit(32.8, "tons"),
  30980. name: "Back",
  30981. image: {
  30982. source: "./media/characters/irb'iiritaahn/back.svg",
  30983. extra: 2052/2018,
  30984. bottom: 152/2204
  30985. }
  30986. },
  30987. head: {
  30988. height: math.unit(12.86, "feet"),
  30989. name: "Head",
  30990. image: {
  30991. source: "./media/characters/irb'iiritaahn/head.svg"
  30992. }
  30993. },
  30994. maw: {
  30995. height: math.unit(9.66, "feet"),
  30996. name: "Maw",
  30997. image: {
  30998. source: "./media/characters/irb'iiritaahn/maw.svg"
  30999. }
  31000. },
  31001. frontDick: {
  31002. height: math.unit(8.78461, "feet"),
  31003. name: "Front Dick",
  31004. image: {
  31005. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31006. }
  31007. },
  31008. rearDick: {
  31009. height: math.unit(8.78461, "feet"),
  31010. name: "Rear Dick",
  31011. image: {
  31012. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31013. }
  31014. },
  31015. rearDickUnfolded: {
  31016. height: math.unit(8.78, "feet"),
  31017. name: "Rear Dick (Unfolded)",
  31018. image: {
  31019. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31020. }
  31021. },
  31022. wings: {
  31023. height: math.unit(43, "feet"),
  31024. name: "Wings",
  31025. image: {
  31026. source: "./media/characters/irb'iiritaahn/wings.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Macro",
  31033. height: math.unit(50 + 9/12, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(205, "cm"),
  31043. weight: math.unit(102, "kg"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/irbisgreif/front.svg",
  31047. extra: 785/706,
  31048. bottom: 13/798
  31049. }
  31050. },
  31051. back: {
  31052. height: math.unit(205, "cm"),
  31053. weight: math.unit(102, "kg"),
  31054. name: "Back",
  31055. image: {
  31056. source: "./media/characters/irbisgreif/back.svg",
  31057. extra: 713/701,
  31058. bottom: 26/739
  31059. }
  31060. },
  31061. frontDressed: {
  31062. height: math.unit(216, "cm"),
  31063. weight: math.unit(102, "kg"),
  31064. name: "Front-dressed",
  31065. image: {
  31066. source: "./media/characters/irbisgreif/front-dressed.svg",
  31067. extra: 902/776,
  31068. bottom: 14/916
  31069. }
  31070. },
  31071. sideDressed: {
  31072. height: math.unit(195, "cm"),
  31073. weight: math.unit(102, "kg"),
  31074. name: "Side-dressed",
  31075. image: {
  31076. source: "./media/characters/irbisgreif/side-dressed.svg",
  31077. extra: 788/688,
  31078. bottom: 21/809
  31079. }
  31080. },
  31081. backDressed: {
  31082. height: math.unit(216, "cm"),
  31083. weight: math.unit(102, "kg"),
  31084. name: "Back-dressed",
  31085. image: {
  31086. source: "./media/characters/irbisgreif/back-dressed.svg",
  31087. extra: 901/783,
  31088. bottom: 10/911
  31089. }
  31090. },
  31091. dick: {
  31092. height: math.unit(0.49, "feet"),
  31093. name: "Dick",
  31094. image: {
  31095. source: "./media/characters/irbisgreif/dick.svg"
  31096. }
  31097. },
  31098. wingTop: {
  31099. height: math.unit(1.93 , "feet"),
  31100. name: "Wing-top",
  31101. image: {
  31102. source: "./media/characters/irbisgreif/wing-top.svg"
  31103. }
  31104. },
  31105. wingBottom: {
  31106. height: math.unit(1.93 , "feet"),
  31107. name: "Wing-bottom",
  31108. image: {
  31109. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31110. }
  31111. },
  31112. },
  31113. [
  31114. {
  31115. name: "Normal",
  31116. height: math.unit(216, "cm"),
  31117. default: true
  31118. },
  31119. ]
  31120. ))
  31121. characterMakers.push(() => makeCharacter(
  31122. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31123. {
  31124. front: {
  31125. height: math.unit(6, "feet"),
  31126. weight: math.unit(150, "lb"),
  31127. name: "Front",
  31128. image: {
  31129. source: "./media/characters/pride/front.svg",
  31130. extra: 1299/1230,
  31131. bottom: 18/1317
  31132. }
  31133. },
  31134. },
  31135. [
  31136. {
  31137. name: "Normal",
  31138. height: math.unit(7, "feet")
  31139. },
  31140. {
  31141. name: "Mini-macro",
  31142. height: math.unit(11, "feet")
  31143. },
  31144. {
  31145. name: "Macro",
  31146. height: math.unit(15, "meters"),
  31147. default: true
  31148. },
  31149. {
  31150. name: "Macro+",
  31151. height: math.unit(40, "meters")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31157. {
  31158. front: {
  31159. height: math.unit(4 + 2 / 12, "feet"),
  31160. weight: math.unit(95, "lb"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/vaelophis-nyx/front.svg",
  31164. extra: 2532/2330,
  31165. bottom: 0/2532
  31166. }
  31167. },
  31168. back: {
  31169. height: math.unit(4 + 2 / 12, "feet"),
  31170. weight: math.unit(95, "lb"),
  31171. name: "Back",
  31172. image: {
  31173. source: "./media/characters/vaelophis-nyx/back.svg",
  31174. extra: 2484/2361,
  31175. bottom: 0/2484
  31176. }
  31177. },
  31178. feralSide: {
  31179. height: math.unit(2 + 1/12, "feet"),
  31180. weight: math.unit(20, "lb"),
  31181. name: "Feral (Side)",
  31182. image: {
  31183. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31184. extra: 1721/1581,
  31185. bottom: 70/1791
  31186. }
  31187. },
  31188. feralLazing: {
  31189. height: math.unit(1.08, "feet"),
  31190. weight: math.unit(20, "lb"),
  31191. name: "Feral (Lazing)",
  31192. image: {
  31193. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31194. extra: 822/822,
  31195. bottom: 248/1070
  31196. }
  31197. },
  31198. ear: {
  31199. height: math.unit(0.416, "feet"),
  31200. name: "Ear",
  31201. image: {
  31202. source: "./media/characters/vaelophis-nyx/ear.svg"
  31203. }
  31204. },
  31205. eye: {
  31206. height: math.unit(0.0748, "feet"),
  31207. name: "Eye",
  31208. image: {
  31209. source: "./media/characters/vaelophis-nyx/eye.svg"
  31210. }
  31211. },
  31212. mouth: {
  31213. height: math.unit(0.378, "feet"),
  31214. name: "Mouth",
  31215. image: {
  31216. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31217. }
  31218. },
  31219. spade: {
  31220. height: math.unit(0.55, "feet"),
  31221. name: "Spade",
  31222. image: {
  31223. source: "./media/characters/vaelophis-nyx/spade.svg"
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(4 + 2/12, "feet"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31237. {
  31238. front: {
  31239. height: math.unit(7, "feet"),
  31240. weight: math.unit(231, "lb"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/flux/front.svg",
  31244. extra: 919/871,
  31245. bottom: 0/919
  31246. }
  31247. },
  31248. back: {
  31249. height: math.unit(7, "feet"),
  31250. weight: math.unit(231, "lb"),
  31251. name: "Back",
  31252. image: {
  31253. source: "./media/characters/flux/back.svg",
  31254. extra: 1040/992,
  31255. bottom: 0/1040
  31256. }
  31257. },
  31258. frontDressed: {
  31259. height: math.unit(7, "feet"),
  31260. weight: math.unit(231, "lb"),
  31261. name: "Front (Dressed)",
  31262. image: {
  31263. source: "./media/characters/flux/front-dressed.svg",
  31264. extra: 919/871,
  31265. bottom: 0/919
  31266. }
  31267. },
  31268. feralSide: {
  31269. height: math.unit(5, "feet"),
  31270. weight: math.unit(150, "lb"),
  31271. name: "Feral (Side)",
  31272. image: {
  31273. source: "./media/characters/flux/feral-side.svg",
  31274. extra: 598/528,
  31275. bottom: 28/626
  31276. }
  31277. },
  31278. head: {
  31279. height: math.unit(1.585, "feet"),
  31280. name: "Head",
  31281. image: {
  31282. source: "./media/characters/flux/head.svg"
  31283. }
  31284. },
  31285. headSide: {
  31286. height: math.unit(1.74, "feet"),
  31287. name: "Head (Side)",
  31288. image: {
  31289. source: "./media/characters/flux/head-side.svg"
  31290. }
  31291. },
  31292. headSideFire: {
  31293. height: math.unit(1.76, "feet"),
  31294. name: "Head (Side, Fire)",
  31295. image: {
  31296. source: "./media/characters/flux/head-side-fire.svg"
  31297. }
  31298. },
  31299. },
  31300. [
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(7, "feet"),
  31304. default: true
  31305. },
  31306. ]
  31307. ))
  31308. characterMakers.push(() => makeCharacter(
  31309. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31310. {
  31311. front: {
  31312. height: math.unit(9, "feet"),
  31313. weight: math.unit(1012, "lb"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/ulfra-lupae/front.svg",
  31317. extra: 1083/1011,
  31318. bottom: 67/1150
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Micro",
  31325. height: math.unit(6, "inches")
  31326. },
  31327. {
  31328. name: "Socializing",
  31329. height: math.unit(6 + 5/12, "feet")
  31330. },
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(9, "feet"),
  31334. default: true
  31335. },
  31336. {
  31337. name: "Macro",
  31338. height: math.unit(150, "feet")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(5 + 2/12, "feet"),
  31347. weight: math.unit(120, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/timber/front.svg",
  31351. extra: 2814/2705,
  31352. bottom: 181/2995
  31353. }
  31354. },
  31355. },
  31356. [
  31357. {
  31358. name: "Normal",
  31359. height: math.unit(5 + 2/12, "feet"),
  31360. default: true
  31361. },
  31362. ]
  31363. ))
  31364. characterMakers.push(() => makeCharacter(
  31365. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31366. {
  31367. front: {
  31368. height: math.unit(5 + 7/12, "feet"),
  31369. weight: math.unit(220, "lb"),
  31370. name: "Front",
  31371. image: {
  31372. source: "./media/characters/nicki/front.svg",
  31373. extra: 453/419,
  31374. bottom: 7/460
  31375. }
  31376. },
  31377. frontAlt: {
  31378. height: math.unit(5 + 7/12, "feet"),
  31379. weight: math.unit(220, "lb"),
  31380. name: "Front-alt",
  31381. image: {
  31382. source: "./media/characters/nicki/front-alt.svg",
  31383. extra: 435/411,
  31384. bottom: 12/447
  31385. }
  31386. },
  31387. back: {
  31388. height: math.unit(5 + 7/12, "feet"),
  31389. weight: math.unit(220, "lb"),
  31390. name: "Back",
  31391. image: {
  31392. source: "./media/characters/nicki/back.svg",
  31393. extra: 440/413,
  31394. bottom: 19/459
  31395. }
  31396. },
  31397. taur: {
  31398. height: math.unit(7 + 6/12, "feet"),
  31399. weight: math.unit(700, "lb"),
  31400. name: "Taur",
  31401. image: {
  31402. source: "./media/characters/nicki/taur.svg",
  31403. extra: 975/773,
  31404. bottom: 0/975
  31405. }
  31406. },
  31407. frontNsfw: {
  31408. height: math.unit(5 + 7/12, "feet"),
  31409. weight: math.unit(220, "lb"),
  31410. name: "Front (NSFW)",
  31411. image: {
  31412. source: "./media/characters/nicki/front-nsfw.svg",
  31413. extra: 453/419,
  31414. bottom: 7/460
  31415. }
  31416. },
  31417. frontNsfwAlt: {
  31418. height: math.unit(5 + 7/12, "feet"),
  31419. weight: math.unit(220, "lb"),
  31420. name: "Front (Alt, NSFW)",
  31421. image: {
  31422. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31423. extra: 435/411,
  31424. bottom: 12/447
  31425. }
  31426. },
  31427. backNsfw: {
  31428. height: math.unit(5 + 7/12, "feet"),
  31429. weight: math.unit(220, "lb"),
  31430. name: "Back (NSFW)",
  31431. image: {
  31432. source: "./media/characters/nicki/back-nsfw.svg",
  31433. extra: 440/413,
  31434. bottom: 19/459
  31435. }
  31436. },
  31437. head: {
  31438. height: math.unit(2.1, "feet"),
  31439. name: "Head",
  31440. image: {
  31441. source: "./media/characters/nicki/head.svg"
  31442. }
  31443. },
  31444. paw: {
  31445. height: math.unit(1.88, "feet"),
  31446. name: "Paw",
  31447. image: {
  31448. source: "./media/characters/nicki/paw.svg"
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Normal",
  31455. height: math.unit(5 + 7/12, "feet"),
  31456. default: true
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(7 + 10/12, "feet"),
  31465. weight: math.unit(3.5, "tons"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/lee/front.svg",
  31469. extra: 1773/1615,
  31470. bottom: 86/1859
  31471. }
  31472. },
  31473. hand: {
  31474. height: math.unit(1.78, "feet"),
  31475. name: "Hand",
  31476. image: {
  31477. source: "./media/characters/lee/hand.svg"
  31478. }
  31479. },
  31480. maw: {
  31481. height: math.unit(1.18, "feet"),
  31482. name: "Maw",
  31483. image: {
  31484. source: "./media/characters/lee/maw.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(7 + 10/12, "feet"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31498. {
  31499. front: {
  31500. height: math.unit(9, "feet"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/guti/front.svg",
  31504. extra: 4551/4355,
  31505. bottom: 123/4674
  31506. }
  31507. },
  31508. tongue: {
  31509. height: math.unit(1, "feet"),
  31510. name: "Tongue",
  31511. image: {
  31512. source: "./media/characters/guti/tongue.svg"
  31513. }
  31514. },
  31515. paw: {
  31516. height: math.unit(1.18, "feet"),
  31517. name: "Paw",
  31518. image: {
  31519. source: "./media/characters/guti/paw.svg"
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(9, "feet"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31533. {
  31534. side: {
  31535. height: math.unit(5, "meters"),
  31536. name: "Side",
  31537. image: {
  31538. source: "./media/characters/vesper/side.svg",
  31539. extra: 1605/1518,
  31540. bottom: 0/1605
  31541. }
  31542. },
  31543. },
  31544. [
  31545. {
  31546. name: "Small",
  31547. height: math.unit(5, "meters")
  31548. },
  31549. {
  31550. name: "Sage",
  31551. height: math.unit(100, "meters"),
  31552. default: true
  31553. },
  31554. {
  31555. name: "Fun Size",
  31556. height: math.unit(600, "meters")
  31557. },
  31558. {
  31559. name: "Goddess",
  31560. height: math.unit(20000, "km")
  31561. },
  31562. {
  31563. name: "Maximum",
  31564. height: math.unit(5, "galaxies")
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(6 + 3/12, "feet"),
  31573. weight: math.unit(190, "lb"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/gawain/front.svg",
  31577. extra: 2222/2139,
  31578. bottom: 90/2312
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(6 + 3/12, "feet"),
  31583. weight: math.unit(190, "lb"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/gawain/back.svg",
  31587. extra: 2199/2111,
  31588. bottom: 73/2272
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Normal",
  31595. height: math.unit(6 + 3/12, "feet"),
  31596. default: true
  31597. },
  31598. ]
  31599. ))
  31600. characterMakers.push(() => makeCharacter(
  31601. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31602. {
  31603. side: {
  31604. height: math.unit(3.5, "meters"),
  31605. weight: math.unit(16000, "lb"),
  31606. name: "Side",
  31607. image: {
  31608. source: "./media/characters/dascalti/side.svg",
  31609. extra: 392/273,
  31610. bottom: 47/439
  31611. }
  31612. },
  31613. breath: {
  31614. height: math.unit(7.4, "feet"),
  31615. name: "Breath",
  31616. image: {
  31617. source: "./media/characters/dascalti/breath.svg"
  31618. }
  31619. },
  31620. fed: {
  31621. height: math.unit(3.6, "meters"),
  31622. weight: math.unit(16000, "lb"),
  31623. name: "Fed",
  31624. image: {
  31625. source: "./media/characters/dascalti/fed.svg",
  31626. extra: 1419/820,
  31627. bottom: 95/1514
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Normal",
  31634. height: math.unit(3.5, "meters"),
  31635. default: true
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(3 + 5/12, "feet"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/mauve/front.svg",
  31647. extra: 1126/1033,
  31648. bottom: 65/1191
  31649. }
  31650. },
  31651. side: {
  31652. height: math.unit(3 + 5/12, "feet"),
  31653. name: "Side",
  31654. image: {
  31655. source: "./media/characters/mauve/side.svg",
  31656. extra: 1089/1001,
  31657. bottom: 29/1118
  31658. }
  31659. },
  31660. back: {
  31661. height: math.unit(3 + 5/12, "feet"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/mauve/back.svg",
  31665. extra: 1173/1053,
  31666. bottom: 109/1282
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Normal",
  31673. height: math.unit(3 + 5/12, "feet"),
  31674. default: true
  31675. },
  31676. ]
  31677. ))
  31678. characterMakers.push(() => makeCharacter(
  31679. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31680. {
  31681. front: {
  31682. height: math.unit(6 + 3/12, "feet"),
  31683. weight: math.unit(430, "lb"),
  31684. name: "Front",
  31685. image: {
  31686. source: "./media/characters/carlos/front.svg",
  31687. extra: 1964/1913,
  31688. bottom: 70/2034
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(6 + 3/12, "feet"),
  31696. default: true
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31702. {
  31703. back: {
  31704. height: math.unit(5 + 10/12, "feet"),
  31705. weight: math.unit(200, "lb"),
  31706. name: "Back",
  31707. image: {
  31708. source: "./media/characters/jax/back.svg",
  31709. extra: 764/739,
  31710. bottom: 25/789
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Normal",
  31717. height: math.unit(5 + 10/12, "feet"),
  31718. default: true
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(8, "feet"),
  31727. weight: math.unit(250, "lb"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/eikthynir/front.svg",
  31731. extra: 1332/1166,
  31732. bottom: 82/1414
  31733. }
  31734. },
  31735. back: {
  31736. height: math.unit(8, "feet"),
  31737. weight: math.unit(250, "lb"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/eikthynir/back.svg",
  31741. extra: 1342/1190,
  31742. bottom: 19/1361
  31743. }
  31744. },
  31745. dick: {
  31746. height: math.unit(2.35, "feet"),
  31747. name: "Dick",
  31748. image: {
  31749. source: "./media/characters/eikthynir/dick.svg"
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(8, "feet"),
  31757. default: true
  31758. },
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31763. {
  31764. front: {
  31765. height: math.unit(99, "meters"),
  31766. weight: math.unit(13000, "tons"),
  31767. name: "Front",
  31768. image: {
  31769. source: "./media/characters/zlmos/front.svg",
  31770. extra: 2202/1992,
  31771. bottom: 315/2517
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Macro",
  31778. height: math.unit(99, "meters"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(6 + 5/12, "feet"),
  31788. name: "Front",
  31789. image: {
  31790. source: "./media/characters/purri/front.svg",
  31791. extra: 1698/1610,
  31792. bottom: 32/1730
  31793. }
  31794. },
  31795. frontAlt: {
  31796. height: math.unit(6 + 5/12, "feet"),
  31797. name: "Front (Alt)",
  31798. image: {
  31799. source: "./media/characters/purri/front-alt.svg",
  31800. extra: 450/420,
  31801. bottom: 26/476
  31802. }
  31803. },
  31804. boots: {
  31805. height: math.unit(5.5, "feet"),
  31806. name: "Boots",
  31807. image: {
  31808. source: "./media/characters/purri/boots.svg",
  31809. extra: 905/853,
  31810. bottom: 18/923
  31811. }
  31812. },
  31813. lying: {
  31814. height: math.unit(2, "feet"),
  31815. name: "Lying",
  31816. image: {
  31817. source: "./media/characters/purri/lying.svg",
  31818. extra: 940/843,
  31819. bottom: 146/1086
  31820. }
  31821. },
  31822. devious: {
  31823. height: math.unit(1.77, "feet"),
  31824. name: "Devious",
  31825. image: {
  31826. source: "./media/characters/purri/devious.svg",
  31827. extra: 1440/1155,
  31828. bottom: 147/1587
  31829. }
  31830. },
  31831. bean: {
  31832. height: math.unit(1.94, "feet"),
  31833. name: "Bean",
  31834. image: {
  31835. source: "./media/characters/purri/bean.svg"
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Micro",
  31842. height: math.unit(1, "mm")
  31843. },
  31844. {
  31845. name: "Normal",
  31846. height: math.unit(6 + 5/12, "feet"),
  31847. default: true
  31848. },
  31849. {
  31850. name: "Macro :3c",
  31851. height: math.unit(2, "miles")
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(6 + 2/12, "feet"),
  31860. weight: math.unit(250, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/moonlight/front.svg",
  31864. extra: 1044/908,
  31865. bottom: 56/1100
  31866. }
  31867. },
  31868. feral: {
  31869. height: math.unit(3 + 1/12, "feet"),
  31870. weight: math.unit(50, "kg"),
  31871. name: "Feral",
  31872. image: {
  31873. source: "./media/characters/moonlight/feral.svg",
  31874. extra: 3705/2791,
  31875. bottom: 145/3850
  31876. }
  31877. },
  31878. paw: {
  31879. height: math.unit(1, "feet"),
  31880. name: "Paw",
  31881. image: {
  31882. source: "./media/characters/moonlight/paw.svg"
  31883. }
  31884. },
  31885. paws: {
  31886. height: math.unit(0.98, "feet"),
  31887. name: "Paws",
  31888. image: {
  31889. source: "./media/characters/moonlight/paws.svg",
  31890. extra: 939/939,
  31891. bottom: 50/989
  31892. }
  31893. },
  31894. mouth: {
  31895. height: math.unit(0.48, "feet"),
  31896. name: "Mouth",
  31897. image: {
  31898. source: "./media/characters/moonlight/mouth.svg"
  31899. }
  31900. },
  31901. dick: {
  31902. height: math.unit(1.46, "feet"),
  31903. name: "Dick",
  31904. image: {
  31905. source: "./media/characters/moonlight/dick.svg"
  31906. }
  31907. },
  31908. },
  31909. [
  31910. {
  31911. name: "Normal",
  31912. height: math.unit(6 + 2/12, "feet"),
  31913. default: true
  31914. },
  31915. {
  31916. name: "Macro",
  31917. height: math.unit(300, "feet")
  31918. },
  31919. {
  31920. name: "Macro+",
  31921. height: math.unit(1, "mile")
  31922. },
  31923. {
  31924. name: "Mt. Moon",
  31925. height: math.unit(5, "miles")
  31926. },
  31927. {
  31928. name: "Megamacro",
  31929. height: math.unit(15, "miles")
  31930. },
  31931. ]
  31932. ))
  31933. characterMakers.push(() => makeCharacter(
  31934. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31935. {
  31936. back: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(150, "lb"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/sylen/back.svg",
  31942. extra: 1335/1273,
  31943. bottom: 107/1442
  31944. }
  31945. },
  31946. },
  31947. [
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(5 + 5/12, "feet")
  31951. },
  31952. {
  31953. name: "Megamacro",
  31954. height: math.unit(3, "miles"),
  31955. default: true
  31956. },
  31957. ]
  31958. ))
  31959. characterMakers.push(() => makeCharacter(
  31960. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31961. {
  31962. front: {
  31963. height: math.unit(6, "feet"),
  31964. weight: math.unit(190, "lb"),
  31965. name: "Front",
  31966. image: {
  31967. source: "./media/characters/huttser/front.svg",
  31968. extra: 1152/1058,
  31969. bottom: 23/1175
  31970. }
  31971. },
  31972. side: {
  31973. height: math.unit(6, "feet"),
  31974. weight: math.unit(190, "lb"),
  31975. name: "Side",
  31976. image: {
  31977. source: "./media/characters/huttser/side.svg",
  31978. extra: 1174/1065,
  31979. bottom: 18/1192
  31980. }
  31981. },
  31982. back: {
  31983. height: math.unit(6, "feet"),
  31984. weight: math.unit(190, "lb"),
  31985. name: "Back",
  31986. image: {
  31987. source: "./media/characters/huttser/back.svg",
  31988. extra: 1158/1056,
  31989. bottom: 12/1170
  31990. }
  31991. },
  31992. },
  31993. [
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31998. {
  31999. side: {
  32000. height: math.unit(12 + 9/12, "feet"),
  32001. weight: math.unit(15000, "lb"),
  32002. name: "Side",
  32003. image: {
  32004. source: "./media/characters/faan/side.svg",
  32005. extra: 2747/2697,
  32006. bottom: 0/2747
  32007. }
  32008. },
  32009. front: {
  32010. height: math.unit(12 + 9/12, "feet"),
  32011. weight: math.unit(15000, "lb"),
  32012. name: "Front",
  32013. image: {
  32014. source: "./media/characters/faan/front.svg",
  32015. extra: 607/571,
  32016. bottom: 24/631
  32017. }
  32018. },
  32019. head: {
  32020. height: math.unit(2.85, "feet"),
  32021. name: "Head",
  32022. image: {
  32023. source: "./media/characters/faan/head.svg"
  32024. }
  32025. },
  32026. headAlt: {
  32027. height: math.unit(3.13, "feet"),
  32028. name: "Head-alt",
  32029. image: {
  32030. source: "./media/characters/faan/head-alt.svg"
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(12 + 9/12, "feet"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(6, "feet"),
  32047. weight: math.unit(300, "lb"),
  32048. name: "Front",
  32049. image: {
  32050. source: "./media/characters/tanio/front.svg",
  32051. extra: 711/673,
  32052. bottom: 25/736
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(6, "feet"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(3, "inches"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/noboru/front.svg",
  32072. extra: 1039/932,
  32073. bottom: 18/1057
  32074. }
  32075. },
  32076. },
  32077. [
  32078. {
  32079. name: "Micro",
  32080. height: math.unit(3, "inches"),
  32081. default: true
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(1.85, "meters"),
  32090. weight: math.unit(80, "kg"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/daniel-barrett/front.svg",
  32094. extra: 355/337,
  32095. bottom: 9/364
  32096. }
  32097. },
  32098. },
  32099. [
  32100. {
  32101. name: "Pico",
  32102. height: math.unit(0.0433, "mm")
  32103. },
  32104. {
  32105. name: "Nano",
  32106. height: math.unit(1.5, "mm")
  32107. },
  32108. {
  32109. name: "Micro",
  32110. height: math.unit(5.3, "cm"),
  32111. default: true
  32112. },
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(1.85, "meters")
  32116. },
  32117. {
  32118. name: "Macro",
  32119. height: math.unit(64.7, "meters")
  32120. },
  32121. {
  32122. name: "Megamacro",
  32123. height: math.unit(2.26, "km")
  32124. },
  32125. {
  32126. name: "Gigamacro",
  32127. height: math.unit(79, "km")
  32128. },
  32129. {
  32130. name: "Teramacro",
  32131. height: math.unit(2765, "km")
  32132. },
  32133. {
  32134. name: "Petamacro",
  32135. height: math.unit(96678, "km")
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32141. {
  32142. front: {
  32143. height: math.unit(30, "meters"),
  32144. weight: math.unit(400, "tons"),
  32145. name: "Front",
  32146. image: {
  32147. source: "./media/characters/zeel/front.svg",
  32148. extra: 2599/2599,
  32149. bottom: 226/2825
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Macro",
  32156. height: math.unit(30, "meters"),
  32157. default: true
  32158. },
  32159. ]
  32160. ))
  32161. characterMakers.push(() => makeCharacter(
  32162. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32163. {
  32164. front: {
  32165. height: math.unit(6 + 7/12, "feet"),
  32166. weight: math.unit(210, "lb"),
  32167. name: "Front",
  32168. image: {
  32169. source: "./media/characters/tarn/front.svg",
  32170. extra: 3517/3220,
  32171. bottom: 91/3608
  32172. }
  32173. },
  32174. back: {
  32175. height: math.unit(6 + 7/12, "feet"),
  32176. weight: math.unit(210, "lb"),
  32177. name: "Back",
  32178. image: {
  32179. source: "./media/characters/tarn/back.svg",
  32180. extra: 3566/3241,
  32181. bottom: 34/3600
  32182. }
  32183. },
  32184. dick: {
  32185. height: math.unit(1.65, "feet"),
  32186. name: "Dick",
  32187. image: {
  32188. source: "./media/characters/tarn/dick.svg"
  32189. }
  32190. },
  32191. paw: {
  32192. height: math.unit(1.80, "feet"),
  32193. name: "Paw",
  32194. image: {
  32195. source: "./media/characters/tarn/paw.svg"
  32196. }
  32197. },
  32198. tongue: {
  32199. height: math.unit(0.97, "feet"),
  32200. name: "Tongue",
  32201. image: {
  32202. source: "./media/characters/tarn/tongue.svg"
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Micro",
  32209. height: math.unit(4, "inches")
  32210. },
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(6 + 7/12, "feet"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Macro",
  32218. height: math.unit(300, "feet")
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(5 + 7/12, "feet"),
  32227. weight: math.unit(80, "kg"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32231. extra: 3023/2865,
  32232. bottom: 33/3056
  32233. }
  32234. },
  32235. back: {
  32236. height: math.unit(5 + 7/12, "feet"),
  32237. weight: math.unit(80, "kg"),
  32238. name: "Back",
  32239. image: {
  32240. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32241. extra: 3020/2886,
  32242. bottom: 30/3050
  32243. }
  32244. },
  32245. dick: {
  32246. height: math.unit(0.98, "feet"),
  32247. name: "Dick",
  32248. image: {
  32249. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32250. }
  32251. },
  32252. anatomy: {
  32253. height: math.unit(2.86, "feet"),
  32254. name: "Anatomy",
  32255. image: {
  32256. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Really Small",
  32263. height: math.unit(2, "inches")
  32264. },
  32265. {
  32266. name: "Micro",
  32267. height: math.unit(5.583, "inches")
  32268. },
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(5 + 7/12, "feet"),
  32272. default: true
  32273. },
  32274. {
  32275. name: "Macro",
  32276. height: math.unit(67, "feet")
  32277. },
  32278. {
  32279. name: "Megamacro",
  32280. height: math.unit(134, "feet")
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32286. {
  32287. front: {
  32288. height: math.unit(9, "feet"),
  32289. weight: math.unit(120, "lb"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/sally/front.svg",
  32293. extra: 1506/1349,
  32294. bottom: 66/1572
  32295. }
  32296. },
  32297. },
  32298. [
  32299. {
  32300. name: "Normal",
  32301. height: math.unit(9, "feet"),
  32302. default: true
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(8, "feet"),
  32311. weight: math.unit(900, "lb"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/owen/front.svg",
  32315. extra: 1761/1657,
  32316. bottom: 74/1835
  32317. }
  32318. },
  32319. side: {
  32320. height: math.unit(8, "feet"),
  32321. weight: math.unit(900, "lb"),
  32322. name: "Side",
  32323. image: {
  32324. source: "./media/characters/owen/side.svg",
  32325. extra: 1797/1734,
  32326. bottom: 30/1827
  32327. }
  32328. },
  32329. back: {
  32330. height: math.unit(8, "feet"),
  32331. weight: math.unit(900, "lb"),
  32332. name: "Back",
  32333. image: {
  32334. source: "./media/characters/owen/back.svg",
  32335. extra: 1796/1706,
  32336. bottom: 59/1855
  32337. }
  32338. },
  32339. maw: {
  32340. height: math.unit(1.76, "feet"),
  32341. name: "Maw",
  32342. image: {
  32343. source: "./media/characters/owen/maw.svg"
  32344. }
  32345. },
  32346. },
  32347. [
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(8, "feet"),
  32351. default: true
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32357. {
  32358. front: {
  32359. height: math.unit(4, "feet"),
  32360. weight: math.unit(400, "lb"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/ryth/front.svg",
  32364. extra: 1920/1748,
  32365. bottom: 42/1962
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(4, "feet"),
  32370. weight: math.unit(400, "lb"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/ryth/back.svg",
  32374. extra: 1897/1690,
  32375. bottom: 89/1986
  32376. }
  32377. },
  32378. mouth: {
  32379. height: math.unit(1.39, "feet"),
  32380. name: "Mouth",
  32381. image: {
  32382. source: "./media/characters/ryth/mouth.svg"
  32383. }
  32384. },
  32385. tailmaw: {
  32386. height: math.unit(1.23, "feet"),
  32387. name: "Tailmaw",
  32388. image: {
  32389. source: "./media/characters/ryth/tailmaw.svg"
  32390. }
  32391. },
  32392. goia: {
  32393. height: math.unit(4, "meters"),
  32394. weight: math.unit(10800, "lb"),
  32395. name: "Goia",
  32396. image: {
  32397. source: "./media/characters/ryth/goia.svg",
  32398. extra: 745/640,
  32399. bottom: 107/852
  32400. }
  32401. },
  32402. goiaFront: {
  32403. height: math.unit(4, "meters"),
  32404. weight: math.unit(10800, "lb"),
  32405. name: "Goia (Front)",
  32406. image: {
  32407. source: "./media/characters/ryth/goia-front.svg",
  32408. extra: 750/586,
  32409. bottom: 114/864
  32410. }
  32411. },
  32412. goiaMaw: {
  32413. height: math.unit(5.55, "feet"),
  32414. name: "Goia Maw",
  32415. image: {
  32416. source: "./media/characters/ryth/goia-maw.svg"
  32417. }
  32418. },
  32419. goiaForepaw: {
  32420. height: math.unit(3.5, "feet"),
  32421. name: "Goia Forepaw",
  32422. image: {
  32423. source: "./media/characters/ryth/goia-forepaw.svg"
  32424. }
  32425. },
  32426. goiaHindpaw: {
  32427. height: math.unit(5.55, "feet"),
  32428. name: "Goia Hindpaw",
  32429. image: {
  32430. source: "./media/characters/ryth/goia-hindpaw.svg"
  32431. }
  32432. },
  32433. },
  32434. [
  32435. {
  32436. name: "Normal",
  32437. height: math.unit(4, "feet"),
  32438. default: true
  32439. },
  32440. ]
  32441. ))
  32442. characterMakers.push(() => makeCharacter(
  32443. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32444. {
  32445. front: {
  32446. height: math.unit(7, "feet"),
  32447. weight: math.unit(180, "lb"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/necrolance/front.svg",
  32451. extra: 1062/947,
  32452. bottom: 41/1103
  32453. }
  32454. },
  32455. back: {
  32456. height: math.unit(7, "feet"),
  32457. weight: math.unit(180, "lb"),
  32458. name: "Back",
  32459. image: {
  32460. source: "./media/characters/necrolance/back.svg",
  32461. extra: 1045/984,
  32462. bottom: 14/1059
  32463. }
  32464. },
  32465. wing: {
  32466. height: math.unit(2.67, "feet"),
  32467. name: "Wing",
  32468. image: {
  32469. source: "./media/characters/necrolance/wing.svg"
  32470. }
  32471. },
  32472. },
  32473. [
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(7, "feet"),
  32477. default: true
  32478. },
  32479. ]
  32480. ))
  32481. characterMakers.push(() => makeCharacter(
  32482. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32483. {
  32484. front: {
  32485. height: math.unit(76, "meters"),
  32486. weight: math.unit(30000, "tons"),
  32487. name: "Front",
  32488. image: {
  32489. source: "./media/characters/tyler/front.svg",
  32490. extra: 1640/1640,
  32491. bottom: 114/1754
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Macro",
  32498. height: math.unit(76, "meters"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32505. {
  32506. front: {
  32507. height: math.unit(4 + 11/12, "feet"),
  32508. weight: math.unit(132, "lb"),
  32509. name: "Front",
  32510. image: {
  32511. source: "./media/characters/icey/front.svg",
  32512. extra: 2750/2550,
  32513. bottom: 33/2783
  32514. }
  32515. },
  32516. back: {
  32517. height: math.unit(4 + 11/12, "feet"),
  32518. weight: math.unit(132, "lb"),
  32519. name: "Back",
  32520. image: {
  32521. source: "./media/characters/icey/back.svg",
  32522. extra: 2624/2481,
  32523. bottom: 35/2659
  32524. }
  32525. },
  32526. },
  32527. [
  32528. {
  32529. name: "Normal",
  32530. height: math.unit(4 + 11/12, "feet"),
  32531. default: true
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(100, "feet"),
  32540. weight: math.unit(0, "lb"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/smile/front.svg",
  32544. extra: 2983/2912,
  32545. bottom: 162/3145
  32546. }
  32547. },
  32548. back: {
  32549. height: math.unit(100, "feet"),
  32550. weight: math.unit(0, "lb"),
  32551. name: "Back",
  32552. image: {
  32553. source: "./media/characters/smile/back.svg",
  32554. extra: 3143/3031,
  32555. bottom: 91/3234
  32556. }
  32557. },
  32558. head: {
  32559. height: math.unit(26.3, "feet"),
  32560. weight: math.unit(0, "lb"),
  32561. name: "Head",
  32562. image: {
  32563. source: "./media/characters/smile/head.svg"
  32564. }
  32565. },
  32566. collar: {
  32567. height: math.unit(5.3, "feet"),
  32568. weight: math.unit(0, "lb"),
  32569. name: "Collar",
  32570. image: {
  32571. source: "./media/characters/smile/collar.svg"
  32572. }
  32573. },
  32574. },
  32575. [
  32576. {
  32577. name: "Macro",
  32578. height: math.unit(100, "feet"),
  32579. default: true
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32585. {
  32586. dragon: {
  32587. height: math.unit(26, "feet"),
  32588. weight: math.unit(36, "tons"),
  32589. name: "Dragon",
  32590. image: {
  32591. source: "./media/characters/arimphae/dragon.svg",
  32592. extra: 1574/983,
  32593. bottom: 357/1931
  32594. }
  32595. },
  32596. drake: {
  32597. height: math.unit(9, "feet"),
  32598. weight: math.unit(1.5, "tons"),
  32599. name: "Drake",
  32600. image: {
  32601. source: "./media/characters/arimphae/drake.svg",
  32602. extra: 1120/925,
  32603. bottom: 435/1555
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Small",
  32610. height: math.unit(26*5/9, "feet")
  32611. },
  32612. {
  32613. name: "Normal",
  32614. height: math.unit(26, "feet"),
  32615. default: true
  32616. },
  32617. ]
  32618. ))
  32619. characterMakers.push(() => makeCharacter(
  32620. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32621. {
  32622. front: {
  32623. height: math.unit(8 + 9/12, "feet"),
  32624. name: "Front",
  32625. image: {
  32626. source: "./media/characters/xander/front.svg",
  32627. extra: 1237/974,
  32628. bottom: 94/1331
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(8 + 9/12, "feet"),
  32636. default: true
  32637. },
  32638. {
  32639. name: "Gaze Grabber",
  32640. height: math.unit(13 + 8/12, "feet")
  32641. },
  32642. {
  32643. name: "Jaw Dropper",
  32644. height: math.unit(27, "feet")
  32645. },
  32646. {
  32647. name: "Show Stopper",
  32648. height: math.unit(136, "feet")
  32649. },
  32650. {
  32651. name: "Superstar",
  32652. height: math.unit(1.9e6, "miles")
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32658. {
  32659. side: {
  32660. height: math.unit(2100, "feet"),
  32661. name: "Side",
  32662. image: {
  32663. source: "./media/characters/osiris/side.svg",
  32664. extra: 1105/939,
  32665. bottom: 167/1272
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Macro",
  32672. height: math.unit(2100, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32679. {
  32680. front: {
  32681. height: math.unit(6 + 8/12, "feet"),
  32682. weight: math.unit(225, "lb"),
  32683. name: "Front",
  32684. image: {
  32685. source: "./media/characters/rhys-londe/front.svg",
  32686. extra: 2258/2141,
  32687. bottom: 188/2446
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(6 + 8/12, "feet"),
  32692. weight: math.unit(225, "lb"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/rhys-londe/back.svg",
  32696. extra: 2237/2137,
  32697. bottom: 63/2300
  32698. }
  32699. },
  32700. frontNsfw: {
  32701. height: math.unit(6 + 8/12, "feet"),
  32702. weight: math.unit(225, "lb"),
  32703. name: "Front (NSFW)",
  32704. image: {
  32705. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32706. extra: 2258/2141,
  32707. bottom: 188/2446
  32708. }
  32709. },
  32710. backNsfw: {
  32711. height: math.unit(6 + 8/12, "feet"),
  32712. weight: math.unit(225, "lb"),
  32713. name: "Back (NSFW)",
  32714. image: {
  32715. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32716. extra: 2237/2137,
  32717. bottom: 63/2300
  32718. }
  32719. },
  32720. dick: {
  32721. height: math.unit(30, "inches"),
  32722. name: "Dick",
  32723. image: {
  32724. source: "./media/characters/rhys-londe/dick.svg"
  32725. }
  32726. },
  32727. maw: {
  32728. height: math.unit(1.6, "feet"),
  32729. name: "Maw",
  32730. image: {
  32731. source: "./media/characters/rhys-londe/maw.svg"
  32732. }
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(6 + 8/12, "feet"),
  32739. default: true
  32740. },
  32741. ]
  32742. ))
  32743. characterMakers.push(() => makeCharacter(
  32744. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32745. {
  32746. front: {
  32747. height: math.unit(3 + 10/12, "feet"),
  32748. weight: math.unit(90, "lb"),
  32749. name: "Front",
  32750. image: {
  32751. source: "./media/characters/taivas-ensim/front.svg",
  32752. extra: 1327/1216,
  32753. bottom: 96/1423
  32754. }
  32755. },
  32756. back: {
  32757. height: math.unit(3 + 10/12, "feet"),
  32758. weight: math.unit(90, "lb"),
  32759. name: "Back",
  32760. image: {
  32761. source: "./media/characters/taivas-ensim/back.svg",
  32762. extra: 1355/1247,
  32763. bottom: 11/1366
  32764. }
  32765. },
  32766. frontNsfw: {
  32767. height: math.unit(3 + 10/12, "feet"),
  32768. weight: math.unit(90, "lb"),
  32769. name: "Front (NSFW)",
  32770. image: {
  32771. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32772. extra: 1327/1216,
  32773. bottom: 96/1423
  32774. }
  32775. },
  32776. backNsfw: {
  32777. height: math.unit(3 + 10/12, "feet"),
  32778. weight: math.unit(90, "lb"),
  32779. name: "Back (NSFW)",
  32780. image: {
  32781. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32782. extra: 1355/1247,
  32783. bottom: 11/1366
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(3 + 10/12, "feet"),
  32791. default: true
  32792. },
  32793. ]
  32794. ))
  32795. characterMakers.push(() => makeCharacter(
  32796. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32797. {
  32798. front: {
  32799. height: math.unit(9 + 6/12, "feet"),
  32800. weight: math.unit(940, "lb"),
  32801. name: "Front",
  32802. image: {
  32803. source: "./media/characters/byliss/front.svg",
  32804. extra: 1327/1290,
  32805. bottom: 82/1409
  32806. }
  32807. },
  32808. back: {
  32809. height: math.unit(9 + 6/12, "feet"),
  32810. weight: math.unit(940, "lb"),
  32811. name: "Back",
  32812. image: {
  32813. source: "./media/characters/byliss/back.svg",
  32814. extra: 1376/1349,
  32815. bottom: 9/1385
  32816. }
  32817. },
  32818. frontNsfw: {
  32819. height: math.unit(9 + 6/12, "feet"),
  32820. weight: math.unit(940, "lb"),
  32821. name: "Front (NSFW)",
  32822. image: {
  32823. source: "./media/characters/byliss/front-nsfw.svg",
  32824. extra: 1327/1290,
  32825. bottom: 82/1409
  32826. }
  32827. },
  32828. backNsfw: {
  32829. height: math.unit(9 + 6/12, "feet"),
  32830. weight: math.unit(940, "lb"),
  32831. name: "Back (NSFW)",
  32832. image: {
  32833. source: "./media/characters/byliss/back-nsfw.svg",
  32834. extra: 1376/1349,
  32835. bottom: 9/1385
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(9 + 6/12, "feet"),
  32843. default: true
  32844. },
  32845. ]
  32846. ))
  32847. characterMakers.push(() => makeCharacter(
  32848. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32849. {
  32850. front: {
  32851. height: math.unit(5 + 2/12, "feet"),
  32852. weight: math.unit(200, "lb"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/noraly/front.svg",
  32856. extra: 4985/4773,
  32857. bottom: 150/5135
  32858. }
  32859. },
  32860. full: {
  32861. height: math.unit(5 + 2/12, "feet"),
  32862. weight: math.unit(164, "lb"),
  32863. name: "Full",
  32864. image: {
  32865. source: "./media/characters/noraly/full.svg",
  32866. extra: 1114/1059,
  32867. bottom: 35/1149
  32868. }
  32869. },
  32870. fuller: {
  32871. height: math.unit(5 + 2/12, "feet"),
  32872. weight: math.unit(230, "lb"),
  32873. name: "Fuller",
  32874. image: {
  32875. source: "./media/characters/noraly/fuller.svg",
  32876. extra: 1114/1059,
  32877. bottom: 35/1149
  32878. }
  32879. },
  32880. fullest: {
  32881. height: math.unit(5 + 2/12, "feet"),
  32882. weight: math.unit(300, "lb"),
  32883. name: "Fullest",
  32884. image: {
  32885. source: "./media/characters/noraly/fullest.svg",
  32886. extra: 1114/1059,
  32887. bottom: 35/1149
  32888. }
  32889. },
  32890. },
  32891. [
  32892. {
  32893. name: "Normal",
  32894. height: math.unit(5 + 2/12, "feet"),
  32895. default: true
  32896. },
  32897. ]
  32898. ))
  32899. characterMakers.push(() => makeCharacter(
  32900. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32901. {
  32902. front: {
  32903. height: math.unit(5 + 2/12, "feet"),
  32904. weight: math.unit(210, "lb"),
  32905. name: "Front",
  32906. image: {
  32907. source: "./media/characters/pera/front.svg",
  32908. extra: 1560/1531,
  32909. bottom: 165/1725
  32910. }
  32911. },
  32912. back: {
  32913. height: math.unit(5 + 2/12, "feet"),
  32914. weight: math.unit(210, "lb"),
  32915. name: "Back",
  32916. image: {
  32917. source: "./media/characters/pera/back.svg",
  32918. extra: 1523/1493,
  32919. bottom: 152/1675
  32920. }
  32921. },
  32922. dick: {
  32923. height: math.unit(2.4, "feet"),
  32924. name: "Dick",
  32925. image: {
  32926. source: "./media/characters/pera/dick.svg"
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(5 + 2/12, "feet"),
  32934. default: true
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32940. {
  32941. front: {
  32942. height: math.unit(12, "feet"),
  32943. weight: math.unit(3200, "lb"),
  32944. name: "Front",
  32945. image: {
  32946. source: "./media/characters/julian/front.svg",
  32947. extra: 2962/2701,
  32948. bottom: 184/3146
  32949. }
  32950. },
  32951. maw: {
  32952. height: math.unit(5.35, "feet"),
  32953. name: "Maw",
  32954. image: {
  32955. source: "./media/characters/julian/maw.svg"
  32956. }
  32957. },
  32958. paw: {
  32959. height: math.unit(3.07, "feet"),
  32960. name: "Paw",
  32961. image: {
  32962. source: "./media/characters/julian/paw.svg"
  32963. }
  32964. },
  32965. },
  32966. [
  32967. {
  32968. name: "Default",
  32969. height: math.unit(12, "feet"),
  32970. default: true
  32971. },
  32972. {
  32973. name: "Big",
  32974. height: math.unit(50, "feet")
  32975. },
  32976. {
  32977. name: "Really Big",
  32978. height: math.unit(1, "mile")
  32979. },
  32980. {
  32981. name: "Extremely Big",
  32982. height: math.unit(100, "miles")
  32983. },
  32984. {
  32985. name: "Planet Hugger",
  32986. height: math.unit(200, "megameters")
  32987. },
  32988. {
  32989. name: "Unreasonably Big",
  32990. height: math.unit(1e300, "meters")
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32996. {
  32997. solgooleo: {
  32998. height: math.unit(4, "meters"),
  32999. weight: math.unit(6000*1.5, "kg"),
  33000. volume: math.unit(6000, "liters"),
  33001. name: "Solgooleo",
  33002. image: {
  33003. source: "./media/characters/pi/solgooleo.svg",
  33004. extra: 388/331,
  33005. bottom: 29/417
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Normal",
  33012. height: math.unit(4, "meters"),
  33013. default: true
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(8, "feet"),
  33022. weight: math.unit(4, "tons"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/shaun/front.svg",
  33026. extra: 503/495,
  33027. bottom: 20/523
  33028. }
  33029. },
  33030. back: {
  33031. height: math.unit(8, "feet"),
  33032. weight: math.unit(4, "tons"),
  33033. name: "Back",
  33034. image: {
  33035. source: "./media/characters/shaun/back.svg",
  33036. extra: 487/480,
  33037. bottom: 20/507
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Lorg",
  33044. height: math.unit(8, "feet"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33051. {
  33052. frontAnthro: {
  33053. height: math.unit(7, "feet"),
  33054. name: "Front",
  33055. image: {
  33056. source: "./media/characters/sini/front-anthro.svg",
  33057. extra: 726/678,
  33058. bottom: 35/761
  33059. },
  33060. form: "anthro",
  33061. default: true
  33062. },
  33063. backAnthro: {
  33064. height: math.unit(7, "feet"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/sini/back-anthro.svg",
  33068. extra: 743/701,
  33069. bottom: 12/755
  33070. },
  33071. form: "anthro",
  33072. },
  33073. frontAnthroNsfw: {
  33074. height: math.unit(7, "feet"),
  33075. name: "Front (NSFW)",
  33076. image: {
  33077. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33078. extra: 726/678,
  33079. bottom: 35/761
  33080. },
  33081. form: "anthro"
  33082. },
  33083. backAnthroNsfw: {
  33084. height: math.unit(7, "feet"),
  33085. name: "Back (NSFW)",
  33086. image: {
  33087. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33088. extra: 743/701,
  33089. bottom: 12/755
  33090. },
  33091. form: "anthro",
  33092. },
  33093. mawAnthro: {
  33094. height: math.unit(2.14, "feet"),
  33095. name: "Maw",
  33096. image: {
  33097. source: "./media/characters/sini/maw-anthro.svg"
  33098. },
  33099. form: "anthro"
  33100. },
  33101. dick: {
  33102. height: math.unit(1.45, "feet"),
  33103. name: "Dick",
  33104. image: {
  33105. source: "./media/characters/sini/dick-anthro.svg"
  33106. },
  33107. form: "anthro"
  33108. },
  33109. feral: {
  33110. height: math.unit(16, "feet"),
  33111. name: "Feral",
  33112. image: {
  33113. source: "./media/characters/sini/feral.svg",
  33114. extra: 814/605,
  33115. bottom: 11/825
  33116. },
  33117. form: "feral",
  33118. default: true
  33119. },
  33120. feralNsfw: {
  33121. height: math.unit(16, "feet"),
  33122. name: "Feral (NSFW)",
  33123. image: {
  33124. source: "./media/characters/sini/feral-nsfw.svg",
  33125. extra: 814/605,
  33126. bottom: 11/825
  33127. },
  33128. form: "feral"
  33129. },
  33130. mawFeral: {
  33131. height: math.unit(5.66, "feet"),
  33132. name: "Maw",
  33133. image: {
  33134. source: "./media/characters/sini/maw-feral.svg"
  33135. },
  33136. form: "feral",
  33137. },
  33138. pawFeral: {
  33139. height: math.unit(5.17, "feet"),
  33140. name: "Paw",
  33141. image: {
  33142. source: "./media/characters/sini/paw-feral.svg"
  33143. },
  33144. form: "feral",
  33145. },
  33146. rumpFeral: {
  33147. height: math.unit(13.11, "feet"),
  33148. name: "Rump",
  33149. image: {
  33150. source: "./media/characters/sini/rump-feral.svg"
  33151. },
  33152. form: "feral",
  33153. },
  33154. dickFeral: {
  33155. height: math.unit(1, "feet"),
  33156. name: "Dick",
  33157. image: {
  33158. source: "./media/characters/sini/dick-feral.svg"
  33159. },
  33160. form: "feral",
  33161. },
  33162. eyeFeral: {
  33163. height: math.unit(1.23, "feet"),
  33164. name: "Eye",
  33165. image: {
  33166. source: "./media/characters/sini/eye-feral.svg"
  33167. },
  33168. form: "feral",
  33169. },
  33170. },
  33171. [
  33172. {
  33173. name: "Normal",
  33174. height: math.unit(7, "feet"),
  33175. default: true,
  33176. form: "anthro"
  33177. },
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(16, "feet"),
  33181. default: true,
  33182. form: "feral"
  33183. },
  33184. ],
  33185. {
  33186. "anthro": {
  33187. name: "Anthro",
  33188. default: true
  33189. },
  33190. "feral": {
  33191. name: "Feral",
  33192. }
  33193. }
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33197. {
  33198. side: {
  33199. height: math.unit(13, "meters"),
  33200. weight: math.unit(9072, "kg"),
  33201. name: "Side",
  33202. image: {
  33203. source: "./media/characters/raylldo/side.svg",
  33204. extra: 403/344,
  33205. bottom: 42/445
  33206. }
  33207. },
  33208. leaping: {
  33209. height: math.unit(12.3, "meters"),
  33210. weight: math.unit(9072, "kg"),
  33211. name: "Leaping",
  33212. image: {
  33213. source: "./media/characters/raylldo/leaping.svg",
  33214. extra: 470/249,
  33215. bottom: 13/483
  33216. }
  33217. },
  33218. flying: {
  33219. height: math.unit(18, "meters"),
  33220. weight: math.unit(9072, "kg"),
  33221. name: "Flying",
  33222. image: {
  33223. source: "./media/characters/raylldo/flying.svg"
  33224. }
  33225. },
  33226. head: {
  33227. height: math.unit(5.85, "meters"),
  33228. name: "Head",
  33229. image: {
  33230. source: "./media/characters/raylldo/head.svg"
  33231. }
  33232. },
  33233. maw: {
  33234. height: math.unit(5.32, "meters"),
  33235. name: "Maw",
  33236. image: {
  33237. source: "./media/characters/raylldo/maw.svg"
  33238. }
  33239. },
  33240. eye: {
  33241. height: math.unit(0.54, "meters"),
  33242. name: "Eye",
  33243. image: {
  33244. source: "./media/characters/raylldo/eye.svg"
  33245. }
  33246. },
  33247. },
  33248. [
  33249. {
  33250. name: "Normal",
  33251. height: math.unit(13, "meters"),
  33252. default: true
  33253. },
  33254. ]
  33255. ))
  33256. characterMakers.push(() => makeCharacter(
  33257. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33258. {
  33259. anthroFront: {
  33260. height: math.unit(9, "feet"),
  33261. weight: math.unit(600, "lb"),
  33262. name: "Anthro (Front)",
  33263. image: {
  33264. source: "./media/characters/glint/anthro-front.svg",
  33265. extra: 1097/1018,
  33266. bottom: 28/1125
  33267. }
  33268. },
  33269. anthroBack: {
  33270. height: math.unit(9, "feet"),
  33271. weight: math.unit(600, "lb"),
  33272. name: "Anthro (Back)",
  33273. image: {
  33274. source: "./media/characters/glint/anthro-back.svg",
  33275. extra: 1154/997,
  33276. bottom: 36/1190
  33277. }
  33278. },
  33279. feral: {
  33280. height: math.unit(11, "feet"),
  33281. weight: math.unit(50000, "lb"),
  33282. name: "Feral",
  33283. image: {
  33284. source: "./media/characters/glint/feral.svg",
  33285. extra: 3035/1585,
  33286. bottom: 1169/4204
  33287. }
  33288. },
  33289. dickAnthro: {
  33290. height: math.unit(0.7, "meters"),
  33291. name: "Dick (Anthro)",
  33292. image: {
  33293. source: "./media/characters/glint/dick-anthro.svg"
  33294. }
  33295. },
  33296. dickFeral: {
  33297. height: math.unit(2.65, "meters"),
  33298. name: "Dick (Feral)",
  33299. image: {
  33300. source: "./media/characters/glint/dick-feral.svg"
  33301. }
  33302. },
  33303. slitHidden: {
  33304. height: math.unit(5.85, "meters"),
  33305. name: "Slit (Hidden)",
  33306. image: {
  33307. source: "./media/characters/glint/slit-hidden.svg"
  33308. }
  33309. },
  33310. slitErect: {
  33311. height: math.unit(5.85, "meters"),
  33312. name: "Slit (Erect)",
  33313. image: {
  33314. source: "./media/characters/glint/slit-erect.svg"
  33315. }
  33316. },
  33317. mawAnthro: {
  33318. height: math.unit(0.63, "meters"),
  33319. name: "Maw (Anthro)",
  33320. image: {
  33321. source: "./media/characters/glint/maw.svg"
  33322. }
  33323. },
  33324. mawFeral: {
  33325. height: math.unit(2.89, "meters"),
  33326. name: "Maw (Feral)",
  33327. image: {
  33328. source: "./media/characters/glint/maw.svg"
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Normal",
  33335. height: math.unit(9, "feet"),
  33336. default: true
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33342. {
  33343. side: {
  33344. height: math.unit(15, "feet"),
  33345. weight: math.unit(5000, "kg"),
  33346. name: "Side",
  33347. image: {
  33348. source: "./media/characters/kairne/side.svg",
  33349. extra: 979/811,
  33350. bottom: 13/992
  33351. }
  33352. },
  33353. front: {
  33354. height: math.unit(15, "feet"),
  33355. weight: math.unit(5000, "kg"),
  33356. name: "Front",
  33357. image: {
  33358. source: "./media/characters/kairne/front.svg",
  33359. extra: 908/814,
  33360. bottom: 26/934
  33361. }
  33362. },
  33363. sideNsfw: {
  33364. height: math.unit(15, "feet"),
  33365. weight: math.unit(5000, "kg"),
  33366. name: "Side (NSFW)",
  33367. image: {
  33368. source: "./media/characters/kairne/side-nsfw.svg",
  33369. extra: 979/811,
  33370. bottom: 13/992
  33371. }
  33372. },
  33373. frontNsfw: {
  33374. height: math.unit(15, "feet"),
  33375. weight: math.unit(5000, "kg"),
  33376. name: "Front (NSFW)",
  33377. image: {
  33378. source: "./media/characters/kairne/front-nsfw.svg",
  33379. extra: 908/814,
  33380. bottom: 26/934
  33381. }
  33382. },
  33383. dickCaged: {
  33384. height: math.unit(0.65, "meters"),
  33385. name: "Dick-caged",
  33386. image: {
  33387. source: "./media/characters/kairne/dick-caged.svg"
  33388. }
  33389. },
  33390. dick: {
  33391. height: math.unit(0.79, "meters"),
  33392. name: "Dick",
  33393. image: {
  33394. source: "./media/characters/kairne/dick.svg"
  33395. }
  33396. },
  33397. genitals: {
  33398. height: math.unit(1.29, "meters"),
  33399. name: "Genitals",
  33400. image: {
  33401. source: "./media/characters/kairne/genitals.svg"
  33402. }
  33403. },
  33404. maw: {
  33405. height: math.unit(1.73, "meters"),
  33406. name: "Maw",
  33407. image: {
  33408. source: "./media/characters/kairne/maw.svg"
  33409. }
  33410. },
  33411. },
  33412. [
  33413. {
  33414. name: "Normal",
  33415. height: math.unit(15, "feet"),
  33416. default: true
  33417. },
  33418. ]
  33419. ))
  33420. characterMakers.push(() => makeCharacter(
  33421. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33422. {
  33423. front: {
  33424. height: math.unit(5 + 8/12, "feet"),
  33425. weight: math.unit(139, "lb"),
  33426. name: "Front",
  33427. image: {
  33428. source: "./media/characters/biscuit-jackal/front.svg",
  33429. extra: 2106/1961,
  33430. bottom: 58/2164
  33431. }
  33432. },
  33433. back: {
  33434. height: math.unit(5 + 8/12, "feet"),
  33435. weight: math.unit(139, "lb"),
  33436. name: "Back",
  33437. image: {
  33438. source: "./media/characters/biscuit-jackal/back.svg",
  33439. extra: 2132/1976,
  33440. bottom: 57/2189
  33441. }
  33442. },
  33443. werejackal: {
  33444. height: math.unit(6 + 3/12, "feet"),
  33445. weight: math.unit(188, "lb"),
  33446. name: "Werejackal",
  33447. image: {
  33448. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33449. extra: 2373/2178,
  33450. bottom: 53/2426
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(5 + 8/12, "feet"),
  33458. default: true
  33459. },
  33460. ]
  33461. ))
  33462. characterMakers.push(() => makeCharacter(
  33463. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33464. {
  33465. front: {
  33466. height: math.unit(140, "cm"),
  33467. weight: math.unit(45, "kg"),
  33468. name: "Front",
  33469. image: {
  33470. source: "./media/characters/tayra-white/front.svg",
  33471. extra: 2229/2192,
  33472. bottom: 75/2304
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Normal",
  33479. height: math.unit(140, "cm"),
  33480. default: true
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33486. {
  33487. front: {
  33488. height: math.unit(4 + 5/12, "feet"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/scoop/front.svg",
  33492. extra: 1257/1136,
  33493. bottom: 69/1326
  33494. }
  33495. },
  33496. back: {
  33497. height: math.unit(4 + 5/12, "feet"),
  33498. name: "Back",
  33499. image: {
  33500. source: "./media/characters/scoop/back.svg",
  33501. extra: 1321/1152,
  33502. bottom: 32/1353
  33503. }
  33504. },
  33505. maw: {
  33506. height: math.unit(0.68, "feet"),
  33507. name: "Maw",
  33508. image: {
  33509. source: "./media/characters/scoop/maw.svg"
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Really Small",
  33516. height: math.unit(1, "mm")
  33517. },
  33518. {
  33519. name: "Micro",
  33520. height: math.unit(1, "inch")
  33521. },
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(4 + 5/12, "feet"),
  33525. default: true
  33526. },
  33527. {
  33528. name: "Macro",
  33529. height: math.unit(200, "feet")
  33530. },
  33531. {
  33532. name: "Megamacro",
  33533. height: math.unit(3240, "feet")
  33534. },
  33535. {
  33536. name: "Teramacro",
  33537. height: math.unit(2500, "miles")
  33538. },
  33539. ]
  33540. ))
  33541. characterMakers.push(() => makeCharacter(
  33542. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33543. {
  33544. front: {
  33545. height: math.unit(15 + 7/12, "feet"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/saphinara/front.svg",
  33549. extra: 604/546,
  33550. bottom: 19/623
  33551. }
  33552. },
  33553. side: {
  33554. height: math.unit(15 + 7/12, "feet"),
  33555. name: "Side",
  33556. image: {
  33557. source: "./media/characters/saphinara/side.svg",
  33558. extra: 605/547,
  33559. bottom: 6/611
  33560. }
  33561. },
  33562. back: {
  33563. height: math.unit(15 + 7/12, "feet"),
  33564. name: "Back",
  33565. image: {
  33566. source: "./media/characters/saphinara/back.svg",
  33567. extra: 591/531,
  33568. bottom: 13/604
  33569. }
  33570. },
  33571. frontTail: {
  33572. height: math.unit(15 + 7/12, "feet"),
  33573. name: "Front (Full Tail)",
  33574. image: {
  33575. source: "./media/characters/saphinara/front-tail.svg",
  33576. extra: 748/547,
  33577. bottom: 66/814
  33578. }
  33579. },
  33580. },
  33581. [
  33582. {
  33583. name: "Normal",
  33584. height: math.unit(15 + 7/12, "feet"),
  33585. default: true
  33586. },
  33587. {
  33588. name: "Angry",
  33589. height: math.unit(30 + 6/12, "feet")
  33590. },
  33591. {
  33592. name: "Enraged",
  33593. height: math.unit(102 + 1/12, "feet")
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(6 + 8/12, "feet"),
  33602. weight: math.unit(300, "lb"),
  33603. name: "Front",
  33604. image: {
  33605. source: "./media/characters/jrain/front.svg",
  33606. extra: 3039/2865,
  33607. bottom: 399/3438
  33608. }
  33609. },
  33610. back: {
  33611. height: math.unit(6 + 8/12, "feet"),
  33612. weight: math.unit(300, "lb"),
  33613. name: "Back",
  33614. image: {
  33615. source: "./media/characters/jrain/back.svg",
  33616. extra: 3089/2938,
  33617. bottom: 172/3261
  33618. }
  33619. },
  33620. head: {
  33621. height: math.unit(2.14, "feet"),
  33622. name: "Head",
  33623. image: {
  33624. source: "./media/characters/jrain/head.svg"
  33625. }
  33626. },
  33627. maw: {
  33628. height: math.unit(1.77, "feet"),
  33629. name: "Maw",
  33630. image: {
  33631. source: "./media/characters/jrain/maw.svg"
  33632. }
  33633. },
  33634. leftHand: {
  33635. height: math.unit(1.1, "feet"),
  33636. name: "Left Hand",
  33637. image: {
  33638. source: "./media/characters/jrain/left-hand.svg"
  33639. }
  33640. },
  33641. rightHand: {
  33642. height: math.unit(1.1, "feet"),
  33643. name: "Right Hand",
  33644. image: {
  33645. source: "./media/characters/jrain/right-hand.svg"
  33646. }
  33647. },
  33648. eye: {
  33649. height: math.unit(0.35, "feet"),
  33650. name: "Eye",
  33651. image: {
  33652. source: "./media/characters/jrain/eye.svg"
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Normal",
  33659. height: math.unit(6 + 8/12, "feet"),
  33660. default: true
  33661. },
  33662. {
  33663. name: "Casually Large",
  33664. height: math.unit(25, "feet")
  33665. },
  33666. {
  33667. name: "Giant",
  33668. height: math.unit(100, "feet")
  33669. },
  33670. {
  33671. name: "Kaiju",
  33672. height: math.unit(300, "feet")
  33673. },
  33674. ]
  33675. ))
  33676. characterMakers.push(() => makeCharacter(
  33677. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33678. {
  33679. dragon: {
  33680. height: math.unit(5, "meters"),
  33681. name: "Dragon",
  33682. image: {
  33683. source: "./media/characters/sabrina/dragon.svg",
  33684. extra: 3670 / 2365,
  33685. bottom: 333 / 4003
  33686. }
  33687. },
  33688. gryphon: {
  33689. height: math.unit(3, "meters"),
  33690. name: "Gryphon",
  33691. image: {
  33692. source: "./media/characters/sabrina/gryphon.svg",
  33693. extra: 1576 / 945,
  33694. bottom: 71 / 1647
  33695. }
  33696. },
  33697. snake: {
  33698. height: math.unit(12, "meters"),
  33699. name: "Snake",
  33700. image: {
  33701. source: "./media/characters/sabrina/snake.svg",
  33702. extra: 1758 / 1320,
  33703. bottom: 186 / 1944
  33704. }
  33705. },
  33706. collar: {
  33707. height: math.unit(1.86, "meters"),
  33708. name: "Collar",
  33709. image: {
  33710. source: "./media/characters/sabrina/collar.svg"
  33711. }
  33712. },
  33713. eye: {
  33714. height: math.unit(0.53, "meters"),
  33715. name: "Eye",
  33716. image: {
  33717. source: "./media/characters/sabrina/eye.svg"
  33718. }
  33719. },
  33720. foot: {
  33721. height: math.unit(1.86, "meters"),
  33722. name: "Foot",
  33723. image: {
  33724. source: "./media/characters/sabrina/foot.svg"
  33725. }
  33726. },
  33727. hand: {
  33728. height: math.unit(1.32, "meters"),
  33729. name: "Hand",
  33730. image: {
  33731. source: "./media/characters/sabrina/hand.svg"
  33732. }
  33733. },
  33734. head: {
  33735. height: math.unit(2.44, "meters"),
  33736. name: "Head",
  33737. image: {
  33738. source: "./media/characters/sabrina/head.svg"
  33739. }
  33740. },
  33741. headAngry: {
  33742. height: math.unit(2.44, "meters"),
  33743. name: "Head (Angry))",
  33744. image: {
  33745. source: "./media/characters/sabrina/head-angry.svg"
  33746. }
  33747. },
  33748. maw: {
  33749. height: math.unit(1.65, "meters"),
  33750. name: "Maw",
  33751. image: {
  33752. source: "./media/characters/sabrina/maw.svg"
  33753. }
  33754. },
  33755. spikes: {
  33756. height: math.unit(1.69, "meters"),
  33757. name: "Spikes",
  33758. image: {
  33759. source: "./media/characters/sabrina/spikes.svg"
  33760. }
  33761. },
  33762. stomach: {
  33763. height: math.unit(1.15, "meters"),
  33764. name: "Stomach",
  33765. image: {
  33766. source: "./media/characters/sabrina/stomach.svg"
  33767. }
  33768. },
  33769. tongue: {
  33770. height: math.unit(1.27, "meters"),
  33771. name: "Tongue",
  33772. image: {
  33773. source: "./media/characters/sabrina/tongue.svg"
  33774. }
  33775. },
  33776. wingDorsal: {
  33777. height: math.unit(4.85, "meters"),
  33778. name: "Wing (Dorsal)",
  33779. image: {
  33780. source: "./media/characters/sabrina/wing-dorsal.svg"
  33781. }
  33782. },
  33783. wingVentral: {
  33784. height: math.unit(4.85, "meters"),
  33785. name: "Wing (Ventral)",
  33786. image: {
  33787. source: "./media/characters/sabrina/wing-ventral.svg"
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(5, "meters"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33801. {
  33802. frontMaid: {
  33803. height: math.unit(5 + 5/12, "feet"),
  33804. weight: math.unit(130, "lb"),
  33805. name: "Front (Maid)",
  33806. image: {
  33807. source: "./media/characters/midnight-tales/front-maid.svg",
  33808. extra: 489/454,
  33809. bottom: 61/550
  33810. }
  33811. },
  33812. frontFormal: {
  33813. height: math.unit(5 + 5/12, "feet"),
  33814. weight: math.unit(130, "lb"),
  33815. name: "Front (Formal)",
  33816. image: {
  33817. source: "./media/characters/midnight-tales/front-formal.svg",
  33818. extra: 489/454,
  33819. bottom: 61/550
  33820. }
  33821. },
  33822. back: {
  33823. height: math.unit(5 + 5/12, "feet"),
  33824. weight: math.unit(130, "lb"),
  33825. name: "Back",
  33826. image: {
  33827. source: "./media/characters/midnight-tales/back.svg",
  33828. extra: 498/456,
  33829. bottom: 33/531
  33830. }
  33831. },
  33832. frontBeast: {
  33833. height: math.unit(40, "feet"),
  33834. weight: math.unit(64000, "lb"),
  33835. name: "Front (Beast)",
  33836. image: {
  33837. source: "./media/characters/midnight-tales/front-beast.svg",
  33838. extra: 927/860,
  33839. bottom: 53/980
  33840. }
  33841. },
  33842. backBeast: {
  33843. height: math.unit(40, "feet"),
  33844. weight: math.unit(64000, "lb"),
  33845. name: "Back (Beast)",
  33846. image: {
  33847. source: "./media/characters/midnight-tales/back-beast.svg",
  33848. extra: 929/855,
  33849. bottom: 16/945
  33850. }
  33851. },
  33852. footBeast: {
  33853. height: math.unit(6.7, "feet"),
  33854. name: "Foot (Beast)",
  33855. image: {
  33856. source: "./media/characters/midnight-tales/foot-beast.svg"
  33857. }
  33858. },
  33859. headBeast: {
  33860. height: math.unit(8, "feet"),
  33861. name: "Head (Beast)",
  33862. image: {
  33863. source: "./media/characters/midnight-tales/head-beast.svg"
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Normal",
  33870. height: math.unit(5 + 5 / 12, "feet"),
  33871. default: true
  33872. },
  33873. {
  33874. name: "Macro",
  33875. height: math.unit(25, "feet")
  33876. },
  33877. ]
  33878. ))
  33879. characterMakers.push(() => makeCharacter(
  33880. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33881. {
  33882. front: {
  33883. height: math.unit(5 + 10/12, "feet"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/argon/front.svg",
  33887. extra: 2009/1935,
  33888. bottom: 118/2127
  33889. }
  33890. },
  33891. back: {
  33892. height: math.unit(5 + 10/12, "feet"),
  33893. name: "Back",
  33894. image: {
  33895. source: "./media/characters/argon/back.svg",
  33896. extra: 2047/1992,
  33897. bottom: 20/2067
  33898. }
  33899. },
  33900. frontDressed: {
  33901. height: math.unit(5 + 10/12, "feet"),
  33902. name: "Front (Dressed)",
  33903. image: {
  33904. source: "./media/characters/argon/front-dressed.svg",
  33905. extra: 2009/1935,
  33906. bottom: 118/2127
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(5 + 10/12, "feet"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(8 + 6/12, "feet"),
  33923. weight: math.unit(1150, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/kichi/front.svg",
  33927. extra: 1267/1164,
  33928. bottom: 61/1328
  33929. }
  33930. },
  33931. back: {
  33932. height: math.unit(8 + 6/12, "feet"),
  33933. weight: math.unit(1150, "lb"),
  33934. name: "Back",
  33935. image: {
  33936. source: "./media/characters/kichi/back.svg",
  33937. extra: 1273/1166,
  33938. bottom: 33/1306
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(8 + 6/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33952. {
  33953. front: {
  33954. height: math.unit(6, "feet"),
  33955. weight: math.unit(210, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/manetel-greyscale/front.svg",
  33959. extra: 350/312,
  33960. bottom: 8/358
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Micro",
  33967. height: math.unit(2, "inches")
  33968. },
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(6, "feet"),
  33972. default: true
  33973. },
  33974. {
  33975. name: "Minimacro",
  33976. height: math.unit(17, "feet")
  33977. },
  33978. {
  33979. name: "Macro",
  33980. height: math.unit(117, "feet")
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33986. {
  33987. side: {
  33988. height: math.unit(5 + 1/12, "feet"),
  33989. weight: math.unit(418, "lb"),
  33990. name: "Side",
  33991. image: {
  33992. source: "./media/characters/softpurr/side.svg",
  33993. extra: 1993/1945,
  33994. bottom: 134/2127
  33995. }
  33996. },
  33997. front: {
  33998. height: math.unit(5 + 1/12, "feet"),
  33999. weight: math.unit(418, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/softpurr/front.svg",
  34003. extra: 1950/1856,
  34004. bottom: 174/2124
  34005. }
  34006. },
  34007. paw: {
  34008. height: math.unit(1, "feet"),
  34009. name: "Paw",
  34010. image: {
  34011. source: "./media/characters/softpurr/paw.svg"
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Normal",
  34018. height: math.unit(5 + 1/12, "feet"),
  34019. default: true
  34020. },
  34021. ]
  34022. ))
  34023. characterMakers.push(() => makeCharacter(
  34024. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34025. {
  34026. front: {
  34027. height: math.unit(260, "meters"),
  34028. name: "Front",
  34029. image: {
  34030. source: "./media/characters/anahita/front.svg",
  34031. extra: 665/635,
  34032. bottom: 89/754
  34033. }
  34034. },
  34035. },
  34036. [
  34037. {
  34038. name: "Macro",
  34039. height: math.unit(260, "meters"),
  34040. default: true
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(4 + 10/12, "feet"),
  34049. weight: math.unit(160, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/chip-mouse/front.svg",
  34053. extra: 3528/3408,
  34054. bottom: 0/3528
  34055. }
  34056. },
  34057. frontNsfw: {
  34058. height: math.unit(4 + 10/12, "feet"),
  34059. weight: math.unit(160, "lb"),
  34060. name: "Front (NSFW)",
  34061. image: {
  34062. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34063. extra: 3528/3408,
  34064. bottom: 0/3528
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(4 + 10/12, "feet"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34078. {
  34079. side: {
  34080. height: math.unit(10, "feet"),
  34081. weight: math.unit(14000, "lb"),
  34082. name: "Side",
  34083. image: {
  34084. source: "./media/characters/kremm/side.svg",
  34085. extra: 1390/1053,
  34086. bottom: 90/1480
  34087. }
  34088. },
  34089. gut: {
  34090. height: math.unit(5.8, "feet"),
  34091. name: "Gut",
  34092. image: {
  34093. source: "./media/characters/kremm/gut.svg"
  34094. }
  34095. },
  34096. ass: {
  34097. height: math.unit(6.1, "feet"),
  34098. name: "Ass",
  34099. image: {
  34100. source: "./media/characters/kremm/ass.svg"
  34101. }
  34102. },
  34103. jaws: {
  34104. height: math.unit(2.2, "feet"),
  34105. name: "Jaws",
  34106. image: {
  34107. source: "./media/characters/kremm/jaws.svg"
  34108. }
  34109. },
  34110. dick: {
  34111. height: math.unit(4.26, "feet"),
  34112. name: "Dick",
  34113. image: {
  34114. source: "./media/characters/kremm/dick.svg"
  34115. }
  34116. },
  34117. },
  34118. [
  34119. {
  34120. name: "Normal",
  34121. height: math.unit(10, "feet"),
  34122. default: true
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(30, "stories"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/kai/front.svg",
  34134. extra: 1892/1718,
  34135. bottom: 162/2054
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Macro",
  34142. height: math.unit(30, "stories"),
  34143. default: true
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(6 + 4/12, "feet"),
  34152. weight: math.unit(145, "lb"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/sykes/front.svg",
  34156. extra: 1321 / 1187,
  34157. bottom: 66 / 1387
  34158. }
  34159. },
  34160. back: {
  34161. height: math.unit(6 + 4/12, "feet"),
  34162. weight: math.unit(145, "lb"),
  34163. name: "Back",
  34164. image: {
  34165. source: "./media/characters/sykes/back.svg",
  34166. extra: 1326/1181,
  34167. bottom: 31/1357
  34168. }
  34169. },
  34170. handBack: {
  34171. height: math.unit(0.9, "feet"),
  34172. name: "Hand (Back)",
  34173. image: {
  34174. source: "./media/characters/sykes/hand-back.svg"
  34175. }
  34176. },
  34177. handFront: {
  34178. height: math.unit(0.839, "feet"),
  34179. name: "Hand (Front)",
  34180. image: {
  34181. source: "./media/characters/sykes/hand-front.svg"
  34182. }
  34183. },
  34184. leftFoot: {
  34185. height: math.unit(1.2, "feet"),
  34186. name: "Foot (Left)",
  34187. image: {
  34188. source: "./media/characters/sykes/foot-left.svg"
  34189. }
  34190. },
  34191. rightFoot: {
  34192. height: math.unit(1.2, "feet"),
  34193. name: "Foot (Right)",
  34194. image: {
  34195. source: "./media/characters/sykes/foot-right.svg"
  34196. }
  34197. },
  34198. maw: {
  34199. height: math.unit(1.93, "feet"),
  34200. name: "Maw",
  34201. image: {
  34202. source: "./media/characters/sykes/maw.svg"
  34203. }
  34204. },
  34205. teeth: {
  34206. height: math.unit(0.51, "feet"),
  34207. name: "Teeth",
  34208. image: {
  34209. source: "./media/characters/sykes/teeth.svg"
  34210. }
  34211. },
  34212. tongue: {
  34213. height: math.unit(2.13, "feet"),
  34214. name: "Tongue",
  34215. image: {
  34216. source: "./media/characters/sykes/tongue.svg"
  34217. }
  34218. },
  34219. uvula: {
  34220. height: math.unit(0.16, "feet"),
  34221. name: "Uvula",
  34222. image: {
  34223. source: "./media/characters/sykes/uvula.svg"
  34224. }
  34225. },
  34226. collar: {
  34227. height: math.unit(0.287, "feet"),
  34228. name: "Collar",
  34229. image: {
  34230. source: "./media/characters/sykes/collar.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Shrunken",
  34237. height: math.unit(5, "inches")
  34238. },
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(6 + 4 / 12, "feet"),
  34242. default: true
  34243. },
  34244. {
  34245. name: "Big",
  34246. height: math.unit(15, "feet")
  34247. },
  34248. ]
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34252. {
  34253. front: {
  34254. height: math.unit(5 + 8/12, "feet"),
  34255. weight: math.unit(190, "lb"),
  34256. name: "Front",
  34257. image: {
  34258. source: "./media/characters/oven-otter/front.svg",
  34259. extra: 1809/1740,
  34260. bottom: 181/1990
  34261. }
  34262. },
  34263. back: {
  34264. height: math.unit(5 + 8/12, "feet"),
  34265. weight: math.unit(190, "lb"),
  34266. name: "Back",
  34267. image: {
  34268. source: "./media/characters/oven-otter/back.svg",
  34269. extra: 1709/1635,
  34270. bottom: 118/1827
  34271. }
  34272. },
  34273. hand: {
  34274. height: math.unit(1.07, "feet"),
  34275. name: "Hand",
  34276. image: {
  34277. source: "./media/characters/oven-otter/hand.svg"
  34278. }
  34279. },
  34280. beans: {
  34281. height: math.unit(1.74, "feet"),
  34282. name: "Beans",
  34283. image: {
  34284. source: "./media/characters/oven-otter/beans.svg"
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Micro",
  34291. height: math.unit(0.5, "inches")
  34292. },
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(5 + 8/12, "feet"),
  34296. default: true
  34297. },
  34298. {
  34299. name: "Macro",
  34300. height: math.unit(250, "feet")
  34301. },
  34302. {
  34303. name: "Really High",
  34304. height: math.unit(420, "feet")
  34305. },
  34306. ]
  34307. ))
  34308. characterMakers.push(() => makeCharacter(
  34309. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34310. {
  34311. front: {
  34312. height: math.unit(5, "meters"),
  34313. weight: math.unit(292000000000000, "kg"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/devourer/front.svg",
  34317. extra: 1800/1733,
  34318. bottom: 211/2011
  34319. }
  34320. },
  34321. maw: {
  34322. height: math.unit(1.1, "meter"),
  34323. name: "Maw",
  34324. image: {
  34325. source: "./media/characters/devourer/maw.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Small",
  34332. height: math.unit(3, "meters")
  34333. },
  34334. {
  34335. name: "Large",
  34336. height: math.unit(5, "meters"),
  34337. default: true
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34343. {
  34344. front: {
  34345. height: math.unit(6, "feet"),
  34346. weight: math.unit(400, "lb"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/ellarby/front.svg",
  34350. extra: 1909/1763,
  34351. bottom: 80/1989
  34352. }
  34353. },
  34354. back: {
  34355. height: math.unit(6, "feet"),
  34356. weight: math.unit(400, "lb"),
  34357. name: "Back",
  34358. image: {
  34359. source: "./media/characters/ellarby/back.svg",
  34360. extra: 1914/1784,
  34361. bottom: 172/2086
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Mischief",
  34368. height: math.unit(18, "inches")
  34369. },
  34370. {
  34371. name: "Trouble",
  34372. height: math.unit(12, "feet")
  34373. },
  34374. {
  34375. name: "Havoc",
  34376. height: math.unit(200, "feet"),
  34377. default: true
  34378. },
  34379. {
  34380. name: "Pandemonium",
  34381. height: math.unit(1, "mile")
  34382. },
  34383. {
  34384. name: "Catastrophe",
  34385. height: math.unit(100, "miles")
  34386. },
  34387. ]
  34388. ))
  34389. characterMakers.push(() => makeCharacter(
  34390. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34391. {
  34392. front: {
  34393. height: math.unit(4.7, "meters"),
  34394. weight: math.unit(6500, "kg"),
  34395. name: "Front",
  34396. image: {
  34397. source: "./media/characters/vex/front.svg",
  34398. extra: 1288/1140,
  34399. bottom: 100/1388
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(4.7, "meters"),
  34407. default: true
  34408. },
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34413. {
  34414. normal: {
  34415. height: math.unit(6, "feet"),
  34416. weight: math.unit(350, "lb"),
  34417. name: "Normal",
  34418. image: {
  34419. source: "./media/characters/teshy/normal.svg",
  34420. extra: 1795/1735,
  34421. bottom: 16/1811
  34422. }
  34423. },
  34424. monsterFront: {
  34425. height: math.unit(12, "feet"),
  34426. weight: math.unit(4700, "lb"),
  34427. name: "Monster (Front)",
  34428. image: {
  34429. source: "./media/characters/teshy/monster-front.svg",
  34430. extra: 2042/2034,
  34431. bottom: 128/2170
  34432. }
  34433. },
  34434. monsterSide: {
  34435. height: math.unit(12, "feet"),
  34436. weight: math.unit(4700, "lb"),
  34437. name: "Monster (Side)",
  34438. image: {
  34439. source: "./media/characters/teshy/monster-side.svg",
  34440. extra: 2067/2056,
  34441. bottom: 70/2137
  34442. }
  34443. },
  34444. monsterBack: {
  34445. height: math.unit(12, "feet"),
  34446. weight: math.unit(4700, "lb"),
  34447. name: "Monster (Back)",
  34448. image: {
  34449. source: "./media/characters/teshy/monster-back.svg",
  34450. extra: 1921/1914,
  34451. bottom: 171/2092
  34452. }
  34453. },
  34454. },
  34455. [
  34456. {
  34457. name: "Normal",
  34458. height: math.unit(6, "feet"),
  34459. default: true
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(6, "feet"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/ramey/front.svg",
  34471. extra: 790/787,
  34472. bottom: 27/817
  34473. }
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(6, "feet"),
  34480. default: true
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34486. {
  34487. front: {
  34488. height: math.unit(5 + 5/12, "feet"),
  34489. weight: math.unit(120, "lb"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/phirae/front.svg",
  34493. extra: 2491/2436,
  34494. bottom: 38/2529
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(5 + 5/12, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34508. {
  34509. front: {
  34510. height: math.unit(5 + 3/12, "feet"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/stagglas/front.svg",
  34514. extra: 962/882,
  34515. bottom: 53/1015
  34516. }
  34517. },
  34518. feral: {
  34519. height: math.unit(335, "cm"),
  34520. name: "Feral",
  34521. image: {
  34522. source: "./media/characters/stagglas/feral.svg",
  34523. extra: 1732/1090,
  34524. bottom: 48/1780
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(5 + 3/12, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(5 + 4/12, "feet"),
  34541. weight: math.unit(145, "lb"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/starra/front.svg",
  34545. extra: 1790/1691,
  34546. bottom: 91/1881
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(5 + 4/12, "feet"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(2.2, "meters"),
  34563. name: "Front",
  34564. image: {
  34565. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34566. extra: 1194/1005,
  34567. bottom: 25/1219
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(2.2, "meters"),
  34575. default: true
  34576. },
  34577. ]
  34578. ))
  34579. characterMakers.push(() => makeCharacter(
  34580. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34581. {
  34582. side: {
  34583. height: math.unit(8 + 2/12, "feet"),
  34584. weight: math.unit(1240, "lb"),
  34585. name: "Side",
  34586. image: {
  34587. source: "./media/characters/mika-valentine/side.svg",
  34588. extra: 2670/2501,
  34589. bottom: 250/2920
  34590. }
  34591. },
  34592. },
  34593. [
  34594. {
  34595. name: "Normal",
  34596. height: math.unit(8 + 2/12, "feet"),
  34597. default: true
  34598. },
  34599. ]
  34600. ))
  34601. characterMakers.push(() => makeCharacter(
  34602. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34603. {
  34604. front: {
  34605. height: math.unit(7 + 2/12, "feet"),
  34606. name: "Front",
  34607. image: {
  34608. source: "./media/characters/xoltol/front.svg",
  34609. extra: 2212/2124,
  34610. bottom: 84/2296
  34611. }
  34612. },
  34613. side: {
  34614. height: math.unit(7 + 2/12, "feet"),
  34615. name: "Side",
  34616. image: {
  34617. source: "./media/characters/xoltol/side.svg",
  34618. extra: 2273/2197,
  34619. bottom: 26/2299
  34620. }
  34621. },
  34622. hand: {
  34623. height: math.unit(2.5, "feet"),
  34624. name: "Hand",
  34625. image: {
  34626. source: "./media/characters/xoltol/hand.svg"
  34627. }
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Small-ish",
  34633. height: math.unit(5 + 11/12, "feet")
  34634. },
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(7 + 2/12, "feet")
  34638. },
  34639. {
  34640. name: "\"Macro\"",
  34641. height: math.unit(14 + 9/12, "feet"),
  34642. default: true
  34643. },
  34644. {
  34645. name: "Alternate Height",
  34646. height: math.unit(20, "feet")
  34647. },
  34648. {
  34649. name: "Actually Macro",
  34650. height: math.unit(100, "feet")
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(5 + 2/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/kotetsu-redwood/front.svg",
  34662. extra: 1053/942,
  34663. bottom: 60/1113
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(5 + 2/12, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34677. {
  34678. front: {
  34679. height: math.unit(2.4, "meters"),
  34680. weight: math.unit(125, "kg"),
  34681. name: "Front",
  34682. image: {
  34683. source: "./media/characters/lilith/front.svg",
  34684. extra: 1590/1513,
  34685. bottom: 203/1793
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Humanoid",
  34692. height: math.unit(2.4, "meters")
  34693. },
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(6, "meters"),
  34697. default: true
  34698. },
  34699. {
  34700. name: "Largest",
  34701. height: math.unit(55, "meters")
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(8 + 4/12, "feet"),
  34710. weight: math.unit(535, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/beh'kah-bolger/front.svg",
  34714. extra: 1660/1603,
  34715. bottom: 37/1697
  34716. }
  34717. },
  34718. },
  34719. [
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(8 + 4/12, "feet"),
  34723. default: true
  34724. },
  34725. {
  34726. name: "Kaiju",
  34727. height: math.unit(250, "feet")
  34728. },
  34729. {
  34730. name: "Still Growing",
  34731. height: math.unit(10, "miles")
  34732. },
  34733. {
  34734. name: "Continental",
  34735. height: math.unit(5000, "miles")
  34736. },
  34737. {
  34738. name: "Final Form",
  34739. height: math.unit(2500000, "miles")
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34745. {
  34746. front: {
  34747. height: math.unit(7 + 2/12, "feet"),
  34748. weight: math.unit(230, "kg"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/tatyana-milewska/front.svg",
  34752. extra: 1199/1150,
  34753. bottom: 86/1285
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(7 + 2/12, "feet"),
  34761. default: true
  34762. },
  34763. {
  34764. name: "Big",
  34765. height: math.unit(12, "feet")
  34766. },
  34767. {
  34768. name: "Minimacro",
  34769. height: math.unit(20, "feet")
  34770. },
  34771. {
  34772. name: "Macro",
  34773. height: math.unit(120, "feet")
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34779. {
  34780. front: {
  34781. height: math.unit(7 + 8/12, "feet"),
  34782. weight: math.unit(152, "kg"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/helen-arri/front.svg",
  34786. extra: 440/423,
  34787. bottom: 14/454
  34788. }
  34789. },
  34790. back: {
  34791. height: math.unit(7 + 8/12, "feet"),
  34792. weight: math.unit(152, "kg"),
  34793. name: "Back",
  34794. image: {
  34795. source: "./media/characters/helen-arri/back.svg",
  34796. extra: 443/426,
  34797. bottom: 8/451
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(7 + 8/12, "feet"),
  34805. default: true
  34806. },
  34807. {
  34808. name: "Big",
  34809. height: math.unit(14, "feet")
  34810. },
  34811. {
  34812. name: "Minimacro",
  34813. height: math.unit(24, "feet")
  34814. },
  34815. {
  34816. name: "Macro",
  34817. height: math.unit(140, "feet")
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(6, "meters"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/ehanu-rehu/front.svg",
  34829. extra: 1800/1800,
  34830. bottom: 59/1859
  34831. }
  34832. },
  34833. },
  34834. [
  34835. {
  34836. name: "Normal",
  34837. height: math.unit(6, "meters"),
  34838. default: true
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34844. {
  34845. front: {
  34846. height: math.unit(7 + 3/12, "feet"),
  34847. name: "Front",
  34848. image: {
  34849. source: "./media/characters/renholder/front.svg",
  34850. extra: 3096/2960,
  34851. bottom: 250/3346
  34852. }
  34853. },
  34854. },
  34855. [
  34856. {
  34857. name: "Normal Bat",
  34858. height: math.unit(7 + 3/12, "feet"),
  34859. default: true
  34860. },
  34861. {
  34862. name: "Slightly Tall Bat",
  34863. height: math.unit(100, "feet")
  34864. },
  34865. {
  34866. name: "Big Bat",
  34867. height: math.unit(1000, "feet")
  34868. },
  34869. {
  34870. name: "City-Sized Bat",
  34871. height: math.unit(200000, "feet")
  34872. },
  34873. {
  34874. name: "Bigger Bat",
  34875. height: math.unit(10000, "miles")
  34876. },
  34877. {
  34878. name: "Solar Sized Bat",
  34879. height: math.unit(100, "AU")
  34880. },
  34881. {
  34882. name: "Galactic Bat",
  34883. height: math.unit(200000, "lightyears")
  34884. },
  34885. {
  34886. name: "Universally Known Bat",
  34887. height: math.unit(1, "universe")
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34893. {
  34894. front: {
  34895. height: math.unit(6 + 11/12, "feet"),
  34896. weight: math.unit(250, "lb"),
  34897. name: "Front",
  34898. image: {
  34899. source: "./media/characters/cookiecat/front.svg",
  34900. extra: 893/827,
  34901. bottom: 14/907
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Micro",
  34908. height: math.unit(3, "inches")
  34909. },
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(6 + 11/12, "feet"),
  34913. default: true
  34914. },
  34915. {
  34916. name: "Macro",
  34917. height: math.unit(100, "feet")
  34918. },
  34919. {
  34920. name: "Macro+",
  34921. height: math.unit(404, "feet")
  34922. },
  34923. {
  34924. name: "Megamacro",
  34925. height: math.unit(165, "miles")
  34926. },
  34927. {
  34928. name: "Planetary",
  34929. height: math.unit(4600, "miles")
  34930. },
  34931. ]
  34932. ))
  34933. characterMakers.push(() => makeCharacter(
  34934. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34935. {
  34936. front: {
  34937. height: math.unit(10 + 3/12, "feet"),
  34938. weight: math.unit(1500, "lb"),
  34939. name: "Front",
  34940. image: {
  34941. source: "./media/characters/tux-kusanagi/front.svg",
  34942. extra: 944/840,
  34943. bottom: 39/983
  34944. }
  34945. },
  34946. back: {
  34947. height: math.unit(10 + 3/12, "feet"),
  34948. weight: math.unit(1500, "lb"),
  34949. name: "Back",
  34950. image: {
  34951. source: "./media/characters/tux-kusanagi/back.svg",
  34952. extra: 941/842,
  34953. bottom: 28/969
  34954. }
  34955. },
  34956. rump: {
  34957. height: math.unit(5.25, "feet"),
  34958. name: "Rump",
  34959. image: {
  34960. source: "./media/characters/tux-kusanagi/rump.svg"
  34961. }
  34962. },
  34963. beak: {
  34964. height: math.unit(1.54, "feet"),
  34965. name: "Beak",
  34966. image: {
  34967. source: "./media/characters/tux-kusanagi/beak.svg"
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(10 + 3/12, "feet"),
  34975. default: true
  34976. },
  34977. ]
  34978. ))
  34979. characterMakers.push(() => makeCharacter(
  34980. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34981. {
  34982. front: {
  34983. height: math.unit(58, "feet"),
  34984. weight: math.unit(200, "tons"),
  34985. name: "Front",
  34986. image: {
  34987. source: "./media/characters/uzarmazari/front.svg",
  34988. extra: 1575/1455,
  34989. bottom: 152/1727
  34990. }
  34991. },
  34992. back: {
  34993. height: math.unit(58, "feet"),
  34994. weight: math.unit(200, "tons"),
  34995. name: "Back",
  34996. image: {
  34997. source: "./media/characters/uzarmazari/back.svg",
  34998. extra: 1585/1510,
  34999. bottom: 157/1742
  35000. }
  35001. },
  35002. head: {
  35003. height: math.unit(26, "feet"),
  35004. name: "Head",
  35005. image: {
  35006. source: "./media/characters/uzarmazari/head.svg"
  35007. }
  35008. },
  35009. },
  35010. [
  35011. {
  35012. name: "Normal",
  35013. height: math.unit(58, "feet"),
  35014. default: true
  35015. },
  35016. ]
  35017. ))
  35018. characterMakers.push(() => makeCharacter(
  35019. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35020. {
  35021. side: {
  35022. height: math.unit(15, "feet"),
  35023. name: "Side",
  35024. image: {
  35025. source: "./media/characters/akitu/side.svg",
  35026. extra: 1421/1321,
  35027. bottom: 157/1578
  35028. }
  35029. },
  35030. front: {
  35031. height: math.unit(15, "feet"),
  35032. name: "Front",
  35033. image: {
  35034. source: "./media/characters/akitu/front.svg",
  35035. extra: 1435/1326,
  35036. bottom: 232/1667
  35037. }
  35038. },
  35039. },
  35040. [
  35041. {
  35042. name: "Normal",
  35043. height: math.unit(15, "feet"),
  35044. default: true
  35045. },
  35046. ]
  35047. ))
  35048. characterMakers.push(() => makeCharacter(
  35049. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35050. {
  35051. front: {
  35052. height: math.unit(10 + 8/12, "feet"),
  35053. name: "Front",
  35054. image: {
  35055. source: "./media/characters/azalie-croixland/front.svg",
  35056. extra: 1972/1856,
  35057. bottom: 31/2003
  35058. }
  35059. },
  35060. },
  35061. [
  35062. {
  35063. name: "Original Height",
  35064. height: math.unit(5 + 4/12, "feet")
  35065. },
  35066. {
  35067. name: "Normal Height",
  35068. height: math.unit(10 + 8/12, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35075. {
  35076. side: {
  35077. height: math.unit(7 + 1/12, "feet"),
  35078. weight: math.unit(245, "lb"),
  35079. name: "Side",
  35080. image: {
  35081. source: "./media/characters/kavus-kazian/side.svg",
  35082. extra: 349/342,
  35083. bottom: 15/364
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Normal",
  35090. height: math.unit(7 + 1/12, "feet"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35097. {
  35098. normalFront: {
  35099. height: math.unit(5 + 11/12, "feet"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/moonlight-rose/normal-front.svg",
  35103. extra: 1980/1825,
  35104. bottom: 18/1998
  35105. },
  35106. form: "normal",
  35107. default: true
  35108. },
  35109. normalBack: {
  35110. height: math.unit(5 + 11/12, "feet"),
  35111. name: "Back",
  35112. image: {
  35113. source: "./media/characters/moonlight-rose/normal-back.svg",
  35114. extra: 2010/1839,
  35115. bottom: 10/2020
  35116. },
  35117. form: "normal"
  35118. },
  35119. demonFront: {
  35120. height: math.unit(1.5, "earths"),
  35121. name: "Front",
  35122. image: {
  35123. source: "./media/characters/moonlight-rose/demon.svg",
  35124. extra: 1400/1294,
  35125. bottom: 45/1445
  35126. },
  35127. form: "demon",
  35128. default: true
  35129. },
  35130. terraFront: {
  35131. height: math.unit(1.5, "earths"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/moonlight-rose/terra.svg"
  35135. },
  35136. form: "terra",
  35137. default: true
  35138. },
  35139. jupiterFront: {
  35140. height: math.unit(69911*2, "km"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35144. extra: 1367/1286,
  35145. bottom: 55/1422
  35146. },
  35147. form: "jupiter",
  35148. default: true
  35149. },
  35150. neptuneFront: {
  35151. height: math.unit(24622*2, "feet"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35155. extra: 1851/1712,
  35156. bottom: 0/1851
  35157. },
  35158. form: "neptune",
  35159. default: true
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "\"Natural\" Height",
  35165. height: math.unit(5 + 11/12, "feet"),
  35166. form: "normal"
  35167. },
  35168. {
  35169. name: "Smallest comfortable size",
  35170. height: math.unit(40, "meters"),
  35171. form: "normal"
  35172. },
  35173. {
  35174. name: "Common size",
  35175. height: math.unit(50, "km"),
  35176. form: "normal",
  35177. default: true
  35178. },
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(1.5, "earths"),
  35182. form: "demon",
  35183. default: true
  35184. },
  35185. {
  35186. name: "Universal",
  35187. height: math.unit(15, "universes"),
  35188. form: "demon"
  35189. },
  35190. {
  35191. name: "Earth",
  35192. height: math.unit(1.5, "earths"),
  35193. form: "terra",
  35194. default: true
  35195. },
  35196. {
  35197. name: "Super Earth",
  35198. height: math.unit(67.5, "earths"),
  35199. form: "terra"
  35200. },
  35201. {
  35202. name: "Doesn't fit in a solar system...",
  35203. height: math.unit(1, "galaxy"),
  35204. form: "terra"
  35205. },
  35206. {
  35207. name: "Saturn",
  35208. height: math.unit(58232*2, "km"),
  35209. form: "jupiter"
  35210. },
  35211. {
  35212. name: "Jupiter",
  35213. height: math.unit(69911*2, "km"),
  35214. form: "jupiter",
  35215. default: true
  35216. },
  35217. {
  35218. name: "HD 100546 b",
  35219. height: math.unit(482938, "km"),
  35220. form: "jupiter"
  35221. },
  35222. {
  35223. name: "Enceladus",
  35224. height: math.unit(513*2, "km"),
  35225. form: "neptune"
  35226. },
  35227. {
  35228. name: "Europe",
  35229. height: math.unit(1560*2, "km"),
  35230. form: "neptune"
  35231. },
  35232. {
  35233. name: "Neptune",
  35234. height: math.unit(24622*2, "km"),
  35235. form: "neptune",
  35236. default: true
  35237. },
  35238. {
  35239. name: "CoRoT-9b",
  35240. height: math.unit(75067*2, "km"),
  35241. form: "neptune"
  35242. },
  35243. ],
  35244. {
  35245. "normal": {
  35246. name: "Normal",
  35247. default: true
  35248. },
  35249. "demon": {
  35250. name: "Demon"
  35251. },
  35252. "terra": {
  35253. name: "Terra"
  35254. },
  35255. "jupiter": {
  35256. name: "Jupiter"
  35257. },
  35258. "neptune": {
  35259. name: "Neptune"
  35260. }
  35261. }
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(16, "feet"),
  35268. weight: math.unit(610, "kg"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/huckle/front.svg",
  35272. extra: 1731/1625,
  35273. bottom: 33/1764
  35274. }
  35275. },
  35276. back: {
  35277. height: math.unit(16, "feet"),
  35278. weight: math.unit(610, "kg"),
  35279. name: "Back",
  35280. image: {
  35281. source: "./media/characters/huckle/back.svg",
  35282. extra: 1738/1651,
  35283. bottom: 37/1775
  35284. }
  35285. },
  35286. laughing: {
  35287. height: math.unit(3.75, "feet"),
  35288. name: "Laughing",
  35289. image: {
  35290. source: "./media/characters/huckle/laughing.svg"
  35291. }
  35292. },
  35293. angry: {
  35294. height: math.unit(4.15, "feet"),
  35295. name: "Angry",
  35296. image: {
  35297. source: "./media/characters/huckle/angry.svg"
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(16, "feet"),
  35305. default: true
  35306. },
  35307. {
  35308. name: "Mini Macro",
  35309. height: math.unit(463, "feet")
  35310. },
  35311. {
  35312. name: "Macro",
  35313. height: math.unit(1680, "meters")
  35314. },
  35315. {
  35316. name: "Mega Macro",
  35317. height: math.unit(175, "km")
  35318. },
  35319. {
  35320. name: "Terra Macro",
  35321. height: math.unit(32, "gigameters")
  35322. },
  35323. {
  35324. name: "Multiverse+",
  35325. height: math.unit(2.56e23, "yottameters")
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(6 + 9/12, "feet"),
  35334. weight: math.unit(280, "lb"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/candy/front.svg",
  35338. extra: 234/217,
  35339. bottom: 11/245
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Really Small",
  35346. height: math.unit(0.1, "nm")
  35347. },
  35348. {
  35349. name: "Micro",
  35350. height: math.unit(2, "inches")
  35351. },
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(6 + 9/12, "feet"),
  35355. default: true
  35356. },
  35357. {
  35358. name: "Small Macro",
  35359. height: math.unit(69, "feet")
  35360. },
  35361. {
  35362. name: "Macro",
  35363. height: math.unit(160, "feet")
  35364. },
  35365. {
  35366. name: "Megamacro",
  35367. height: math.unit(22000, "miles")
  35368. },
  35369. {
  35370. name: "Gigamacro",
  35371. height: math.unit(50000, "miles")
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(4, "feet"),
  35380. weight: math.unit(90, "lb"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/joey-mcdonald/front.svg",
  35384. extra: 1059/852,
  35385. bottom: 33/1092
  35386. }
  35387. },
  35388. back: {
  35389. height: math.unit(4, "feet"),
  35390. weight: math.unit(90, "lb"),
  35391. name: "Back",
  35392. image: {
  35393. source: "./media/characters/joey-mcdonald/back.svg",
  35394. extra: 1077/879,
  35395. bottom: 5/1082
  35396. }
  35397. },
  35398. frontKobold: {
  35399. height: math.unit(4, "feet"),
  35400. weight: math.unit(100, "lb"),
  35401. name: "Front-kobold",
  35402. image: {
  35403. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35404. extra: 1480/1367,
  35405. bottom: 0/1480
  35406. }
  35407. },
  35408. backKobold: {
  35409. height: math.unit(4, "feet"),
  35410. weight: math.unit(100, "lb"),
  35411. name: "Back-kobold",
  35412. image: {
  35413. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35414. extra: 1449/1361,
  35415. bottom: 0/1449
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(4, "feet"),
  35423. default: true
  35424. },
  35425. ]
  35426. ))
  35427. characterMakers.push(() => makeCharacter(
  35428. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35429. {
  35430. front: {
  35431. height: math.unit(12 + 6/12, "feet"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/kass-lockheed/front.svg",
  35435. extra: 354/343,
  35436. bottom: 9/363
  35437. }
  35438. },
  35439. back: {
  35440. height: math.unit(12 + 6/12, "feet"),
  35441. name: "Back",
  35442. image: {
  35443. source: "./media/characters/kass-lockheed/back.svg",
  35444. extra: 364/352,
  35445. bottom: 3/367
  35446. }
  35447. },
  35448. dick: {
  35449. height: math.unit(3.12, "feet"),
  35450. name: "Dick",
  35451. image: {
  35452. source: "./media/characters/kass-lockheed/dick.svg"
  35453. }
  35454. },
  35455. head: {
  35456. height: math.unit(2.6, "feet"),
  35457. name: "Head",
  35458. image: {
  35459. source: "./media/characters/kass-lockheed/head.svg"
  35460. }
  35461. },
  35462. bleh: {
  35463. height: math.unit(2.85, "feet"),
  35464. name: "Bleh",
  35465. image: {
  35466. source: "./media/characters/kass-lockheed/bleh.svg"
  35467. }
  35468. },
  35469. smug: {
  35470. height: math.unit(2.85, "feet"),
  35471. name: "Smug",
  35472. image: {
  35473. source: "./media/characters/kass-lockheed/smug.svg"
  35474. }
  35475. },
  35476. },
  35477. [
  35478. {
  35479. name: "Normal",
  35480. height: math.unit(12 + 6/12, "feet"),
  35481. default: true
  35482. },
  35483. ]
  35484. ))
  35485. characterMakers.push(() => makeCharacter(
  35486. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35487. {
  35488. front: {
  35489. height: math.unit(6 + 2/12, "feet"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/taylor/front.svg",
  35493. extra: 639/495,
  35494. bottom: 12/651
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(6 + 2/12, "feet"),
  35502. default: true
  35503. },
  35504. {
  35505. name: "Big",
  35506. height: math.unit(15, "feet")
  35507. },
  35508. {
  35509. name: "Lorg",
  35510. height: math.unit(80, "feet")
  35511. },
  35512. {
  35513. name: "Too Lorg",
  35514. height: math.unit(120, "feet")
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(15, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/kaizer/front.svg",
  35526. extra: 1612/1436,
  35527. bottom: 43/1655
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(15, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35541. {
  35542. front: {
  35543. height: math.unit(2, "feet"),
  35544. weight: math.unit(30, "lb"),
  35545. name: "Front",
  35546. image: {
  35547. source: "./media/characters/sandy/front.svg",
  35548. extra: 1439/1307,
  35549. bottom: 194/1633
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(2, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35563. {
  35564. front: {
  35565. height: math.unit(3, "feet"),
  35566. name: "Front",
  35567. image: {
  35568. source: "./media/characters/mellvi/front.svg",
  35569. extra: 1831/1630,
  35570. bottom: 58/1889
  35571. }
  35572. },
  35573. },
  35574. [
  35575. {
  35576. name: "Normal",
  35577. height: math.unit(3, "feet"),
  35578. default: true
  35579. },
  35580. ]
  35581. ))
  35582. characterMakers.push(() => makeCharacter(
  35583. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35584. {
  35585. front: {
  35586. height: math.unit(5 + 11/12, "feet"),
  35587. weight: math.unit(200, "lb"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/shirou/front.svg",
  35591. extra: 2491/2383,
  35592. bottom: 189/2680
  35593. }
  35594. },
  35595. back: {
  35596. height: math.unit(5 + 11/12, "feet"),
  35597. weight: math.unit(200, "lb"),
  35598. name: "Back",
  35599. image: {
  35600. source: "./media/characters/shirou/back.svg",
  35601. extra: 2554/2450,
  35602. bottom: 76/2630
  35603. }
  35604. },
  35605. },
  35606. [
  35607. {
  35608. name: "Normal",
  35609. height: math.unit(5 + 11/12, "feet"),
  35610. default: true
  35611. },
  35612. ]
  35613. ))
  35614. characterMakers.push(() => makeCharacter(
  35615. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35616. {
  35617. front: {
  35618. height: math.unit(6 + 3/12, "feet"),
  35619. weight: math.unit(177, "lb"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/noryu/front.svg",
  35623. extra: 973/885,
  35624. bottom: 10/983
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Normal",
  35631. height: math.unit(6 + 3/12, "feet"),
  35632. default: true
  35633. },
  35634. ]
  35635. ))
  35636. characterMakers.push(() => makeCharacter(
  35637. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35638. {
  35639. front: {
  35640. height: math.unit(5 + 6/12, "feet"),
  35641. weight: math.unit(170, "lb"),
  35642. name: "Front",
  35643. image: {
  35644. source: "./media/characters/mevolas-rubenido/front.svg",
  35645. extra: 2109/1901,
  35646. bottom: 96/2205
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(5 + 6/12, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(100, "feet"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/dee/front.svg",
  35666. extra: 2153/2036,
  35667. bottom: 59/2212
  35668. }
  35669. },
  35670. back: {
  35671. height: math.unit(100, "feet"),
  35672. name: "Back",
  35673. image: {
  35674. source: "./media/characters/dee/back.svg",
  35675. extra: 2183/2058,
  35676. bottom: 75/2258
  35677. }
  35678. },
  35679. foot: {
  35680. height: math.unit(19.43, "feet"),
  35681. name: "Foot",
  35682. image: {
  35683. source: "./media/characters/dee/foot.svg"
  35684. }
  35685. },
  35686. hoof: {
  35687. height: math.unit(20.6, "feet"),
  35688. name: "Hoof",
  35689. image: {
  35690. source: "./media/characters/dee/hoof.svg"
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Macro",
  35697. height: math.unit(100, "feet"),
  35698. default: true
  35699. },
  35700. ]
  35701. ))
  35702. characterMakers.push(() => makeCharacter(
  35703. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35704. {
  35705. front: {
  35706. height: math.unit(5 + 6/12, "feet"),
  35707. name: "Front",
  35708. image: {
  35709. source: "./media/characters/teh/front.svg",
  35710. extra: 1002/847,
  35711. bottom: 62/1064
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(5 + 6/12, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35725. {
  35726. side: {
  35727. height: math.unit(6 + 1/12, "feet"),
  35728. weight: math.unit(204, "lb"),
  35729. name: "Side",
  35730. image: {
  35731. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35732. extra: 974/775,
  35733. bottom: 169/1143
  35734. }
  35735. },
  35736. sitting: {
  35737. height: math.unit(6 + 2/12, "feet"),
  35738. weight: math.unit(204, "lb"),
  35739. name: "Sitting",
  35740. image: {
  35741. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35742. extra: 1175/964,
  35743. bottom: 378/1553
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(6 + 1/12, "feet"),
  35751. default: true
  35752. },
  35753. ]
  35754. ))
  35755. characterMakers.push(() => makeCharacter(
  35756. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35757. {
  35758. front: {
  35759. height: math.unit(6, "inches"),
  35760. name: "Front",
  35761. image: {
  35762. source: "./media/characters/tululi/front.svg",
  35763. extra: 1997/1876,
  35764. bottom: 20/2017
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(6, "inches"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35778. {
  35779. front: {
  35780. height: math.unit(4 + 1/12, "feet"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/star/front.svg",
  35784. extra: 1493/1189,
  35785. bottom: 48/1541
  35786. }
  35787. },
  35788. },
  35789. [
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(4 + 1/12, "feet"),
  35793. default: true
  35794. },
  35795. ]
  35796. ))
  35797. characterMakers.push(() => makeCharacter(
  35798. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35799. {
  35800. front: {
  35801. height: math.unit(6 + 3/12, "feet"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/comet/front.svg",
  35805. extra: 1681/1462,
  35806. bottom: 26/1707
  35807. }
  35808. },
  35809. },
  35810. [
  35811. {
  35812. name: "Normal",
  35813. height: math.unit(6 + 3/12, "feet"),
  35814. default: true
  35815. },
  35816. ]
  35817. ))
  35818. characterMakers.push(() => makeCharacter(
  35819. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35820. {
  35821. front: {
  35822. height: math.unit(950, "feet"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/vortex/front.svg",
  35826. extra: 1497/1434,
  35827. bottom: 56/1553
  35828. }
  35829. },
  35830. maw: {
  35831. height: math.unit(285, "feet"),
  35832. name: "Maw",
  35833. image: {
  35834. source: "./media/characters/vortex/maw.svg"
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Macro",
  35841. height: math.unit(950, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(600, "feet"),
  35851. weight: math.unit(0.02, "grams"),
  35852. name: "Front",
  35853. image: {
  35854. source: "./media/characters/doodle/front.svg",
  35855. extra: 1578/1413,
  35856. bottom: 37/1615
  35857. }
  35858. },
  35859. },
  35860. [
  35861. {
  35862. name: "Macro",
  35863. height: math.unit(600, "feet"),
  35864. default: true
  35865. },
  35866. ]
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35870. {
  35871. front: {
  35872. height: math.unit(6 + 6/12, "feet"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/jai/front.svg",
  35876. extra: 1645/1534,
  35877. bottom: 115/1760
  35878. }
  35879. },
  35880. },
  35881. [
  35882. {
  35883. name: "Normal",
  35884. height: math.unit(6 + 6/12, "feet"),
  35885. default: true
  35886. },
  35887. ]
  35888. ))
  35889. characterMakers.push(() => makeCharacter(
  35890. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35891. {
  35892. front: {
  35893. height: math.unit(6 + 8/12, "feet"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/pixel/front.svg",
  35897. extra: 1900/1735,
  35898. bottom: 63/1963
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(6 + 8/12, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35912. {
  35913. back: {
  35914. height: math.unit(4 + 1/12, "feet"),
  35915. weight: math.unit(75, "lb"),
  35916. name: "Back",
  35917. image: {
  35918. source: "./media/characters/rhett/back.svg",
  35919. extra: 930/878,
  35920. bottom: 25/955
  35921. }
  35922. },
  35923. front: {
  35924. height: math.unit(4 + 1/12, "feet"),
  35925. weight: math.unit(75, "lb"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/rhett/front.svg",
  35929. extra: 1682/1586,
  35930. bottom: 92/1774
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Micro",
  35937. height: math.unit(8, "inches")
  35938. },
  35939. {
  35940. name: "Tiny",
  35941. height: math.unit(2, "feet")
  35942. },
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(4 + 1/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(3 + 3/12, "feet"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/penny/front.svg",
  35958. extra: 1406/1311,
  35959. bottom: 26/1432
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(3 + 3/12, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(4 + 11/12, "feet"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/monty/front.svg",
  35979. extra: 1479/1209,
  35980. bottom: 0/1479
  35981. }
  35982. },
  35983. },
  35984. [
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(4 + 11/12, "feet"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35994. {
  35995. front: {
  35996. height: math.unit(8 + 4/12, "feet"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/sterling/front.svg",
  36000. extra: 1420/1236,
  36001. bottom: 27/1447
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Normal",
  36008. height: math.unit(8 + 4/12, "feet"),
  36009. default: true
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(15, "feet"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/marble/front.svg",
  36021. extra: 973/937,
  36022. bottom: 32/1005
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(15, "feet"),
  36030. default: true
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36036. {
  36037. front: {
  36038. height: math.unit(3, "inches"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/powder/front.svg",
  36042. extra: 1504/1334,
  36043. bottom: 518/2022
  36044. }
  36045. },
  36046. },
  36047. [
  36048. {
  36049. name: "Normal",
  36050. height: math.unit(3, "inches"),
  36051. default: true
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(4 + 5/12, "feet"),
  36060. name: "Front",
  36061. image: {
  36062. source: "./media/characters/joey-raccoon/front.svg",
  36063. extra: 1273/1197,
  36064. bottom: 0/1273
  36065. }
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(4 + 5/12, "feet"),
  36072. default: true
  36073. },
  36074. ]
  36075. ))
  36076. characterMakers.push(() => makeCharacter(
  36077. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36078. {
  36079. front: {
  36080. height: math.unit(8 + 4/12, "feet"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/vick/front.svg",
  36084. extra: 2187/2118,
  36085. bottom: 47/2234
  36086. }
  36087. },
  36088. },
  36089. [
  36090. {
  36091. name: "Normal",
  36092. height: math.unit(8 + 4/12, "feet"),
  36093. default: true
  36094. },
  36095. ]
  36096. ))
  36097. characterMakers.push(() => makeCharacter(
  36098. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36099. {
  36100. front: {
  36101. height: math.unit(5 + 5/12, "feet"),
  36102. name: "Front",
  36103. image: {
  36104. source: "./media/characters/mitsy/front.svg",
  36105. extra: 1842/1695,
  36106. bottom: 0/1842
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Normal",
  36113. height: math.unit(5 + 5/12, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(6 + 3/12, "feet"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/silvy/front.svg",
  36126. extra: 1995/1836,
  36127. bottom: 225/2220
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(6 + 3/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(3 + 8/12, "feet"),
  36144. name: "Front",
  36145. image: {
  36146. source: "./media/characters/rodney/front.svg",
  36147. extra: 1956/1747,
  36148. bottom: 31/1987
  36149. }
  36150. },
  36151. frontDressed: {
  36152. height: math.unit(2.9, "feet"),
  36153. name: "Front (Dressed)",
  36154. image: {
  36155. source: "./media/characters/rodney/front-dressed.svg",
  36156. extra: 1382/1241,
  36157. bottom: 385/1767
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(3 + 8/12, "feet"),
  36165. default: true
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(5 + 9/12, "feet"),
  36174. weight: math.unit(194, "lbs"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/zakail-sudekai/front.svg",
  36178. extra: 2696/2533,
  36179. bottom: 248/2944
  36180. }
  36181. },
  36182. maw: {
  36183. height: math.unit(1.35, "feet"),
  36184. name: "Maw",
  36185. image: {
  36186. source: "./media/characters/zakail-sudekai/maw.svg"
  36187. }
  36188. },
  36189. },
  36190. [
  36191. {
  36192. name: "Normal",
  36193. height: math.unit(5 + 9/12, "feet"),
  36194. default: true
  36195. },
  36196. ]
  36197. ))
  36198. characterMakers.push(() => makeCharacter(
  36199. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36200. {
  36201. front: {
  36202. height: math.unit(8 + 4/12, "feet"),
  36203. weight: math.unit(1200, "lb"),
  36204. name: "Front",
  36205. image: {
  36206. source: "./media/characters/eleanor/front.svg",
  36207. extra: 1226/1192,
  36208. bottom: 52/1278
  36209. }
  36210. },
  36211. back: {
  36212. height: math.unit(8 + 4/12, "feet"),
  36213. weight: math.unit(1200, "lb"),
  36214. name: "Back",
  36215. image: {
  36216. source: "./media/characters/eleanor/back.svg",
  36217. extra: 1242/1184,
  36218. bottom: 60/1302
  36219. }
  36220. },
  36221. head: {
  36222. height: math.unit(2.62, "feet"),
  36223. name: "Head",
  36224. image: {
  36225. source: "./media/characters/eleanor/head.svg"
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Normal",
  36232. height: math.unit(8 + 4/12, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(8 + 4/12, "feet"),
  36242. weight: math.unit(750, "lb"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/tanya/front.svg",
  36246. extra: 1749/1615,
  36247. bottom: 33/1782
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(8 + 4/12, "feet"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36261. {
  36262. front: {
  36263. height: math.unit(5, "feet"),
  36264. weight: math.unit(225, "lb"),
  36265. name: "Front",
  36266. image: {
  36267. source: "./media/characters/cindy/front.svg",
  36268. extra: 1320/1250,
  36269. bottom: 42/1362
  36270. }
  36271. },
  36272. frontDressed: {
  36273. height: math.unit(5, "feet"),
  36274. weight: math.unit(225, "lb"),
  36275. name: "Front (Dressed)",
  36276. image: {
  36277. source: "./media/characters/cindy/front-dressed.svg",
  36278. extra: 1320/1250,
  36279. bottom: 42/1362
  36280. }
  36281. },
  36282. back: {
  36283. height: math.unit(5, "feet"),
  36284. weight: math.unit(225, "lb"),
  36285. name: "Back",
  36286. image: {
  36287. source: "./media/characters/cindy/back.svg",
  36288. extra: 1384/1346,
  36289. bottom: 14/1398
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(5, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(6 + 9/12, "feet"),
  36306. weight: math.unit(440, "lb"),
  36307. name: "Front",
  36308. image: {
  36309. source: "./media/characters/wilbur-owen/front.svg",
  36310. extra: 1575/1448,
  36311. bottom: 72/1647
  36312. }
  36313. },
  36314. back: {
  36315. height: math.unit(6 + 9/12, "feet"),
  36316. weight: math.unit(440, "lb"),
  36317. name: "Back",
  36318. image: {
  36319. source: "./media/characters/wilbur-owen/back.svg",
  36320. extra: 1578/1445,
  36321. bottom: 36/1614
  36322. }
  36323. },
  36324. },
  36325. [
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(6 + 9/12, "feet"),
  36329. default: true
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(6 + 5/12, "feet"),
  36338. weight: math.unit(650, "lb"),
  36339. name: "Front",
  36340. image: {
  36341. source: "./media/characters/keegan/front.svg",
  36342. extra: 2387/2198,
  36343. bottom: 33/2420
  36344. }
  36345. },
  36346. side: {
  36347. height: math.unit(6 + 5/12, "feet"),
  36348. weight: math.unit(650, "lb"),
  36349. name: "Side",
  36350. image: {
  36351. source: "./media/characters/keegan/side.svg",
  36352. extra: 2390/2202,
  36353. bottom: 47/2437
  36354. }
  36355. },
  36356. back: {
  36357. height: math.unit(6 + 5/12, "feet"),
  36358. weight: math.unit(650, "lb"),
  36359. name: "Back",
  36360. image: {
  36361. source: "./media/characters/keegan/back.svg",
  36362. extra: 2418/2268,
  36363. bottom: 15/2433
  36364. }
  36365. },
  36366. frontSfw: {
  36367. height: math.unit(6 + 5/12, "feet"),
  36368. weight: math.unit(650, "lb"),
  36369. name: "Front (SFW)",
  36370. image: {
  36371. source: "./media/characters/keegan/front-sfw.svg",
  36372. extra: 2387/2198,
  36373. bottom: 33/2420
  36374. }
  36375. },
  36376. beans: {
  36377. height: math.unit(1.85, "feet"),
  36378. name: "Beans",
  36379. image: {
  36380. source: "./media/characters/keegan/beans.svg"
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(6 + 5/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(9, "feet"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/colton/front.svg",
  36400. extra: 1589/1326,
  36401. bottom: 139/1728
  36402. }
  36403. },
  36404. },
  36405. [
  36406. {
  36407. name: "Normal",
  36408. height: math.unit(9, "feet"),
  36409. default: true
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36415. {
  36416. front: {
  36417. height: math.unit(2 + 9/12, "feet"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/bora/front.svg",
  36421. extra: 1265/1250,
  36422. bottom: 24/1289
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(2 + 9/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(8, "feet"),
  36439. name: "Front",
  36440. image: {
  36441. source: "./media/characters/myu-myu/front.svg",
  36442. extra: 1949/1857,
  36443. bottom: 90/2039
  36444. }
  36445. },
  36446. },
  36447. [
  36448. {
  36449. name: "Normal",
  36450. height: math.unit(8, "feet"),
  36451. default: true
  36452. },
  36453. {
  36454. name: "Big",
  36455. height: math.unit(15, "feet")
  36456. },
  36457. {
  36458. name: "BIG",
  36459. height: math.unit(25, "feet")
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36465. {
  36466. side: {
  36467. height: math.unit(7 + 5/12, "feet"),
  36468. weight: math.unit(2800, "lb"),
  36469. name: "Side",
  36470. image: {
  36471. source: "./media/characters/haloren/side.svg",
  36472. extra: 1793/409,
  36473. bottom: 59/1852
  36474. }
  36475. },
  36476. frontPaw: {
  36477. height: math.unit(2.36, "feet"),
  36478. name: "Front paw",
  36479. image: {
  36480. source: "./media/characters/haloren/front-paw.svg"
  36481. }
  36482. },
  36483. hindPaw: {
  36484. height: math.unit(3.18, "feet"),
  36485. name: "Hind paw",
  36486. image: {
  36487. source: "./media/characters/haloren/hind-paw.svg"
  36488. }
  36489. },
  36490. maw: {
  36491. height: math.unit(5.05, "feet"),
  36492. name: "Maw",
  36493. image: {
  36494. source: "./media/characters/haloren/maw.svg"
  36495. }
  36496. },
  36497. dick: {
  36498. height: math.unit(2.90, "feet"),
  36499. name: "Dick",
  36500. image: {
  36501. source: "./media/characters/haloren/dick.svg"
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(7 + 5/12, "feet"),
  36509. default: true
  36510. },
  36511. {
  36512. name: "Enhanced",
  36513. height: math.unit(14 + 3/12, "feet")
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36519. {
  36520. front: {
  36521. height: math.unit(171, "cm"),
  36522. name: "Front",
  36523. image: {
  36524. source: "./media/characters/kimmy/front.svg",
  36525. extra: 1491/1435,
  36526. bottom: 53/1544
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Small",
  36533. height: math.unit(9, "cm")
  36534. },
  36535. {
  36536. name: "Normal",
  36537. height: math.unit(171, "cm"),
  36538. default: true
  36539. },
  36540. ]
  36541. ))
  36542. characterMakers.push(() => makeCharacter(
  36543. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36544. {
  36545. front: {
  36546. height: math.unit(8, "feet"),
  36547. weight: math.unit(300, "lb"),
  36548. name: "Front",
  36549. image: {
  36550. source: "./media/characters/galeboomer/front.svg",
  36551. extra: 4651/4415,
  36552. bottom: 162/4813
  36553. }
  36554. },
  36555. back: {
  36556. height: math.unit(8, "feet"),
  36557. weight: math.unit(300, "lb"),
  36558. name: "Back",
  36559. image: {
  36560. source: "./media/characters/galeboomer/back.svg",
  36561. extra: 4544/4314,
  36562. bottom: 16/4560
  36563. }
  36564. },
  36565. frontAlt: {
  36566. height: math.unit(8, "feet"),
  36567. weight: math.unit(300, "lb"),
  36568. name: "Front (Alt)",
  36569. image: {
  36570. source: "./media/characters/galeboomer/front-alt.svg",
  36571. extra: 4458/4228,
  36572. bottom: 68/4526
  36573. }
  36574. },
  36575. maw: {
  36576. height: math.unit(1.2, "feet"),
  36577. name: "Maw",
  36578. image: {
  36579. source: "./media/characters/galeboomer/maw.svg"
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Normal",
  36586. height: math.unit(8, "feet"),
  36587. default: true
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(5 + 9/12, "feet"),
  36596. weight: math.unit(120, "lb"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/chyr/front.svg",
  36600. extra: 1323/1254,
  36601. bottom: 63/1386
  36602. }
  36603. },
  36604. back: {
  36605. height: math.unit(5 + 9/12, "feet"),
  36606. weight: math.unit(120, "lb"),
  36607. name: "Back",
  36608. image: {
  36609. source: "./media/characters/chyr/back.svg",
  36610. extra: 1323/1252,
  36611. bottom: 48/1371
  36612. }
  36613. },
  36614. },
  36615. [
  36616. {
  36617. name: "Normal",
  36618. height: math.unit(5 + 9/12, "feet"),
  36619. default: true
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(7, "feet"),
  36628. weight: math.unit(310, "lb"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/solarus/front.svg",
  36632. extra: 2415/2021,
  36633. bottom: 103/2518
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(7, "feet"),
  36638. weight: math.unit(310, "lb"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/solarus/back.svg",
  36642. extra: 2463/2089,
  36643. bottom: 79/2542
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(7, "feet"),
  36651. default: true
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(16, "feet"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36663. extra: 1844/1780,
  36664. bottom: 58/1902
  36665. }
  36666. },
  36667. winterCoat: {
  36668. height: math.unit(16, "feet"),
  36669. name: "Winter Coat",
  36670. image: {
  36671. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36672. extra: 1807/1775,
  36673. bottom: 69/1876
  36674. }
  36675. },
  36676. },
  36677. [
  36678. {
  36679. name: "Normal",
  36680. height: math.unit(16, "feet"),
  36681. default: true
  36682. },
  36683. {
  36684. name: "Chicago Size",
  36685. height: math.unit(560, "feet")
  36686. },
  36687. ]
  36688. ))
  36689. characterMakers.push(() => makeCharacter(
  36690. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36691. {
  36692. front: {
  36693. height: math.unit(11 + 6/12, "feet"),
  36694. weight: math.unit(1366, "lb"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/lexor/front.svg",
  36698. extra: 1560/1481,
  36699. bottom: 211/1771
  36700. }
  36701. },
  36702. back: {
  36703. height: math.unit(11 + 6/12, "feet"),
  36704. weight: math.unit(1366, "lb"),
  36705. name: "Back",
  36706. image: {
  36707. source: "./media/characters/lexor/back.svg",
  36708. extra: 1614/1533,
  36709. bottom: 76/1690
  36710. }
  36711. },
  36712. maw: {
  36713. height: math.unit(3, "feet"),
  36714. name: "Maw",
  36715. image: {
  36716. source: "./media/characters/lexor/maw.svg"
  36717. }
  36718. },
  36719. dick: {
  36720. height: math.unit(2.59, "feet"),
  36721. name: "Dick",
  36722. image: {
  36723. source: "./media/characters/lexor/dick.svg"
  36724. }
  36725. },
  36726. },
  36727. [
  36728. {
  36729. name: "Normal",
  36730. height: math.unit(11 + 6/12, "feet"),
  36731. default: true
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(5 + 8/12, "feet"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/magnum/front.svg",
  36743. extra: 942/855,
  36744. bottom: 26/968
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(5 + 8/12, "feet"),
  36752. default: true
  36753. },
  36754. ]
  36755. ))
  36756. characterMakers.push(() => makeCharacter(
  36757. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36758. {
  36759. front: {
  36760. height: math.unit(18 + 4/12, "feet"),
  36761. weight: math.unit(1500, "kg"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/solas-sharpsman/front.svg",
  36765. extra: 1698/1589,
  36766. bottom: 0/1698
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(18 + 4/12, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(5 + 5/12, "feet"),
  36783. weight: math.unit(180, "lb"),
  36784. name: "Front",
  36785. image: {
  36786. source: "./media/characters/october/front.svg",
  36787. extra: 1800/1650,
  36788. bottom: 0/1800
  36789. }
  36790. },
  36791. frontNsfw: {
  36792. height: math.unit(5 + 5/12, "feet"),
  36793. weight: math.unit(180, "lb"),
  36794. name: "Front (NSFW)",
  36795. image: {
  36796. source: "./media/characters/october/front-nsfw.svg",
  36797. extra: 1392/1307,
  36798. bottom: 42/1434
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(5 + 5/12, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(8 + 6/12, "feet"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/essynkardi/front.svg",
  36818. extra: 1914/1846,
  36819. bottom: 22/1936
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(8 + 6/12, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(6 + 6/12, "feet"),
  36836. weight: math.unit(7, "lb"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/icky/front.svg",
  36840. extra: 813/782,
  36841. bottom: 66/879
  36842. }
  36843. },
  36844. back: {
  36845. height: math.unit(6 + 6/12, "feet"),
  36846. weight: math.unit(7, "lb"),
  36847. name: "Back",
  36848. image: {
  36849. source: "./media/characters/icky/back.svg",
  36850. extra: 754/735,
  36851. bottom: 56/810
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(6 + 6/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(15, "feet"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/rojas/front.svg",
  36871. extra: 1462/1408,
  36872. bottom: 95/1557
  36873. }
  36874. },
  36875. back: {
  36876. height: math.unit(15, "feet"),
  36877. name: "Back",
  36878. image: {
  36879. source: "./media/characters/rojas/back.svg",
  36880. extra: 1023/954,
  36881. bottom: 28/1051
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(15, "feet"),
  36889. default: true
  36890. },
  36891. ]
  36892. ))
  36893. characterMakers.push(() => makeCharacter(
  36894. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36895. {
  36896. frontHuman: {
  36897. height: math.unit(5 + 7/12, "feet"),
  36898. name: "Front (Human)",
  36899. image: {
  36900. source: "./media/characters/alek-dryagan/front-human.svg",
  36901. extra: 1687/1667,
  36902. bottom: 69/1756
  36903. }
  36904. },
  36905. backHuman: {
  36906. height: math.unit(5 + 7/12, "feet"),
  36907. name: "Back (Human)",
  36908. image: {
  36909. source: "./media/characters/alek-dryagan/back-human.svg",
  36910. extra: 1670/1649,
  36911. bottom: 65/1735
  36912. }
  36913. },
  36914. frontDemi: {
  36915. height: math.unit(65, "feet"),
  36916. name: "Front (Demi)",
  36917. image: {
  36918. source: "./media/characters/alek-dryagan/front-demi.svg",
  36919. extra: 1669/1642,
  36920. bottom: 49/1718
  36921. }
  36922. },
  36923. backDemi: {
  36924. height: math.unit(65, "feet"),
  36925. name: "Back (Demi)",
  36926. image: {
  36927. source: "./media/characters/alek-dryagan/back-demi.svg",
  36928. extra: 1658/1637,
  36929. bottom: 40/1698
  36930. }
  36931. },
  36932. mawHuman: {
  36933. height: math.unit(0.3, "feet"),
  36934. name: "Maw (Human)",
  36935. image: {
  36936. source: "./media/characters/alek-dryagan/maw-human.svg"
  36937. }
  36938. },
  36939. mawDemi: {
  36940. height: math.unit(3.8, "feet"),
  36941. name: "Maw (Demi)",
  36942. image: {
  36943. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(5 + 7/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36957. {
  36958. frontHuman: {
  36959. height: math.unit(5 + 2/12, "feet"),
  36960. name: "Front (Human)",
  36961. image: {
  36962. source: "./media/characters/gen/front-human.svg",
  36963. extra: 1627/1538,
  36964. bottom: 71/1698
  36965. }
  36966. },
  36967. backHuman: {
  36968. height: math.unit(5 + 2/12, "feet"),
  36969. name: "Back (Human)",
  36970. image: {
  36971. source: "./media/characters/gen/back-human.svg",
  36972. extra: 1638/1548,
  36973. bottom: 69/1707
  36974. }
  36975. },
  36976. frontDemi: {
  36977. height: math.unit(5 + 2/12, "feet"),
  36978. name: "Front (Demi)",
  36979. image: {
  36980. source: "./media/characters/gen/front-demi.svg",
  36981. extra: 1627/1538,
  36982. bottom: 71/1698
  36983. }
  36984. },
  36985. backDemi: {
  36986. height: math.unit(5 + 2/12, "feet"),
  36987. name: "Back (Demi)",
  36988. image: {
  36989. source: "./media/characters/gen/back-demi.svg",
  36990. extra: 1638/1548,
  36991. bottom: 69/1707
  36992. }
  36993. },
  36994. },
  36995. [
  36996. {
  36997. name: "Normal",
  36998. height: math.unit(5 + 2/12, "feet"),
  36999. default: true
  37000. },
  37001. ]
  37002. ))
  37003. characterMakers.push(() => makeCharacter(
  37004. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37005. {
  37006. frontImp: {
  37007. height: math.unit(1 + 11/12, "feet"),
  37008. name: "Front (Imp)",
  37009. image: {
  37010. source: "./media/characters/max-kobold/front-imp.svg",
  37011. extra: 1238/1134,
  37012. bottom: 81/1319
  37013. }
  37014. },
  37015. backImp: {
  37016. height: math.unit(1 + 11/12, "feet"),
  37017. name: "Back (Imp)",
  37018. image: {
  37019. source: "./media/characters/max-kobold/back-imp.svg",
  37020. extra: 1334/1175,
  37021. bottom: 34/1368
  37022. }
  37023. },
  37024. frontDemi: {
  37025. height: math.unit(5 + 9/12, "feet"),
  37026. name: "Front (Demi)",
  37027. image: {
  37028. source: "./media/characters/max-kobold/front-demi.svg",
  37029. extra: 1715/1685,
  37030. bottom: 54/1769
  37031. }
  37032. },
  37033. backDemi: {
  37034. height: math.unit(5 + 9/12, "feet"),
  37035. name: "Back (Demi)",
  37036. image: {
  37037. source: "./media/characters/max-kobold/back-demi.svg",
  37038. extra: 1752/1729,
  37039. bottom: 41/1793
  37040. }
  37041. },
  37042. handImp: {
  37043. height: math.unit(0.45, "feet"),
  37044. name: "Hand (Imp)",
  37045. image: {
  37046. source: "./media/characters/max-kobold/hand.svg"
  37047. }
  37048. },
  37049. pawImp: {
  37050. height: math.unit(0.46, "feet"),
  37051. name: "Paw (Imp)",
  37052. image: {
  37053. source: "./media/characters/max-kobold/paw.svg"
  37054. }
  37055. },
  37056. handDemi: {
  37057. height: math.unit(0.80, "feet"),
  37058. name: "Hand (Demi)",
  37059. image: {
  37060. source: "./media/characters/max-kobold/hand.svg"
  37061. }
  37062. },
  37063. pawDemi: {
  37064. height: math.unit(1.1, "feet"),
  37065. name: "Paw (Demi)",
  37066. image: {
  37067. source: "./media/characters/max-kobold/paw.svg"
  37068. }
  37069. },
  37070. headImp: {
  37071. height: math.unit(1.33, "feet"),
  37072. name: "Head (Imp)",
  37073. image: {
  37074. source: "./media/characters/max-kobold/head-imp.svg"
  37075. }
  37076. },
  37077. mawImp: {
  37078. height: math.unit(0.75, "feet"),
  37079. name: "Maw (Imp)",
  37080. image: {
  37081. source: "./media/characters/max-kobold/maw-imp.svg"
  37082. }
  37083. },
  37084. mawDemi: {
  37085. height: math.unit(0.42, "feet"),
  37086. name: "Maw (Demi)",
  37087. image: {
  37088. source: "./media/characters/max-kobold/maw-demi.svg"
  37089. }
  37090. },
  37091. },
  37092. [
  37093. {
  37094. name: "Normal",
  37095. height: math.unit(1 + 11/12, "feet"),
  37096. default: true
  37097. },
  37098. ]
  37099. ))
  37100. characterMakers.push(() => makeCharacter(
  37101. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37102. {
  37103. front: {
  37104. height: math.unit(7 + 5/12, "feet"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/carbon/front.svg",
  37108. extra: 1754/1689,
  37109. bottom: 65/1819
  37110. }
  37111. },
  37112. back: {
  37113. height: math.unit(7 + 5/12, "feet"),
  37114. name: "Back",
  37115. image: {
  37116. source: "./media/characters/carbon/back.svg",
  37117. extra: 1762/1695,
  37118. bottom: 24/1786
  37119. }
  37120. },
  37121. frontGigantamax: {
  37122. height: math.unit(150, "feet"),
  37123. name: "Front (Gigantamax)",
  37124. image: {
  37125. source: "./media/characters/carbon/front-gigantamax.svg",
  37126. extra: 1826/1669,
  37127. bottom: 59/1885
  37128. }
  37129. },
  37130. backGigantamax: {
  37131. height: math.unit(150, "feet"),
  37132. name: "Back (Gigantamax)",
  37133. image: {
  37134. source: "./media/characters/carbon/back-gigantamax.svg",
  37135. extra: 1796/1653,
  37136. bottom: 53/1849
  37137. }
  37138. },
  37139. maw: {
  37140. height: math.unit(0.48, "feet"),
  37141. name: "Maw",
  37142. image: {
  37143. source: "./media/characters/carbon/maw.svg"
  37144. }
  37145. },
  37146. mawGigantamax: {
  37147. height: math.unit(7.5, "feet"),
  37148. name: "Maw (Gigantamax)",
  37149. image: {
  37150. source: "./media/characters/carbon/maw-gigantamax.svg"
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(7 + 5/12, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(6, "feet"),
  37167. name: "Front",
  37168. image: {
  37169. source: "./media/characters/maverick/front.svg",
  37170. extra: 1672/1661,
  37171. bottom: 85/1757
  37172. }
  37173. },
  37174. back: {
  37175. height: math.unit(6, "feet"),
  37176. name: "Back",
  37177. image: {
  37178. source: "./media/characters/maverick/back.svg",
  37179. extra: 1642/1631,
  37180. bottom: 38/1680
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(6, "feet"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(15, "feet"),
  37197. weight: math.unit(615, "lb"),
  37198. name: "Front",
  37199. image: {
  37200. source: "./media/characters/grockle/front.svg",
  37201. extra: 1535/1427,
  37202. bottom: 56/1591
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(15, "feet"),
  37210. default: true
  37211. },
  37212. {
  37213. name: "Large",
  37214. height: math.unit(150, "feet")
  37215. },
  37216. {
  37217. name: "Macro",
  37218. height: math.unit(1876, "feet")
  37219. },
  37220. {
  37221. name: "Mega Macro",
  37222. height: math.unit(121940, "feet")
  37223. },
  37224. {
  37225. name: "Giga Macro",
  37226. height: math.unit(750, "km")
  37227. },
  37228. {
  37229. name: "Tera Macro",
  37230. height: math.unit(750000, "km")
  37231. },
  37232. {
  37233. name: "Galactic",
  37234. height: math.unit(1.4e5, "km")
  37235. },
  37236. {
  37237. name: "Godlike",
  37238. height: math.unit(9.8e280, "galaxies")
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(11, "meters"),
  37247. weight: math.unit(20, "tonnes"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/alistair/front.svg",
  37251. extra: 1265/1009,
  37252. bottom: 93/1358
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(11, "meters"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(5 + 8/12, "feet"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/haruka/front.svg",
  37272. extra: 2012/1952,
  37273. bottom: 0/2012
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(5 + 8/12, "feet"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37287. {
  37288. back: {
  37289. height: math.unit(9, "feet"),
  37290. name: "Back",
  37291. image: {
  37292. source: "./media/characters/vivian-sylveon/back.svg",
  37293. extra: 1853/1714,
  37294. bottom: 0/1853
  37295. }
  37296. },
  37297. },
  37298. [
  37299. {
  37300. name: "Normal",
  37301. height: math.unit(9, "feet"),
  37302. default: true
  37303. },
  37304. {
  37305. name: "Macro",
  37306. height: math.unit(500, "feet")
  37307. },
  37308. {
  37309. name: "Megamacro",
  37310. height: math.unit(600, "miles")
  37311. },
  37312. {
  37313. name: "Gigamacro",
  37314. height: math.unit(30000, "miles")
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37320. {
  37321. anthro: {
  37322. height: math.unit(5 + 10/12, "feet"),
  37323. weight: math.unit(100, "lb"),
  37324. name: "Anthro",
  37325. image: {
  37326. source: "./media/characters/daiki/anthro.svg",
  37327. extra: 1115/1027,
  37328. bottom: 69/1184
  37329. }
  37330. },
  37331. feral: {
  37332. height: math.unit(200, "feet"),
  37333. name: "Feral",
  37334. image: {
  37335. source: "./media/characters/daiki/feral.svg",
  37336. extra: 1256/313,
  37337. bottom: 39/1295
  37338. }
  37339. },
  37340. feralHead: {
  37341. height: math.unit(171, "feet"),
  37342. name: "Feral Head",
  37343. image: {
  37344. source: "./media/characters/daiki/feral-head.svg"
  37345. }
  37346. },
  37347. manaDragon: {
  37348. height: math.unit(170, "meters"),
  37349. name: "Mana-dragon",
  37350. image: {
  37351. source: "./media/characters/daiki/mana-dragon.svg",
  37352. extra: 763/420,
  37353. bottom: 97/860
  37354. }
  37355. },
  37356. },
  37357. [
  37358. {
  37359. name: "Normal",
  37360. height: math.unit(5 + 10/12, "feet"),
  37361. default: true
  37362. },
  37363. ]
  37364. ))
  37365. characterMakers.push(() => makeCharacter(
  37366. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37367. {
  37368. fullyEquippedFront: {
  37369. height: math.unit(3 + 1/12, "feet"),
  37370. weight: math.unit(24, "lb"),
  37371. name: "Fully Equipped (Front)",
  37372. image: {
  37373. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37374. extra: 687/605,
  37375. bottom: 18/705
  37376. }
  37377. },
  37378. fullyEquippedBack: {
  37379. height: math.unit(3 + 1/12, "feet"),
  37380. weight: math.unit(24, "lb"),
  37381. name: "Fully Equipped (Back)",
  37382. image: {
  37383. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37384. extra: 689/590,
  37385. bottom: 18/707
  37386. }
  37387. },
  37388. dailyWear: {
  37389. height: math.unit(3 + 1/12, "feet"),
  37390. weight: math.unit(24, "lb"),
  37391. name: "Daily Wear",
  37392. image: {
  37393. source: "./media/characters/tea-spot/daily-wear.svg",
  37394. extra: 701/620,
  37395. bottom: 21/722
  37396. }
  37397. },
  37398. maidWork: {
  37399. height: math.unit(3 + 1/12, "feet"),
  37400. weight: math.unit(24, "lb"),
  37401. name: "Maid Work",
  37402. image: {
  37403. source: "./media/characters/tea-spot/maid-work.svg",
  37404. extra: 693/609,
  37405. bottom: 15/708
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(3 + 1/12, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(175, "cm"),
  37422. weight: math.unit(75, "kg"),
  37423. name: "Front",
  37424. image: {
  37425. source: "./media/characters/chee/front.svg",
  37426. extra: 1796/1740,
  37427. bottom: 40/1836
  37428. }
  37429. },
  37430. },
  37431. [
  37432. {
  37433. name: "Micro-Micro",
  37434. height: math.unit(1, "nm")
  37435. },
  37436. {
  37437. name: "Micro-erst",
  37438. height: math.unit(1, "micrometer")
  37439. },
  37440. {
  37441. name: "Micro-er",
  37442. height: math.unit(1, "cm")
  37443. },
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(175, "cm"),
  37447. default: true
  37448. },
  37449. {
  37450. name: "Macro",
  37451. height: math.unit(100, "m")
  37452. },
  37453. {
  37454. name: "Macro-er",
  37455. height: math.unit(1, "km")
  37456. },
  37457. {
  37458. name: "Macro-erst",
  37459. height: math.unit(10, "km")
  37460. },
  37461. {
  37462. name: "Macro-Macro",
  37463. height: math.unit(100, "km")
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(11 + 9/12, "feet"),
  37472. weight: math.unit(935, "lb"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/kingsley/front.svg",
  37476. extra: 1803/1674,
  37477. bottom: 127/1930
  37478. }
  37479. },
  37480. frontNude: {
  37481. height: math.unit(11 + 9/12, "feet"),
  37482. weight: math.unit(935, "lb"),
  37483. name: "Front (Nude)",
  37484. image: {
  37485. source: "./media/characters/kingsley/front-nude.svg",
  37486. extra: 1803/1674,
  37487. bottom: 127/1930
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(11 + 9/12, "feet"),
  37495. default: true
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37501. {
  37502. side: {
  37503. height: math.unit(9, "feet"),
  37504. name: "Side",
  37505. image: {
  37506. source: "./media/characters/rymel/side.svg",
  37507. extra: 792/469,
  37508. bottom: 121/913
  37509. }
  37510. },
  37511. maw: {
  37512. height: math.unit(2.4, "meters"),
  37513. name: "Maw",
  37514. image: {
  37515. source: "./media/characters/rymel/maw.svg"
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "House Drake",
  37522. height: math.unit(2, "feet")
  37523. },
  37524. {
  37525. name: "Reduced",
  37526. height: math.unit(4.5, "feet")
  37527. },
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(9, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37537. {
  37538. front: {
  37539. height: math.unit(1.74, "meters"),
  37540. weight: math.unit(55, "kg"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/rubus/front.svg",
  37544. extra: 1894/1742,
  37545. bottom: 44/1938
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(1.74, "meters"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(5 + 2/12, "feet"),
  37562. weight: math.unit(112, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/cassie-kingston/front.svg",
  37566. extra: 1438/1390,
  37567. bottom: 47/1485
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(5 + 2/12, "feet"),
  37575. default: true
  37576. },
  37577. {
  37578. name: "Macro",
  37579. height: math.unit(128, "feet")
  37580. },
  37581. {
  37582. name: "Megamacro",
  37583. height: math.unit(2.56, "miles")
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37589. {
  37590. front: {
  37591. height: math.unit(7, "feet"),
  37592. name: "Front",
  37593. image: {
  37594. source: "./media/characters/fox/front.svg",
  37595. extra: 1798/1703,
  37596. bottom: 55/1853
  37597. }
  37598. },
  37599. back: {
  37600. height: math.unit(7, "feet"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/fox/back.svg",
  37604. extra: 1748/1649,
  37605. bottom: 32/1780
  37606. }
  37607. },
  37608. head: {
  37609. height: math.unit(1.95, "feet"),
  37610. name: "Head",
  37611. image: {
  37612. source: "./media/characters/fox/head.svg"
  37613. }
  37614. },
  37615. dick: {
  37616. height: math.unit(1.33, "feet"),
  37617. name: "Dick",
  37618. image: {
  37619. source: "./media/characters/fox/dick.svg"
  37620. }
  37621. },
  37622. foot: {
  37623. height: math.unit(1, "feet"),
  37624. name: "Foot",
  37625. image: {
  37626. source: "./media/characters/fox/foot.svg"
  37627. }
  37628. },
  37629. paw: {
  37630. height: math.unit(0.92, "feet"),
  37631. name: "Paw",
  37632. image: {
  37633. source: "./media/characters/fox/paw.svg"
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Small",
  37640. height: math.unit(3, "inches")
  37641. },
  37642. {
  37643. name: "\"Realistic\"",
  37644. height: math.unit(7, "feet")
  37645. },
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(150, "feet"),
  37649. default: true
  37650. },
  37651. {
  37652. name: "BIG",
  37653. height: math.unit(1200, "feet")
  37654. },
  37655. {
  37656. name: "👀",
  37657. height: math.unit(5, "miles")
  37658. },
  37659. {
  37660. name: "👀👀👀",
  37661. height: math.unit(64, "miles")
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(625, "feet"),
  37670. name: "Front",
  37671. image: {
  37672. source: "./media/characters/asonja-rossa/front.svg",
  37673. extra: 1833/1686,
  37674. bottom: 24/1857
  37675. }
  37676. },
  37677. back: {
  37678. height: math.unit(625, "feet"),
  37679. name: "Back",
  37680. image: {
  37681. source: "./media/characters/asonja-rossa/back.svg",
  37682. extra: 1852/1753,
  37683. bottom: 26/1878
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Macro",
  37690. height: math.unit(625, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37697. {
  37698. side: {
  37699. height: math.unit(8, "feet"),
  37700. name: "Side",
  37701. image: {
  37702. source: "./media/characters/rezukii/side.svg",
  37703. extra: 979/542,
  37704. bottom: 87/1066
  37705. }
  37706. },
  37707. sitting: {
  37708. height: math.unit(14.6, "feet"),
  37709. name: "Sitting",
  37710. image: {
  37711. source: "./media/characters/rezukii/sitting.svg",
  37712. extra: 1023/813,
  37713. bottom: 45/1068
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Tiny",
  37720. height: math.unit(2, "feet")
  37721. },
  37722. {
  37723. name: "Smol",
  37724. height: math.unit(4, "feet")
  37725. },
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(8, "feet"),
  37729. default: true
  37730. },
  37731. {
  37732. name: "Big",
  37733. height: math.unit(12, "feet")
  37734. },
  37735. {
  37736. name: "Macro",
  37737. height: math.unit(30, "feet")
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(14, "feet"),
  37746. weight: math.unit(9.5, "tonnes"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/dawnheart/front.svg",
  37750. extra: 2792/2675,
  37751. bottom: 64/2856
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(14, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37765. {
  37766. front: {
  37767. height: math.unit(1.7, "m"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/gladi/front.svg",
  37771. extra: 1460/1362,
  37772. bottom: 19/1479
  37773. }
  37774. },
  37775. back: {
  37776. height: math.unit(1.7, "m"),
  37777. name: "Back",
  37778. image: {
  37779. source: "./media/characters/gladi/back.svg",
  37780. extra: 1459/1357,
  37781. bottom: 12/1471
  37782. }
  37783. },
  37784. feral: {
  37785. height: math.unit(2.05, "m"),
  37786. name: "Feral",
  37787. image: {
  37788. source: "./media/characters/gladi/feral.svg",
  37789. extra: 821/557,
  37790. bottom: 91/912
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Shortest",
  37797. height: math.unit(70, "cm")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(1.7, "m")
  37802. },
  37803. {
  37804. name: "Macro",
  37805. height: math.unit(10, "m"),
  37806. default: true
  37807. },
  37808. {
  37809. name: "Tallest",
  37810. height: math.unit(200, "m")
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(5 + 7/12, "feet"),
  37819. weight: math.unit(2, "tons"),
  37820. name: "Front",
  37821. image: {
  37822. source: "./media/characters/erdno/front.svg",
  37823. extra: 1234/1129,
  37824. bottom: 35/1269
  37825. }
  37826. },
  37827. angled: {
  37828. height: math.unit(5 + 7/12, "feet"),
  37829. weight: math.unit(2, "tons"),
  37830. name: "Angled",
  37831. image: {
  37832. source: "./media/characters/erdno/angled.svg",
  37833. extra: 1185/1139,
  37834. bottom: 36/1221
  37835. }
  37836. },
  37837. side: {
  37838. height: math.unit(5 + 7/12, "feet"),
  37839. weight: math.unit(2, "tons"),
  37840. name: "Side",
  37841. image: {
  37842. source: "./media/characters/erdno/side.svg",
  37843. extra: 1191/1144,
  37844. bottom: 40/1231
  37845. }
  37846. },
  37847. back: {
  37848. height: math.unit(5 + 7/12, "feet"),
  37849. weight: math.unit(2, "tons"),
  37850. name: "Back",
  37851. image: {
  37852. source: "./media/characters/erdno/back.svg",
  37853. extra: 1202/1146,
  37854. bottom: 17/1219
  37855. }
  37856. },
  37857. frontNsfw: {
  37858. height: math.unit(5 + 7/12, "feet"),
  37859. weight: math.unit(2, "tons"),
  37860. name: "Front (NSFW)",
  37861. image: {
  37862. source: "./media/characters/erdno/front-nsfw.svg",
  37863. extra: 1234/1129,
  37864. bottom: 35/1269
  37865. }
  37866. },
  37867. angledNsfw: {
  37868. height: math.unit(5 + 7/12, "feet"),
  37869. weight: math.unit(2, "tons"),
  37870. name: "Angled (NSFW)",
  37871. image: {
  37872. source: "./media/characters/erdno/angled-nsfw.svg",
  37873. extra: 1185/1139,
  37874. bottom: 36/1221
  37875. }
  37876. },
  37877. sideNsfw: {
  37878. height: math.unit(5 + 7/12, "feet"),
  37879. weight: math.unit(2, "tons"),
  37880. name: "Side (NSFW)",
  37881. image: {
  37882. source: "./media/characters/erdno/side-nsfw.svg",
  37883. extra: 1191/1144,
  37884. bottom: 40/1231
  37885. }
  37886. },
  37887. backNsfw: {
  37888. height: math.unit(5 + 7/12, "feet"),
  37889. weight: math.unit(2, "tons"),
  37890. name: "Back (NSFW)",
  37891. image: {
  37892. source: "./media/characters/erdno/back-nsfw.svg",
  37893. extra: 1202/1146,
  37894. bottom: 17/1219
  37895. }
  37896. },
  37897. frontHyper: {
  37898. height: math.unit(5 + 7/12, "feet"),
  37899. weight: math.unit(2, "tons"),
  37900. name: "Front (Hyper)",
  37901. image: {
  37902. source: "./media/characters/erdno/front-hyper.svg",
  37903. extra: 1298/1136,
  37904. bottom: 35/1333
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Normal",
  37911. height: math.unit(5 + 7/12, "feet"),
  37912. default: true
  37913. },
  37914. {
  37915. name: "Big",
  37916. height: math.unit(5.7, "meters")
  37917. },
  37918. {
  37919. name: "Macro",
  37920. height: math.unit(5.7, "kilometers")
  37921. },
  37922. {
  37923. name: "Megamacro",
  37924. height: math.unit(5.7, "earths")
  37925. },
  37926. ]
  37927. ))
  37928. characterMakers.push(() => makeCharacter(
  37929. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37930. {
  37931. front: {
  37932. height: math.unit(5 + 10/12, "feet"),
  37933. weight: math.unit(150, "lb"),
  37934. name: "Front",
  37935. image: {
  37936. source: "./media/characters/jamie/front.svg",
  37937. extra: 1908/1768,
  37938. bottom: 19/1927
  37939. }
  37940. },
  37941. },
  37942. [
  37943. {
  37944. name: "Minimum",
  37945. height: math.unit(2, "cm")
  37946. },
  37947. {
  37948. name: "Micro",
  37949. height: math.unit(3, "inches")
  37950. },
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(5 + 10/12, "feet"),
  37954. default: true
  37955. },
  37956. {
  37957. name: "Macro",
  37958. height: math.unit(150, "feet")
  37959. },
  37960. {
  37961. name: "Megamacro",
  37962. height: math.unit(10000, "m")
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(2, "meters"),
  37971. weight: math.unit(100, "kg"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/shiron/front.svg",
  37975. extra: 2103/1985,
  37976. bottom: 98/2201
  37977. }
  37978. },
  37979. back: {
  37980. height: math.unit(2, "meters"),
  37981. weight: math.unit(100, "kg"),
  37982. name: "Back",
  37983. image: {
  37984. source: "./media/characters/shiron/back.svg",
  37985. extra: 2110/2015,
  37986. bottom: 89/2199
  37987. }
  37988. },
  37989. hand: {
  37990. height: math.unit(0.96, "feet"),
  37991. name: "Hand",
  37992. image: {
  37993. source: "./media/characters/shiron/hand.svg"
  37994. }
  37995. },
  37996. foot: {
  37997. height: math.unit(1.464, "feet"),
  37998. name: "Foot",
  37999. image: {
  38000. source: "./media/characters/shiron/foot.svg"
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(2, "meters")
  38008. },
  38009. {
  38010. name: "Macro",
  38011. height: math.unit(500, "meters"),
  38012. default: true
  38013. },
  38014. {
  38015. name: "Megamacro",
  38016. height: math.unit(20, "km")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(6, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/sam/front.svg",
  38028. extra: 849/826,
  38029. bottom: 19/868
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(6, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38043. {
  38044. front: {
  38045. height: math.unit(8 + 4/12, "feet"),
  38046. weight: math.unit(122, "kg"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/namori-kurogawa/front.svg",
  38050. extra: 1894/1576,
  38051. bottom: 34/1928
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(8 + 4/12, "feet"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(9, "feet"),
  38068. weight: math.unit(621, "lb"),
  38069. name: "Front",
  38070. image: {
  38071. source: "./media/characters/unmru/front.svg",
  38072. extra: 1853/1747,
  38073. bottom: 73/1926
  38074. }
  38075. },
  38076. side: {
  38077. height: math.unit(9, "feet"),
  38078. weight: math.unit(621, "lb"),
  38079. name: "Side",
  38080. image: {
  38081. source: "./media/characters/unmru/side.svg",
  38082. extra: 1781/1671,
  38083. bottom: 127/1908
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(9, "feet"),
  38088. weight: math.unit(621, "lb"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/unmru/back.svg",
  38092. extra: 1894/1765,
  38093. bottom: 75/1969
  38094. }
  38095. },
  38096. dick: {
  38097. height: math.unit(3, "feet"),
  38098. weight: math.unit(35, "lb"),
  38099. name: "Dick",
  38100. image: {
  38101. source: "./media/characters/unmru/dick.svg"
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(9, "feet")
  38109. },
  38110. {
  38111. name: "Natural",
  38112. height: math.unit(27, "feet"),
  38113. default: true
  38114. },
  38115. {
  38116. name: "Giant",
  38117. height: math.unit(90, "feet")
  38118. },
  38119. {
  38120. name: "Kaiju",
  38121. height: math.unit(270, "feet")
  38122. },
  38123. {
  38124. name: "Macro",
  38125. height: math.unit(900, "feet")
  38126. },
  38127. {
  38128. name: "Macro+",
  38129. height: math.unit(2700, "feet")
  38130. },
  38131. {
  38132. name: "Megamacro",
  38133. height: math.unit(9000, "feet")
  38134. },
  38135. {
  38136. name: "City-Crushing",
  38137. height: math.unit(27000, "feet")
  38138. },
  38139. {
  38140. name: "Mountain-Mashing",
  38141. height: math.unit(90000, "feet")
  38142. },
  38143. {
  38144. name: "Earth-Eclipsing",
  38145. height: math.unit(2.7e8, "feet")
  38146. },
  38147. {
  38148. name: "Sol-Swallowing",
  38149. height: math.unit(9e10, "feet")
  38150. },
  38151. {
  38152. name: "Majoris-Munching",
  38153. height: math.unit(2.7e13, "feet")
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38159. {
  38160. front: {
  38161. height: math.unit(1, "inch"),
  38162. name: "Front",
  38163. image: {
  38164. source: "./media/characters/squeaks-mouse/front.svg",
  38165. extra: 352/308,
  38166. bottom: 25/377
  38167. }
  38168. },
  38169. },
  38170. [
  38171. {
  38172. name: "Micro",
  38173. height: math.unit(1, "inch"),
  38174. default: true
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38180. {
  38181. side: {
  38182. height: math.unit(35, "feet"),
  38183. name: "Side",
  38184. image: {
  38185. source: "./media/characters/sayko/side.svg",
  38186. extra: 1697/1021,
  38187. bottom: 82/1779
  38188. }
  38189. },
  38190. head: {
  38191. height: math.unit(16, "feet"),
  38192. name: "Head",
  38193. image: {
  38194. source: "./media/characters/sayko/head.svg"
  38195. }
  38196. },
  38197. forepaw: {
  38198. height: math.unit(7.85, "feet"),
  38199. name: "Forepaw",
  38200. image: {
  38201. source: "./media/characters/sayko/forepaw.svg"
  38202. }
  38203. },
  38204. hindpaw: {
  38205. height: math.unit(8.8, "feet"),
  38206. name: "Hindpaw",
  38207. image: {
  38208. source: "./media/characters/sayko/hindpaw.svg"
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Normal",
  38215. height: math.unit(35, "feet"),
  38216. default: true
  38217. },
  38218. {
  38219. name: "Colossus",
  38220. height: math.unit(100, "meters")
  38221. },
  38222. {
  38223. name: "\"Small\" Deity",
  38224. height: math.unit(1, "km")
  38225. },
  38226. {
  38227. name: "\"Large\" Deity",
  38228. height: math.unit(15, "km")
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(6, "feet"),
  38237. weight: math.unit(250, "lb"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/mukiro/front.svg",
  38241. extra: 1368/1310,
  38242. bottom: 34/1402
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Normal",
  38249. height: math.unit(6, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(12 + 4/12, "feet"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38262. extra: 1346/1311,
  38263. bottom: 65/1411
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Base",
  38270. height: math.unit(12 + 4/12, "feet"),
  38271. default: true
  38272. },
  38273. {
  38274. name: "Macro",
  38275. height: math.unit(150, "feet")
  38276. },
  38277. {
  38278. name: "Mega",
  38279. height: math.unit(2, "miles")
  38280. },
  38281. {
  38282. name: "Demi God",
  38283. height: math.unit(4, "AU")
  38284. },
  38285. {
  38286. name: "God Size",
  38287. height: math.unit(1, "universe")
  38288. },
  38289. ]
  38290. ))
  38291. characterMakers.push(() => makeCharacter(
  38292. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38293. {
  38294. front: {
  38295. height: math.unit(3 + 3/12, "feet"),
  38296. weight: math.unit(88, "lb"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/trey/front.svg",
  38300. extra: 1815/1509,
  38301. bottom: 60/1875
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(3 + 3/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38315. {
  38316. front: {
  38317. height: math.unit(4, "meters"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/adelonda/front.svg",
  38321. extra: 1077/982,
  38322. bottom: 39/1116
  38323. }
  38324. },
  38325. back: {
  38326. height: math.unit(4, "meters"),
  38327. name: "Back",
  38328. image: {
  38329. source: "./media/characters/adelonda/back.svg",
  38330. extra: 1105/1003,
  38331. bottom: 25/1130
  38332. }
  38333. },
  38334. feral: {
  38335. height: math.unit(40/1.5, "meters"),
  38336. name: "Feral",
  38337. image: {
  38338. source: "./media/characters/adelonda/feral.svg",
  38339. extra: 597/271,
  38340. bottom: 387/984
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Normal",
  38347. height: math.unit(4, "meters"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38354. {
  38355. front: {
  38356. height: math.unit(8 + 4/12, "feet"),
  38357. weight: math.unit(670, "lb"),
  38358. name: "Front",
  38359. image: {
  38360. source: "./media/characters/acadiel/front.svg",
  38361. extra: 1901/1595,
  38362. bottom: 142/2043
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Normal",
  38369. height: math.unit(8 + 4/12, "feet"),
  38370. default: true
  38371. },
  38372. {
  38373. name: "Macro",
  38374. height: math.unit(200, "feet")
  38375. },
  38376. ]
  38377. ))
  38378. characterMakers.push(() => makeCharacter(
  38379. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38380. {
  38381. front: {
  38382. height: math.unit(6 + 2/12, "feet"),
  38383. weight: math.unit(185, "lb"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/kayne-ein/front.svg",
  38387. extra: 1780/1560,
  38388. bottom: 81/1861
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(6 + 2/12, "feet"),
  38396. default: true
  38397. },
  38398. {
  38399. name: "Transformation Stage",
  38400. height: math.unit(15, "feet")
  38401. },
  38402. {
  38403. name: "Macro",
  38404. height: math.unit(150, "feet")
  38405. },
  38406. {
  38407. name: "Earth's Shadow",
  38408. height: math.unit(6200, "miles")
  38409. },
  38410. {
  38411. name: "Universal Demon",
  38412. height: math.unit(28e9, "parsecs")
  38413. },
  38414. {
  38415. name: "Multiverse God",
  38416. height: math.unit(3, "multiverses")
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(5 + 5/12, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/fawn/front.svg",
  38428. extra: 1873/1731,
  38429. bottom: 95/1968
  38430. }
  38431. },
  38432. back: {
  38433. height: math.unit(5 + 5/12, "feet"),
  38434. name: "Back",
  38435. image: {
  38436. source: "./media/characters/fawn/back.svg",
  38437. extra: 1813/1700,
  38438. bottom: 14/1827
  38439. }
  38440. },
  38441. hoof: {
  38442. height: math.unit(1.45, "feet"),
  38443. name: "Hoof",
  38444. image: {
  38445. source: "./media/characters/fawn/hoof.svg"
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Normal",
  38452. height: math.unit(5 + 5/12, "feet"),
  38453. default: true
  38454. },
  38455. ]
  38456. ))
  38457. characterMakers.push(() => makeCharacter(
  38458. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38459. {
  38460. front: {
  38461. height: math.unit(2 + 5/12, "feet"),
  38462. name: "Front",
  38463. image: {
  38464. source: "./media/characters/orion/front.svg",
  38465. extra: 1366/1304,
  38466. bottom: 43/1409
  38467. }
  38468. },
  38469. paw: {
  38470. height: math.unit(0.52, "feet"),
  38471. name: "Paw",
  38472. image: {
  38473. source: "./media/characters/orion/paw.svg"
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Normal",
  38480. height: math.unit(2 + 5/12, "feet"),
  38481. default: true
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38487. {
  38488. front: {
  38489. height: math.unit(5 + 10/12, "feet"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/vera/front.svg",
  38493. extra: 1680/1575,
  38494. bottom: 49/1729
  38495. }
  38496. },
  38497. back: {
  38498. height: math.unit(5 + 10/12, "feet"),
  38499. name: "Back",
  38500. image: {
  38501. source: "./media/characters/vera/back.svg",
  38502. extra: 1700/1588,
  38503. bottom: 18/1718
  38504. }
  38505. },
  38506. arcanine: {
  38507. height: math.unit(6 + 8/12, "feet"),
  38508. name: "Arcanine",
  38509. image: {
  38510. source: "./media/characters/vera/arcanine.svg",
  38511. extra: 1590/1511,
  38512. bottom: 71/1661
  38513. }
  38514. },
  38515. maw: {
  38516. height: math.unit(0.82, "feet"),
  38517. name: "Maw",
  38518. image: {
  38519. source: "./media/characters/vera/maw.svg"
  38520. }
  38521. },
  38522. mawArcanine: {
  38523. height: math.unit(0.97, "feet"),
  38524. name: "Maw (Arcanine)",
  38525. image: {
  38526. source: "./media/characters/vera/maw-arcanine.svg"
  38527. }
  38528. },
  38529. paw: {
  38530. height: math.unit(0.75, "feet"),
  38531. name: "Paw",
  38532. image: {
  38533. source: "./media/characters/vera/paw.svg"
  38534. }
  38535. },
  38536. pawprint: {
  38537. height: math.unit(0.52, "feet"),
  38538. name: "Pawprint",
  38539. image: {
  38540. source: "./media/characters/vera/pawprint.svg"
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Normal",
  38547. height: math.unit(5 + 10/12, "feet"),
  38548. default: true
  38549. },
  38550. {
  38551. name: "Macro",
  38552. height: math.unit(75, "feet")
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(4, "feet"),
  38561. weight: math.unit(40, "lb"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/orvan-rabbit/front.svg",
  38565. extra: 1896/1642,
  38566. bottom: 29/1925
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Normal",
  38573. height: math.unit(4, "feet"),
  38574. default: true
  38575. },
  38576. ]
  38577. ))
  38578. characterMakers.push(() => makeCharacter(
  38579. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38580. {
  38581. front: {
  38582. height: math.unit(6, "feet"),
  38583. weight: math.unit(168, "lb"),
  38584. name: "Front",
  38585. image: {
  38586. source: "./media/characters/lisa/front.svg",
  38587. extra: 2065/1867,
  38588. bottom: 46/2111
  38589. }
  38590. },
  38591. back: {
  38592. height: math.unit(6, "feet"),
  38593. weight: math.unit(168, "lb"),
  38594. name: "Back",
  38595. image: {
  38596. source: "./media/characters/lisa/back.svg",
  38597. extra: 1982/1838,
  38598. bottom: 29/2011
  38599. }
  38600. },
  38601. maw: {
  38602. height: math.unit(0.81, "feet"),
  38603. name: "Maw",
  38604. image: {
  38605. source: "./media/characters/lisa/maw.svg"
  38606. }
  38607. },
  38608. paw: {
  38609. height: math.unit(0.9, "feet"),
  38610. name: "Paw",
  38611. image: {
  38612. source: "./media/characters/lisa/paw.svg"
  38613. }
  38614. },
  38615. caribousune: {
  38616. height: math.unit(7 + 2/12, "feet"),
  38617. weight: math.unit(268, "lb"),
  38618. name: "Caribousune",
  38619. image: {
  38620. source: "./media/characters/lisa/caribousune.svg",
  38621. extra: 1843/1633,
  38622. bottom: 29/1872
  38623. }
  38624. },
  38625. frontCaribousune: {
  38626. height: math.unit(7 + 2/12, "feet"),
  38627. weight: math.unit(268, "lb"),
  38628. name: "Front (Caribousune)",
  38629. image: {
  38630. source: "./media/characters/lisa/front-caribousune.svg",
  38631. extra: 1818/1638,
  38632. bottom: 52/1870
  38633. }
  38634. },
  38635. sideCaribousune: {
  38636. height: math.unit(7 + 2/12, "feet"),
  38637. weight: math.unit(268, "lb"),
  38638. name: "Side (Caribousune)",
  38639. image: {
  38640. source: "./media/characters/lisa/side-caribousune.svg",
  38641. extra: 1851/1635,
  38642. bottom: 16/1867
  38643. }
  38644. },
  38645. backCaribousune: {
  38646. height: math.unit(7 + 2/12, "feet"),
  38647. weight: math.unit(268, "lb"),
  38648. name: "Back (Caribousune)",
  38649. image: {
  38650. source: "./media/characters/lisa/back-caribousune.svg",
  38651. extra: 1801/1604,
  38652. bottom: 44/1845
  38653. }
  38654. },
  38655. caribou: {
  38656. height: math.unit(7 + 2/12, "feet"),
  38657. weight: math.unit(268, "lb"),
  38658. name: "Caribou",
  38659. image: {
  38660. source: "./media/characters/lisa/caribou.svg",
  38661. extra: 1843/1633,
  38662. bottom: 29/1872
  38663. }
  38664. },
  38665. frontCaribou: {
  38666. height: math.unit(7 + 2/12, "feet"),
  38667. weight: math.unit(268, "lb"),
  38668. name: "Front (Caribou)",
  38669. image: {
  38670. source: "./media/characters/lisa/front-caribou.svg",
  38671. extra: 1818/1638,
  38672. bottom: 52/1870
  38673. }
  38674. },
  38675. sideCaribou: {
  38676. height: math.unit(7 + 2/12, "feet"),
  38677. weight: math.unit(268, "lb"),
  38678. name: "Side (Caribou)",
  38679. image: {
  38680. source: "./media/characters/lisa/side-caribou.svg",
  38681. extra: 1851/1635,
  38682. bottom: 16/1867
  38683. }
  38684. },
  38685. backCaribou: {
  38686. height: math.unit(7 + 2/12, "feet"),
  38687. weight: math.unit(268, "lb"),
  38688. name: "Back (Caribou)",
  38689. image: {
  38690. source: "./media/characters/lisa/back-caribou.svg",
  38691. extra: 1801/1604,
  38692. bottom: 44/1845
  38693. }
  38694. },
  38695. mawCaribou: {
  38696. height: math.unit(1.45, "feet"),
  38697. name: "Maw (Caribou)",
  38698. image: {
  38699. source: "./media/characters/lisa/maw-caribou.svg"
  38700. }
  38701. },
  38702. mawCaribousune: {
  38703. height: math.unit(1.45, "feet"),
  38704. name: "Maw (Caribousune)",
  38705. image: {
  38706. source: "./media/characters/lisa/maw-caribousune.svg"
  38707. }
  38708. },
  38709. pawCaribousune: {
  38710. height: math.unit(1.61, "feet"),
  38711. name: "Paw (Caribou)",
  38712. image: {
  38713. source: "./media/characters/lisa/paw-caribousune.svg"
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(6, "feet")
  38721. },
  38722. {
  38723. name: "God Size",
  38724. height: math.unit(72, "feet"),
  38725. default: true
  38726. },
  38727. {
  38728. name: "Towering",
  38729. height: math.unit(288, "feet")
  38730. },
  38731. {
  38732. name: "City Size",
  38733. height: math.unit(48384, "feet")
  38734. },
  38735. {
  38736. name: "Continental",
  38737. height: math.unit(4200, "miles")
  38738. },
  38739. {
  38740. name: "Planet Eater",
  38741. height: math.unit(42, "earths")
  38742. },
  38743. {
  38744. name: "Star Swallower",
  38745. height: math.unit(42, "solarradii")
  38746. },
  38747. {
  38748. name: "System Swallower",
  38749. height: math.unit(84000, "AU")
  38750. },
  38751. {
  38752. name: "Galaxy Gobbler",
  38753. height: math.unit(42, "galaxies")
  38754. },
  38755. {
  38756. name: "Universe Devourer",
  38757. height: math.unit(42, "universes")
  38758. },
  38759. {
  38760. name: "Multiverse Muncher",
  38761. height: math.unit(42, "multiverses")
  38762. },
  38763. ]
  38764. ))
  38765. characterMakers.push(() => makeCharacter(
  38766. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38767. {
  38768. front: {
  38769. height: math.unit(36, "feet"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/shadow-rat/front.svg",
  38773. extra: 1845/1758,
  38774. bottom: 83/1928
  38775. }
  38776. },
  38777. },
  38778. [
  38779. {
  38780. name: "Macro",
  38781. height: math.unit(36, "feet"),
  38782. default: true
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38788. {
  38789. side: {
  38790. height: math.unit(8, "feet"),
  38791. weight: math.unit(2630, "lb"),
  38792. name: "Side",
  38793. image: {
  38794. source: "./media/characters/torallia/side.svg",
  38795. extra: 2164/2021,
  38796. bottom: 371/2535
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Mortal Interaction",
  38803. height: math.unit(8, "feet")
  38804. },
  38805. {
  38806. name: "Natural",
  38807. height: math.unit(24, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Giant",
  38812. height: math.unit(80, "feet")
  38813. },
  38814. {
  38815. name: "Kaiju",
  38816. height: math.unit(240, "feet")
  38817. },
  38818. {
  38819. name: "Macro",
  38820. height: math.unit(800, "feet")
  38821. },
  38822. {
  38823. name: "Macro+",
  38824. height: math.unit(2400, "feet")
  38825. },
  38826. {
  38827. name: "Macro++",
  38828. height: math.unit(8000, "feet")
  38829. },
  38830. {
  38831. name: "City-Crushing",
  38832. height: math.unit(24000, "feet")
  38833. },
  38834. {
  38835. name: "Mountain-Mashing",
  38836. height: math.unit(80000, "feet")
  38837. },
  38838. {
  38839. name: "District Demolisher",
  38840. height: math.unit(240000, "feet")
  38841. },
  38842. {
  38843. name: "Tri-County Terror",
  38844. height: math.unit(800000, "feet")
  38845. },
  38846. {
  38847. name: "State Smasher",
  38848. height: math.unit(2.4e6, "feet")
  38849. },
  38850. {
  38851. name: "Nation Nemesis",
  38852. height: math.unit(8e6, "feet")
  38853. },
  38854. {
  38855. name: "Continent Cracker",
  38856. height: math.unit(2.4e7, "feet")
  38857. },
  38858. {
  38859. name: "Planet-Pillaging",
  38860. height: math.unit(8e7, "feet")
  38861. },
  38862. {
  38863. name: "Earth-Eclipsing",
  38864. height: math.unit(2.4e8, "feet")
  38865. },
  38866. {
  38867. name: "Jovian-Jostling",
  38868. height: math.unit(8e8, "feet")
  38869. },
  38870. {
  38871. name: "Gas Giant Gulper",
  38872. height: math.unit(2.4e9, "feet")
  38873. },
  38874. {
  38875. name: "Astral Annihilator",
  38876. height: math.unit(8e9, "feet")
  38877. },
  38878. {
  38879. name: "Celestial Conqueror",
  38880. height: math.unit(2.4e10, "feet")
  38881. },
  38882. {
  38883. name: "Sol-Swallowing",
  38884. height: math.unit(8e10, "feet")
  38885. },
  38886. {
  38887. name: "Hunter of the Heavens",
  38888. height: math.unit(2.4e13, "feet")
  38889. },
  38890. ]
  38891. ))
  38892. characterMakers.push(() => makeCharacter(
  38893. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38894. {
  38895. front: {
  38896. height: math.unit(6 + 8/12, "feet"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/rebecca-pawlson/front.svg",
  38900. extra: 1737/1596,
  38901. bottom: 107/1844
  38902. }
  38903. },
  38904. back: {
  38905. height: math.unit(6 + 8/12, "feet"),
  38906. name: "Back",
  38907. image: {
  38908. source: "./media/characters/rebecca-pawlson/back.svg",
  38909. extra: 1702/1523,
  38910. bottom: 86/1788
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(6 + 8/12, "feet")
  38918. },
  38919. {
  38920. name: "Mini Macro",
  38921. height: math.unit(10, "feet"),
  38922. default: true
  38923. },
  38924. {
  38925. name: "Macro",
  38926. height: math.unit(100, "feet")
  38927. },
  38928. {
  38929. name: "Mega Macro",
  38930. height: math.unit(2500, "feet")
  38931. },
  38932. {
  38933. name: "Giga Macro",
  38934. height: math.unit(50, "miles")
  38935. },
  38936. ]
  38937. ))
  38938. characterMakers.push(() => makeCharacter(
  38939. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38940. {
  38941. front: {
  38942. height: math.unit(7 + 6/12, "feet"),
  38943. weight: math.unit(600, "lb"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/moxie-nova/front.svg",
  38947. extra: 1734/1652,
  38948. bottom: 41/1775
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(7 + 6/12, "feet"),
  38956. default: true
  38957. },
  38958. ]
  38959. ))
  38960. characterMakers.push(() => makeCharacter(
  38961. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38962. {
  38963. goat: {
  38964. height: math.unit(4, "feet"),
  38965. weight: math.unit(180, "lb"),
  38966. name: "Goat",
  38967. image: {
  38968. source: "./media/characters/tiffany/goat.svg",
  38969. extra: 1845/1595,
  38970. bottom: 106/1951
  38971. }
  38972. },
  38973. front: {
  38974. height: math.unit(5, "feet"),
  38975. weight: math.unit(150, "lb"),
  38976. name: "Foxcoon",
  38977. image: {
  38978. source: "./media/characters/tiffany/foxcoon.svg",
  38979. extra: 1941/1845,
  38980. bottom: 58/1999
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(5, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(8, "feet"),
  38997. weight: math.unit(300, "lb"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/raxinath/front.svg",
  39001. extra: 1407/1309,
  39002. bottom: 39/1446
  39003. }
  39004. },
  39005. back: {
  39006. height: math.unit(8, "feet"),
  39007. weight: math.unit(300, "lb"),
  39008. name: "Back",
  39009. image: {
  39010. source: "./media/characters/raxinath/back.svg",
  39011. extra: 1405/1315,
  39012. bottom: 9/1414
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Speck",
  39019. height: math.unit(0.5, "nm")
  39020. },
  39021. {
  39022. name: "Micro",
  39023. height: math.unit(3, "inches")
  39024. },
  39025. {
  39026. name: "Kobold",
  39027. height: math.unit(3, "feet")
  39028. },
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(8, "feet"),
  39032. default: true
  39033. },
  39034. {
  39035. name: "Giant",
  39036. height: math.unit(50, "feet")
  39037. },
  39038. {
  39039. name: "Macro",
  39040. height: math.unit(1000, "feet")
  39041. },
  39042. {
  39043. name: "Megamacro",
  39044. height: math.unit(1, "mile")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39050. {
  39051. front: {
  39052. height: math.unit(10, "feet"),
  39053. weight: math.unit(1442, "lb"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/mal-dragon/front.svg",
  39057. extra: 1515/1444,
  39058. bottom: 113/1628
  39059. }
  39060. },
  39061. back: {
  39062. height: math.unit(10, "feet"),
  39063. weight: math.unit(1442, "lb"),
  39064. name: "Back",
  39065. image: {
  39066. source: "./media/characters/mal-dragon/back.svg",
  39067. extra: 1527/1434,
  39068. bottom: 25/1552
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Mortal Interaction",
  39075. height: math.unit(10, "feet"),
  39076. default: true
  39077. },
  39078. {
  39079. name: "Large",
  39080. height: math.unit(30, "feet")
  39081. },
  39082. {
  39083. name: "Kaiju",
  39084. height: math.unit(300, "feet")
  39085. },
  39086. {
  39087. name: "Megamacro",
  39088. height: math.unit(10000, "feet")
  39089. },
  39090. {
  39091. name: "Continent Cracker",
  39092. height: math.unit(30000000, "feet")
  39093. },
  39094. {
  39095. name: "Sol-Swallowing",
  39096. height: math.unit(1e11, "feet")
  39097. },
  39098. {
  39099. name: "Light Universal",
  39100. height: math.unit(5, "universes")
  39101. },
  39102. {
  39103. name: "Universe Atoms",
  39104. height: math.unit(1.829e9, "universes")
  39105. },
  39106. {
  39107. name: "Light Multiversal",
  39108. height: math.unit(5, "multiverses")
  39109. },
  39110. {
  39111. name: "Multiverse Atoms",
  39112. height: math.unit(1.829e9, "multiverses")
  39113. },
  39114. {
  39115. name: "Fabric of Time",
  39116. height: math.unit(1e262, "multiverses")
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(9, "feet"),
  39125. weight: math.unit(1050, "lb"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/tabitha/front.svg",
  39129. extra: 2083/1994,
  39130. bottom: 68/2151
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Baseline",
  39137. height: math.unit(9, "feet"),
  39138. default: true
  39139. },
  39140. {
  39141. name: "Giant",
  39142. height: math.unit(90, "feet")
  39143. },
  39144. {
  39145. name: "Macro",
  39146. height: math.unit(900, "feet")
  39147. },
  39148. {
  39149. name: "Megamacro",
  39150. height: math.unit(9000, "feet")
  39151. },
  39152. {
  39153. name: "City-Crushing",
  39154. height: math.unit(27000, "feet")
  39155. },
  39156. {
  39157. name: "Mountain-Mashing",
  39158. height: math.unit(90000, "feet")
  39159. },
  39160. {
  39161. name: "Nation Nemesis",
  39162. height: math.unit(9e6, "feet")
  39163. },
  39164. {
  39165. name: "Continent Cracker",
  39166. height: math.unit(27e6, "feet")
  39167. },
  39168. {
  39169. name: "Earth-Eclipsing",
  39170. height: math.unit(2.7e8, "feet")
  39171. },
  39172. {
  39173. name: "Gas Giant Gulper",
  39174. height: math.unit(2.7e9, "feet")
  39175. },
  39176. {
  39177. name: "Sol-Swallowing",
  39178. height: math.unit(9e10, "feet")
  39179. },
  39180. {
  39181. name: "Galaxy Gulper",
  39182. height: math.unit(9, "galaxies")
  39183. },
  39184. {
  39185. name: "Cosmos Churner",
  39186. height: math.unit(9, "universes")
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(160, "cm"),
  39195. weight: math.unit(55, "kg"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/tow/front.svg",
  39199. extra: 1751/1722,
  39200. bottom: 74/1825
  39201. }
  39202. },
  39203. },
  39204. [
  39205. {
  39206. name: "Norm",
  39207. height: math.unit(160, "cm")
  39208. },
  39209. {
  39210. name: "Casual",
  39211. height: math.unit(3200, "m"),
  39212. default: true
  39213. },
  39214. {
  39215. name: "Show-Off",
  39216. height: math.unit(160, "km")
  39217. },
  39218. ]
  39219. ))
  39220. characterMakers.push(() => makeCharacter(
  39221. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39222. {
  39223. front: {
  39224. height: math.unit(7 + 11/12, "feet"),
  39225. weight: math.unit(342.8, "lb"),
  39226. name: "Front",
  39227. image: {
  39228. source: "./media/characters/vivian-orca-dragon/front.svg",
  39229. extra: 1890/1865,
  39230. bottom: 28/1918
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Micro",
  39237. height: math.unit(5, "inches")
  39238. },
  39239. {
  39240. name: "Normal",
  39241. height: math.unit(7 + 11/12, "feet"),
  39242. default: true
  39243. },
  39244. {
  39245. name: "Macro",
  39246. height: math.unit(395 + 7/12, "feet")
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39252. {
  39253. side: {
  39254. height: math.unit(10, "feet"),
  39255. weight: math.unit(1442, "lb"),
  39256. name: "Side",
  39257. image: {
  39258. source: "./media/characters/lotherakon/side.svg",
  39259. extra: 1604/1497,
  39260. bottom: 89/1693
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Mortal Interaction",
  39267. height: math.unit(10, "feet")
  39268. },
  39269. {
  39270. name: "Large",
  39271. height: math.unit(30, "feet"),
  39272. default: true
  39273. },
  39274. {
  39275. name: "Giant",
  39276. height: math.unit(100, "feet")
  39277. },
  39278. {
  39279. name: "Kaiju",
  39280. height: math.unit(300, "feet")
  39281. },
  39282. {
  39283. name: "Macro",
  39284. height: math.unit(1000, "feet")
  39285. },
  39286. {
  39287. name: "Macro+",
  39288. height: math.unit(3000, "feet")
  39289. },
  39290. {
  39291. name: "Megamacro",
  39292. height: math.unit(10000, "feet")
  39293. },
  39294. {
  39295. name: "City-Crushing",
  39296. height: math.unit(30000, "feet")
  39297. },
  39298. {
  39299. name: "Continent Cracker",
  39300. height: math.unit(30e6, "feet")
  39301. },
  39302. {
  39303. name: "Earth Eclipsing",
  39304. height: math.unit(3e8, "feet")
  39305. },
  39306. {
  39307. name: "Gas Giant Gulper",
  39308. height: math.unit(3e9, "feet")
  39309. },
  39310. {
  39311. name: "Sol-Swallowing",
  39312. height: math.unit(1e11, "feet")
  39313. },
  39314. {
  39315. name: "System Swallower",
  39316. height: math.unit(3e14, "feet")
  39317. },
  39318. {
  39319. name: "Galaxy Gulper",
  39320. height: math.unit(10, "galaxies")
  39321. },
  39322. {
  39323. name: "Light Universal",
  39324. height: math.unit(5, "universes")
  39325. },
  39326. {
  39327. name: "Universe Palm",
  39328. height: math.unit(20, "universes")
  39329. },
  39330. {
  39331. name: "Light Multiversal",
  39332. height: math.unit(5, "multiverses")
  39333. },
  39334. {
  39335. name: "Multiverse Palm",
  39336. height: math.unit(20, "multiverses")
  39337. },
  39338. {
  39339. name: "Inferno Incarnate",
  39340. height: math.unit(1e7, "multiverses")
  39341. },
  39342. ]
  39343. ))
  39344. characterMakers.push(() => makeCharacter(
  39345. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39346. {
  39347. front: {
  39348. height: math.unit(8, "feet"),
  39349. weight: math.unit(1200, "lb"),
  39350. name: "Front",
  39351. image: {
  39352. source: "./media/characters/malithee/front.svg",
  39353. extra: 1675/1640,
  39354. bottom: 162/1837
  39355. }
  39356. },
  39357. },
  39358. [
  39359. {
  39360. name: "Mortal Interaction",
  39361. height: math.unit(8, "feet"),
  39362. default: true
  39363. },
  39364. {
  39365. name: "Large",
  39366. height: math.unit(24, "feet")
  39367. },
  39368. {
  39369. name: "Kaiju",
  39370. height: math.unit(240, "feet")
  39371. },
  39372. {
  39373. name: "Megamacro",
  39374. height: math.unit(8000, "feet")
  39375. },
  39376. {
  39377. name: "Continent Cracker",
  39378. height: math.unit(24e6, "feet")
  39379. },
  39380. {
  39381. name: "Earth-Eclipsing",
  39382. height: math.unit(2.4e8, "feet")
  39383. },
  39384. {
  39385. name: "Sol-Swallowing",
  39386. height: math.unit(8e10, "feet")
  39387. },
  39388. {
  39389. name: "Galaxy Gulper",
  39390. height: math.unit(8, "galaxies")
  39391. },
  39392. {
  39393. name: "Light Universal",
  39394. height: math.unit(4, "universes")
  39395. },
  39396. {
  39397. name: "Universe Atoms",
  39398. height: math.unit(1.829e9, "universes")
  39399. },
  39400. {
  39401. name: "Light Multiversal",
  39402. height: math.unit(4, "multiverses")
  39403. },
  39404. {
  39405. name: "Multiverse Atoms",
  39406. height: math.unit(1.829e9, "multiverses")
  39407. },
  39408. {
  39409. name: "Nigh-Omnipresence",
  39410. height: math.unit(8e261, "multiverses")
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(10, "feet"),
  39419. weight: math.unit(1500, "lb"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/miles-thestia/front.svg",
  39423. extra: 1812/1727,
  39424. bottom: 86/1898
  39425. }
  39426. },
  39427. back: {
  39428. height: math.unit(10, "feet"),
  39429. weight: math.unit(1500, "lb"),
  39430. name: "Back",
  39431. image: {
  39432. source: "./media/characters/miles-thestia/back.svg",
  39433. extra: 1799/1690,
  39434. bottom: 47/1846
  39435. }
  39436. },
  39437. frontNsfw: {
  39438. height: math.unit(10, "feet"),
  39439. weight: math.unit(1500, "lb"),
  39440. name: "Front (NSFW)",
  39441. image: {
  39442. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39443. extra: 1812/1727,
  39444. bottom: 86/1898
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Mini-Macro",
  39451. height: math.unit(10, "feet"),
  39452. default: true
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(25, "feet"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/titan-s-wulf/front.svg",
  39464. extra: 1560/1484,
  39465. bottom: 76/1636
  39466. }
  39467. },
  39468. },
  39469. [
  39470. {
  39471. name: "Smallest",
  39472. height: math.unit(25, "feet"),
  39473. default: true
  39474. },
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(200, "feet")
  39478. },
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(200000, "feet")
  39482. },
  39483. {
  39484. name: "Multiversal Original",
  39485. height: math.unit(10000, "multiverses")
  39486. },
  39487. ]
  39488. ))
  39489. characterMakers.push(() => makeCharacter(
  39490. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39491. {
  39492. front: {
  39493. height: math.unit(8, "feet"),
  39494. weight: math.unit(553, "lb"),
  39495. name: "Front",
  39496. image: {
  39497. source: "./media/characters/tawendeh/front.svg",
  39498. extra: 2365/2268,
  39499. bottom: 83/2448
  39500. }
  39501. },
  39502. frontClothed: {
  39503. height: math.unit(8, "feet"),
  39504. weight: math.unit(553, "lb"),
  39505. name: "Front (Clothed)",
  39506. image: {
  39507. source: "./media/characters/tawendeh/front-clothed.svg",
  39508. extra: 2365/2268,
  39509. bottom: 83/2448
  39510. }
  39511. },
  39512. back: {
  39513. height: math.unit(8, "feet"),
  39514. weight: math.unit(553, "lb"),
  39515. name: "Back",
  39516. image: {
  39517. source: "./media/characters/tawendeh/back.svg",
  39518. extra: 2397/2294,
  39519. bottom: 42/2439
  39520. }
  39521. },
  39522. },
  39523. [
  39524. {
  39525. name: "Mortal Interaction",
  39526. height: math.unit(8, "feet"),
  39527. default: true
  39528. },
  39529. {
  39530. name: "Giant",
  39531. height: math.unit(80, "feet")
  39532. },
  39533. {
  39534. name: "Macro",
  39535. height: math.unit(800, "feet")
  39536. },
  39537. {
  39538. name: "Megamacro",
  39539. height: math.unit(8000, "feet")
  39540. },
  39541. {
  39542. name: "City-Crushing",
  39543. height: math.unit(24000, "feet")
  39544. },
  39545. {
  39546. name: "Mountain-Mashing",
  39547. height: math.unit(80000, "feet")
  39548. },
  39549. {
  39550. name: "Nation Nemesis",
  39551. height: math.unit(8e6, "feet")
  39552. },
  39553. {
  39554. name: "Continent Cracker",
  39555. height: math.unit(24e6, "feet")
  39556. },
  39557. {
  39558. name: "Earth-Eclipsing",
  39559. height: math.unit(2.4e8, "feet")
  39560. },
  39561. {
  39562. name: "Gas Giant Gulper",
  39563. height: math.unit(2.4e9, "feet")
  39564. },
  39565. {
  39566. name: "Sol-Swallowing",
  39567. height: math.unit(8e10, "feet")
  39568. },
  39569. {
  39570. name: "Galaxy Gulper",
  39571. height: math.unit(8, "galaxies")
  39572. },
  39573. {
  39574. name: "Cosmos Churner",
  39575. height: math.unit(8, "universes")
  39576. },
  39577. {
  39578. name: "Omnipotent Otter",
  39579. height: math.unit(80, "universes")
  39580. },
  39581. ]
  39582. ))
  39583. characterMakers.push(() => makeCharacter(
  39584. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39585. {
  39586. front: {
  39587. height: math.unit(2.6, "meters"),
  39588. weight: math.unit(900, "kg"),
  39589. name: "Front",
  39590. image: {
  39591. source: "./media/characters/neesha/front.svg",
  39592. extra: 1803/1653,
  39593. bottom: 128/1931
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(2.6, "meters"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(50, "meters")
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(5, "feet"),
  39614. weight: math.unit(185, "lb"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/kyera/front.svg",
  39618. extra: 1875/1790,
  39619. bottom: 96/1971
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(5, "feet"),
  39627. default: true
  39628. },
  39629. ]
  39630. ))
  39631. characterMakers.push(() => makeCharacter(
  39632. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39633. {
  39634. front: {
  39635. height: math.unit(7 + 6/12, "feet"),
  39636. weight: math.unit(540, "lb"),
  39637. name: "Front",
  39638. image: {
  39639. source: "./media/characters/yuko/front.svg",
  39640. extra: 1282/1222,
  39641. bottom: 101/1383
  39642. }
  39643. },
  39644. frontClothed: {
  39645. height: math.unit(7 + 6/12, "feet"),
  39646. weight: math.unit(540, "lb"),
  39647. name: "Front (Clothed)",
  39648. image: {
  39649. source: "./media/characters/yuko/front-clothed.svg",
  39650. extra: 1282/1222,
  39651. bottom: 101/1383
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(7 + 6/12, "feet"),
  39659. default: true
  39660. },
  39661. {
  39662. name: "Macro",
  39663. height: math.unit(26 + 9/12, "feet")
  39664. },
  39665. {
  39666. name: "Megamacro",
  39667. height: math.unit(300, "feet")
  39668. },
  39669. {
  39670. name: "Gigamacro",
  39671. height: math.unit(5000, "feet")
  39672. },
  39673. {
  39674. name: "Planetary",
  39675. height: math.unit(10000, "miles")
  39676. },
  39677. ]
  39678. ))
  39679. characterMakers.push(() => makeCharacter(
  39680. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39681. {
  39682. front: {
  39683. height: math.unit(8 + 2/12, "feet"),
  39684. weight: math.unit(600, "lb"),
  39685. name: "Front",
  39686. image: {
  39687. source: "./media/characters/deam-nitrel/front.svg",
  39688. extra: 1308/1234,
  39689. bottom: 125/1433
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(8 + 2/12, "feet"),
  39697. default: true
  39698. },
  39699. ]
  39700. ))
  39701. characterMakers.push(() => makeCharacter(
  39702. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39703. {
  39704. front: {
  39705. height: math.unit(6.1, "feet"),
  39706. weight: math.unit(180, "lb"),
  39707. name: "Front",
  39708. image: {
  39709. source: "./media/characters/skyress/front.svg",
  39710. extra: 1045/915,
  39711. bottom: 28/1073
  39712. }
  39713. },
  39714. maw: {
  39715. height: math.unit(1, "feet"),
  39716. name: "Maw",
  39717. image: {
  39718. source: "./media/characters/skyress/maw.svg"
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(6.1, "feet"),
  39726. default: true
  39727. },
  39728. {
  39729. name: "Macro",
  39730. height: math.unit(200, "feet")
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(4 + 2/12, "feet"),
  39739. weight: math.unit(40, "kg"),
  39740. name: "Front",
  39741. image: {
  39742. source: "./media/characters/amethyst-jones/front.svg",
  39743. extra: 1220/1150,
  39744. bottom: 101/1321
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(4 + 2/12, "feet"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(1.7, "m"),
  39761. weight: math.unit(135, "lb"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/jade/front.svg",
  39765. extra: 1818/1767,
  39766. bottom: 32/1850
  39767. }
  39768. },
  39769. back: {
  39770. height: math.unit(1.7, "m"),
  39771. weight: math.unit(135, "lb"),
  39772. name: "Back",
  39773. image: {
  39774. source: "./media/characters/jade/back.svg",
  39775. extra: 1869/1809,
  39776. bottom: 35/1904
  39777. }
  39778. },
  39779. hand: {
  39780. height: math.unit(0.24, "m"),
  39781. name: "Hand",
  39782. image: {
  39783. source: "./media/characters/jade/hand.svg"
  39784. }
  39785. },
  39786. foot: {
  39787. height: math.unit(0.263, "m"),
  39788. name: "Foot",
  39789. image: {
  39790. source: "./media/characters/jade/foot.svg"
  39791. }
  39792. },
  39793. dick: {
  39794. height: math.unit(0.47, "m"),
  39795. name: "Dick",
  39796. image: {
  39797. source: "./media/characters/jade/dick.svg"
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Micro",
  39804. height: math.unit(22, "cm")
  39805. },
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(1.7, "m"),
  39809. default: true
  39810. },
  39811. {
  39812. name: "Macro",
  39813. height: math.unit(152, "m")
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(100, "miles"),
  39822. weight: math.unit(20000, "tons"),
  39823. name: "Front",
  39824. image: {
  39825. source: "./media/characters/cookie/front.svg",
  39826. extra: 1125/1070,
  39827. bottom: 30/1155
  39828. }
  39829. },
  39830. },
  39831. [
  39832. {
  39833. name: "Big",
  39834. height: math.unit(50, "feet")
  39835. },
  39836. {
  39837. name: "Macro",
  39838. height: math.unit(100, "miles"),
  39839. default: true
  39840. },
  39841. {
  39842. name: "Megamacro",
  39843. height: math.unit(90000, "miles")
  39844. },
  39845. ]
  39846. ))
  39847. characterMakers.push(() => makeCharacter(
  39848. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39849. {
  39850. front: {
  39851. height: math.unit(6, "feet"),
  39852. weight: math.unit(145, "lb"),
  39853. name: "Front",
  39854. image: {
  39855. source: "./media/characters/farzian/front.svg",
  39856. extra: 1902/1693,
  39857. bottom: 108/2010
  39858. }
  39859. },
  39860. },
  39861. [
  39862. {
  39863. name: "Macro",
  39864. height: math.unit(500, "feet"),
  39865. default: true
  39866. },
  39867. ]
  39868. ))
  39869. characterMakers.push(() => makeCharacter(
  39870. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39871. {
  39872. front: {
  39873. height: math.unit(3 + 6/12, "feet"),
  39874. weight: math.unit(50, "lb"),
  39875. name: "Front",
  39876. image: {
  39877. source: "./media/characters/kimberly-tilson/front.svg",
  39878. extra: 1400/1322,
  39879. bottom: 36/1436
  39880. }
  39881. },
  39882. back: {
  39883. height: math.unit(3 + 6/12, "feet"),
  39884. weight: math.unit(50, "lb"),
  39885. name: "Back",
  39886. image: {
  39887. source: "./media/characters/kimberly-tilson/back.svg",
  39888. extra: 1370/1307,
  39889. bottom: 20/1390
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(3 + 6/12, "feet"),
  39897. default: true
  39898. },
  39899. ]
  39900. ))
  39901. characterMakers.push(() => makeCharacter(
  39902. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39903. {
  39904. front: {
  39905. height: math.unit(1148, "feet"),
  39906. weight: math.unit(34057, "lb"),
  39907. name: "Front",
  39908. image: {
  39909. source: "./media/characters/harthos/front.svg",
  39910. extra: 1391/1339,
  39911. bottom: 13/1404
  39912. }
  39913. },
  39914. },
  39915. [
  39916. {
  39917. name: "Macro",
  39918. height: math.unit(1148, "feet"),
  39919. default: true
  39920. },
  39921. ]
  39922. ))
  39923. characterMakers.push(() => makeCharacter(
  39924. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39925. {
  39926. front: {
  39927. height: math.unit(15, "feet"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/hypatia/front.svg",
  39931. extra: 1653/1591,
  39932. bottom: 79/1732
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Normal",
  39939. height: math.unit(15, "feet")
  39940. },
  39941. {
  39942. name: "Small",
  39943. height: math.unit(300, "feet")
  39944. },
  39945. {
  39946. name: "Macro",
  39947. height: math.unit(2500, "feet"),
  39948. default: true
  39949. },
  39950. {
  39951. name: "Mega Macro",
  39952. height: math.unit(1500, "miles")
  39953. },
  39954. {
  39955. name: "Giga Macro",
  39956. height: math.unit(1.5e6, "miles")
  39957. },
  39958. ]
  39959. ))
  39960. characterMakers.push(() => makeCharacter(
  39961. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39962. {
  39963. front: {
  39964. height: math.unit(6, "feet"),
  39965. weight: math.unit(200, "lb"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/wulver/front.svg",
  39969. extra: 1724/1632,
  39970. bottom: 130/1854
  39971. }
  39972. },
  39973. frontNsfw: {
  39974. height: math.unit(6, "feet"),
  39975. weight: math.unit(200, "lb"),
  39976. name: "Front (NSFW)",
  39977. image: {
  39978. source: "./media/characters/wulver/front-nsfw.svg",
  39979. extra: 1724/1632,
  39980. bottom: 130/1854
  39981. }
  39982. },
  39983. },
  39984. [
  39985. {
  39986. name: "Human-Sized",
  39987. height: math.unit(6, "feet")
  39988. },
  39989. {
  39990. name: "Normal",
  39991. height: math.unit(4, "meters"),
  39992. default: true
  39993. },
  39994. {
  39995. name: "Large",
  39996. height: math.unit(6, "m")
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40002. {
  40003. front: {
  40004. height: math.unit(7, "feet"),
  40005. name: "Front",
  40006. image: {
  40007. source: "./media/characters/maru/front.svg",
  40008. extra: 1595/1570,
  40009. bottom: 0/1595
  40010. }
  40011. },
  40012. },
  40013. [
  40014. {
  40015. name: "Normal",
  40016. height: math.unit(7, "feet"),
  40017. default: true
  40018. },
  40019. {
  40020. name: "Macro",
  40021. height: math.unit(700, "feet")
  40022. },
  40023. {
  40024. name: "Mega Macro",
  40025. height: math.unit(25, "miles")
  40026. },
  40027. ]
  40028. ))
  40029. characterMakers.push(() => makeCharacter(
  40030. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40031. {
  40032. front: {
  40033. height: math.unit(6, "feet"),
  40034. weight: math.unit(170, "lb"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/xenon/front.svg",
  40038. extra: 1376/1305,
  40039. bottom: 56/1432
  40040. }
  40041. },
  40042. back: {
  40043. height: math.unit(6, "feet"),
  40044. weight: math.unit(170, "lb"),
  40045. name: "Back",
  40046. image: {
  40047. source: "./media/characters/xenon/back.svg",
  40048. extra: 1328/1259,
  40049. bottom: 95/1423
  40050. }
  40051. },
  40052. maw: {
  40053. height: math.unit(0.52, "feet"),
  40054. name: "Maw",
  40055. image: {
  40056. source: "./media/characters/xenon/maw.svg"
  40057. }
  40058. },
  40059. hand: {
  40060. height: math.unit(0.82, "feet"),
  40061. name: "Hand",
  40062. image: {
  40063. source: "./media/characters/xenon/hand.svg"
  40064. }
  40065. },
  40066. foot: {
  40067. height: math.unit(1.13, "feet"),
  40068. name: "Foot",
  40069. image: {
  40070. source: "./media/characters/xenon/foot.svg"
  40071. }
  40072. },
  40073. },
  40074. [
  40075. {
  40076. name: "Micro",
  40077. height: math.unit(0.8, "inches")
  40078. },
  40079. {
  40080. name: "Normal",
  40081. height: math.unit(6, "feet")
  40082. },
  40083. {
  40084. name: "Macro",
  40085. height: math.unit(50, "feet"),
  40086. default: true
  40087. },
  40088. {
  40089. name: "Macro+",
  40090. height: math.unit(250, "feet")
  40091. },
  40092. {
  40093. name: "Megamacro",
  40094. height: math.unit(1500, "feet")
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(7 + 5/12, "feet"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/zane/front.svg",
  40106. extra: 1260/1203,
  40107. bottom: 94/1354
  40108. }
  40109. },
  40110. back: {
  40111. height: math.unit(5.05, "feet"),
  40112. name: "Back",
  40113. image: {
  40114. source: "./media/characters/zane/back.svg",
  40115. extra: 893/829,
  40116. bottom: 30/923
  40117. }
  40118. },
  40119. werewolf: {
  40120. height: math.unit(11, "feet"),
  40121. name: "Werewolf",
  40122. image: {
  40123. source: "./media/characters/zane/werewolf.svg",
  40124. extra: 1383/1323,
  40125. bottom: 89/1472
  40126. }
  40127. },
  40128. foot: {
  40129. height: math.unit(1.46, "feet"),
  40130. name: "Foot",
  40131. image: {
  40132. source: "./media/characters/zane/foot.svg"
  40133. }
  40134. },
  40135. footFront: {
  40136. height: math.unit(0.784, "feet"),
  40137. name: "Foot (Front)",
  40138. image: {
  40139. source: "./media/characters/zane/foot-front.svg"
  40140. }
  40141. },
  40142. dick: {
  40143. height: math.unit(1.95, "feet"),
  40144. name: "Dick",
  40145. image: {
  40146. source: "./media/characters/zane/dick.svg"
  40147. }
  40148. },
  40149. dickWerewolf: {
  40150. height: math.unit(3.77, "feet"),
  40151. name: "Dick (Werewolf)",
  40152. image: {
  40153. source: "./media/characters/zane/dick.svg"
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(7 + 5/12, "feet"),
  40161. default: true
  40162. },
  40163. ]
  40164. ))
  40165. characterMakers.push(() => makeCharacter(
  40166. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40167. {
  40168. front: {
  40169. height: math.unit(6 + 2/12, "feet"),
  40170. weight: math.unit(284, "lb"),
  40171. name: "Front",
  40172. image: {
  40173. source: "./media/characters/benni-desparque/front.svg",
  40174. extra: 1353/1126,
  40175. bottom: 69/1422
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Civilian",
  40182. height: math.unit(6 + 2/12, "feet")
  40183. },
  40184. {
  40185. name: "Normal",
  40186. height: math.unit(98, "feet"),
  40187. default: true
  40188. },
  40189. {
  40190. name: "Kaiju Fighter",
  40191. height: math.unit(268, "feet")
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40197. {
  40198. front: {
  40199. height: math.unit(5, "feet"),
  40200. weight: math.unit(105, "lb"),
  40201. name: "Front",
  40202. image: {
  40203. source: "./media/characters/maxine/front.svg",
  40204. extra: 1386/1250,
  40205. bottom: 71/1457
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Normal",
  40212. height: math.unit(5, "feet"),
  40213. default: true
  40214. },
  40215. ]
  40216. ))
  40217. characterMakers.push(() => makeCharacter(
  40218. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40219. {
  40220. front: {
  40221. height: math.unit(11 + 7/12, "feet"),
  40222. weight: math.unit(9576, "lb"),
  40223. name: "Front",
  40224. image: {
  40225. source: "./media/characters/scaly/front.svg",
  40226. extra: 888/867,
  40227. bottom: 36/924
  40228. }
  40229. },
  40230. },
  40231. [
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(11 + 7/12, "feet"),
  40235. default: true
  40236. },
  40237. ]
  40238. ))
  40239. characterMakers.push(() => makeCharacter(
  40240. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40241. {
  40242. front: {
  40243. height: math.unit(6 + 3/12, "feet"),
  40244. name: "Front",
  40245. image: {
  40246. source: "./media/characters/saelria/front.svg",
  40247. extra: 1243/1138,
  40248. bottom: 46/1289
  40249. }
  40250. },
  40251. },
  40252. [
  40253. {
  40254. name: "Micro",
  40255. height: math.unit(6, "inches"),
  40256. },
  40257. {
  40258. name: "Normal",
  40259. height: math.unit(6 + 3/12, "feet"),
  40260. default: true
  40261. },
  40262. {
  40263. name: "Macro",
  40264. height: math.unit(25, "feet")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(80, "meters"),
  40273. weight: math.unit(7000, "tonnes"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/tef/front.svg",
  40277. extra: 2036/1991,
  40278. bottom: 54/2090
  40279. }
  40280. },
  40281. back: {
  40282. height: math.unit(80, "meters"),
  40283. weight: math.unit(7000, "tonnes"),
  40284. name: "Back",
  40285. image: {
  40286. source: "./media/characters/tef/back.svg",
  40287. extra: 2036/1991,
  40288. bottom: 54/2090
  40289. }
  40290. },
  40291. },
  40292. [
  40293. {
  40294. name: "Macro",
  40295. height: math.unit(80, "meters"),
  40296. default: true
  40297. },
  40298. ]
  40299. ))
  40300. characterMakers.push(() => makeCharacter(
  40301. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40302. {
  40303. front: {
  40304. height: math.unit(13, "feet"),
  40305. weight: math.unit(6, "tons"),
  40306. name: "Front",
  40307. image: {
  40308. source: "./media/characters/rover/front.svg",
  40309. extra: 1233/1156,
  40310. bottom: 50/1283
  40311. }
  40312. },
  40313. back: {
  40314. height: math.unit(13, "feet"),
  40315. weight: math.unit(6, "tons"),
  40316. name: "Back",
  40317. image: {
  40318. source: "./media/characters/rover/back.svg",
  40319. extra: 1327/1258,
  40320. bottom: 39/1366
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Normal",
  40327. height: math.unit(13, "feet"),
  40328. default: true
  40329. },
  40330. {
  40331. name: "Macro",
  40332. height: math.unit(1300, "feet")
  40333. },
  40334. {
  40335. name: "Megamacro",
  40336. height: math.unit(1300, "miles")
  40337. },
  40338. {
  40339. name: "Gigamacro",
  40340. height: math.unit(1300000, "miles")
  40341. },
  40342. ]
  40343. ))
  40344. characterMakers.push(() => makeCharacter(
  40345. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40346. {
  40347. front: {
  40348. height: math.unit(6, "feet"),
  40349. weight: math.unit(150, "lb"),
  40350. name: "Front",
  40351. image: {
  40352. source: "./media/characters/ariz/front.svg",
  40353. extra: 1401/1346,
  40354. bottom: 5/1406
  40355. }
  40356. },
  40357. },
  40358. [
  40359. {
  40360. name: "Normal",
  40361. height: math.unit(10, "feet"),
  40362. default: true
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(6, "feet"),
  40371. weight: math.unit(140, "lb"),
  40372. name: "Front",
  40373. image: {
  40374. source: "./media/characters/sigrun/front.svg",
  40375. extra: 1418/1359,
  40376. bottom: 27/1445
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Macro",
  40383. height: math.unit(35, "feet"),
  40384. default: true
  40385. },
  40386. ]
  40387. ))
  40388. characterMakers.push(() => makeCharacter(
  40389. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40390. {
  40391. front: {
  40392. height: math.unit(6, "feet"),
  40393. weight: math.unit(150, "lb"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/numin/front.svg",
  40397. extra: 1433/1388,
  40398. bottom: 12/1445
  40399. }
  40400. },
  40401. },
  40402. [
  40403. {
  40404. name: "Macro",
  40405. height: math.unit(21.5, "km"),
  40406. default: true
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40412. {
  40413. front: {
  40414. height: math.unit(6, "feet"),
  40415. weight: math.unit(463, "lb"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/melwa/front.svg",
  40419. extra: 1307/1248,
  40420. bottom: 93/1400
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(50, "meters"),
  40428. default: true
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(325, "feet"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/zorkaiju/front.svg",
  40440. extra: 1955/1814,
  40441. bottom: 40/1995
  40442. }
  40443. },
  40444. frontExtended: {
  40445. height: math.unit(325, "feet"),
  40446. name: "Front (Extended)",
  40447. image: {
  40448. source: "./media/characters/zorkaiju/front-extended.svg",
  40449. extra: 1955/1814,
  40450. bottom: 40/1995
  40451. }
  40452. },
  40453. side: {
  40454. height: math.unit(325, "feet"),
  40455. name: "Side",
  40456. image: {
  40457. source: "./media/characters/zorkaiju/side.svg",
  40458. extra: 1495/1396,
  40459. bottom: 17/1512
  40460. }
  40461. },
  40462. sideExtended: {
  40463. height: math.unit(325, "feet"),
  40464. name: "Side (Extended)",
  40465. image: {
  40466. source: "./media/characters/zorkaiju/side-extended.svg",
  40467. extra: 1495/1396,
  40468. bottom: 17/1512
  40469. }
  40470. },
  40471. back: {
  40472. height: math.unit(325, "feet"),
  40473. name: "Back",
  40474. image: {
  40475. source: "./media/characters/zorkaiju/back.svg",
  40476. extra: 1959/1821,
  40477. bottom: 31/1990
  40478. }
  40479. },
  40480. backExtended: {
  40481. height: math.unit(325, "feet"),
  40482. name: "Back (Extended)",
  40483. image: {
  40484. source: "./media/characters/zorkaiju/back-extended.svg",
  40485. extra: 1959/1821,
  40486. bottom: 31/1990
  40487. }
  40488. },
  40489. hand: {
  40490. height: math.unit(58.4, "feet"),
  40491. name: "Hand",
  40492. image: {
  40493. source: "./media/characters/zorkaiju/hand.svg"
  40494. }
  40495. },
  40496. handExtended: {
  40497. height: math.unit(61.4, "feet"),
  40498. name: "Hand (Extended)",
  40499. image: {
  40500. source: "./media/characters/zorkaiju/hand-extended.svg"
  40501. }
  40502. },
  40503. foot: {
  40504. height: math.unit(95, "feet"),
  40505. name: "Foot",
  40506. image: {
  40507. source: "./media/characters/zorkaiju/foot.svg"
  40508. }
  40509. },
  40510. leftArm: {
  40511. height: math.unit(59, "feet"),
  40512. name: "Left Arm",
  40513. image: {
  40514. source: "./media/characters/zorkaiju/left-arm.svg"
  40515. }
  40516. },
  40517. rightArm: {
  40518. height: math.unit(59, "feet"),
  40519. name: "Right Arm",
  40520. image: {
  40521. source: "./media/characters/zorkaiju/right-arm.svg"
  40522. }
  40523. },
  40524. tail: {
  40525. height: math.unit(104, "feet"),
  40526. name: "Tail",
  40527. image: {
  40528. source: "./media/characters/zorkaiju/tail.svg"
  40529. }
  40530. },
  40531. tailExtended: {
  40532. height: math.unit(104, "feet"),
  40533. name: "Tail (Extended)",
  40534. image: {
  40535. source: "./media/characters/zorkaiju/tail-extended.svg"
  40536. }
  40537. },
  40538. tailBottom: {
  40539. height: math.unit(104, "feet"),
  40540. name: "Tail Bottom",
  40541. image: {
  40542. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40543. }
  40544. },
  40545. crystal: {
  40546. height: math.unit(27.54, "feet"),
  40547. name: "Crystal",
  40548. image: {
  40549. source: "./media/characters/zorkaiju/crystal.svg"
  40550. }
  40551. },
  40552. },
  40553. [
  40554. {
  40555. name: "Kaiju",
  40556. height: math.unit(325, "feet"),
  40557. default: true
  40558. },
  40559. ]
  40560. ))
  40561. characterMakers.push(() => makeCharacter(
  40562. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40563. {
  40564. front: {
  40565. height: math.unit(6 + 1/12, "feet"),
  40566. weight: math.unit(115, "lb"),
  40567. name: "Front",
  40568. image: {
  40569. source: "./media/characters/bailey-belfry/front.svg",
  40570. extra: 1240/1121,
  40571. bottom: 101/1341
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(6 + 1/12, "feet"),
  40579. default: true
  40580. },
  40581. ]
  40582. ))
  40583. characterMakers.push(() => makeCharacter(
  40584. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40585. {
  40586. side: {
  40587. height: math.unit(4, "meters"),
  40588. weight: math.unit(250, "kg"),
  40589. name: "Side",
  40590. image: {
  40591. source: "./media/characters/blacky/side.svg",
  40592. extra: 1027/919,
  40593. bottom: 43/1070
  40594. }
  40595. },
  40596. maw: {
  40597. height: math.unit(1, "meters"),
  40598. name: "Maw",
  40599. image: {
  40600. source: "./media/characters/blacky/maw.svg"
  40601. }
  40602. },
  40603. paw: {
  40604. height: math.unit(1, "meters"),
  40605. name: "Paw",
  40606. image: {
  40607. source: "./media/characters/blacky/paw.svg"
  40608. }
  40609. },
  40610. },
  40611. [
  40612. {
  40613. name: "Normal",
  40614. height: math.unit(4, "meters"),
  40615. default: true
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40621. {
  40622. front: {
  40623. height: math.unit(170, "cm"),
  40624. weight: math.unit(66, "kg"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/thux-ei/front.svg",
  40628. extra: 1109/1011,
  40629. bottom: 8/1117
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(170, "cm"),
  40637. default: true
  40638. },
  40639. ]
  40640. ))
  40641. characterMakers.push(() => makeCharacter(
  40642. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40643. {
  40644. front: {
  40645. height: math.unit(5, "feet"),
  40646. weight: math.unit(120, "lb"),
  40647. name: "Front",
  40648. image: {
  40649. source: "./media/characters/roxanne-voltaire/front.svg",
  40650. extra: 1901/1779,
  40651. bottom: 53/1954
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(5, "feet"),
  40659. default: true
  40660. },
  40661. {
  40662. name: "Giant",
  40663. height: math.unit(50, "feet")
  40664. },
  40665. {
  40666. name: "Titan",
  40667. height: math.unit(500, "feet")
  40668. },
  40669. {
  40670. name: "Macro",
  40671. height: math.unit(5000, "feet")
  40672. },
  40673. {
  40674. name: "Megamacro",
  40675. height: math.unit(50000, "feet")
  40676. },
  40677. {
  40678. name: "Gigamacro",
  40679. height: math.unit(500000, "feet")
  40680. },
  40681. {
  40682. name: "Teramacro",
  40683. height: math.unit(5e6, "feet")
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(6 + 2/12, "feet"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/squeaks/front.svg",
  40695. extra: 1823/1768,
  40696. bottom: 138/1961
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Micro",
  40703. height: math.unit(0.5, "inches")
  40704. },
  40705. {
  40706. name: "Normal",
  40707. height: math.unit(6 + 2/12, "feet"),
  40708. default: true
  40709. },
  40710. {
  40711. name: "Macro",
  40712. height: math.unit(600, "feet")
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(1.72, "meters"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/archinger/front.svg",
  40724. extra: 1861/1675,
  40725. bottom: 125/1986
  40726. }
  40727. },
  40728. back: {
  40729. height: math.unit(1.72, "meters"),
  40730. name: "Back",
  40731. image: {
  40732. source: "./media/characters/archinger/back.svg",
  40733. extra: 1844/1701,
  40734. bottom: 104/1948
  40735. }
  40736. },
  40737. cock: {
  40738. height: math.unit(0.59, "feet"),
  40739. name: "Cock",
  40740. image: {
  40741. source: "./media/characters/archinger/cock.svg"
  40742. }
  40743. },
  40744. },
  40745. [
  40746. {
  40747. name: "Normal",
  40748. height: math.unit(1.72, "meters"),
  40749. default: true
  40750. },
  40751. {
  40752. name: "Macro",
  40753. height: math.unit(84, "meters")
  40754. },
  40755. {
  40756. name: "Macro+",
  40757. height: math.unit(112, "meters")
  40758. },
  40759. {
  40760. name: "Macro++",
  40761. height: math.unit(960, "meters")
  40762. },
  40763. {
  40764. name: "Macro+++",
  40765. height: math.unit(4, "km")
  40766. },
  40767. {
  40768. name: "Macro++++",
  40769. height: math.unit(48, "km")
  40770. },
  40771. {
  40772. name: "Macro+++++",
  40773. height: math.unit(4500, "km")
  40774. },
  40775. ]
  40776. ))
  40777. characterMakers.push(() => makeCharacter(
  40778. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40779. {
  40780. front: {
  40781. height: math.unit(5 + 5/12, "feet"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/alsnapz/front.svg",
  40785. extra: 1157/1065,
  40786. bottom: 42/1199
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(5 + 5/12, "feet"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40800. {
  40801. side: {
  40802. height: math.unit(3.2, "earths"),
  40803. name: "Side",
  40804. image: {
  40805. source: "./media/characters/mag/side.svg",
  40806. extra: 1331/1008,
  40807. bottom: 52/1383
  40808. }
  40809. },
  40810. wing: {
  40811. height: math.unit(1.94, "earths"),
  40812. name: "Wing",
  40813. image: {
  40814. source: "./media/characters/mag/wing.svg"
  40815. }
  40816. },
  40817. dick: {
  40818. height: math.unit(1.8, "earths"),
  40819. name: "Dick",
  40820. image: {
  40821. source: "./media/characters/mag/dick.svg"
  40822. }
  40823. },
  40824. ass: {
  40825. height: math.unit(1.33, "earths"),
  40826. name: "Ass",
  40827. image: {
  40828. source: "./media/characters/mag/ass.svg"
  40829. }
  40830. },
  40831. head: {
  40832. height: math.unit(1.1, "earths"),
  40833. name: "Head",
  40834. image: {
  40835. source: "./media/characters/mag/head.svg"
  40836. }
  40837. },
  40838. maw: {
  40839. height: math.unit(1.62, "earths"),
  40840. name: "Maw",
  40841. image: {
  40842. source: "./media/characters/mag/maw.svg"
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Small",
  40849. height: math.unit(162, "feet")
  40850. },
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(3.2, "earths"),
  40854. default: true
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(512, "feet"),
  40863. weight: math.unit(63509, "tonnes"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/vorrel-harroc/front.svg",
  40867. extra: 1075/1063,
  40868. bottom: 62/1137
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Normal",
  40875. height: math.unit(10, "feet")
  40876. },
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(512, "feet"),
  40880. default: true
  40881. },
  40882. {
  40883. name: "Megamacro",
  40884. height: math.unit(256, "miles")
  40885. },
  40886. {
  40887. name: "Gigamacro",
  40888. height: math.unit(4096, "miles")
  40889. },
  40890. ]
  40891. ))
  40892. characterMakers.push(() => makeCharacter(
  40893. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40894. {
  40895. side: {
  40896. height: math.unit(50, "feet"),
  40897. name: "Side",
  40898. image: {
  40899. source: "./media/characters/froimar/side.svg",
  40900. extra: 855/638,
  40901. bottom: 99/954
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Macro",
  40908. height: math.unit(50, "feet"),
  40909. default: true
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(210, "miles"),
  40918. name: "Front",
  40919. image: {
  40920. source: "./media/characters/timothy/front.svg",
  40921. extra: 1007/943,
  40922. bottom: 62/1069
  40923. }
  40924. },
  40925. frontSkirt: {
  40926. height: math.unit(210, "miles"),
  40927. name: "Front (Skirt)",
  40928. image: {
  40929. source: "./media/characters/timothy/front-skirt.svg",
  40930. extra: 1007/943,
  40931. bottom: 62/1069
  40932. }
  40933. },
  40934. frontCoat: {
  40935. height: math.unit(210, "miles"),
  40936. name: "Front (Coat)",
  40937. image: {
  40938. source: "./media/characters/timothy/front-coat.svg",
  40939. extra: 1007/943,
  40940. bottom: 62/1069
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(210, "miles"),
  40948. default: true
  40949. },
  40950. {
  40951. name: "Megamacro",
  40952. height: math.unit(210000, "miles")
  40953. },
  40954. ]
  40955. ))
  40956. characterMakers.push(() => makeCharacter(
  40957. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40958. {
  40959. front: {
  40960. height: math.unit(188, "feet"),
  40961. name: "Front",
  40962. image: {
  40963. source: "./media/characters/pyotr/front.svg",
  40964. extra: 1912/1826,
  40965. bottom: 18/1930
  40966. }
  40967. },
  40968. },
  40969. [
  40970. {
  40971. name: "Macro",
  40972. height: math.unit(188, "feet"),
  40973. default: true
  40974. },
  40975. {
  40976. name: "Megamacro",
  40977. height: math.unit(8, "miles")
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40983. {
  40984. side: {
  40985. height: math.unit(10, "feet"),
  40986. weight: math.unit(4500, "lb"),
  40987. name: "Side",
  40988. image: {
  40989. source: "./media/characters/ackart/side.svg",
  40990. extra: 1776/1668,
  40991. bottom: 116/1892
  40992. }
  40993. },
  40994. },
  40995. [
  40996. {
  40997. name: "Normal",
  40998. height: math.unit(10, "feet"),
  40999. default: true
  41000. },
  41001. ]
  41002. ))
  41003. characterMakers.push(() => makeCharacter(
  41004. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41005. {
  41006. side: {
  41007. height: math.unit(21, "feet"),
  41008. name: "Side",
  41009. image: {
  41010. source: "./media/characters/nolow/side.svg",
  41011. extra: 1484/1434,
  41012. bottom: 85/1569
  41013. }
  41014. },
  41015. sideErect: {
  41016. height: math.unit(21, "feet"),
  41017. name: "Side-erect",
  41018. image: {
  41019. source: "./media/characters/nolow/side-erect.svg",
  41020. extra: 1484/1434,
  41021. bottom: 85/1569
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Regular",
  41028. height: math.unit(12, "feet")
  41029. },
  41030. {
  41031. name: "Big Chee",
  41032. height: math.unit(21, "feet"),
  41033. default: true
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(7, "feet"),
  41042. weight: math.unit(250, "lb"),
  41043. name: "Front",
  41044. image: {
  41045. source: "./media/characters/nines/front.svg",
  41046. extra: 1741/1607,
  41047. bottom: 41/1782
  41048. }
  41049. },
  41050. side: {
  41051. height: math.unit(7, "feet"),
  41052. weight: math.unit(250, "lb"),
  41053. name: "Side",
  41054. image: {
  41055. source: "./media/characters/nines/side.svg",
  41056. extra: 1854/1735,
  41057. bottom: 93/1947
  41058. }
  41059. },
  41060. back: {
  41061. height: math.unit(7, "feet"),
  41062. weight: math.unit(250, "lb"),
  41063. name: "Back",
  41064. image: {
  41065. source: "./media/characters/nines/back.svg",
  41066. extra: 1748/1615,
  41067. bottom: 20/1768
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Megamacro",
  41074. height: math.unit(99, "km"),
  41075. default: true
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(5 + 10/12, "feet"),
  41084. weight: math.unit(210, "lb"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/zenith/front.svg",
  41088. extra: 1531/1452,
  41089. bottom: 198/1729
  41090. }
  41091. },
  41092. back: {
  41093. height: math.unit(5 + 10/12, "feet"),
  41094. weight: math.unit(210, "lb"),
  41095. name: "Back",
  41096. image: {
  41097. source: "./media/characters/zenith/back.svg",
  41098. extra: 1571/1487,
  41099. bottom: 75/1646
  41100. }
  41101. },
  41102. },
  41103. [
  41104. {
  41105. name: "Normal",
  41106. height: math.unit(5 + 10/12, "feet"),
  41107. default: true
  41108. }
  41109. ]
  41110. ))
  41111. characterMakers.push(() => makeCharacter(
  41112. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41113. {
  41114. front: {
  41115. height: math.unit(4, "feet"),
  41116. weight: math.unit(60, "lb"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/jasper/front.svg",
  41120. extra: 1450/1379,
  41121. bottom: 19/1469
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Normal",
  41128. height: math.unit(4, "feet"),
  41129. default: true
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41135. {
  41136. front: {
  41137. height: math.unit(6 + 5/12, "feet"),
  41138. weight: math.unit(290, "lb"),
  41139. name: "Front",
  41140. image: {
  41141. source: "./media/characters/tiberius-thyben/front.svg",
  41142. extra: 757/739,
  41143. bottom: 39/796
  41144. }
  41145. },
  41146. },
  41147. [
  41148. {
  41149. name: "Micro",
  41150. height: math.unit(1.5, "inches")
  41151. },
  41152. {
  41153. name: "Normal",
  41154. height: math.unit(6 + 5/12, "feet"),
  41155. default: true
  41156. },
  41157. {
  41158. name: "Macro",
  41159. height: math.unit(300, "feet")
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(5 + 6/12, "feet"),
  41168. weight: math.unit(60, "kg"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/sabre/front.svg",
  41172. extra: 738/671,
  41173. bottom: 27/765
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Teeny",
  41180. height: math.unit(2, "inches")
  41181. },
  41182. {
  41183. name: "Smol",
  41184. height: math.unit(8, "inches")
  41185. },
  41186. {
  41187. name: "Normal",
  41188. height: math.unit(5 + 6/12, "feet"),
  41189. default: true
  41190. },
  41191. {
  41192. name: "Mini-Macro",
  41193. height: math.unit(15, "feet")
  41194. },
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(50, "feet")
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(6 + 4/12, "feet"),
  41206. weight: math.unit(170, "lb"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/charlie/front.svg",
  41210. extra: 1348/1228,
  41211. bottom: 15/1363
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Macro",
  41218. height: math.unit(1700, "meters"),
  41219. default: true
  41220. },
  41221. {
  41222. name: "MegaMacro",
  41223. height: math.unit(20400, "meters")
  41224. },
  41225. ]
  41226. ))
  41227. characterMakers.push(() => makeCharacter(
  41228. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41229. {
  41230. front: {
  41231. height: math.unit(6 + 3/12, "feet"),
  41232. weight: math.unit(185, "lb"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/susan-grant/front.svg",
  41236. extra: 1351/1327,
  41237. bottom: 26/1377
  41238. }
  41239. },
  41240. },
  41241. [
  41242. {
  41243. name: "Normal",
  41244. height: math.unit(6 + 3/12, "feet"),
  41245. default: true
  41246. },
  41247. {
  41248. name: "Macro",
  41249. height: math.unit(225, "feet")
  41250. },
  41251. {
  41252. name: "Macro+",
  41253. height: math.unit(900, "feet")
  41254. },
  41255. {
  41256. name: "MegaMacro",
  41257. height: math.unit(14400, "feet")
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(5 + 4/12, "feet"),
  41266. weight: math.unit(110, "lb"),
  41267. name: "Front",
  41268. image: {
  41269. source: "./media/characters/axel-isanov/front.svg",
  41270. extra: 1096/1065,
  41271. bottom: 13/1109
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(5 + 4/12, "feet"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41285. {
  41286. front: {
  41287. height: math.unit(9, "feet"),
  41288. weight: math.unit(467, "lb"),
  41289. name: "Front",
  41290. image: {
  41291. source: "./media/characters/necahual/front.svg",
  41292. extra: 920/873,
  41293. bottom: 26/946
  41294. }
  41295. },
  41296. back: {
  41297. height: math.unit(9, "feet"),
  41298. weight: math.unit(467, "lb"),
  41299. name: "Back",
  41300. image: {
  41301. source: "./media/characters/necahual/back.svg",
  41302. extra: 930/884,
  41303. bottom: 16/946
  41304. }
  41305. },
  41306. frontUnderwear: {
  41307. height: math.unit(9, "feet"),
  41308. weight: math.unit(467, "lb"),
  41309. name: "Front (Underwear)",
  41310. image: {
  41311. source: "./media/characters/necahual/front-underwear.svg",
  41312. extra: 920/873,
  41313. bottom: 26/946
  41314. }
  41315. },
  41316. frontDressed: {
  41317. height: math.unit(9, "feet"),
  41318. weight: math.unit(467, "lb"),
  41319. name: "Front (Dressed)",
  41320. image: {
  41321. source: "./media/characters/necahual/front-dressed.svg",
  41322. extra: 920/873,
  41323. bottom: 26/946
  41324. }
  41325. },
  41326. },
  41327. [
  41328. {
  41329. name: "Comprsesed",
  41330. height: math.unit(9, "feet")
  41331. },
  41332. {
  41333. name: "Natural",
  41334. height: math.unit(15, "feet"),
  41335. default: true
  41336. },
  41337. {
  41338. name: "Boosted",
  41339. height: math.unit(50, "feet")
  41340. },
  41341. {
  41342. name: "Boosted+",
  41343. height: math.unit(150, "feet")
  41344. },
  41345. {
  41346. name: "Max",
  41347. height: math.unit(500, "feet")
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(22 + 1/12, "feet"),
  41356. weight: math.unit(3200, "lb"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/theo-acacia/front.svg",
  41360. extra: 1796/1741,
  41361. bottom: 83/1879
  41362. }
  41363. },
  41364. frontUnderwear: {
  41365. height: math.unit(22 + 1/12, "feet"),
  41366. weight: math.unit(3200, "lb"),
  41367. name: "Front (Underwear)",
  41368. image: {
  41369. source: "./media/characters/theo-acacia/front-underwear.svg",
  41370. extra: 1796/1741,
  41371. bottom: 83/1879
  41372. }
  41373. },
  41374. frontNude: {
  41375. height: math.unit(22 + 1/12, "feet"),
  41376. weight: math.unit(3200, "lb"),
  41377. name: "Front (Nude)",
  41378. image: {
  41379. source: "./media/characters/theo-acacia/front-nude.svg",
  41380. extra: 1796/1741,
  41381. bottom: 83/1879
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Normal",
  41388. height: math.unit(22 + 1/12, "feet"),
  41389. default: true
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(20, "feet"),
  41398. name: "Front",
  41399. image: {
  41400. source: "./media/characters/astra/front.svg",
  41401. extra: 1850/1714,
  41402. bottom: 106/1956
  41403. }
  41404. },
  41405. frontUndressed: {
  41406. height: math.unit(20, "feet"),
  41407. name: "Front (Undressed)",
  41408. image: {
  41409. source: "./media/characters/astra/front-undressed.svg",
  41410. extra: 1926/1749,
  41411. bottom: 0/1926
  41412. }
  41413. },
  41414. hand: {
  41415. height: math.unit(1.53, "feet"),
  41416. name: "Hand",
  41417. image: {
  41418. source: "./media/characters/astra/hand.svg"
  41419. }
  41420. },
  41421. paw: {
  41422. height: math.unit(1.53, "feet"),
  41423. name: "Paw",
  41424. image: {
  41425. source: "./media/characters/astra/paw.svg"
  41426. }
  41427. },
  41428. },
  41429. [
  41430. {
  41431. name: "Smallest",
  41432. height: math.unit(20, "feet")
  41433. },
  41434. {
  41435. name: "Normal",
  41436. height: math.unit(1e9, "miles"),
  41437. default: true
  41438. },
  41439. {
  41440. name: "Larger",
  41441. height: math.unit(5, "multiverses")
  41442. },
  41443. {
  41444. name: "Largest",
  41445. height: math.unit(1e9, "multiverses")
  41446. },
  41447. ]
  41448. ))
  41449. characterMakers.push(() => makeCharacter(
  41450. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41451. {
  41452. front: {
  41453. height: math.unit(8, "feet"),
  41454. name: "Front",
  41455. image: {
  41456. source: "./media/characters/breanna/front.svg",
  41457. extra: 1912/1632,
  41458. bottom: 33/1945
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Smallest",
  41465. height: math.unit(8, "feet")
  41466. },
  41467. {
  41468. name: "Normal",
  41469. height: math.unit(1, "mile"),
  41470. default: true
  41471. },
  41472. {
  41473. name: "Maximum",
  41474. height: math.unit(1500000000000, "lightyears")
  41475. },
  41476. ]
  41477. ))
  41478. characterMakers.push(() => makeCharacter(
  41479. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41480. {
  41481. front: {
  41482. height: math.unit(5 + 11/12, "feet"),
  41483. weight: math.unit(155, "lb"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/cai/front.svg",
  41487. extra: 1823/1702,
  41488. bottom: 32/1855
  41489. }
  41490. },
  41491. back: {
  41492. height: math.unit(5 + 11/12, "feet"),
  41493. weight: math.unit(155, "lb"),
  41494. name: "Back",
  41495. image: {
  41496. source: "./media/characters/cai/back.svg",
  41497. extra: 1809/1708,
  41498. bottom: 31/1840
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Normal",
  41505. height: math.unit(5 + 11/12, "feet"),
  41506. default: true
  41507. },
  41508. {
  41509. name: "Big",
  41510. height: math.unit(15, "feet")
  41511. },
  41512. {
  41513. name: "Macro",
  41514. height: math.unit(200, "feet")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(5 + 6/12, "feet"),
  41523. weight: math.unit(160, "lb"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41527. extra: 1227/1174,
  41528. bottom: 37/1264
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(444, "meters"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(18 + 7/12, "feet"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/rex/front.svg",
  41548. extra: 1941/1807,
  41549. bottom: 66/2007
  41550. }
  41551. },
  41552. back: {
  41553. height: math.unit(18 + 7/12, "feet"),
  41554. name: "Back",
  41555. image: {
  41556. source: "./media/characters/rex/back.svg",
  41557. extra: 1937/1822,
  41558. bottom: 42/1979
  41559. }
  41560. },
  41561. boot: {
  41562. height: math.unit(3.45, "feet"),
  41563. name: "Boot",
  41564. image: {
  41565. source: "./media/characters/rex/boot.svg"
  41566. }
  41567. },
  41568. paw: {
  41569. height: math.unit(4.17, "feet"),
  41570. name: "Paw",
  41571. image: {
  41572. source: "./media/characters/rex/paw.svg"
  41573. }
  41574. },
  41575. head: {
  41576. height: math.unit(6.728, "feet"),
  41577. name: "Head",
  41578. image: {
  41579. source: "./media/characters/rex/head.svg"
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Nano",
  41586. height: math.unit(18 + 7/12, "feet")
  41587. },
  41588. {
  41589. name: "Micro",
  41590. height: math.unit(1.5, "megameters")
  41591. },
  41592. {
  41593. name: "Normal",
  41594. height: math.unit(440, "megameters"),
  41595. default: true
  41596. },
  41597. {
  41598. name: "Macro",
  41599. height: math.unit(2.5, "gigameters")
  41600. },
  41601. {
  41602. name: "Gigamacro",
  41603. height: math.unit(2, "galaxies")
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41609. {
  41610. side: {
  41611. height: math.unit(32, "feet"),
  41612. weight: math.unit(250000, "lb"),
  41613. name: "Side",
  41614. image: {
  41615. source: "./media/characters/silverwing/side.svg",
  41616. extra: 1100/1019,
  41617. bottom: 204/1304
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(32, "feet"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41631. {
  41632. front: {
  41633. height: math.unit(6 + 6/12, "feet"),
  41634. weight: math.unit(350, "lb"),
  41635. name: "Front",
  41636. image: {
  41637. source: "./media/characters/tristan-hawthorne/front.svg",
  41638. extra: 1159/1124,
  41639. bottom: 37/1196
  41640. }
  41641. },
  41642. },
  41643. [
  41644. {
  41645. name: "Normal",
  41646. height: math.unit(6 + 6/12, "feet"),
  41647. default: true
  41648. },
  41649. ]
  41650. ))
  41651. characterMakers.push(() => makeCharacter(
  41652. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41653. {
  41654. front: {
  41655. height: math.unit(5 + 11/12, "feet"),
  41656. weight: math.unit(190, "lb"),
  41657. name: "Front",
  41658. image: {
  41659. source: "./media/characters/mizu/front.svg",
  41660. extra: 1988/1788,
  41661. bottom: 14/2002
  41662. }
  41663. },
  41664. },
  41665. [
  41666. {
  41667. name: "Normal",
  41668. height: math.unit(5 + 11/12, "feet"),
  41669. default: true
  41670. },
  41671. ]
  41672. ))
  41673. characterMakers.push(() => makeCharacter(
  41674. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41675. {
  41676. front: {
  41677. height: math.unit(1.7, "feet"),
  41678. weight: math.unit(50, "lb"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/dechroma/front.svg",
  41682. extra: 1095/859,
  41683. bottom: 64/1159
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(1.7, "feet"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41697. {
  41698. side: {
  41699. height: math.unit(30, "feet"),
  41700. name: "Side",
  41701. image: {
  41702. source: "./media/characters/veluren-thanazel/side.svg",
  41703. extra: 1611/633,
  41704. bottom: 118/1729
  41705. }
  41706. },
  41707. front: {
  41708. height: math.unit(30, "feet"),
  41709. name: "Front",
  41710. image: {
  41711. source: "./media/characters/veluren-thanazel/front.svg",
  41712. extra: 1486/636,
  41713. bottom: 238/1724
  41714. }
  41715. },
  41716. head: {
  41717. height: math.unit(21.4, "feet"),
  41718. name: "Head",
  41719. image: {
  41720. source: "./media/characters/veluren-thanazel/head.svg"
  41721. }
  41722. },
  41723. genitals: {
  41724. height: math.unit(19.4, "feet"),
  41725. name: "Genitals",
  41726. image: {
  41727. source: "./media/characters/veluren-thanazel/genitals.svg"
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Social",
  41734. height: math.unit(6, "feet")
  41735. },
  41736. {
  41737. name: "Play",
  41738. height: math.unit(12, "feet")
  41739. },
  41740. {
  41741. name: "True",
  41742. height: math.unit(30, "feet"),
  41743. default: true
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(7 + 6/12, "feet"),
  41752. weight: math.unit(500, "kg"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/arcturas/front.svg",
  41756. extra: 1700/1500,
  41757. bottom: 145/1845
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Normal",
  41764. height: math.unit(7 + 6/12, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41771. {
  41772. side: {
  41773. height: math.unit(6, "feet"),
  41774. weight: math.unit(2, "tons"),
  41775. name: "Side",
  41776. image: {
  41777. source: "./media/characters/vitaen/side.svg",
  41778. extra: 1157/617,
  41779. bottom: 122/1279
  41780. }
  41781. },
  41782. },
  41783. [
  41784. {
  41785. name: "Normal",
  41786. height: math.unit(6, "feet"),
  41787. default: true
  41788. },
  41789. ]
  41790. ))
  41791. characterMakers.push(() => makeCharacter(
  41792. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41793. {
  41794. front: {
  41795. height: math.unit(19, "feet"),
  41796. name: "Front",
  41797. image: {
  41798. source: "./media/characters/fia-dreamweaver/front.svg",
  41799. extra: 1630/1504,
  41800. bottom: 25/1655
  41801. }
  41802. },
  41803. },
  41804. [
  41805. {
  41806. name: "Normal",
  41807. height: math.unit(19, "feet"),
  41808. default: true
  41809. },
  41810. ]
  41811. ))
  41812. characterMakers.push(() => makeCharacter(
  41813. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41814. {
  41815. front: {
  41816. height: math.unit(5 + 4/12, "feet"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/artan/front.svg",
  41820. extra: 1618/1535,
  41821. bottom: 46/1664
  41822. }
  41823. },
  41824. back: {
  41825. height: math.unit(5 + 4/12, "feet"),
  41826. name: "Back",
  41827. image: {
  41828. source: "./media/characters/artan/back.svg",
  41829. extra: 1618/1543,
  41830. bottom: 31/1649
  41831. }
  41832. },
  41833. },
  41834. [
  41835. {
  41836. name: "Normal",
  41837. height: math.unit(5 + 4/12, "feet"),
  41838. default: true
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41844. {
  41845. side: {
  41846. height: math.unit(182, "cm"),
  41847. weight: math.unit(1000, "lb"),
  41848. name: "Side",
  41849. image: {
  41850. source: "./media/characters/silver-dragon/side.svg",
  41851. extra: 710/287,
  41852. bottom: 88/798
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(182, "cm"),
  41860. default: true
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41866. {
  41867. side: {
  41868. height: math.unit(6 + 6/12, "feet"),
  41869. weight: math.unit(1.5, "tons"),
  41870. name: "Side",
  41871. image: {
  41872. source: "./media/characters/zephyr/side.svg",
  41873. extra: 1433/586,
  41874. bottom: 109/1542
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Normal",
  41881. height: math.unit(6 + 6/12, "feet"),
  41882. default: true
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41888. {
  41889. side: {
  41890. height: math.unit(1, "feet"),
  41891. name: "Side",
  41892. image: {
  41893. source: "./media/characters/vixye/side.svg",
  41894. extra: 632/541,
  41895. bottom: 0/632
  41896. }
  41897. },
  41898. },
  41899. [
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(1, "feet"),
  41903. default: true
  41904. },
  41905. {
  41906. name: "True",
  41907. height: math.unit(1e15, "multiverses")
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(8 + 2/12, "feet"),
  41916. weight: math.unit(650, "lb"),
  41917. name: "Front",
  41918. image: {
  41919. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41920. extra: 1174/1137,
  41921. bottom: 82/1256
  41922. }
  41923. },
  41924. back: {
  41925. height: math.unit(8 + 2/12, "feet"),
  41926. weight: math.unit(650, "lb"),
  41927. name: "Back",
  41928. image: {
  41929. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41930. extra: 1204/1157,
  41931. bottom: 46/1250
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Wildform",
  41938. height: math.unit(8 + 2/12, "feet"),
  41939. default: true
  41940. },
  41941. ]
  41942. ))
  41943. characterMakers.push(() => makeCharacter(
  41944. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41945. {
  41946. front: {
  41947. height: math.unit(18, "feet"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/cyphin/front.svg",
  41951. extra: 970/886,
  41952. bottom: 42/1012
  41953. }
  41954. },
  41955. back: {
  41956. height: math.unit(18, "feet"),
  41957. name: "Back",
  41958. image: {
  41959. source: "./media/characters/cyphin/back.svg",
  41960. extra: 1009/894,
  41961. bottom: 24/1033
  41962. }
  41963. },
  41964. head: {
  41965. height: math.unit(5.05, "feet"),
  41966. name: "Head",
  41967. image: {
  41968. source: "./media/characters/cyphin/head.svg"
  41969. }
  41970. },
  41971. tailbud: {
  41972. height: math.unit(5, "feet"),
  41973. name: "Tailbud",
  41974. image: {
  41975. source: "./media/characters/cyphin/tailbud.svg"
  41976. }
  41977. },
  41978. },
  41979. [
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41984. {
  41985. side: {
  41986. height: math.unit(10, "feet"),
  41987. weight: math.unit(6, "tons"),
  41988. name: "Side",
  41989. image: {
  41990. source: "./media/characters/raijin/side.svg",
  41991. extra: 1529/613,
  41992. bottom: 337/1866
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Normal",
  41999. height: math.unit(10, "feet"),
  42000. default: true
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42006. {
  42007. side: {
  42008. height: math.unit(9, "feet"),
  42009. name: "Side",
  42010. image: {
  42011. source: "./media/characters/nilghais/side.svg",
  42012. extra: 1047/744,
  42013. bottom: 91/1138
  42014. }
  42015. },
  42016. head: {
  42017. height: math.unit(3.14, "feet"),
  42018. name: "Head",
  42019. image: {
  42020. source: "./media/characters/nilghais/head.svg"
  42021. }
  42022. },
  42023. mouth: {
  42024. height: math.unit(4.6, "feet"),
  42025. name: "Mouth",
  42026. image: {
  42027. source: "./media/characters/nilghais/mouth.svg"
  42028. }
  42029. },
  42030. wings: {
  42031. height: math.unit(24, "feet"),
  42032. name: "Wings",
  42033. image: {
  42034. source: "./media/characters/nilghais/wings.svg"
  42035. }
  42036. },
  42037. ass: {
  42038. height: math.unit(6.12, "feet"),
  42039. name: "Ass",
  42040. image: {
  42041. source: "./media/characters/nilghais/ass.svg"
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(9, "feet"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42055. {
  42056. regular: {
  42057. height: math.unit(16 + 2/12, "feet"),
  42058. weight: math.unit(2300, "lb"),
  42059. name: "Regular",
  42060. image: {
  42061. source: "./media/characters/zolgar/regular.svg",
  42062. extra: 1246/1004,
  42063. bottom: 124/1370
  42064. }
  42065. },
  42066. boxers: {
  42067. height: math.unit(16 + 2/12, "feet"),
  42068. weight: math.unit(2300, "lb"),
  42069. name: "Boxers",
  42070. image: {
  42071. source: "./media/characters/zolgar/boxers.svg",
  42072. extra: 1246/1004,
  42073. bottom: 124/1370
  42074. }
  42075. },
  42076. armored: {
  42077. height: math.unit(16 + 2/12, "feet"),
  42078. weight: math.unit(2300, "lb"),
  42079. name: "Armored",
  42080. image: {
  42081. source: "./media/characters/zolgar/armored.svg",
  42082. extra: 1246/1004,
  42083. bottom: 124/1370
  42084. }
  42085. },
  42086. goth: {
  42087. height: math.unit(16 + 2/12, "feet"),
  42088. weight: math.unit(2300, "lb"),
  42089. name: "Goth",
  42090. image: {
  42091. source: "./media/characters/zolgar/goth.svg",
  42092. extra: 1246/1004,
  42093. bottom: 124/1370
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Shrunken Down",
  42100. height: math.unit(9 + 2/12, "feet")
  42101. },
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(16 + 2/12, "feet"),
  42105. default: true
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(6, "feet"),
  42114. weight: math.unit(168, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/luca/front.svg",
  42118. extra: 841/667,
  42119. bottom: 102/943
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(6, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42133. {
  42134. side: {
  42135. height: math.unit(7 + 3/12, "feet"),
  42136. weight: math.unit(312, "lb"),
  42137. name: "Side",
  42138. image: {
  42139. source: "./media/characters/zezo/side.svg",
  42140. extra: 1192/1067,
  42141. bottom: 63/1255
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Normal",
  42148. height: math.unit(7 + 3/12, "feet"),
  42149. default: true
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(5 + 5/12, "feet"),
  42158. weight: math.unit(170, "lb"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/mayso/front.svg",
  42162. extra: 1215/1108,
  42163. bottom: 16/1231
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(5 + 5/12, "feet"),
  42171. default: true
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42177. {
  42178. front: {
  42179. height: math.unit(4 + 3/12, "feet"),
  42180. weight: math.unit(80, "lb"),
  42181. name: "Front",
  42182. image: {
  42183. source: "./media/characters/hess/front.svg",
  42184. extra: 1200/1123,
  42185. bottom: 16/1216
  42186. }
  42187. },
  42188. },
  42189. [
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(4 + 3/12, "feet"),
  42193. default: true
  42194. },
  42195. ]
  42196. ))
  42197. characterMakers.push(() => makeCharacter(
  42198. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42199. {
  42200. front: {
  42201. height: math.unit(1.9, "meters"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/ashgar/front.svg",
  42205. extra: 1177/1146,
  42206. bottom: 99/1276
  42207. }
  42208. },
  42209. back: {
  42210. height: math.unit(1.9, "meters"),
  42211. name: "Back",
  42212. image: {
  42213. source: "./media/characters/ashgar/back.svg",
  42214. extra: 1201/1183,
  42215. bottom: 53/1254
  42216. }
  42217. },
  42218. feral: {
  42219. height: math.unit(1.4, "meters"),
  42220. name: "Feral",
  42221. image: {
  42222. source: "./media/characters/ashgar/feral.svg",
  42223. extra: 370/345,
  42224. bottom: 45/415
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Normal",
  42231. height: math.unit(1.9, "meters"),
  42232. default: true
  42233. },
  42234. ]
  42235. ))
  42236. characterMakers.push(() => makeCharacter(
  42237. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42238. {
  42239. regular: {
  42240. height: math.unit(6, "feet"),
  42241. weight: math.unit(220, "lb"),
  42242. name: "Regular",
  42243. image: {
  42244. source: "./media/characters/phillip/regular.svg",
  42245. extra: 1373/1277,
  42246. bottom: 75/1448
  42247. }
  42248. },
  42249. dressed: {
  42250. height: math.unit(6, "feet"),
  42251. weight: math.unit(220, "lb"),
  42252. name: "Dressed",
  42253. image: {
  42254. source: "./media/characters/phillip/dressed.svg",
  42255. extra: 1373/1277,
  42256. bottom: 75/1448
  42257. }
  42258. },
  42259. paw: {
  42260. height: math.unit(1.44, "feet"),
  42261. name: "Paw",
  42262. image: {
  42263. source: "./media/characters/phillip/paw.svg"
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(6, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42277. {
  42278. side: {
  42279. height: math.unit(42, "feet"),
  42280. name: "Side",
  42281. image: {
  42282. source: "./media/characters/uvula/side.svg",
  42283. extra: 683/586,
  42284. bottom: 60/743
  42285. }
  42286. },
  42287. front: {
  42288. height: math.unit(42, "feet"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/uvula/front.svg",
  42292. extra: 705/613,
  42293. bottom: 54/759
  42294. }
  42295. },
  42296. maw: {
  42297. height: math.unit(23.5, "feet"),
  42298. name: "Maw",
  42299. image: {
  42300. source: "./media/characters/uvula/maw.svg"
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Original Size",
  42307. height: math.unit(14, "inches")
  42308. },
  42309. {
  42310. name: "Human Size",
  42311. height: math.unit(6, "feet")
  42312. },
  42313. {
  42314. name: "Big",
  42315. height: math.unit(42, "feet"),
  42316. default: true
  42317. },
  42318. {
  42319. name: "Bigger",
  42320. height: math.unit(100, "feet")
  42321. },
  42322. ]
  42323. ))
  42324. characterMakers.push(() => makeCharacter(
  42325. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42326. {
  42327. front: {
  42328. height: math.unit(5 + 11/12, "feet"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/lannah/front.svg",
  42332. extra: 1208/1113,
  42333. bottom: 97/1305
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Normal",
  42340. height: math.unit(5 + 11/12, "feet"),
  42341. default: true
  42342. },
  42343. ]
  42344. ))
  42345. characterMakers.push(() => makeCharacter(
  42346. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42347. {
  42348. front: {
  42349. height: math.unit(6 + 3/12, "feet"),
  42350. weight: math.unit(3.5, "tons"),
  42351. name: "Front",
  42352. image: {
  42353. source: "./media/characters/emberflame/front.svg",
  42354. extra: 1198/672,
  42355. bottom: 82/1280
  42356. }
  42357. },
  42358. side: {
  42359. height: math.unit(6 + 3/12, "feet"),
  42360. weight: math.unit(3.5, "tons"),
  42361. name: "Side",
  42362. image: {
  42363. source: "./media/characters/emberflame/side.svg",
  42364. extra: 938/527,
  42365. bottom: 56/994
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(6 + 3/12, "feet"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42379. {
  42380. side: {
  42381. height: math.unit(17.5, "feet"),
  42382. weight: math.unit(35, "tons"),
  42383. name: "Side",
  42384. image: {
  42385. source: "./media/characters/sophie-ambrose/side.svg",
  42386. extra: 1573/1242,
  42387. bottom: 71/1644
  42388. }
  42389. },
  42390. maw: {
  42391. height: math.unit(7.4, "feet"),
  42392. name: "Maw",
  42393. image: {
  42394. source: "./media/characters/sophie-ambrose/maw.svg"
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Normal",
  42401. height: math.unit(17.5, "feet"),
  42402. default: true
  42403. },
  42404. ]
  42405. ))
  42406. characterMakers.push(() => makeCharacter(
  42407. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42408. {
  42409. front: {
  42410. height: math.unit(280, "feet"),
  42411. weight: math.unit(550, "tons"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/king-mugi/front.svg",
  42415. extra: 1102/947,
  42416. bottom: 104/1206
  42417. }
  42418. },
  42419. },
  42420. [
  42421. {
  42422. name: "King Mugi",
  42423. height: math.unit(280, "feet"),
  42424. default: true
  42425. },
  42426. ]
  42427. ))
  42428. characterMakers.push(() => makeCharacter(
  42429. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42430. {
  42431. front: {
  42432. height: math.unit(64, "meters"),
  42433. name: "Front",
  42434. image: {
  42435. source: "./media/characters/nova-fox/front.svg",
  42436. extra: 1310/1246,
  42437. bottom: 65/1375
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Macro",
  42444. height: math.unit(64, "meters"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6 + 3/12, "feet"),
  42454. weight: math.unit(170, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/sam-bat/front.svg",
  42458. extra: 1601/1411,
  42459. bottom: 125/1726
  42460. }
  42461. },
  42462. back: {
  42463. height: math.unit(6 + 3/12, "feet"),
  42464. weight: math.unit(170, "lb"),
  42465. name: "Back",
  42466. image: {
  42467. source: "./media/characters/sam-bat/back.svg",
  42468. extra: 1577/1405,
  42469. bottom: 58/1635
  42470. }
  42471. },
  42472. },
  42473. [
  42474. {
  42475. name: "Normal",
  42476. height: math.unit(6 + 3/12, "feet"),
  42477. default: true
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42483. {
  42484. front: {
  42485. height: math.unit(59, "feet"),
  42486. weight: math.unit(40000, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/inari/front.svg",
  42490. extra: 1884/1350,
  42491. bottom: 95/1979
  42492. }
  42493. },
  42494. },
  42495. [
  42496. {
  42497. name: "Gigantamax",
  42498. height: math.unit(59, "feet"),
  42499. default: true
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(5 + 8/12, "feet"),
  42508. name: "Front",
  42509. image: {
  42510. source: "./media/characters/elizabeth/front.svg",
  42511. extra: 1395/1298,
  42512. bottom: 54/1449
  42513. }
  42514. },
  42515. mouth: {
  42516. height: math.unit(1.97, "feet"),
  42517. name: "Mouth",
  42518. image: {
  42519. source: "./media/characters/elizabeth/mouth.svg"
  42520. }
  42521. },
  42522. foot: {
  42523. height: math.unit(1.17, "feet"),
  42524. name: "Foot",
  42525. image: {
  42526. source: "./media/characters/elizabeth/foot.svg"
  42527. }
  42528. },
  42529. },
  42530. [
  42531. {
  42532. name: "Normal",
  42533. height: math.unit(5 + 8/12, "feet"),
  42534. default: true
  42535. },
  42536. {
  42537. name: "Minimacro",
  42538. height: math.unit(18, "feet")
  42539. },
  42540. {
  42541. name: "Macro",
  42542. height: math.unit(180, "feet")
  42543. },
  42544. ]
  42545. ))
  42546. characterMakers.push(() => makeCharacter(
  42547. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42548. {
  42549. front: {
  42550. height: math.unit(5 + 2/12, "feet"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/october-gossamer/front.svg",
  42554. extra: 505/454,
  42555. bottom: 7/512
  42556. }
  42557. },
  42558. back: {
  42559. height: math.unit(5 + 2/12, "feet"),
  42560. name: "Back",
  42561. image: {
  42562. source: "./media/characters/october-gossamer/back.svg",
  42563. extra: 501/454,
  42564. bottom: 11/512
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(5 + 2/12, "feet"),
  42572. default: true
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(5, "feet"),
  42581. name: "Front",
  42582. image: {
  42583. source: "./media/characters/epiglottis/front.svg",
  42584. extra: 923/849,
  42585. bottom: 17/940
  42586. }
  42587. },
  42588. },
  42589. [
  42590. {
  42591. name: "Original Size",
  42592. height: math.unit(10, "inches")
  42593. },
  42594. {
  42595. name: "Human Size",
  42596. height: math.unit(5, "feet"),
  42597. default: true
  42598. },
  42599. {
  42600. name: "Big",
  42601. height: math.unit(25, "feet")
  42602. },
  42603. {
  42604. name: "Bigger",
  42605. height: math.unit(50, "feet")
  42606. },
  42607. {
  42608. name: "oh lawd",
  42609. height: math.unit(75, "feet")
  42610. },
  42611. ]
  42612. ))
  42613. characterMakers.push(() => makeCharacter(
  42614. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42615. {
  42616. front: {
  42617. height: math.unit(2 + 4/12, "feet"),
  42618. weight: math.unit(60, "lb"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/lerm/front.svg",
  42622. extra: 796/790,
  42623. bottom: 79/875
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Normal",
  42630. height: math.unit(2 + 4/12, "feet"),
  42631. default: true
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(5.5, "feet"),
  42640. weight: math.unit(130, "lb"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/xena-nebadon/front.svg",
  42644. extra: 1828/1730,
  42645. bottom: 79/1907
  42646. }
  42647. },
  42648. },
  42649. [
  42650. {
  42651. name: "Tiny Puppy",
  42652. height: math.unit(3, "inches")
  42653. },
  42654. {
  42655. name: "Normal",
  42656. height: math.unit(5.5, "feet"),
  42657. default: true
  42658. },
  42659. {
  42660. name: "Lotta Lady",
  42661. height: math.unit(12, "feet")
  42662. },
  42663. {
  42664. name: "Pretty Big",
  42665. height: math.unit(100, "feet")
  42666. },
  42667. {
  42668. name: "Big",
  42669. height: math.unit(500, "feet")
  42670. },
  42671. {
  42672. name: "Skyscraper Toys",
  42673. height: math.unit(2500, "feet")
  42674. },
  42675. {
  42676. name: "Plane Catcher",
  42677. height: math.unit(8, "miles")
  42678. },
  42679. {
  42680. name: "Planet Toys",
  42681. height: math.unit(15, "earths")
  42682. },
  42683. {
  42684. name: "Stardust",
  42685. height: math.unit(0.25, "galaxies")
  42686. },
  42687. {
  42688. name: "Snacks",
  42689. height: math.unit(70, "universes")
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(1.6, "meters"),
  42698. weight: math.unit(60, "kg"),
  42699. name: "Front",
  42700. image: {
  42701. source: "./media/characters/bounty/front.svg",
  42702. extra: 1426/1308,
  42703. bottom: 15/1441
  42704. }
  42705. },
  42706. back: {
  42707. height: math.unit(1.6, "meters"),
  42708. weight: math.unit(60, "kg"),
  42709. name: "Back",
  42710. image: {
  42711. source: "./media/characters/bounty/back.svg",
  42712. extra: 1417/1307,
  42713. bottom: 8/1425
  42714. }
  42715. },
  42716. },
  42717. [
  42718. {
  42719. name: "Normal",
  42720. height: math.unit(1.6, "meters"),
  42721. default: true
  42722. },
  42723. {
  42724. name: "Macro",
  42725. height: math.unit(300, "meters")
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42731. {
  42732. front: {
  42733. height: math.unit(2 + 8/12, "feet"),
  42734. weight: math.unit(15, "lb"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/mochi/front.svg",
  42738. extra: 1022/852,
  42739. bottom: 435/1457
  42740. }
  42741. },
  42742. back: {
  42743. height: math.unit(2 + 8/12, "feet"),
  42744. weight: math.unit(15, "lb"),
  42745. name: "Back",
  42746. image: {
  42747. source: "./media/characters/mochi/back.svg",
  42748. extra: 1335/1119,
  42749. bottom: 39/1374
  42750. }
  42751. },
  42752. bird: {
  42753. height: math.unit(2 + 8/12, "feet"),
  42754. weight: math.unit(15, "lb"),
  42755. name: "Bird",
  42756. image: {
  42757. source: "./media/characters/mochi/bird.svg",
  42758. extra: 1251/1113,
  42759. bottom: 178/1429
  42760. }
  42761. },
  42762. kaiju: {
  42763. height: math.unit(154, "feet"),
  42764. weight: math.unit(1e7, "lb"),
  42765. name: "Kaiju",
  42766. image: {
  42767. source: "./media/characters/mochi/kaiju.svg",
  42768. extra: 460/324,
  42769. bottom: 40/500
  42770. }
  42771. },
  42772. head: {
  42773. height: math.unit(1.21, "feet"),
  42774. name: "Head",
  42775. image: {
  42776. source: "./media/characters/mochi/head.svg"
  42777. }
  42778. },
  42779. alternateTail: {
  42780. height: math.unit(2 + 8/12, "feet"),
  42781. weight: math.unit(45, "lb"),
  42782. name: "Alternate Tail",
  42783. image: {
  42784. source: "./media/characters/mochi/alternate-tail.svg",
  42785. extra: 139/76,
  42786. bottom: 45/184
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Micro",
  42793. height: math.unit(2, "inches")
  42794. },
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(2 + 8/12, "feet"),
  42798. default: true
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(106, "feet")
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(5.67, "feet"),
  42811. weight: math.unit(135, "lb"),
  42812. name: "Front",
  42813. image: {
  42814. source: "./media/characters/sarel/front.svg",
  42815. extra: 865/788,
  42816. bottom: 97/962
  42817. }
  42818. },
  42819. back: {
  42820. height: math.unit(5.67, "feet"),
  42821. weight: math.unit(135, "lb"),
  42822. name: "Back",
  42823. image: {
  42824. source: "./media/characters/sarel/back.svg",
  42825. extra: 857/777,
  42826. bottom: 32/889
  42827. }
  42828. },
  42829. chozoan: {
  42830. height: math.unit(5.67, "feet"),
  42831. weight: math.unit(135, "lb"),
  42832. name: "Chozoan",
  42833. image: {
  42834. source: "./media/characters/sarel/chozoan.svg",
  42835. extra: 865/788,
  42836. bottom: 97/962
  42837. }
  42838. },
  42839. current: {
  42840. height: math.unit(5.67, "feet"),
  42841. weight: math.unit(135, "lb"),
  42842. name: "Current",
  42843. image: {
  42844. source: "./media/characters/sarel/current.svg",
  42845. extra: 865/788,
  42846. bottom: 97/962
  42847. }
  42848. },
  42849. head: {
  42850. height: math.unit(1.77, "feet"),
  42851. name: "Head",
  42852. image: {
  42853. source: "./media/characters/sarel/head.svg"
  42854. }
  42855. },
  42856. claws: {
  42857. height: math.unit(1.8, "feet"),
  42858. name: "Claws",
  42859. image: {
  42860. source: "./media/characters/sarel/claws.svg"
  42861. }
  42862. },
  42863. clawsAlt: {
  42864. height: math.unit(1.8, "feet"),
  42865. name: "Claws-alt",
  42866. image: {
  42867. source: "./media/characters/sarel/claws-alt.svg"
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(5.67, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42881. {
  42882. front: {
  42883. height: math.unit(5500, "feet"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/alyonia/front.svg",
  42887. extra: 1200/1135,
  42888. bottom: 29/1229
  42889. }
  42890. },
  42891. back: {
  42892. height: math.unit(5500, "feet"),
  42893. name: "Back",
  42894. image: {
  42895. source: "./media/characters/alyonia/back.svg",
  42896. extra: 1205/1138,
  42897. bottom: 10/1215
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Small",
  42904. height: math.unit(10, "feet")
  42905. },
  42906. {
  42907. name: "Macro",
  42908. height: math.unit(500, "feet")
  42909. },
  42910. {
  42911. name: "Mega Macro",
  42912. height: math.unit(5500, "feet"),
  42913. default: true
  42914. },
  42915. {
  42916. name: "Mega Macro+",
  42917. height: math.unit(500000, "feet")
  42918. },
  42919. {
  42920. name: "Giga Macro",
  42921. height: math.unit(3000, "miles")
  42922. },
  42923. {
  42924. name: "Tera Macro",
  42925. height: math.unit(2.8e6, "miles")
  42926. },
  42927. {
  42928. name: "Galactic",
  42929. height: math.unit(120000, "lightyears")
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42935. {
  42936. werewolf: {
  42937. height: math.unit(8, "feet"),
  42938. weight: math.unit(425, "lb"),
  42939. name: "Werewolf",
  42940. image: {
  42941. source: "./media/characters/autumn/werewolf.svg",
  42942. extra: 2154/2031,
  42943. bottom: 160/2314
  42944. }
  42945. },
  42946. human: {
  42947. height: math.unit(5 + 8/12, "feet"),
  42948. weight: math.unit(150, "lb"),
  42949. name: "Human",
  42950. image: {
  42951. source: "./media/characters/autumn/human.svg",
  42952. extra: 1200/1149,
  42953. bottom: 30/1230
  42954. }
  42955. },
  42956. },
  42957. [
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(8, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(8 + 5/12, "feet"),
  42970. weight: math.unit(825, "lb"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/cobalt-charizard/front.svg",
  42974. extra: 1268/1155,
  42975. bottom: 122/1390
  42976. }
  42977. },
  42978. side: {
  42979. height: math.unit(8 + 5/12, "feet"),
  42980. weight: math.unit(825, "lb"),
  42981. name: "Side",
  42982. image: {
  42983. source: "./media/characters/cobalt-charizard/side.svg",
  42984. extra: 1348/1257,
  42985. bottom: 58/1406
  42986. }
  42987. },
  42988. gMax: {
  42989. height: math.unit(134 + 11/12, "feet"),
  42990. name: "G-Max",
  42991. image: {
  42992. source: "./media/characters/cobalt-charizard/g-max.svg",
  42993. extra: 1835/1541,
  42994. bottom: 151/1986
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(8 + 5/12, "feet"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(6 + 3/12, "feet"),
  43011. weight: math.unit(210, "lb"),
  43012. name: "Front",
  43013. image: {
  43014. source: "./media/characters/stella/front.svg",
  43015. extra: 3549/3335,
  43016. bottom: 51/3600
  43017. }
  43018. },
  43019. },
  43020. [
  43021. {
  43022. name: "Normal",
  43023. height: math.unit(6 + 3/12, "feet"),
  43024. default: true
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(5, "feet"),
  43033. weight: math.unit(90, "lb"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/riley-bishop/front.svg",
  43037. extra: 1450/1428,
  43038. bottom: 152/1602
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(5, "feet"),
  43046. default: true
  43047. },
  43048. ]
  43049. ))
  43050. characterMakers.push(() => makeCharacter(
  43051. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43052. {
  43053. side: {
  43054. height: math.unit(8 + 2/12, "feet"),
  43055. weight: math.unit(500, "kg"),
  43056. name: "Side",
  43057. image: {
  43058. source: "./media/characters/theo-arcanine/side.svg",
  43059. extra: 1342/1074,
  43060. bottom: 111/1453
  43061. }
  43062. },
  43063. },
  43064. [
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(8 + 2/12, "feet"),
  43068. default: true
  43069. },
  43070. ]
  43071. ))
  43072. characterMakers.push(() => makeCharacter(
  43073. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43074. {
  43075. front: {
  43076. height: math.unit(4, "feet"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/kali/front.svg",
  43080. extra: 1921/1357,
  43081. bottom: 70/1991
  43082. }
  43083. },
  43084. },
  43085. [
  43086. {
  43087. name: "Normal",
  43088. height: math.unit(4, "feet"),
  43089. default: true
  43090. },
  43091. {
  43092. name: "Macro",
  43093. height: math.unit(32, "meters")
  43094. },
  43095. {
  43096. name: "Macro+",
  43097. height: math.unit(150, "meters")
  43098. },
  43099. {
  43100. name: "Megamacro",
  43101. height: math.unit(7500, "meters")
  43102. },
  43103. {
  43104. name: "Megamacro+",
  43105. height: math.unit(80, "kilometers")
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43111. {
  43112. side: {
  43113. height: math.unit(5 + 11/12, "feet"),
  43114. weight: math.unit(236, "lb"),
  43115. name: "Side",
  43116. image: {
  43117. source: "./media/characters/gapp/side.svg",
  43118. extra: 775/340,
  43119. bottom: 58/833
  43120. }
  43121. },
  43122. mouth: {
  43123. height: math.unit(2.98, "feet"),
  43124. name: "Mouth",
  43125. image: {
  43126. source: "./media/characters/gapp/mouth.svg"
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(5 + 1/12, "feet"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43140. {
  43141. front: {
  43142. height: math.unit(6, "feet"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/persephone/front.svg",
  43146. extra: 1895/1717,
  43147. bottom: 96/1991
  43148. }
  43149. },
  43150. back: {
  43151. height: math.unit(6, "feet"),
  43152. name: "Back",
  43153. image: {
  43154. source: "./media/characters/persephone/back.svg",
  43155. extra: 1868/1679,
  43156. bottom: 26/1894
  43157. }
  43158. },
  43159. casual: {
  43160. height: math.unit(6, "feet"),
  43161. name: "Casual",
  43162. image: {
  43163. source: "./media/characters/persephone/casual.svg",
  43164. extra: 1713/1541,
  43165. bottom: 76/1789
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Human Size",
  43172. height: math.unit(6, "feet")
  43173. },
  43174. {
  43175. name: "Big Steppy",
  43176. height: math.unit(600, "meters"),
  43177. default: true
  43178. },
  43179. {
  43180. name: "Galaxy Brain",
  43181. height: math.unit(1, "zettameter")
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(1.85, "meters"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/riley-foxthing/front.svg",
  43193. extra: 1495/1354,
  43194. bottom: 122/1617
  43195. }
  43196. },
  43197. frontAlt: {
  43198. height: math.unit(1.85, "meters"),
  43199. name: "Front (Alt)",
  43200. image: {
  43201. source: "./media/characters/riley-foxthing/front-alt.svg",
  43202. extra: 1572/1389,
  43203. bottom: 116/1688
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Normal Sized",
  43210. height: math.unit(1.85, "meters"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Quite Sizable",
  43215. height: math.unit(5, "meters")
  43216. },
  43217. {
  43218. name: "Rather Large",
  43219. height: math.unit(20, "meters")
  43220. },
  43221. {
  43222. name: "Macro",
  43223. height: math.unit(450, "meters")
  43224. },
  43225. {
  43226. name: "Giga",
  43227. height: math.unit(5, "km")
  43228. },
  43229. ]
  43230. ))
  43231. characterMakers.push(() => makeCharacter(
  43232. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43233. {
  43234. front: {
  43235. height: math.unit(6, "feet"),
  43236. weight: math.unit(200, "lb"),
  43237. name: "Front",
  43238. image: {
  43239. source: "./media/characters/blizzard/front.svg",
  43240. extra: 1136/990,
  43241. bottom: 136/1272
  43242. }
  43243. },
  43244. back: {
  43245. height: math.unit(6, "feet"),
  43246. weight: math.unit(200, "lb"),
  43247. name: "Back",
  43248. image: {
  43249. source: "./media/characters/blizzard/back.svg",
  43250. extra: 1175/1034,
  43251. bottom: 97/1272
  43252. }
  43253. },
  43254. sitting: {
  43255. height: math.unit(3.725, "feet"),
  43256. weight: math.unit(200, "lb"),
  43257. name: "Sitting",
  43258. image: {
  43259. source: "./media/characters/blizzard/sitting.svg",
  43260. extra: 581/485,
  43261. bottom: 90/671
  43262. }
  43263. },
  43264. frontWizard: {
  43265. height: math.unit(7.9, "feet"),
  43266. weight: math.unit(200, "lb"),
  43267. name: "Front (Wizard)",
  43268. image: {
  43269. source: "./media/characters/blizzard/front-wizard.svg"
  43270. }
  43271. },
  43272. backWizard: {
  43273. height: math.unit(7.9, "feet"),
  43274. weight: math.unit(200, "lb"),
  43275. name: "Back (Wizard)",
  43276. image: {
  43277. source: "./media/characters/blizzard/back-wizard.svg"
  43278. }
  43279. },
  43280. frontNsfw: {
  43281. height: math.unit(6, "feet"),
  43282. weight: math.unit(200, "lb"),
  43283. name: "Front (NSFW)",
  43284. image: {
  43285. source: "./media/characters/blizzard/front-nsfw.svg",
  43286. extra: 1136/990,
  43287. bottom: 136/1272
  43288. }
  43289. },
  43290. backNsfw: {
  43291. height: math.unit(6, "feet"),
  43292. weight: math.unit(200, "lb"),
  43293. name: "Back (NSFW)",
  43294. image: {
  43295. source: "./media/characters/blizzard/back-nsfw.svg",
  43296. extra: 1175/1034,
  43297. bottom: 97/1272
  43298. }
  43299. },
  43300. sittingNsfw: {
  43301. height: math.unit(3.725, "feet"),
  43302. weight: math.unit(200, "lb"),
  43303. name: "Sitting (NSFW)",
  43304. image: {
  43305. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43306. extra: 581/485,
  43307. bottom: 90/671
  43308. }
  43309. },
  43310. wizardFrontNsfw: {
  43311. height: math.unit(7.9, "feet"),
  43312. weight: math.unit(200, "lb"),
  43313. name: "Wizard (Front, NSFW)",
  43314. image: {
  43315. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(6, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(5 + 2/12, "feet"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/lumi/front.svg",
  43335. extra: 1328/1268,
  43336. bottom: 103/1431
  43337. }
  43338. },
  43339. back: {
  43340. height: math.unit(5 + 2/12, "feet"),
  43341. name: "Back",
  43342. image: {
  43343. source: "./media/characters/lumi/back.svg",
  43344. extra: 1381/1327,
  43345. bottom: 43/1424
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(5 + 2/12, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43359. {
  43360. front: {
  43361. height: math.unit(5 + 9/12, "feet"),
  43362. name: "Front",
  43363. image: {
  43364. source: "./media/characters/aliya-cotton/front.svg",
  43365. extra: 577/564,
  43366. bottom: 29/606
  43367. }
  43368. },
  43369. },
  43370. [
  43371. {
  43372. name: "Normal",
  43373. height: math.unit(5 + 9/12, "feet"),
  43374. default: true
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(2.7, "meters"),
  43383. weight: math.unit(25000, "lb"),
  43384. name: "Front",
  43385. image: {
  43386. source: "./media/characters/noah-luxray/front.svg",
  43387. extra: 1644/825,
  43388. bottom: 339/1983
  43389. }
  43390. },
  43391. side: {
  43392. height: math.unit(2.97, "meters"),
  43393. weight: math.unit(25000, "lb"),
  43394. name: "Side",
  43395. image: {
  43396. source: "./media/characters/noah-luxray/side.svg",
  43397. extra: 1319/650,
  43398. bottom: 163/1482
  43399. }
  43400. },
  43401. dick: {
  43402. height: math.unit(7.4, "feet"),
  43403. weight: math.unit(2500, "lb"),
  43404. name: "Dick",
  43405. image: {
  43406. source: "./media/characters/noah-luxray/dick.svg"
  43407. }
  43408. },
  43409. dickAlt: {
  43410. height: math.unit(10.83, "feet"),
  43411. weight: math.unit(2500, "lb"),
  43412. name: "Dick-alt",
  43413. image: {
  43414. source: "./media/characters/noah-luxray/dick-alt.svg"
  43415. }
  43416. },
  43417. },
  43418. [
  43419. {
  43420. name: "BIG",
  43421. height: math.unit(2.7, "meters"),
  43422. default: true
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43428. {
  43429. standing: {
  43430. height: math.unit(183, "cm"),
  43431. weight: math.unit(68, "kg"),
  43432. name: "Standing",
  43433. image: {
  43434. source: "./media/characters/arion/standing.svg",
  43435. extra: 1869/1807,
  43436. bottom: 93/1962
  43437. }
  43438. },
  43439. reclining: {
  43440. height: math.unit(70.5, "cm"),
  43441. weight: math.unit(68, "lb"),
  43442. name: "Reclining",
  43443. image: {
  43444. source: "./media/characters/arion/reclining.svg",
  43445. extra: 937/870,
  43446. bottom: 63/1000
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Colossus Size, Low",
  43453. height: math.unit(33, "meters"),
  43454. default: true
  43455. },
  43456. {
  43457. name: "Colossus Size, Mid",
  43458. height: math.unit(52, "meters")
  43459. },
  43460. {
  43461. name: "Colossus Size, High",
  43462. height: math.unit(60, "meters")
  43463. },
  43464. {
  43465. name: "Titan Size, Low",
  43466. height: math.unit(91, "meters"),
  43467. },
  43468. {
  43469. name: "Titan Size, Mid",
  43470. height: math.unit(122, "meters")
  43471. },
  43472. {
  43473. name: "Titan Size, High",
  43474. height: math.unit(162, "meters")
  43475. },
  43476. ]
  43477. ))
  43478. characterMakers.push(() => makeCharacter(
  43479. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43480. {
  43481. front: {
  43482. height: math.unit(53, "meters"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/stellar-marbey/front.svg",
  43486. extra: 1913/1805,
  43487. bottom: 92/2005
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(53, "meters"),
  43492. name: "Back",
  43493. image: {
  43494. source: "./media/characters/stellar-marbey/back.svg",
  43495. extra: 1960/1851,
  43496. bottom: 28/1988
  43497. }
  43498. },
  43499. mouth: {
  43500. height: math.unit(3.5, "meters"),
  43501. name: "Mouth",
  43502. image: {
  43503. source: "./media/characters/stellar-marbey/mouth.svg"
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Macro",
  43510. height: math.unit(53, "meters"),
  43511. default: true
  43512. },
  43513. ]
  43514. ))
  43515. characterMakers.push(() => makeCharacter(
  43516. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43517. {
  43518. front: {
  43519. height: math.unit(8 + 1/12, "feet"),
  43520. weight: math.unit(233, "lb"),
  43521. name: "Front",
  43522. image: {
  43523. source: "./media/characters/matsu/front.svg",
  43524. extra: 832/772,
  43525. bottom: 40/872
  43526. }
  43527. },
  43528. back: {
  43529. height: math.unit(8 + 1/12, "feet"),
  43530. weight: math.unit(233, "lb"),
  43531. name: "Back",
  43532. image: {
  43533. source: "./media/characters/matsu/back.svg",
  43534. extra: 839/780,
  43535. bottom: 47/886
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(8 + 1/12, "feet"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(4, "feet"),
  43552. weight: math.unit(148, "lb"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/thiz/front.svg",
  43556. extra: 1913/1748,
  43557. bottom: 62/1975
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(4, "feet"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(7 + 6/12, "feet"),
  43574. weight: math.unit(267, "lb"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/marcel/front.svg",
  43578. extra: 1221/1096,
  43579. bottom: 76/1297
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(7 + 6/12, "feet"),
  43587. default: true
  43588. },
  43589. ]
  43590. ))
  43591. characterMakers.push(() => makeCharacter(
  43592. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43593. {
  43594. side: {
  43595. height: math.unit(42, "meters"),
  43596. name: "Side",
  43597. image: {
  43598. source: "./media/characters/flake/side.svg",
  43599. extra: 1525/1306,
  43600. bottom: 209/1734
  43601. }
  43602. },
  43603. },
  43604. [
  43605. {
  43606. name: "Normal",
  43607. height: math.unit(42, "meters"),
  43608. default: true
  43609. },
  43610. ]
  43611. ))
  43612. characterMakers.push(() => makeCharacter(
  43613. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43614. {
  43615. dressed: {
  43616. height: math.unit(6 + 4/12, "feet"),
  43617. weight: math.unit(520, "lb"),
  43618. name: "Dressed",
  43619. image: {
  43620. source: "./media/characters/someonne/dressed.svg",
  43621. extra: 1020/1010,
  43622. bottom: 178/1198
  43623. }
  43624. },
  43625. undressed: {
  43626. height: math.unit(6 + 4/12, "feet"),
  43627. weight: math.unit(520, "lb"),
  43628. name: "Undressed",
  43629. image: {
  43630. source: "./media/characters/someonne/undressed.svg",
  43631. extra: 1019/1014,
  43632. bottom: 169/1188
  43633. }
  43634. },
  43635. },
  43636. [
  43637. {
  43638. name: "Normal",
  43639. height: math.unit(6 + 4/12, "feet"),
  43640. default: true
  43641. },
  43642. ]
  43643. ))
  43644. characterMakers.push(() => makeCharacter(
  43645. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43646. {
  43647. front: {
  43648. height: math.unit(3, "feet"),
  43649. weight: math.unit(30, "lb"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/till/front.svg",
  43653. extra: 892/823,
  43654. bottom: 55/947
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Normal",
  43661. height: math.unit(3, "feet"),
  43662. default: true
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43668. {
  43669. front: {
  43670. height: math.unit(9 + 8/12, "feet"),
  43671. weight: math.unit(800, "lb"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/sydney-heki/front.svg",
  43675. extra: 1360/1300,
  43676. bottom: 22/1382
  43677. }
  43678. },
  43679. back: {
  43680. height: math.unit(9 + 8/12, "feet"),
  43681. weight: math.unit(800, "lb"),
  43682. name: "Back",
  43683. image: {
  43684. source: "./media/characters/sydney-heki/back.svg",
  43685. extra: 1356/1293,
  43686. bottom: 12/1368
  43687. }
  43688. },
  43689. frontDressed: {
  43690. height: math.unit(9 + 8/12, "feet"),
  43691. weight: math.unit(800, "lb"),
  43692. name: "Front-dressed",
  43693. image: {
  43694. source: "./media/characters/sydney-heki/front-dressed.svg",
  43695. extra: 1360/1300,
  43696. bottom: 22/1382
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(9 + 8/12, "feet"),
  43704. default: true
  43705. },
  43706. {
  43707. name: "Macro",
  43708. height: math.unit(500, "feet")
  43709. },
  43710. {
  43711. name: "Megamacro",
  43712. height: math.unit(3.6, "miles")
  43713. },
  43714. ]
  43715. ))
  43716. characterMakers.push(() => makeCharacter(
  43717. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43718. {
  43719. front: {
  43720. height: math.unit(200, "cm"),
  43721. weight: math.unit(250, "lb"),
  43722. name: "Front",
  43723. image: {
  43724. source: "./media/characters/fowler-karlsson/front.svg",
  43725. extra: 897/845,
  43726. bottom: 123/1020
  43727. }
  43728. },
  43729. back: {
  43730. height: math.unit(200, "cm"),
  43731. weight: math.unit(250, "lb"),
  43732. name: "Back",
  43733. image: {
  43734. source: "./media/characters/fowler-karlsson/back.svg",
  43735. extra: 999/944,
  43736. bottom: 26/1025
  43737. }
  43738. },
  43739. dick: {
  43740. height: math.unit(1.92, "feet"),
  43741. weight: math.unit(150, "lb"),
  43742. name: "Dick",
  43743. image: {
  43744. source: "./media/characters/fowler-karlsson/dick.svg"
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Normal",
  43751. height: math.unit(200, "cm"),
  43752. default: true
  43753. },
  43754. {
  43755. name: "Smaller Macro",
  43756. height: math.unit(90, "m")
  43757. },
  43758. {
  43759. name: "Macro",
  43760. height: math.unit(150, "m")
  43761. },
  43762. {
  43763. name: "Bigger Macro",
  43764. height: math.unit(300, "m")
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43770. {
  43771. side: {
  43772. height: math.unit(8 + 2/12, "feet"),
  43773. weight: math.unit(1, "tonne"),
  43774. name: "Side",
  43775. image: {
  43776. source: "./media/characters/rylide/side.svg",
  43777. extra: 1318/1034,
  43778. bottom: 106/1424
  43779. }
  43780. },
  43781. sitting: {
  43782. height: math.unit(303, "cm"),
  43783. weight: math.unit(1, "tonne"),
  43784. name: "Sitting",
  43785. image: {
  43786. source: "./media/characters/rylide/sitting.svg",
  43787. extra: 1303/1103,
  43788. bottom: 36/1339
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Normal",
  43795. height: math.unit(8 + 2/12, "feet"),
  43796. default: true
  43797. },
  43798. ]
  43799. ))
  43800. characterMakers.push(() => makeCharacter(
  43801. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43802. {
  43803. front: {
  43804. height: math.unit(5 + 10/12, "feet"),
  43805. weight: math.unit(160, "lb"),
  43806. name: "Front",
  43807. image: {
  43808. source: "./media/characters/pudask/front.svg",
  43809. extra: 1616/1590,
  43810. bottom: 161/1777
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Ferret Height",
  43817. height: math.unit(2 + 5/12, "feet")
  43818. },
  43819. {
  43820. name: "Canon Height",
  43821. height: math.unit(5 + 10/12, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43828. {
  43829. front: {
  43830. height: math.unit(3 + 6/12, "feet"),
  43831. weight: math.unit(60, "lb"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/ramita/front.svg",
  43835. extra: 1402/1232,
  43836. bottom: 62/1464
  43837. }
  43838. },
  43839. dressed: {
  43840. height: math.unit(3 + 6/12, "feet"),
  43841. weight: math.unit(60, "lb"),
  43842. name: "Dressed",
  43843. image: {
  43844. source: "./media/characters/ramita/dressed.svg",
  43845. extra: 1534/1249,
  43846. bottom: 50/1584
  43847. }
  43848. },
  43849. },
  43850. [
  43851. {
  43852. name: "Normal",
  43853. height: math.unit(3 + 6/12, "feet"),
  43854. default: true
  43855. },
  43856. ]
  43857. ))
  43858. characterMakers.push(() => makeCharacter(
  43859. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43860. {
  43861. front: {
  43862. height: math.unit(8, "feet"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/ark/front.svg",
  43866. extra: 772/693,
  43867. bottom: 45/817
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Normal",
  43874. height: math.unit(8, "feet"),
  43875. default: true
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43881. {
  43882. front: {
  43883. height: math.unit(6, "feet"),
  43884. weight: math.unit(250, "lb"),
  43885. volume: math.unit(5/8, "gallons"),
  43886. name: "Front",
  43887. image: {
  43888. source: "./media/characters/ludwig-horn/front.svg",
  43889. extra: 1782/1635,
  43890. bottom: 96/1878
  43891. }
  43892. },
  43893. back: {
  43894. height: math.unit(6, "feet"),
  43895. weight: math.unit(250, "lb"),
  43896. volume: math.unit(5/8, "gallons"),
  43897. name: "Back",
  43898. image: {
  43899. source: "./media/characters/ludwig-horn/back.svg",
  43900. extra: 1874/1729,
  43901. bottom: 27/1901
  43902. }
  43903. },
  43904. dick: {
  43905. height: math.unit(1.05, "feet"),
  43906. weight: math.unit(15, "lb"),
  43907. volume: math.unit(5/8, "gallons"),
  43908. name: "Dick",
  43909. image: {
  43910. source: "./media/characters/ludwig-horn/dick.svg"
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Small",
  43917. height: math.unit(6, "feet")
  43918. },
  43919. {
  43920. name: "Typical",
  43921. height: math.unit(12, "feet"),
  43922. default: true
  43923. },
  43924. {
  43925. name: "Building",
  43926. height: math.unit(80, "feet")
  43927. },
  43928. {
  43929. name: "Town",
  43930. height: math.unit(800, "feet")
  43931. },
  43932. {
  43933. name: "Kingdom",
  43934. height: math.unit(80000, "feet")
  43935. },
  43936. {
  43937. name: "Planet",
  43938. height: math.unit(8000000, "feet")
  43939. },
  43940. {
  43941. name: "Universe",
  43942. height: math.unit(8000000000, "feet")
  43943. },
  43944. {
  43945. name: "Transcended",
  43946. height: math.unit(8e27, "feet")
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43952. {
  43953. front: {
  43954. height: math.unit(5, "feet"),
  43955. weight: math.unit(50, "kg"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/biot-avery/front.svg",
  43959. extra: 1295/1232,
  43960. bottom: 86/1381
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(5, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43974. {
  43975. front: {
  43976. height: math.unit(6, "feet"),
  43977. name: "Front",
  43978. image: {
  43979. source: "./media/characters/kitsune-kiro/front.svg",
  43980. extra: 1270/1158,
  43981. bottom: 42/1312
  43982. }
  43983. },
  43984. frontAlt: {
  43985. height: math.unit(6, "feet"),
  43986. name: "Front-alt",
  43987. image: {
  43988. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43989. extra: 1130/1081,
  43990. bottom: 36/1166
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "Smol",
  43997. height: math.unit(3, "feet")
  43998. },
  43999. {
  44000. name: "Normal",
  44001. height: math.unit(6, "feet"),
  44002. default: true
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44008. {
  44009. front: {
  44010. height: math.unit(6, "feet"),
  44011. weight: math.unit(125, "lb"),
  44012. name: "Front",
  44013. image: {
  44014. source: "./media/characters/jack-thatcher/front.svg",
  44015. extra: 1474/1370,
  44016. bottom: 26/1500
  44017. }
  44018. },
  44019. back: {
  44020. height: math.unit(6, "feet"),
  44021. weight: math.unit(125, "lb"),
  44022. name: "Back",
  44023. image: {
  44024. source: "./media/characters/jack-thatcher/back.svg",
  44025. extra: 1489/1384,
  44026. bottom: 18/1507
  44027. }
  44028. },
  44029. },
  44030. [
  44031. {
  44032. name: "Normal",
  44033. height: math.unit(6, "feet"),
  44034. default: true
  44035. },
  44036. {
  44037. name: "Macro",
  44038. height: math.unit(75, "feet")
  44039. },
  44040. {
  44041. name: "Macro-er",
  44042. height: math.unit(250, "feet")
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44048. {
  44049. front: {
  44050. height: math.unit(7, "feet"),
  44051. weight: math.unit(110, "kg"),
  44052. name: "Front",
  44053. image: {
  44054. source: "./media/characters/max-hyper/front.svg",
  44055. extra: 1969/1881,
  44056. bottom: 49/2018
  44057. }
  44058. },
  44059. },
  44060. [
  44061. {
  44062. name: "Normal",
  44063. height: math.unit(7, "feet"),
  44064. default: true
  44065. },
  44066. ]
  44067. ))
  44068. characterMakers.push(() => makeCharacter(
  44069. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44070. {
  44071. front: {
  44072. height: math.unit(5 + 5/12, "feet"),
  44073. weight: math.unit(160, "lb"),
  44074. name: "Front",
  44075. image: {
  44076. source: "./media/characters/spook/front.svg",
  44077. extra: 794/791,
  44078. bottom: 54/848
  44079. }
  44080. },
  44081. back: {
  44082. height: math.unit(5 + 5/12, "feet"),
  44083. weight: math.unit(160, "lb"),
  44084. name: "Back",
  44085. image: {
  44086. source: "./media/characters/spook/back.svg",
  44087. extra: 812/798,
  44088. bottom: 32/844
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Normal",
  44095. height: math.unit(5 + 5/12, "feet"),
  44096. default: true
  44097. },
  44098. ]
  44099. ))
  44100. characterMakers.push(() => makeCharacter(
  44101. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44102. {
  44103. front: {
  44104. height: math.unit(18, "feet"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/xeaduulix/front.svg",
  44108. extra: 1380/1166,
  44109. bottom: 110/1490
  44110. }
  44111. },
  44112. back: {
  44113. height: math.unit(18, "feet"),
  44114. name: "Back",
  44115. image: {
  44116. source: "./media/characters/xeaduulix/back.svg",
  44117. extra: 1592/1170,
  44118. bottom: 128/1720
  44119. }
  44120. },
  44121. frontNsfw: {
  44122. height: math.unit(18, "feet"),
  44123. name: "Front (NSFW)",
  44124. image: {
  44125. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44126. extra: 1380/1166,
  44127. bottom: 110/1490
  44128. }
  44129. },
  44130. backNsfw: {
  44131. height: math.unit(18, "feet"),
  44132. name: "Back (NSFW)",
  44133. image: {
  44134. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44135. extra: 1592/1170,
  44136. bottom: 128/1720
  44137. }
  44138. },
  44139. },
  44140. [
  44141. {
  44142. name: "Normal",
  44143. height: math.unit(18, "feet"),
  44144. default: true
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44150. {
  44151. spreadWings: {
  44152. height: math.unit(20, "feet"),
  44153. name: "Spread Wings",
  44154. image: {
  44155. source: "./media/characters/fledge/spread-wings.svg",
  44156. extra: 693/635,
  44157. bottom: 26/719
  44158. }
  44159. },
  44160. front: {
  44161. height: math.unit(20, "feet"),
  44162. name: "Front",
  44163. image: {
  44164. source: "./media/characters/fledge/front.svg",
  44165. extra: 684/637,
  44166. bottom: 18/702
  44167. }
  44168. },
  44169. frontAlt: {
  44170. height: math.unit(20, "feet"),
  44171. name: "Front (Alt)",
  44172. image: {
  44173. source: "./media/characters/fledge/front-alt.svg",
  44174. extra: 708/664,
  44175. bottom: 13/721
  44176. }
  44177. },
  44178. back: {
  44179. height: math.unit(20, "feet"),
  44180. name: "Back",
  44181. image: {
  44182. source: "./media/characters/fledge/back.svg",
  44183. extra: 718/634,
  44184. bottom: 22/740
  44185. }
  44186. },
  44187. head: {
  44188. height: math.unit(5.55, "feet"),
  44189. name: "Head",
  44190. image: {
  44191. source: "./media/characters/fledge/head.svg"
  44192. }
  44193. },
  44194. headAlt: {
  44195. height: math.unit(5.1, "feet"),
  44196. name: "Head (Alt)",
  44197. image: {
  44198. source: "./media/characters/fledge/head-alt.svg"
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Small",
  44205. height: math.unit(6 + 2/12, "feet")
  44206. },
  44207. {
  44208. name: "Big",
  44209. height: math.unit(20, "feet"),
  44210. default: true
  44211. },
  44212. {
  44213. name: "Giant",
  44214. height: math.unit(100, "feet")
  44215. },
  44216. {
  44217. name: "Macro",
  44218. height: math.unit(200, "feet")
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44224. {
  44225. front: {
  44226. height: math.unit(1, "meter"),
  44227. name: "Front",
  44228. image: {
  44229. source: "./media/characters/atlas-morenai/front.svg",
  44230. extra: 1275/1043,
  44231. bottom: 19/1294
  44232. }
  44233. },
  44234. back: {
  44235. height: math.unit(1, "meter"),
  44236. name: "Back",
  44237. image: {
  44238. source: "./media/characters/atlas-morenai/back.svg",
  44239. extra: 1141/1001,
  44240. bottom: 25/1166
  44241. }
  44242. },
  44243. },
  44244. [
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(1, "meter"),
  44248. default: true
  44249. },
  44250. {
  44251. name: "Magic-Infused",
  44252. height: math.unit(5, "meters")
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44258. {
  44259. front: {
  44260. height: math.unit(5, "meters"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/cintia/front.svg",
  44264. extra: 1312/1228,
  44265. bottom: 38/1350
  44266. }
  44267. },
  44268. back: {
  44269. height: math.unit(5, "meters"),
  44270. name: "Back",
  44271. image: {
  44272. source: "./media/characters/cintia/back.svg",
  44273. extra: 1260/1166,
  44274. bottom: 98/1358
  44275. }
  44276. },
  44277. frontDick: {
  44278. height: math.unit(5, "meters"),
  44279. name: "Front (Dick)",
  44280. image: {
  44281. source: "./media/characters/cintia/front-dick.svg",
  44282. extra: 1312/1228,
  44283. bottom: 38/1350
  44284. }
  44285. },
  44286. backDick: {
  44287. height: math.unit(5, "meters"),
  44288. name: "Back (Dick)",
  44289. image: {
  44290. source: "./media/characters/cintia/back-dick.svg",
  44291. extra: 1260/1166,
  44292. bottom: 98/1358
  44293. }
  44294. },
  44295. bust: {
  44296. height: math.unit(1.97, "meters"),
  44297. name: "Bust",
  44298. image: {
  44299. source: "./media/characters/cintia/bust.svg",
  44300. extra: 617/565,
  44301. bottom: 0/617
  44302. }
  44303. },
  44304. },
  44305. [
  44306. {
  44307. name: "Normal",
  44308. height: math.unit(5, "meters"),
  44309. default: true
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44315. {
  44316. side: {
  44317. height: math.unit(100, "feet"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/denora/side.svg",
  44321. extra: 875/803,
  44322. bottom: 9/884
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Standard",
  44329. height: math.unit(100, "feet"),
  44330. default: true
  44331. },
  44332. {
  44333. name: "Grand",
  44334. height: math.unit(1000, "feet")
  44335. },
  44336. {
  44337. name: "Conquering",
  44338. height: math.unit(10000, "feet")
  44339. },
  44340. ]
  44341. ))
  44342. characterMakers.push(() => makeCharacter(
  44343. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44344. {
  44345. dressed: {
  44346. height: math.unit(8 + 5/12, "feet"),
  44347. weight: math.unit(700, "lb"),
  44348. name: "Dressed",
  44349. image: {
  44350. source: "./media/characters/kiva/dressed.svg",
  44351. extra: 1102/1055,
  44352. bottom: 60/1162
  44353. }
  44354. },
  44355. nude: {
  44356. height: math.unit(8 + 5/12, "feet"),
  44357. weight: math.unit(700, "lb"),
  44358. name: "Nude",
  44359. image: {
  44360. source: "./media/characters/kiva/nude.svg",
  44361. extra: 1102/1055,
  44362. bottom: 60/1162
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Base Height",
  44369. height: math.unit(8 + 5/12, "feet"),
  44370. default: true
  44371. },
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(100, "feet")
  44375. },
  44376. {
  44377. name: "Max",
  44378. height: math.unit(3280, "feet")
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(6 + 8/12, "feet"),
  44387. weight: math.unit(250, "lb"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/ztragon/front.svg",
  44391. extra: 1825/1684,
  44392. bottom: 98/1923
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(6 + 8/12, "feet"),
  44400. default: true
  44401. },
  44402. {
  44403. name: "Macro",
  44404. height: math.unit(80, "feet")
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44410. {
  44411. front: {
  44412. height: math.unit(10.4, "feet"),
  44413. weight: math.unit(2, "tons"),
  44414. name: "Front",
  44415. image: {
  44416. source: "./media/characters/yesenia/front.svg",
  44417. extra: 1479/1474,
  44418. bottom: 233/1712
  44419. }
  44420. },
  44421. },
  44422. [
  44423. {
  44424. name: "Normal",
  44425. height: math.unit(10.4, "feet"),
  44426. default: true
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44432. {
  44433. normal: {
  44434. height: math.unit(6 + 1/12, "feet"),
  44435. weight: math.unit(180, "lb"),
  44436. name: "Normal",
  44437. image: {
  44438. source: "./media/characters/leanne-lycheborne/normal.svg",
  44439. extra: 1748/1660,
  44440. bottom: 98/1846
  44441. }
  44442. },
  44443. were: {
  44444. height: math.unit(12, "feet"),
  44445. weight: math.unit(1600, "lb"),
  44446. name: "Were",
  44447. image: {
  44448. source: "./media/characters/leanne-lycheborne/were.svg",
  44449. extra: 1485/1432,
  44450. bottom: 66/1551
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(6 + 1/12, "feet"),
  44458. default: true
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44464. {
  44465. side: {
  44466. height: math.unit(13, "feet"),
  44467. name: "Side",
  44468. image: {
  44469. source: "./media/characters/kira-tyler/side.svg",
  44470. extra: 693/393,
  44471. bottom: 58/751
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Normal",
  44478. height: math.unit(13, "feet"),
  44479. default: true
  44480. },
  44481. ]
  44482. ))
  44483. characterMakers.push(() => makeCharacter(
  44484. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44485. {
  44486. front: {
  44487. height: math.unit(10.3, "feet"),
  44488. weight: math.unit(150, "lb"),
  44489. name: "Front",
  44490. image: {
  44491. source: "./media/characters/blaze/front.svg",
  44492. extra: 1378/1286,
  44493. bottom: 172/1550
  44494. }
  44495. },
  44496. },
  44497. [
  44498. {
  44499. name: "Normal",
  44500. height: math.unit(10.3, "feet"),
  44501. default: true
  44502. },
  44503. ]
  44504. ))
  44505. characterMakers.push(() => makeCharacter(
  44506. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44507. {
  44508. side: {
  44509. height: math.unit(2, "meters"),
  44510. weight: math.unit(400, "kg"),
  44511. name: "Side",
  44512. image: {
  44513. source: "./media/characters/anu/side.svg",
  44514. extra: 506/394,
  44515. bottom: 18/524
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Humanoid",
  44522. height: math.unit(2, "meters")
  44523. },
  44524. {
  44525. name: "Normal",
  44526. height: math.unit(5, "meters"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(5 + 5/12, "feet"),
  44536. weight: math.unit(170, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/synx-the-lynx/front.svg",
  44540. extra: 1893/1745,
  44541. bottom: 17/1910
  44542. }
  44543. },
  44544. side: {
  44545. height: math.unit(5 + 5/12, "feet"),
  44546. weight: math.unit(170, "lb"),
  44547. name: "Side",
  44548. image: {
  44549. source: "./media/characters/synx-the-lynx/side.svg",
  44550. extra: 1884/1740,
  44551. bottom: 39/1923
  44552. }
  44553. },
  44554. back: {
  44555. height: math.unit(5 + 5/12, "feet"),
  44556. weight: math.unit(170, "lb"),
  44557. name: "Back",
  44558. image: {
  44559. source: "./media/characters/synx-the-lynx/back.svg",
  44560. extra: 1903/1755,
  44561. bottom: 14/1917
  44562. }
  44563. },
  44564. },
  44565. [
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(5 + 5/12, "feet"),
  44569. default: true
  44570. },
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44575. {
  44576. back: {
  44577. height: math.unit(15, "feet"),
  44578. name: "Back",
  44579. image: {
  44580. source: "./media/characters/nadezda-fex/back.svg",
  44581. extra: 1695/1481,
  44582. bottom: 25/1720
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Normal",
  44589. height: math.unit(15, "feet"),
  44590. default: true
  44591. },
  44592. {
  44593. name: "Macro",
  44594. height: math.unit(2.5, "miles")
  44595. },
  44596. {
  44597. name: "Goddess",
  44598. height: math.unit(2, "multiverses")
  44599. },
  44600. ]
  44601. ))
  44602. characterMakers.push(() => makeCharacter(
  44603. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44604. {
  44605. front: {
  44606. height: math.unit(216, "cm"),
  44607. name: "Front",
  44608. image: {
  44609. source: "./media/characters/lev/front.svg",
  44610. extra: 1728/1670,
  44611. bottom: 82/1810
  44612. }
  44613. },
  44614. back: {
  44615. height: math.unit(216, "cm"),
  44616. name: "Back",
  44617. image: {
  44618. source: "./media/characters/lev/back.svg",
  44619. extra: 1738/1675,
  44620. bottom: 24/1762
  44621. }
  44622. },
  44623. dressed: {
  44624. height: math.unit(216, "cm"),
  44625. name: "Dressed",
  44626. image: {
  44627. source: "./media/characters/lev/dressed.svg",
  44628. extra: 1397/1351,
  44629. bottom: 73/1470
  44630. }
  44631. },
  44632. head: {
  44633. height: math.unit(0.51, "meter"),
  44634. name: "Head",
  44635. image: {
  44636. source: "./media/characters/lev/head.svg"
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(216, "cm"),
  44644. default: true
  44645. },
  44646. {
  44647. name: "Relatively Macro",
  44648. height: math.unit(80, "meters")
  44649. },
  44650. {
  44651. name: "Megamacro",
  44652. height: math.unit(21600, "meters")
  44653. },
  44654. {
  44655. name: "Megamacro+",
  44656. height: math.unit(64800, "meters")
  44657. },
  44658. ]
  44659. ))
  44660. characterMakers.push(() => makeCharacter(
  44661. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44662. {
  44663. front: {
  44664. height: math.unit(2, "meters"),
  44665. weight: math.unit(80, "kg"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/moka/front.svg",
  44669. extra: 1337/1255,
  44670. bottom: 58/1395
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Micro",
  44677. height: math.unit(15, "cm")
  44678. },
  44679. {
  44680. name: "Normal",
  44681. height: math.unit(2, "meters"),
  44682. default: true
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(20, "meters"),
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(9, "feet"),
  44695. weight: math.unit(240, "lb"),
  44696. name: "Front",
  44697. image: {
  44698. source: "./media/characters/kuzco/front.svg",
  44699. extra: 1593/1487,
  44700. bottom: 32/1625
  44701. }
  44702. },
  44703. side: {
  44704. height: math.unit(9, "feet"),
  44705. weight: math.unit(240, "lb"),
  44706. name: "Side",
  44707. image: {
  44708. source: "./media/characters/kuzco/side.svg",
  44709. extra: 1575/1485,
  44710. bottom: 30/1605
  44711. }
  44712. },
  44713. back: {
  44714. height: math.unit(9, "feet"),
  44715. weight: math.unit(240, "lb"),
  44716. name: "Back",
  44717. image: {
  44718. source: "./media/characters/kuzco/back.svg",
  44719. extra: 1603/1514,
  44720. bottom: 14/1617
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(9, "feet"),
  44728. default: true
  44729. },
  44730. ]
  44731. ))
  44732. characterMakers.push(() => makeCharacter(
  44733. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44734. {
  44735. side: {
  44736. height: math.unit(2, "meters"),
  44737. weight: math.unit(300, "kg"),
  44738. name: "Side",
  44739. image: {
  44740. source: "./media/characters/ceruleus/side.svg",
  44741. extra: 1068/974,
  44742. bottom: 126/1194
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Normal",
  44749. height: math.unit(16, "meters"),
  44750. default: true
  44751. },
  44752. ]
  44753. ))
  44754. characterMakers.push(() => makeCharacter(
  44755. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44756. {
  44757. front: {
  44758. height: math.unit(9, "feet"),
  44759. weight: math.unit(500, "kg"),
  44760. name: "Front",
  44761. image: {
  44762. source: "./media/characters/acouya/front.svg",
  44763. extra: 1660/1473,
  44764. bottom: 28/1688
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Normal",
  44771. height: math.unit(9, "feet"),
  44772. default: true
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(5 + 6/12, "feet"),
  44781. weight: math.unit(195, "lb"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/vant/front.svg",
  44785. extra: 1396/1320,
  44786. bottom: 20/1416
  44787. }
  44788. },
  44789. back: {
  44790. height: math.unit(5 + 6/12, "feet"),
  44791. weight: math.unit(195, "lb"),
  44792. name: "Back",
  44793. image: {
  44794. source: "./media/characters/vant/back.svg",
  44795. extra: 1396/1320,
  44796. bottom: 20/1416
  44797. }
  44798. },
  44799. maw: {
  44800. height: math.unit(0.75, "feet"),
  44801. name: "Maw",
  44802. image: {
  44803. source: "./media/characters/vant/maw.svg"
  44804. }
  44805. },
  44806. paw: {
  44807. height: math.unit(1.07, "feet"),
  44808. name: "Paw",
  44809. image: {
  44810. source: "./media/characters/vant/paw.svg"
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Micro",
  44817. height: math.unit(0.25, "inches")
  44818. },
  44819. {
  44820. name: "Normal",
  44821. height: math.unit(5 + 6/12, "feet"),
  44822. default: true
  44823. },
  44824. {
  44825. name: "Macro",
  44826. height: math.unit(75, "feet")
  44827. },
  44828. ]
  44829. ))
  44830. characterMakers.push(() => makeCharacter(
  44831. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44832. {
  44833. front: {
  44834. height: math.unit(30, "meters"),
  44835. weight: math.unit(363, "tons"),
  44836. name: "Front",
  44837. image: {
  44838. source: "./media/characters/ahra/front.svg",
  44839. extra: 1914/1814,
  44840. bottom: 46/1960
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Macro",
  44847. height: math.unit(30, "meters"),
  44848. default: true
  44849. },
  44850. ]
  44851. ))
  44852. characterMakers.push(() => makeCharacter(
  44853. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44854. {
  44855. undressed: {
  44856. height: math.unit(2, "m"),
  44857. weight: math.unit(250, "kg"),
  44858. name: "Undressed",
  44859. image: {
  44860. source: "./media/characters/coriander/undressed.svg",
  44861. extra: 1757/1606,
  44862. bottom: 107/1864
  44863. }
  44864. },
  44865. dressed: {
  44866. height: math.unit(2, "m"),
  44867. weight: math.unit(250, "kg"),
  44868. name: "Dressed",
  44869. image: {
  44870. source: "./media/characters/coriander/dressed.svg",
  44871. extra: 1757/1606,
  44872. bottom: 107/1864
  44873. }
  44874. },
  44875. },
  44876. [
  44877. {
  44878. name: "Normal",
  44879. height: math.unit(4, "meters"),
  44880. default: true
  44881. },
  44882. {
  44883. name: "XL",
  44884. height: math.unit(6, "meters")
  44885. },
  44886. {
  44887. name: "XXL",
  44888. height: math.unit(8, "meters")
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44894. {
  44895. front: {
  44896. height: math.unit(6, "feet"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/syrinx/front.svg",
  44900. extra: 1557/1259,
  44901. bottom: 171/1728
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(6 + 3/12, "feet"),
  44909. default: true
  44910. },
  44911. ]
  44912. ))
  44913. characterMakers.push(() => makeCharacter(
  44914. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44915. {
  44916. front: {
  44917. height: math.unit(11 + 6/12, "feet"),
  44918. weight: math.unit(1.5, "tons"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/bor/front.svg",
  44922. extra: 1189/1109,
  44923. bottom: 170/1359
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(11 + 6/12, "feet"),
  44931. default: true
  44932. },
  44933. {
  44934. name: "Macro",
  44935. height: math.unit(32 + 9/12, "feet")
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44941. {
  44942. anthro: {
  44943. height: math.unit(9, "feet"),
  44944. weight: math.unit(2076, "lb"),
  44945. name: "Anthro",
  44946. image: {
  44947. source: "./media/characters/abacus/anthro.svg",
  44948. extra: 1540/1494,
  44949. bottom: 233/1773
  44950. }
  44951. },
  44952. pigeon: {
  44953. height: math.unit(1, "feet"),
  44954. name: "Pigeon",
  44955. image: {
  44956. source: "./media/characters/abacus/pigeon.svg",
  44957. extra: 528/525,
  44958. bottom: 46/574
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(9, "feet"),
  44966. default: true
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44972. {
  44973. side: {
  44974. height: math.unit(6, "feet"),
  44975. name: "Side",
  44976. image: {
  44977. source: "./media/characters/delkhan/side.svg",
  44978. extra: 1884/1786,
  44979. bottom: 308/2192
  44980. }
  44981. },
  44982. head: {
  44983. height: math.unit(3.38, "feet"),
  44984. name: "Head",
  44985. image: {
  44986. source: "./media/characters/delkhan/head.svg"
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(72, "feet"),
  44994. default: true
  44995. },
  44996. {
  44997. name: "Giant",
  44998. height: math.unit(172, "feet")
  44999. },
  45000. ]
  45001. ))
  45002. characterMakers.push(() => makeCharacter(
  45003. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45004. {
  45005. standing: {
  45006. height: math.unit(6, "feet"),
  45007. name: "Standing",
  45008. image: {
  45009. source: "./media/characters/euchidat/standing.svg",
  45010. extra: 1612/1553,
  45011. bottom: 116/1728
  45012. }
  45013. },
  45014. leaning: {
  45015. height: math.unit(6, "feet"),
  45016. name: "Leaning",
  45017. image: {
  45018. source: "./media/characters/euchidat/leaning.svg",
  45019. extra: 1719/1674,
  45020. bottom: 27/1746
  45021. }
  45022. },
  45023. },
  45024. [
  45025. {
  45026. name: "Normal",
  45027. height: math.unit(175, "feet"),
  45028. default: true
  45029. },
  45030. {
  45031. name: "Megamacro",
  45032. height: math.unit(190, "miles")
  45033. },
  45034. {
  45035. name: "Gigamacro",
  45036. height: math.unit(190000, "miles")
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45042. {
  45043. front: {
  45044. height: math.unit(6, "feet"),
  45045. weight: math.unit(150, "lb"),
  45046. name: "Front",
  45047. image: {
  45048. source: "./media/characters/rebecca-stack/front.svg",
  45049. extra: 1256/1201,
  45050. bottom: 18/1274
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(5 + 8/12, "feet"),
  45058. default: true
  45059. },
  45060. {
  45061. name: "Demolitionist",
  45062. height: math.unit(200, "feet")
  45063. },
  45064. {
  45065. name: "Out of Control",
  45066. height: math.unit(2, "miles")
  45067. },
  45068. {
  45069. name: "Giga",
  45070. height: math.unit(7200, "miles")
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45076. {
  45077. front: {
  45078. height: math.unit(6, "feet"),
  45079. weight: math.unit(150, "lb"),
  45080. name: "Front",
  45081. image: {
  45082. source: "./media/characters/jenny-cartwright/front.svg",
  45083. extra: 1384/1376,
  45084. bottom: 58/1442
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(6 + 7/12, "feet"),
  45092. default: true
  45093. },
  45094. {
  45095. name: "Librarian",
  45096. height: math.unit(55, "feet")
  45097. },
  45098. {
  45099. name: "Sightseer",
  45100. height: math.unit(50, "miles")
  45101. },
  45102. {
  45103. name: "Giga",
  45104. height: math.unit(30000, "miles")
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45110. {
  45111. nude: {
  45112. height: math.unit(8, "feet"),
  45113. weight: math.unit(225, "lb"),
  45114. name: "Nude",
  45115. image: {
  45116. source: "./media/characters/marvy/nude.svg",
  45117. extra: 1900/1683,
  45118. bottom: 89/1989
  45119. }
  45120. },
  45121. dressed: {
  45122. height: math.unit(8, "feet"),
  45123. weight: math.unit(225, "lb"),
  45124. name: "Dressed",
  45125. image: {
  45126. source: "./media/characters/marvy/dressed.svg",
  45127. extra: 1900/1683,
  45128. bottom: 89/1989
  45129. }
  45130. },
  45131. head: {
  45132. height: math.unit(2.85, "feet"),
  45133. name: "Head",
  45134. image: {
  45135. source: "./media/characters/marvy/head.svg"
  45136. }
  45137. },
  45138. },
  45139. [
  45140. {
  45141. name: "Normal",
  45142. height: math.unit(8, "feet"),
  45143. default: true
  45144. },
  45145. ]
  45146. ))
  45147. characterMakers.push(() => makeCharacter(
  45148. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45149. {
  45150. front: {
  45151. height: math.unit(8, "feet"),
  45152. weight: math.unit(250, "lb"),
  45153. name: "Front",
  45154. image: {
  45155. source: "./media/characters/leah/front.svg",
  45156. extra: 1257/1149,
  45157. bottom: 109/1366
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Normal",
  45164. height: math.unit(8, "feet"),
  45165. default: true
  45166. },
  45167. {
  45168. name: "Minimacro",
  45169. height: math.unit(40, "feet")
  45170. },
  45171. {
  45172. name: "Macro",
  45173. height: math.unit(124, "feet")
  45174. },
  45175. {
  45176. name: "Megamacro",
  45177. height: math.unit(850, "feet")
  45178. },
  45179. ]
  45180. ))
  45181. characterMakers.push(() => makeCharacter(
  45182. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45183. {
  45184. side: {
  45185. height: math.unit(13 + 6/12, "feet"),
  45186. weight: math.unit(3200, "lb"),
  45187. name: "Side",
  45188. image: {
  45189. source: "./media/characters/alvir/side.svg",
  45190. extra: 896/589,
  45191. bottom: 26/922
  45192. }
  45193. },
  45194. },
  45195. [
  45196. {
  45197. name: "Normal",
  45198. height: math.unit(13 + 6/12, "feet"),
  45199. default: true
  45200. },
  45201. ]
  45202. ))
  45203. characterMakers.push(() => makeCharacter(
  45204. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45205. {
  45206. front: {
  45207. height: math.unit(5 + 4/12, "feet"),
  45208. weight: math.unit(236, "lb"),
  45209. name: "Front",
  45210. image: {
  45211. source: "./media/characters/zaina-khalil/front.svg",
  45212. extra: 1533/1485,
  45213. bottom: 94/1627
  45214. }
  45215. },
  45216. side: {
  45217. height: math.unit(5 + 4/12, "feet"),
  45218. weight: math.unit(236, "lb"),
  45219. name: "Side",
  45220. image: {
  45221. source: "./media/characters/zaina-khalil/side.svg",
  45222. extra: 1537/1498,
  45223. bottom: 66/1603
  45224. }
  45225. },
  45226. back: {
  45227. height: math.unit(5 + 4/12, "feet"),
  45228. weight: math.unit(236, "lb"),
  45229. name: "Back",
  45230. image: {
  45231. source: "./media/characters/zaina-khalil/back.svg",
  45232. extra: 1546/1494,
  45233. bottom: 89/1635
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(5 + 4/12, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45247. {
  45248. side: {
  45249. height: math.unit(12, "feet"),
  45250. weight: math.unit(4000, "lb"),
  45251. name: "Side",
  45252. image: {
  45253. source: "./media/characters/terry/side.svg",
  45254. extra: 1518/1439,
  45255. bottom: 149/1667
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Normal",
  45262. height: math.unit(12, "feet"),
  45263. default: true
  45264. },
  45265. ]
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45269. {
  45270. front: {
  45271. height: math.unit(12, "feet"),
  45272. weight: math.unit(1500, "lb"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/kahea/front.svg",
  45276. extra: 1722/1617,
  45277. bottom: 179/1901
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Normal",
  45284. height: math.unit(12, "feet"),
  45285. default: true
  45286. },
  45287. ]
  45288. ))
  45289. characterMakers.push(() => makeCharacter(
  45290. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45291. {
  45292. demonFront: {
  45293. height: math.unit(36, "feet"),
  45294. name: "Front",
  45295. image: {
  45296. source: "./media/characters/alex-xuria/demon-front.svg",
  45297. extra: 1705/1673,
  45298. bottom: 198/1903
  45299. },
  45300. form: "demon",
  45301. default: true
  45302. },
  45303. demonBack: {
  45304. height: math.unit(36, "feet"),
  45305. name: "Back",
  45306. image: {
  45307. source: "./media/characters/alex-xuria/demon-back.svg",
  45308. extra: 1725/1693,
  45309. bottom: 70/1795
  45310. },
  45311. form: "demon"
  45312. },
  45313. demonHead: {
  45314. height: math.unit(2.14, "meters"),
  45315. name: "Head",
  45316. image: {
  45317. source: "./media/characters/alex-xuria/demon-head.svg"
  45318. },
  45319. form: "demon"
  45320. },
  45321. demonHand: {
  45322. height: math.unit(1.61, "meters"),
  45323. name: "Hand",
  45324. image: {
  45325. source: "./media/characters/alex-xuria/demon-hand.svg"
  45326. },
  45327. form: "demon"
  45328. },
  45329. demonPaw: {
  45330. height: math.unit(1.35, "meters"),
  45331. name: "Paw",
  45332. image: {
  45333. source: "./media/characters/alex-xuria/demon-paw.svg"
  45334. },
  45335. form: "demon"
  45336. },
  45337. demonFoot: {
  45338. height: math.unit(2.2, "meters"),
  45339. name: "Foot",
  45340. image: {
  45341. source: "./media/characters/alex-xuria/demon-foot.svg"
  45342. },
  45343. form: "demon"
  45344. },
  45345. demonCock: {
  45346. height: math.unit(1.74, "meters"),
  45347. name: "Cock",
  45348. image: {
  45349. source: "./media/characters/alex-xuria/demon-cock.svg"
  45350. },
  45351. form: "demon"
  45352. },
  45353. demonTailClosed: {
  45354. height: math.unit(1.47, "meters"),
  45355. name: "Tail (Closed)",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45358. },
  45359. form: "demon"
  45360. },
  45361. demonTailOpen: {
  45362. height: math.unit(2.85, "meters"),
  45363. name: "Tail (Open)",
  45364. image: {
  45365. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45366. },
  45367. form: "demon"
  45368. },
  45369. incubusFront: {
  45370. height: math.unit(12, "feet"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/alex-xuria/incubus-front.svg",
  45374. extra: 1754/1677,
  45375. bottom: 125/1879
  45376. },
  45377. form: "incubus",
  45378. default: true
  45379. },
  45380. incubusBack: {
  45381. height: math.unit(12, "feet"),
  45382. name: "Back",
  45383. image: {
  45384. source: "./media/characters/alex-xuria/incubus-back.svg",
  45385. extra: 1702/1647,
  45386. bottom: 30/1732
  45387. },
  45388. form: "incubus"
  45389. },
  45390. incubusHead: {
  45391. height: math.unit(3.45, "feet"),
  45392. name: "Head",
  45393. image: {
  45394. source: "./media/characters/alex-xuria/incubus-head.svg"
  45395. },
  45396. form: "incubus"
  45397. },
  45398. rabbitFront: {
  45399. height: math.unit(6, "feet"),
  45400. name: "Front",
  45401. image: {
  45402. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45403. extra: 1369/1349,
  45404. bottom: 45/1414
  45405. },
  45406. form: "rabbit",
  45407. default: true
  45408. },
  45409. rabbitSide: {
  45410. height: math.unit(6, "feet"),
  45411. name: "Side",
  45412. image: {
  45413. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45414. extra: 1370/1356,
  45415. bottom: 37/1407
  45416. },
  45417. form: "rabbit"
  45418. },
  45419. rabbitBack: {
  45420. height: math.unit(6, "feet"),
  45421. name: "Back",
  45422. image: {
  45423. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45424. extra: 1375/1358,
  45425. bottom: 43/1418
  45426. },
  45427. form: "rabbit"
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(6, "feet"),
  45434. default: true,
  45435. form: "rabbit"
  45436. },
  45437. {
  45438. name: "Incubus",
  45439. height: math.unit(12, "feet"),
  45440. default: true,
  45441. form: "incubus"
  45442. },
  45443. {
  45444. name: "Demon",
  45445. height: math.unit(36, "feet"),
  45446. default: true,
  45447. form: "demon"
  45448. }
  45449. ],
  45450. {
  45451. "demon": {
  45452. name: "Demon",
  45453. default: true
  45454. },
  45455. "incubus": {
  45456. name: "Incubus",
  45457. },
  45458. "rabbit": {
  45459. name: "Rabbit"
  45460. }
  45461. }
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45465. {
  45466. front: {
  45467. height: math.unit(7 + 5/12, "feet"),
  45468. weight: math.unit(510, "lb"),
  45469. name: "Front",
  45470. image: {
  45471. source: "./media/characters/syrup/front.svg",
  45472. extra: 932/916,
  45473. bottom: 26/958
  45474. }
  45475. },
  45476. },
  45477. [
  45478. {
  45479. name: "Normal",
  45480. height: math.unit(7 + 5/12, "feet"),
  45481. default: true
  45482. },
  45483. {
  45484. name: "Big",
  45485. height: math.unit(50, "feet")
  45486. },
  45487. {
  45488. name: "Macro",
  45489. height: math.unit(300, "feet")
  45490. },
  45491. {
  45492. name: "Megamacro",
  45493. height: math.unit(1, "mile")
  45494. },
  45495. ]
  45496. ))
  45497. characterMakers.push(() => makeCharacter(
  45498. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45499. {
  45500. front: {
  45501. height: math.unit(6 + 9/12, "feet"),
  45502. name: "Front",
  45503. image: {
  45504. source: "./media/characters/zeimne/front.svg",
  45505. extra: 1969/1806,
  45506. bottom: 53/2022
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(6 + 9/12, "feet"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Giant",
  45518. height: math.unit(550, "feet")
  45519. },
  45520. {
  45521. name: "Mega",
  45522. height: math.unit(3, "miles")
  45523. },
  45524. {
  45525. name: "Giga",
  45526. height: math.unit(250, "miles")
  45527. },
  45528. {
  45529. name: "Tera",
  45530. height: math.unit(1, "AU")
  45531. },
  45532. ]
  45533. ))
  45534. characterMakers.push(() => makeCharacter(
  45535. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45536. {
  45537. front: {
  45538. height: math.unit(5 + 2/12, "feet"),
  45539. name: "Front",
  45540. image: {
  45541. source: "./media/characters/grar/front.svg",
  45542. extra: 1331/1119,
  45543. bottom: 60/1391
  45544. }
  45545. },
  45546. back: {
  45547. height: math.unit(5 + 2/12, "feet"),
  45548. name: "Back",
  45549. image: {
  45550. source: "./media/characters/grar/back.svg",
  45551. extra: 1385/1169,
  45552. bottom: 23/1408
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal",
  45559. height: math.unit(5 + 2/12, "feet"),
  45560. default: true
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45566. {
  45567. front: {
  45568. height: math.unit(13 + 7/12, "feet"),
  45569. weight: math.unit(2200, "lb"),
  45570. name: "Front",
  45571. image: {
  45572. source: "./media/characters/endraya/front.svg",
  45573. extra: 1289/1215,
  45574. bottom: 50/1339
  45575. }
  45576. },
  45577. nude: {
  45578. height: math.unit(13 + 7/12, "feet"),
  45579. weight: math.unit(2200, "lb"),
  45580. name: "Nude",
  45581. image: {
  45582. source: "./media/characters/endraya/nude.svg",
  45583. extra: 1247/1171,
  45584. bottom: 40/1287
  45585. }
  45586. },
  45587. head: {
  45588. height: math.unit(2.6, "feet"),
  45589. name: "Head",
  45590. image: {
  45591. source: "./media/characters/endraya/head.svg"
  45592. }
  45593. },
  45594. slit: {
  45595. height: math.unit(3.4, "feet"),
  45596. name: "Slit",
  45597. image: {
  45598. source: "./media/characters/endraya/slit.svg"
  45599. }
  45600. },
  45601. },
  45602. [
  45603. {
  45604. name: "Normal",
  45605. height: math.unit(13 + 7/12, "feet"),
  45606. default: true
  45607. },
  45608. {
  45609. name: "Macro",
  45610. height: math.unit(200, "feet")
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45616. {
  45617. front: {
  45618. height: math.unit(412, "meters"),
  45619. name: "Front",
  45620. image: {
  45621. source: "./media/characters/rodryana/front.svg",
  45622. extra: 2002/1921,
  45623. bottom: 53/2055
  45624. }
  45625. },
  45626. back: {
  45627. height: math.unit(412, "meters"),
  45628. name: "Back",
  45629. image: {
  45630. source: "./media/characters/rodryana/back.svg",
  45631. extra: 1993/1926,
  45632. bottom: 48/2041
  45633. }
  45634. },
  45635. maw: {
  45636. height: math.unit(45, "meters"),
  45637. name: "Maw",
  45638. image: {
  45639. source: "./media/characters/rodryana/maw.svg"
  45640. }
  45641. },
  45642. slit: {
  45643. height: math.unit(72, "meters"),
  45644. name: "Slit",
  45645. image: {
  45646. source: "./media/characters/rodryana/slit.svg"
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Macro",
  45653. height: math.unit(412, "meters"),
  45654. default: true
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(6, "feet"),
  45663. weight: math.unit(1000, "lb"),
  45664. name: "Front",
  45665. image: {
  45666. source: "./media/characters/asaya/front.svg",
  45667. extra: 1460/1200,
  45668. bottom: 71/1531
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(8, "km"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45682. {
  45683. front: {
  45684. height: math.unit(3.5, "meters"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/sarzu-and-israz/front.svg",
  45688. extra: 1570/1558,
  45689. bottom: 150/1720
  45690. },
  45691. },
  45692. back: {
  45693. height: math.unit(3.5, "meters"),
  45694. name: "Back",
  45695. image: {
  45696. source: "./media/characters/sarzu-and-israz/back.svg",
  45697. extra: 1523/1509,
  45698. bottom: 132/1655
  45699. },
  45700. },
  45701. frontFemale: {
  45702. height: math.unit(3.5, "meters"),
  45703. name: "Front (Female)",
  45704. image: {
  45705. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45706. extra: 1570/1558,
  45707. bottom: 150/1720
  45708. },
  45709. },
  45710. frontHerm: {
  45711. height: math.unit(3.5, "meters"),
  45712. name: "Front (Herm)",
  45713. image: {
  45714. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45715. extra: 1570/1558,
  45716. bottom: 150/1720
  45717. },
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Normal",
  45723. height: math.unit(3.5, "meters"),
  45724. default: true,
  45725. },
  45726. {
  45727. name: "Macro",
  45728. height: math.unit(65.5, "meters"),
  45729. },
  45730. ],
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45734. {
  45735. front: {
  45736. height: math.unit(6, "feet"),
  45737. weight: math.unit(250, "lb"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/zenimma/front.svg",
  45741. extra: 1346/1320,
  45742. bottom: 58/1404
  45743. }
  45744. },
  45745. back: {
  45746. height: math.unit(6, "feet"),
  45747. weight: math.unit(250, "lb"),
  45748. name: "Back",
  45749. image: {
  45750. source: "./media/characters/zenimma/back.svg",
  45751. extra: 1324/1308,
  45752. bottom: 44/1368
  45753. }
  45754. },
  45755. dick: {
  45756. height: math.unit(1.44, "feet"),
  45757. name: "Dick",
  45758. image: {
  45759. source: "./media/characters/zenimma/dick.svg"
  45760. }
  45761. },
  45762. },
  45763. [
  45764. {
  45765. name: "Canon Height",
  45766. height: math.unit(66, "miles"),
  45767. default: true
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45773. {
  45774. nude: {
  45775. height: math.unit(6, "feet"),
  45776. weight: math.unit(150, "lb"),
  45777. name: "Nude",
  45778. image: {
  45779. source: "./media/characters/shavon/nude.svg",
  45780. extra: 1242/1096,
  45781. bottom: 98/1340
  45782. }
  45783. },
  45784. dressed: {
  45785. height: math.unit(6, "feet"),
  45786. weight: math.unit(150, "lb"),
  45787. name: "Dressed",
  45788. image: {
  45789. source: "./media/characters/shavon/dressed.svg",
  45790. extra: 1242/1096,
  45791. bottom: 98/1340
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Macro",
  45798. height: math.unit(255, "feet"),
  45799. default: true
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45805. {
  45806. front: {
  45807. height: math.unit(6, "feet"),
  45808. name: "Front",
  45809. image: {
  45810. source: "./media/characters/steph/front.svg",
  45811. extra: 1430/1330,
  45812. bottom: 54/1484
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Normal",
  45819. height: math.unit(6, "feet"),
  45820. default: true
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45826. {
  45827. front: {
  45828. height: math.unit(9, "feet"),
  45829. weight: math.unit(400, "lb"),
  45830. name: "Front",
  45831. image: {
  45832. source: "./media/characters/kil'aman/front.svg",
  45833. extra: 1210/1159,
  45834. bottom: 109/1319
  45835. }
  45836. },
  45837. head: {
  45838. height: math.unit(2.14, "feet"),
  45839. name: "Head",
  45840. image: {
  45841. source: "./media/characters/kil'aman/head.svg"
  45842. }
  45843. },
  45844. maw: {
  45845. height: math.unit(1.21, "feet"),
  45846. name: "Maw",
  45847. image: {
  45848. source: "./media/characters/kil'aman/maw.svg"
  45849. }
  45850. },
  45851. foot: {
  45852. height: math.unit(1.7, "feet"),
  45853. name: "Foot",
  45854. image: {
  45855. source: "./media/characters/kil'aman/foot.svg"
  45856. }
  45857. },
  45858. dick: {
  45859. height: math.unit(2.1, "feet"),
  45860. name: "Dick",
  45861. image: {
  45862. source: "./media/characters/kil'aman/dick.svg"
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(9, "feet")
  45870. },
  45871. {
  45872. name: "Canon Height",
  45873. height: math.unit(10, "miles"),
  45874. default: true
  45875. },
  45876. {
  45877. name: "Maximum",
  45878. height: math.unit(6e9, "miles")
  45879. },
  45880. ]
  45881. ))
  45882. characterMakers.push(() => makeCharacter(
  45883. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45884. {
  45885. front: {
  45886. height: math.unit(90, "feet"),
  45887. weight: math.unit(675000, "lb"),
  45888. name: "Front",
  45889. image: {
  45890. source: "./media/characters/qadan/front.svg",
  45891. extra: 1012/1004,
  45892. bottom: 78/1090
  45893. }
  45894. },
  45895. back: {
  45896. height: math.unit(90, "feet"),
  45897. weight: math.unit(675000, "lb"),
  45898. name: "Back",
  45899. image: {
  45900. source: "./media/characters/qadan/back.svg",
  45901. extra: 1042/1031,
  45902. bottom: 55/1097
  45903. }
  45904. },
  45905. armored: {
  45906. height: math.unit(90, "feet"),
  45907. weight: math.unit(675000, "lb"),
  45908. name: "Armored",
  45909. image: {
  45910. source: "./media/characters/qadan/armored.svg",
  45911. extra: 1047/1037,
  45912. bottom: 48/1095
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Normal",
  45919. height: math.unit(90, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(6, "feet"),
  45929. weight: math.unit(225, "lb"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/brooke/front.svg",
  45933. extra: 1050/1010,
  45934. bottom: 66/1116
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(6, "feet"),
  45939. weight: math.unit(225, "lb"),
  45940. name: "Back",
  45941. image: {
  45942. source: "./media/characters/brooke/back.svg",
  45943. extra: 1053/1013,
  45944. bottom: 41/1094
  45945. }
  45946. },
  45947. dressed: {
  45948. height: math.unit(6, "feet"),
  45949. weight: math.unit(225, "lb"),
  45950. name: "Dressed",
  45951. image: {
  45952. source: "./media/characters/brooke/dressed.svg",
  45953. extra: 1050/1010,
  45954. bottom: 66/1116
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Canon Height",
  45961. height: math.unit(500, "miles"),
  45962. default: true
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(6 + 2/12, "feet"),
  45971. weight: math.unit(210, "lb"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/wubs/front.svg",
  45975. extra: 1345/1325,
  45976. bottom: 70/1415
  45977. }
  45978. },
  45979. back: {
  45980. height: math.unit(6 + 2/12, "feet"),
  45981. weight: math.unit(210, "lb"),
  45982. name: "Back",
  45983. image: {
  45984. source: "./media/characters/wubs/back.svg",
  45985. extra: 1296/1275,
  45986. bottom: 58/1354
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(6 + 2/12, "feet"),
  45994. default: true
  45995. },
  45996. {
  45997. name: "Macro",
  45998. height: math.unit(1000, "feet")
  45999. },
  46000. {
  46001. name: "Megamacro",
  46002. height: math.unit(1, "mile")
  46003. },
  46004. ]
  46005. ))
  46006. characterMakers.push(() => makeCharacter(
  46007. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46008. {
  46009. front: {
  46010. height: math.unit(4, "feet"),
  46011. weight: math.unit(120, "lb"),
  46012. name: "Front",
  46013. image: {
  46014. source: "./media/characters/blue/front.svg",
  46015. extra: 1636/1525,
  46016. bottom: 43/1679
  46017. }
  46018. },
  46019. back: {
  46020. height: math.unit(4, "feet"),
  46021. weight: math.unit(120, "lb"),
  46022. name: "Back",
  46023. image: {
  46024. source: "./media/characters/blue/back.svg",
  46025. extra: 1660/1560,
  46026. bottom: 57/1717
  46027. }
  46028. },
  46029. paws: {
  46030. height: math.unit(0.826, "feet"),
  46031. name: "Paws",
  46032. image: {
  46033. source: "./media/characters/blue/paws.svg"
  46034. }
  46035. },
  46036. },
  46037. [
  46038. {
  46039. name: "Micro",
  46040. height: math.unit(3, "inches")
  46041. },
  46042. {
  46043. name: "Normal",
  46044. height: math.unit(4, "feet"),
  46045. default: true
  46046. },
  46047. {
  46048. name: "Femenine Form",
  46049. height: math.unit(14, "feet")
  46050. },
  46051. {
  46052. name: "Werebat Form",
  46053. height: math.unit(18, "feet")
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46059. {
  46060. female: {
  46061. height: math.unit(7 + 4/12, "feet"),
  46062. weight: math.unit(243, "lb"),
  46063. name: "Female",
  46064. image: {
  46065. source: "./media/characters/kaya/female.svg",
  46066. extra: 975/898,
  46067. bottom: 34/1009
  46068. }
  46069. },
  46070. herm: {
  46071. height: math.unit(7 + 4/12, "feet"),
  46072. weight: math.unit(243, "lb"),
  46073. name: "Herm",
  46074. image: {
  46075. source: "./media/characters/kaya/herm.svg",
  46076. extra: 975/898,
  46077. bottom: 34/1009
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(7 + 4/12, "feet"),
  46085. default: true
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46091. {
  46092. female: {
  46093. height: math.unit(9 + 4/12, "feet"),
  46094. weight: math.unit(398, "lb"),
  46095. name: "Female",
  46096. image: {
  46097. source: "./media/characters/kassandra/female.svg",
  46098. extra: 908/839,
  46099. bottom: 61/969
  46100. }
  46101. },
  46102. intersex: {
  46103. height: math.unit(9 + 4/12, "feet"),
  46104. weight: math.unit(398, "lb"),
  46105. name: "Intersex",
  46106. image: {
  46107. source: "./media/characters/kassandra/intersex.svg",
  46108. extra: 908/839,
  46109. bottom: 61/969
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(9 + 4/12, "feet"),
  46117. default: true
  46118. },
  46119. ]
  46120. ))
  46121. characterMakers.push(() => makeCharacter(
  46122. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46123. {
  46124. front: {
  46125. height: math.unit(3, "meters"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/amy/front.svg",
  46129. extra: 1380/1343,
  46130. bottom: 70/1450
  46131. }
  46132. },
  46133. back: {
  46134. height: math.unit(3, "meters"),
  46135. name: "Back",
  46136. image: {
  46137. source: "./media/characters/amy/back.svg",
  46138. extra: 1380/1347,
  46139. bottom: 66/1446
  46140. }
  46141. },
  46142. },
  46143. [
  46144. {
  46145. name: "Normal",
  46146. height: math.unit(3, "meters"),
  46147. default: true
  46148. },
  46149. ]
  46150. ))
  46151. characterMakers.push(() => makeCharacter(
  46152. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46153. {
  46154. side: {
  46155. height: math.unit(47, "cm"),
  46156. weight: math.unit(10.8, "kg"),
  46157. name: "Side",
  46158. image: {
  46159. source: "./media/characters/alphaschakal/side.svg",
  46160. extra: 1058/568,
  46161. bottom: 62/1120
  46162. }
  46163. },
  46164. back: {
  46165. height: math.unit(78, "cm"),
  46166. weight: math.unit(10.8, "kg"),
  46167. name: "Back",
  46168. image: {
  46169. source: "./media/characters/alphaschakal/back.svg",
  46170. extra: 1102/942,
  46171. bottom: 185/1287
  46172. }
  46173. },
  46174. head: {
  46175. height: math.unit(28, "cm"),
  46176. name: "Head",
  46177. image: {
  46178. source: "./media/characters/alphaschakal/head.svg",
  46179. extra: 696/508,
  46180. bottom: 0/696
  46181. }
  46182. },
  46183. paw: {
  46184. height: math.unit(16, "cm"),
  46185. name: "Paw",
  46186. image: {
  46187. source: "./media/characters/alphaschakal/paw.svg"
  46188. }
  46189. },
  46190. },
  46191. [
  46192. {
  46193. name: "Normal",
  46194. height: math.unit(47, "cm"),
  46195. default: true
  46196. },
  46197. {
  46198. name: "Macro",
  46199. height: math.unit(340, "cm")
  46200. },
  46201. ]
  46202. ))
  46203. characterMakers.push(() => makeCharacter(
  46204. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46205. {
  46206. front: {
  46207. height: math.unit(36, "earths"),
  46208. name: "Front",
  46209. image: {
  46210. source: "./media/characters/ecobyss/front.svg",
  46211. extra: 1282/1215,
  46212. bottom: 11/1293
  46213. }
  46214. },
  46215. back: {
  46216. height: math.unit(36, "earths"),
  46217. name: "Back",
  46218. image: {
  46219. source: "./media/characters/ecobyss/back.svg",
  46220. extra: 1291/1222,
  46221. bottom: 8/1299
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(36, "earths"),
  46229. default: true
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46235. {
  46236. front: {
  46237. height: math.unit(12, "feet"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/vasuk/front.svg",
  46241. extra: 1326/1207,
  46242. bottom: 64/1390
  46243. }
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(12, "feet"),
  46250. default: true
  46251. },
  46252. ]
  46253. ))
  46254. characterMakers.push(() => makeCharacter(
  46255. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46256. {
  46257. side: {
  46258. height: math.unit(100, "feet"),
  46259. name: "Side",
  46260. image: {
  46261. source: "./media/characters/linneaus/side.svg",
  46262. extra: 987/807,
  46263. bottom: 47/1034
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Macro",
  46270. height: math.unit(100, "feet"),
  46271. default: true
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(8, "feet"),
  46280. weight: math.unit(1200, "lb"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/nyterious-daligdig/front.svg",
  46284. extra: 1284/1094,
  46285. bottom: 84/1368
  46286. }
  46287. },
  46288. back: {
  46289. height: math.unit(8, "feet"),
  46290. weight: math.unit(1200, "lb"),
  46291. name: "Back",
  46292. image: {
  46293. source: "./media/characters/nyterious-daligdig/back.svg",
  46294. extra: 1301/1121,
  46295. bottom: 129/1430
  46296. }
  46297. },
  46298. mouth: {
  46299. height: math.unit(1.464, "feet"),
  46300. name: "Mouth",
  46301. image: {
  46302. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Small",
  46309. height: math.unit(8, "feet"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Normal",
  46314. height: math.unit(15, "feet")
  46315. },
  46316. {
  46317. name: "Macro",
  46318. height: math.unit(90, "feet")
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46324. {
  46325. front: {
  46326. height: math.unit(7 + 4/12, "feet"),
  46327. weight: math.unit(252, "lb"),
  46328. name: "Front",
  46329. image: {
  46330. source: "./media/characters/bandel/front.svg",
  46331. extra: 1946/1775,
  46332. bottom: 26/1972
  46333. }
  46334. },
  46335. back: {
  46336. height: math.unit(7 + 4/12, "feet"),
  46337. weight: math.unit(252, "lb"),
  46338. name: "Back",
  46339. image: {
  46340. source: "./media/characters/bandel/back.svg",
  46341. extra: 1940/1770,
  46342. bottom: 25/1965
  46343. }
  46344. },
  46345. maw: {
  46346. height: math.unit(2.15, "feet"),
  46347. name: "Maw",
  46348. image: {
  46349. source: "./media/characters/bandel/maw.svg"
  46350. }
  46351. },
  46352. stomach: {
  46353. height: math.unit(1.95, "feet"),
  46354. name: "Stomach",
  46355. image: {
  46356. source: "./media/characters/bandel/stomach.svg"
  46357. }
  46358. },
  46359. },
  46360. [
  46361. {
  46362. name: "Normal",
  46363. height: math.unit(7 + 4/12, "feet"),
  46364. default: true
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46370. {
  46371. front: {
  46372. height: math.unit(10 + 5/12, "feet"),
  46373. weight: math.unit(773.5, "kg"),
  46374. name: "Front",
  46375. image: {
  46376. source: "./media/characters/zed/front.svg",
  46377. extra: 987/941,
  46378. bottom: 52/1039
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Short",
  46385. height: math.unit(5 + 4/12, "feet")
  46386. },
  46387. {
  46388. name: "Average",
  46389. height: math.unit(10 + 5/12, "feet"),
  46390. default: true
  46391. },
  46392. {
  46393. name: "Mini-Macro",
  46394. height: math.unit(24 + 9/12, "feet")
  46395. },
  46396. {
  46397. name: "Macro",
  46398. height: math.unit(249, "feet")
  46399. },
  46400. {
  46401. name: "Mega-Macro",
  46402. height: math.unit(12490, "feet")
  46403. },
  46404. {
  46405. name: "Giga-Macro",
  46406. height: math.unit(24.9, "miles")
  46407. },
  46408. {
  46409. name: "Tera-Macro",
  46410. height: math.unit(24900, "miles")
  46411. },
  46412. {
  46413. name: "Cosmic Scale",
  46414. height: math.unit(38.9, "lightyears")
  46415. },
  46416. {
  46417. name: "Universal Scale",
  46418. height: math.unit(138e12, "lightyears")
  46419. },
  46420. ]
  46421. ))
  46422. characterMakers.push(() => makeCharacter(
  46423. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46424. {
  46425. front: {
  46426. height: math.unit(1561, "inches"),
  46427. name: "Front",
  46428. image: {
  46429. source: "./media/characters/ivan/front.svg",
  46430. extra: 1126/1071,
  46431. bottom: 26/1152
  46432. }
  46433. },
  46434. back: {
  46435. height: math.unit(1561, "inches"),
  46436. name: "Back",
  46437. image: {
  46438. source: "./media/characters/ivan/back.svg",
  46439. extra: 1134/1079,
  46440. bottom: 30/1164
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(1561, "inches"),
  46448. default: true
  46449. },
  46450. ]
  46451. ))
  46452. characterMakers.push(() => makeCharacter(
  46453. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46454. {
  46455. front: {
  46456. height: math.unit(5 + 7/12, "feet"),
  46457. weight: math.unit(150, "lb"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/robin-arctic-hare/front.svg",
  46461. extra: 1148/974,
  46462. bottom: 20/1168
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(5 + 7/12, "feet"),
  46470. default: true
  46471. },
  46472. ]
  46473. ))
  46474. characterMakers.push(() => makeCharacter(
  46475. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46476. {
  46477. side: {
  46478. height: math.unit(5, "feet"),
  46479. name: "Side",
  46480. image: {
  46481. source: "./media/characters/birch/side.svg",
  46482. extra: 985/796,
  46483. bottom: 111/1096
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(5, "feet"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46497. {
  46498. front: {
  46499. height: math.unit(4, "feet"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/rasp/front.svg",
  46503. extra: 561/478,
  46504. bottom: 74/635
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(4, "feet"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46518. {
  46519. front: {
  46520. height: math.unit(4 + 6/12, "feet"),
  46521. name: "Front",
  46522. image: {
  46523. source: "./media/characters/agatha/front.svg",
  46524. extra: 947/933,
  46525. bottom: 42/989
  46526. }
  46527. },
  46528. back: {
  46529. height: math.unit(4 + 6/12, "feet"),
  46530. name: "Back",
  46531. image: {
  46532. source: "./media/characters/agatha/back.svg",
  46533. extra: 935/922,
  46534. bottom: 48/983
  46535. }
  46536. },
  46537. },
  46538. [
  46539. {
  46540. name: "Normal",
  46541. height: math.unit(4 + 6 /12, "feet"),
  46542. default: true
  46543. },
  46544. {
  46545. name: "Max Size",
  46546. height: math.unit(500, "feet")
  46547. },
  46548. ]
  46549. ))
  46550. characterMakers.push(() => makeCharacter(
  46551. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46552. {
  46553. side: {
  46554. height: math.unit(30, "feet"),
  46555. name: "Side",
  46556. image: {
  46557. source: "./media/characters/roggy/side.svg",
  46558. extra: 909/643,
  46559. bottom: 63/972
  46560. }
  46561. },
  46562. lounging: {
  46563. height: math.unit(20, "feet"),
  46564. name: "Lounging",
  46565. image: {
  46566. source: "./media/characters/roggy/lounging.svg",
  46567. extra: 643/479,
  46568. bottom: 145/788
  46569. }
  46570. },
  46571. handpaw: {
  46572. height: math.unit(13.1, "feet"),
  46573. name: "Handpaw",
  46574. image: {
  46575. source: "./media/characters/roggy/handpaw.svg"
  46576. }
  46577. },
  46578. footpaw: {
  46579. height: math.unit(15.8, "feet"),
  46580. name: "Footpaw",
  46581. image: {
  46582. source: "./media/characters/roggy/footpaw.svg"
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Menacing",
  46589. height: math.unit(30, "feet"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(5 + 7/12, "feet"),
  46599. weight: math.unit(135, "lb"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/naomi/front.svg",
  46603. extra: 1209/1154,
  46604. bottom: 129/1338
  46605. }
  46606. },
  46607. back: {
  46608. height: math.unit(5 + 7/12, "feet"),
  46609. weight: math.unit(135, "lb"),
  46610. name: "Back",
  46611. image: {
  46612. source: "./media/characters/naomi/back.svg",
  46613. extra: 1252/1190,
  46614. bottom: 23/1275
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Normal",
  46621. height: math.unit(5 + 7 /12, "feet"),
  46622. default: true
  46623. },
  46624. ]
  46625. ))
  46626. characterMakers.push(() => makeCharacter(
  46627. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46628. {
  46629. side: {
  46630. height: math.unit(35, "meters"),
  46631. name: "Side",
  46632. image: {
  46633. source: "./media/characters/kimpi/side.svg",
  46634. extra: 419/382,
  46635. bottom: 63/482
  46636. }
  46637. },
  46638. hand: {
  46639. height: math.unit(8.96, "meters"),
  46640. name: "Hand",
  46641. image: {
  46642. source: "./media/characters/kimpi/hand.svg"
  46643. }
  46644. },
  46645. },
  46646. [
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(35, "meters"),
  46650. default: true
  46651. },
  46652. ]
  46653. ))
  46654. //characters
  46655. function makeCharacters() {
  46656. const results = [];
  46657. characterMakers.forEach(character => {
  46658. results.push(character());
  46659. });
  46660. return results;
  46661. }