less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48763 lines
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. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. }
  1900. //species
  1901. function getSpeciesInfo(speciesList) {
  1902. let result = new Set();
  1903. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1904. result.add(entry)
  1905. });
  1906. return Array.from(result);
  1907. };
  1908. function getSpeciesInfoHelper(species) {
  1909. if (!speciesData[species]) {
  1910. console.warn(species + " doesn't exist");
  1911. return [];
  1912. }
  1913. if (speciesData[species].parents) {
  1914. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1915. } else {
  1916. return [species];
  1917. }
  1918. }
  1919. characterMakers.push(() => makeCharacter(
  1920. {
  1921. name: "Fen",
  1922. species: ["crux"],
  1923. description: {
  1924. title: "Bio",
  1925. text: "Very furry. Sheds on everything."
  1926. },
  1927. tags: [
  1928. "anthro",
  1929. "goo"
  1930. ]
  1931. },
  1932. {
  1933. front: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(2400, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/fen/front.svg",
  1939. extra: 1804/1562,
  1940. bottom: 205/2009
  1941. }
  1942. },
  1943. diving: {
  1944. height: math.unit(4.9, "meters"),
  1945. weight: math.unit(2400, "lb"),
  1946. name: "Diving",
  1947. image: {
  1948. source: "./media/characters/fen/diving.svg"
  1949. }
  1950. },
  1951. goo: {
  1952. height: math.unit(12, "feet"),
  1953. weight: math.unit(3600, "lb"),
  1954. volume: math.unit(1000, "liters"),
  1955. capacity: math.unit(6, "people"),
  1956. name: "Goo",
  1957. image: {
  1958. source: "./media/characters/fen/goo.svg",
  1959. extra: 1307/1071,
  1960. bottom: 134/1441
  1961. }
  1962. },
  1963. maw: {
  1964. height: math.unit(5.03, "feet"),
  1965. name: "Maw",
  1966. image: {
  1967. source: "./media/characters/fen/maw.svg"
  1968. }
  1969. },
  1970. gooCeiling: {
  1971. height: math.unit(6.6, "feet"),
  1972. weight: math.unit(3000, "lb"),
  1973. volume: math.unit(1000, "liters"),
  1974. capacity: math.unit(6, "people"),
  1975. name: "Goo (Ceiling)",
  1976. image: {
  1977. source: "./media/characters/fen/goo-ceiling.svg"
  1978. }
  1979. },
  1980. back: {
  1981. height: math.unit(12, "feet"),
  1982. weight: math.unit(2400, "lb"),
  1983. name: "Back",
  1984. image: {
  1985. source: "./media/characters/fen/back.svg",
  1986. },
  1987. info: {
  1988. description: {
  1989. mode: "append",
  1990. text: "\n\nHe is not currently looking at you."
  1991. }
  1992. }
  1993. },
  1994. full: {
  1995. height: math.unit(1.6, "meter"),
  1996. weight: math.unit(3200, "lb"),
  1997. name: "Full",
  1998. image: {
  1999. source: "./media/characters/fen/full.svg",
  2000. extra: 1133/859,
  2001. bottom: 145/1278
  2002. },
  2003. info: {
  2004. description: {
  2005. mode: "append",
  2006. text: "\n\nMunch."
  2007. }
  2008. }
  2009. },
  2010. gooLounging: {
  2011. height: math.unit(4.53, "feet"),
  2012. weight: math.unit(3000, "lb"),
  2013. capacity: math.unit(6, "people"),
  2014. name: "Goo (Lounging)",
  2015. image: {
  2016. source: "./media/characters/fen/goo-lounging.svg",
  2017. bottom: 116 / 613
  2018. }
  2019. },
  2020. lounging: {
  2021. height: math.unit(10.52, "feet"),
  2022. weight: math.unit(2400, "lb"),
  2023. name: "Lounging",
  2024. image: {
  2025. source: "./media/characters/fen/lounging.svg"
  2026. }
  2027. },
  2028. },
  2029. [
  2030. {
  2031. name: "Small",
  2032. height: math.unit(2.2428, "meter")
  2033. },
  2034. {
  2035. name: "Normal",
  2036. height: math.unit(12, "feet"),
  2037. default: true,
  2038. },
  2039. {
  2040. name: "Big",
  2041. height: math.unit(20, "feet")
  2042. },
  2043. {
  2044. name: "Minimacro",
  2045. height: math.unit(40, "feet"),
  2046. info: {
  2047. description: {
  2048. mode: "append",
  2049. text: "\n\nTOO DAMN BIG"
  2050. }
  2051. }
  2052. },
  2053. {
  2054. name: "Macro",
  2055. height: math.unit(100, "feet"),
  2056. info: {
  2057. description: {
  2058. mode: "append",
  2059. text: "\n\nTOO DAMN BIG"
  2060. }
  2061. }
  2062. },
  2063. {
  2064. name: "Megamacro",
  2065. height: math.unit(2, "miles")
  2066. },
  2067. {
  2068. name: "Gigamacro",
  2069. height: math.unit(10, "earths")
  2070. },
  2071. ]
  2072. ))
  2073. characterMakers.push(() => makeCharacter(
  2074. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2075. {
  2076. front: {
  2077. height: math.unit(183, "cm"),
  2078. weight: math.unit(80, "kg"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/sofia-fluttertail/front.svg",
  2082. bottom: 0.01,
  2083. extra: 2154 / 2081
  2084. }
  2085. },
  2086. frontAlt: {
  2087. height: math.unit(183, "cm"),
  2088. weight: math.unit(80, "kg"),
  2089. name: "Front (alt)",
  2090. image: {
  2091. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2092. }
  2093. },
  2094. back: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Back",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/back.svg"
  2100. }
  2101. },
  2102. kneeling: {
  2103. height: math.unit(125, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Kneeling",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2108. extra: 1033 / 977,
  2109. bottom: 23.7 / 1057
  2110. }
  2111. },
  2112. maw: {
  2113. height: math.unit(183 / 5, "cm"),
  2114. name: "Maw",
  2115. image: {
  2116. source: "./media/characters/sofia-fluttertail/maw.svg"
  2117. }
  2118. },
  2119. mawcloseup: {
  2120. height: math.unit(183 / 5 * 0.41, "cm"),
  2121. name: "Maw (Closeup)",
  2122. image: {
  2123. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2124. }
  2125. },
  2126. paws: {
  2127. height: math.unit(1.17, "feet"),
  2128. name: "Paws",
  2129. image: {
  2130. source: "./media/characters/sofia-fluttertail/paws.svg",
  2131. extra: 851 / 851,
  2132. bottom: 17 / 868
  2133. }
  2134. },
  2135. },
  2136. [
  2137. {
  2138. name: "Normal",
  2139. height: math.unit(1.83, "meter")
  2140. },
  2141. {
  2142. name: "Size Thief",
  2143. height: math.unit(18, "feet")
  2144. },
  2145. {
  2146. name: "50 Foot Collie",
  2147. height: math.unit(50, "feet")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(96, "feet"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Megamerger",
  2156. height: math.unit(650, "feet")
  2157. },
  2158. ]
  2159. ))
  2160. characterMakers.push(() => makeCharacter(
  2161. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2162. {
  2163. front: {
  2164. height: math.unit(7, "feet"),
  2165. weight: math.unit(100, "kg"),
  2166. name: "Front",
  2167. image: {
  2168. source: "./media/characters/march/front.svg",
  2169. extra: 1992/1851,
  2170. bottom: 39/2031
  2171. }
  2172. },
  2173. foot: {
  2174. height: math.unit(0.9, "feet"),
  2175. name: "Foot",
  2176. image: {
  2177. source: "./media/characters/march/foot.svg"
  2178. }
  2179. },
  2180. },
  2181. [
  2182. {
  2183. name: "Normal",
  2184. height: math.unit(7.9, "feet")
  2185. },
  2186. {
  2187. name: "Macro",
  2188. height: math.unit(220, "meters")
  2189. },
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(2.98, "km"),
  2193. default: true
  2194. },
  2195. {
  2196. name: "Gigamacro",
  2197. height: math.unit(15963, "km")
  2198. },
  2199. {
  2200. name: "Teramacro",
  2201. height: math.unit(2980000000, "km")
  2202. },
  2203. {
  2204. name: "Examacro",
  2205. height: math.unit(250, "parsecs")
  2206. },
  2207. ]
  2208. ))
  2209. characterMakers.push(() => makeCharacter(
  2210. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2211. {
  2212. front: {
  2213. height: math.unit(6, "feet"),
  2214. weight: math.unit(60, "kg"),
  2215. name: "Front",
  2216. image: {
  2217. source: "./media/characters/noir/front.svg",
  2218. extra: 1,
  2219. bottom: 0.032
  2220. }
  2221. },
  2222. },
  2223. [
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(6.6, "feet")
  2227. },
  2228. {
  2229. name: "Macro",
  2230. height: math.unit(500, "feet")
  2231. },
  2232. {
  2233. name: "Megamacro",
  2234. height: math.unit(2.5, "km"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Gigamacro",
  2239. height: math.unit(22500, "km")
  2240. },
  2241. {
  2242. name: "Teramacro",
  2243. height: math.unit(2500000000, "km")
  2244. },
  2245. {
  2246. name: "Examacro",
  2247. height: math.unit(200, "parsecs")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/okuri/front.svg",
  2260. extra: 1,
  2261. bottom: 0.037
  2262. }
  2263. },
  2264. back: {
  2265. height: math.unit(7, "feet"),
  2266. weight: math.unit(100, "kg"),
  2267. name: "Back",
  2268. image: {
  2269. source: "./media/characters/okuri/back.svg",
  2270. extra: 1,
  2271. bottom: 0.007
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Megamacro",
  2278. height: math.unit(100, "miles"),
  2279. default: true
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(7, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/manny/front.svg",
  2292. extra: 1,
  2293. bottom: 0.06
  2294. }
  2295. },
  2296. back: {
  2297. height: math.unit(7, "feet"),
  2298. weight: math.unit(100, "kg"),
  2299. name: "Back",
  2300. image: {
  2301. source: "./media/characters/manny/back.svg",
  2302. extra: 1,
  2303. bottom: 0.014
  2304. }
  2305. },
  2306. },
  2307. [
  2308. {
  2309. name: "Normal",
  2310. height: math.unit(7, "feet"),
  2311. },
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(78, "feet"),
  2315. default: true
  2316. },
  2317. {
  2318. name: "Macro+",
  2319. height: math.unit(300, "meters")
  2320. },
  2321. {
  2322. name: "Macro++",
  2323. height: math.unit(2400, "meters")
  2324. },
  2325. {
  2326. name: "Megamacro",
  2327. height: math.unit(5167, "meters")
  2328. },
  2329. {
  2330. name: "Gigamacro",
  2331. height: math.unit(41769, "miles")
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(7, "feet"),
  2340. weight: math.unit(100, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/adake/front-1.svg"
  2344. }
  2345. },
  2346. frontAlt: {
  2347. height: math.unit(7, "feet"),
  2348. weight: math.unit(100, "kg"),
  2349. name: "Front (Alt)",
  2350. image: {
  2351. source: "./media/characters/adake/front-2.svg",
  2352. extra: 1,
  2353. bottom: 0.01
  2354. }
  2355. },
  2356. back: {
  2357. height: math.unit(7, "feet"),
  2358. weight: math.unit(100, "kg"),
  2359. name: "Back",
  2360. image: {
  2361. source: "./media/characters/adake/back.svg",
  2362. }
  2363. },
  2364. kneel: {
  2365. height: math.unit(5.385, "feet"),
  2366. weight: math.unit(100, "kg"),
  2367. name: "Kneeling",
  2368. image: {
  2369. source: "./media/characters/adake/kneel.svg",
  2370. bottom: 0.052
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(7, "feet"),
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(78, "feet"),
  2382. default: true
  2383. },
  2384. {
  2385. name: "Macro+",
  2386. height: math.unit(300, "meters")
  2387. },
  2388. {
  2389. name: "Macro++",
  2390. height: math.unit(2400, "meters")
  2391. },
  2392. {
  2393. name: "Megamacro",
  2394. height: math.unit(5167, "meters")
  2395. },
  2396. {
  2397. name: "Gigamacro",
  2398. height: math.unit(41769, "miles")
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2404. {
  2405. front: {
  2406. height: math.unit(1.65, "meters"),
  2407. weight: math.unit(50, "kg"),
  2408. name: "Front",
  2409. image: {
  2410. source: "./media/characters/elijah/front.svg",
  2411. extra: 858 / 830,
  2412. bottom: 95.5 / 953.8559
  2413. }
  2414. },
  2415. back: {
  2416. height: math.unit(1.65, "meters"),
  2417. weight: math.unit(50, "kg"),
  2418. name: "Back",
  2419. image: {
  2420. source: "./media/characters/elijah/back.svg",
  2421. extra: 895 / 850,
  2422. bottom: 5.3 / 897.956
  2423. }
  2424. },
  2425. frontNsfw: {
  2426. height: math.unit(1.65, "meters"),
  2427. weight: math.unit(50, "kg"),
  2428. name: "Front (NSFW)",
  2429. image: {
  2430. source: "./media/characters/elijah/front-nsfw.svg",
  2431. extra: 858 / 830,
  2432. bottom: 95.5 / 953.8559
  2433. }
  2434. },
  2435. backNsfw: {
  2436. height: math.unit(1.65, "meters"),
  2437. weight: math.unit(50, "kg"),
  2438. name: "Back (NSFW)",
  2439. image: {
  2440. source: "./media/characters/elijah/back-nsfw.svg",
  2441. extra: 895 / 850,
  2442. bottom: 5.3 / 897.956
  2443. }
  2444. },
  2445. dick: {
  2446. height: math.unit(1, "feet"),
  2447. name: "Dick",
  2448. image: {
  2449. source: "./media/characters/elijah/dick.svg"
  2450. }
  2451. },
  2452. beakOpen: {
  2453. height: math.unit(1.25, "feet"),
  2454. name: "Beak (Open)",
  2455. image: {
  2456. source: "./media/characters/elijah/beak-open.svg"
  2457. }
  2458. },
  2459. beakShut: {
  2460. height: math.unit(1.25, "feet"),
  2461. name: "Beak (Shut)",
  2462. image: {
  2463. source: "./media/characters/elijah/beak-shut.svg"
  2464. }
  2465. },
  2466. footFlexing: {
  2467. height: math.unit(1.61, "feet"),
  2468. name: "Foot (Flexing)",
  2469. image: {
  2470. source: "./media/characters/elijah/foot-flexing.svg"
  2471. }
  2472. },
  2473. footStepping: {
  2474. height: math.unit(1.44, "feet"),
  2475. name: "Foot (Stepping)",
  2476. image: {
  2477. source: "./media/characters/elijah/foot-stepping.svg"
  2478. }
  2479. },
  2480. plantigradeLeg: {
  2481. height: math.unit(2.34, "feet"),
  2482. name: "Plantigrade Leg",
  2483. image: {
  2484. source: "./media/characters/elijah/plantigrade-leg.svg"
  2485. }
  2486. },
  2487. plantigradeFootLeft: {
  2488. height: math.unit(0.9, "feet"),
  2489. name: "Plantigrade Foot (Left)",
  2490. image: {
  2491. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2492. }
  2493. },
  2494. plantigradeFootRight: {
  2495. height: math.unit(0.9, "feet"),
  2496. name: "Plantigrade Foot (Right)",
  2497. image: {
  2498. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Normal",
  2505. height: math.unit(1.65, "meters")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(55, "meters"),
  2510. default: true
  2511. },
  2512. {
  2513. name: "Macro+",
  2514. height: math.unit(105, "meters")
  2515. },
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2520. {
  2521. front: {
  2522. height: math.unit(7 + 2/12, "feet"),
  2523. weight: math.unit(320, "kg"),
  2524. name: "Front",
  2525. image: {
  2526. source: "./media/characters/rai/front.svg",
  2527. extra: 1802/1696,
  2528. bottom: 68/1870
  2529. }
  2530. },
  2531. frontDressed: {
  2532. height: math.unit(7 + 2/12, "feet"),
  2533. weight: math.unit(320, "kg"),
  2534. name: "Front (Dressed)",
  2535. image: {
  2536. source: "./media/characters/rai/front-dressed.svg",
  2537. extra: 1802/1696,
  2538. bottom: 68/1870
  2539. }
  2540. },
  2541. side: {
  2542. height: math.unit(7 + 2/12, "feet"),
  2543. weight: math.unit(320, "kg"),
  2544. name: "Side",
  2545. image: {
  2546. source: "./media/characters/rai/side.svg",
  2547. extra: 1789/1710,
  2548. bottom: 115/1904
  2549. }
  2550. },
  2551. back: {
  2552. height: math.unit(7 + 2/12, "feet"),
  2553. weight: math.unit(320, "kg"),
  2554. name: "Back",
  2555. image: {
  2556. source: "./media/characters/rai/back.svg",
  2557. extra: 1770/1707,
  2558. bottom: 28/1798
  2559. }
  2560. },
  2561. feral: {
  2562. height: math.unit(9.5, "feet"),
  2563. weight: math.unit(640, "kg"),
  2564. name: "Feral",
  2565. image: {
  2566. source: "./media/characters/rai/feral.svg",
  2567. extra: 945/553,
  2568. bottom: 176/1121
  2569. }
  2570. },
  2571. dragon: {
  2572. height: math.unit(23, "feet"),
  2573. weight: math.unit(50000, "lb"),
  2574. name: "Dragon",
  2575. image: {
  2576. source: "./media/characters/rai/dragon.svg",
  2577. extra: 2498 / 2030,
  2578. bottom: 85.2 / 2584
  2579. }
  2580. },
  2581. maw: {
  2582. height: math.unit(1.69, "feet"),
  2583. name: "Maw",
  2584. image: {
  2585. source: "./media/characters/rai/maw.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Normal",
  2592. height: math.unit(7 + 2/12, "feet")
  2593. },
  2594. {
  2595. name: "Big",
  2596. height: math.unit(11, "feet")
  2597. },
  2598. {
  2599. name: "Macro",
  2600. height: math.unit(302, "feet"),
  2601. default: true
  2602. },
  2603. ]
  2604. ))
  2605. characterMakers.push(() => makeCharacter(
  2606. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2607. {
  2608. frontDressed: {
  2609. height: math.unit(216, "feet"),
  2610. weight: math.unit(7000000, "lb"),
  2611. name: "Front (Dressed)",
  2612. image: {
  2613. source: "./media/characters/jazzy/front-dressed.svg",
  2614. extra: 2738 / 2651,
  2615. bottom: 41.8 / 2786
  2616. }
  2617. },
  2618. backDressed: {
  2619. height: math.unit(216, "feet"),
  2620. weight: math.unit(7000000, "lb"),
  2621. name: "Back (Dressed)",
  2622. image: {
  2623. source: "./media/characters/jazzy/back-dressed.svg",
  2624. extra: 2775 / 2673,
  2625. bottom: 36.8 / 2817
  2626. }
  2627. },
  2628. front: {
  2629. height: math.unit(216, "feet"),
  2630. weight: math.unit(7000000, "lb"),
  2631. name: "Front",
  2632. image: {
  2633. source: "./media/characters/jazzy/front.svg",
  2634. extra: 2738 / 2651,
  2635. bottom: 41.8 / 2786
  2636. }
  2637. },
  2638. back: {
  2639. height: math.unit(216, "feet"),
  2640. weight: math.unit(7000000, "lb"),
  2641. name: "Back",
  2642. image: {
  2643. source: "./media/characters/jazzy/back.svg",
  2644. extra: 2775 / 2673,
  2645. bottom: 36.8 / 2817
  2646. }
  2647. },
  2648. maw: {
  2649. height: math.unit(20, "feet"),
  2650. name: "Maw",
  2651. image: {
  2652. source: "./media/characters/jazzy/maw.svg"
  2653. }
  2654. },
  2655. paws: {
  2656. height: math.unit(27.5, "feet"),
  2657. name: "Paws",
  2658. image: {
  2659. source: "./media/characters/jazzy/paws.svg"
  2660. }
  2661. },
  2662. eye: {
  2663. height: math.unit(4.4, "feet"),
  2664. name: "Eye",
  2665. image: {
  2666. source: "./media/characters/jazzy/eye.svg"
  2667. }
  2668. },
  2669. droneOffense: {
  2670. height: math.unit(9.5, "inches"),
  2671. name: "Drone (Offense)",
  2672. image: {
  2673. source: "./media/characters/jazzy/drone-offense.svg"
  2674. }
  2675. },
  2676. droneRecon: {
  2677. height: math.unit(9.5, "inches"),
  2678. name: "Drone (Recon)",
  2679. image: {
  2680. source: "./media/characters/jazzy/drone-recon.svg"
  2681. }
  2682. },
  2683. droneDefense: {
  2684. height: math.unit(9.5, "inches"),
  2685. name: "Drone (Defense)",
  2686. image: {
  2687. source: "./media/characters/jazzy/drone-defense.svg"
  2688. }
  2689. },
  2690. },
  2691. [
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(216, "feet"),
  2695. default: true
  2696. },
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2701. {
  2702. front: {
  2703. height: math.unit(9 + 6/12, "feet"),
  2704. weight: math.unit(700, "lb"),
  2705. name: "Front",
  2706. image: {
  2707. source: "./media/characters/flamm/front.svg",
  2708. extra: 1751/1632,
  2709. bottom: 46/1797
  2710. }
  2711. },
  2712. buff: {
  2713. height: math.unit(9 + 6/12, "feet"),
  2714. weight: math.unit(950, "lb"),
  2715. name: "Buff",
  2716. image: {
  2717. source: "./media/characters/flamm/buff.svg",
  2718. extra: 3018/2874,
  2719. bottom: 221/3239
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Normal",
  2726. height: math.unit(9.5, "feet")
  2727. },
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(200, "feet"),
  2731. default: true
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(5 + 3/12, "feet"),
  2740. weight: math.unit(60, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/zephiro/front.svg",
  2744. extra: 2309 / 2162,
  2745. bottom: 0.069
  2746. }
  2747. },
  2748. side: {
  2749. height: math.unit(5 + 3/12, "feet"),
  2750. weight: math.unit(60, "kg"),
  2751. name: "Side",
  2752. image: {
  2753. source: "./media/characters/zephiro/side.svg",
  2754. extra: 2403 / 2279,
  2755. bottom: 0.015
  2756. }
  2757. },
  2758. back: {
  2759. height: math.unit(5 + 3/12, "feet"),
  2760. weight: math.unit(60, "kg"),
  2761. name: "Back",
  2762. image: {
  2763. source: "./media/characters/zephiro/back.svg",
  2764. extra: 2373 / 2244,
  2765. bottom: 0.013
  2766. }
  2767. },
  2768. hand: {
  2769. height: math.unit(0.68, "feet"),
  2770. name: "Hand",
  2771. image: {
  2772. source: "./media/characters/zephiro/hand.svg"
  2773. }
  2774. },
  2775. paw: {
  2776. height: math.unit(1, "feet"),
  2777. name: "Paw",
  2778. image: {
  2779. source: "./media/characters/zephiro/paw.svg"
  2780. }
  2781. },
  2782. beans: {
  2783. height: math.unit(0.93, "feet"),
  2784. name: "Beans",
  2785. image: {
  2786. source: "./media/characters/zephiro/beans.svg"
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Micro",
  2793. height: math.unit(3, "inches")
  2794. },
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(5 + 3 / 12, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(118, "feet")
  2803. },
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(5, "feet"),
  2811. weight: math.unit(90, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/fory/front.svg",
  2815. extra: 2862 / 2674,
  2816. bottom: 180 / 3043.8
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(5, "feet"),
  2821. weight: math.unit(90, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/fory/back.svg",
  2825. extra: 2962 / 2791,
  2826. bottom: 106 / 3071.8
  2827. }
  2828. },
  2829. foot: {
  2830. height: math.unit(2.14, "feet"),
  2831. name: "Foot",
  2832. image: {
  2833. source: "./media/characters/fory/foot.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(5, "feet")
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(50, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(10, "miles")
  2850. },
  2851. {
  2852. name: "Gigamacro",
  2853. height: math.unit(5, "earths")
  2854. },
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2859. {
  2860. front: {
  2861. height: math.unit(7, "feet"),
  2862. weight: math.unit(90, "kg"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/kurrikage/front.svg",
  2866. extra: 1845/1733,
  2867. bottom: 119/1964
  2868. }
  2869. },
  2870. back: {
  2871. height: math.unit(7, "feet"),
  2872. weight: math.unit(90, "kg"),
  2873. name: "Back",
  2874. image: {
  2875. source: "./media/characters/kurrikage/back.svg",
  2876. extra: 1790/1677,
  2877. bottom: 61/1851
  2878. }
  2879. },
  2880. dressed: {
  2881. height: math.unit(7, "feet"),
  2882. weight: math.unit(90, "kg"),
  2883. name: "Dressed",
  2884. image: {
  2885. source: "./media/characters/kurrikage/dressed.svg",
  2886. extra: 1845/1733,
  2887. bottom: 119/1964
  2888. }
  2889. },
  2890. foot: {
  2891. height: math.unit(1.5, "feet"),
  2892. name: "Foot",
  2893. image: {
  2894. source: "./media/characters/kurrikage/foot.svg"
  2895. }
  2896. },
  2897. staff: {
  2898. height: math.unit(6.7, "feet"),
  2899. name: "Staff",
  2900. image: {
  2901. source: "./media/characters/kurrikage/staff.svg"
  2902. }
  2903. },
  2904. peek: {
  2905. height: math.unit(1.05, "feet"),
  2906. name: "Peeking",
  2907. image: {
  2908. source: "./media/characters/kurrikage/peek.svg",
  2909. bottom: 0.08
  2910. }
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(12, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Big",
  2921. height: math.unit(20, "feet")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(500, "feet")
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(20, "miles")
  2930. },
  2931. ]
  2932. ))
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2935. {
  2936. front: {
  2937. height: math.unit(6, "feet"),
  2938. weight: math.unit(75, "kg"),
  2939. name: "Front",
  2940. image: {
  2941. source: "./media/characters/shingo/front.svg",
  2942. extra: 1900/1825,
  2943. bottom: 82/1982
  2944. }
  2945. },
  2946. side: {
  2947. height: math.unit(6, "feet"),
  2948. weight: math.unit(75, "kg"),
  2949. name: "Side",
  2950. image: {
  2951. source: "./media/characters/shingo/side.svg",
  2952. extra: 1930/1865,
  2953. bottom: 16/1946
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/shingo/back.svg",
  2962. extra: 1922/1852,
  2963. bottom: 16/1938
  2964. }
  2965. },
  2966. frontDressed: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(150, "lb"),
  2969. name: "Front-dressed",
  2970. image: {
  2971. source: "./media/characters/shingo/front-dressed.svg",
  2972. extra: 1900/1825,
  2973. bottom: 82/1982
  2974. }
  2975. },
  2976. paw: {
  2977. height: math.unit(1.29, "feet"),
  2978. name: "Paw",
  2979. image: {
  2980. source: "./media/characters/shingo/paw.svg"
  2981. }
  2982. },
  2983. hand: {
  2984. height: math.unit(1.07, "feet"),
  2985. name: "Hand",
  2986. image: {
  2987. source: "./media/characters/shingo/hand.svg"
  2988. }
  2989. },
  2990. frontAlt: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front (Alt)",
  2994. image: {
  2995. source: "./media/characters/shingo/front-alt.svg",
  2996. extra: 3511 / 3338,
  2997. bottom: 0.005
  2998. }
  2999. },
  3000. frontAlt2: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Front (Alt 2)",
  3004. image: {
  3005. source: "./media/characters/shingo/front-alt-2.svg",
  3006. extra: 706/681,
  3007. bottom: 11/717
  3008. }
  3009. },
  3010. pawAlt: {
  3011. height: math.unit(1, "feet"),
  3012. name: "Paw (Alt)",
  3013. image: {
  3014. source: "./media/characters/shingo/paw-alt.svg"
  3015. }
  3016. },
  3017. },
  3018. [
  3019. {
  3020. name: "Micro",
  3021. height: math.unit(4, "inches")
  3022. },
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(6, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Macro",
  3030. height: math.unit(108, "feet")
  3031. },
  3032. {
  3033. name: "Macro+",
  3034. height: math.unit(1500, "feet")
  3035. },
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3040. {
  3041. side: {
  3042. height: math.unit(6, "feet"),
  3043. weight: math.unit(75, "kg"),
  3044. name: "Side",
  3045. image: {
  3046. source: "./media/characters/aigey/side.svg"
  3047. }
  3048. },
  3049. },
  3050. [
  3051. {
  3052. name: "Macro",
  3053. height: math.unit(200, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(100, "miles")
  3059. },
  3060. ]
  3061. )
  3062. )
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(5 + 5 / 12, "feet"),
  3068. weight: math.unit(75, "kg"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/natasha/front.svg",
  3072. extra: 859 / 824,
  3073. bottom: 23 / 879.6
  3074. }
  3075. },
  3076. frontNsfw: {
  3077. height: math.unit(5 + 5 / 12, "feet"),
  3078. weight: math.unit(75, "kg"),
  3079. name: "Front (NSFW)",
  3080. image: {
  3081. source: "./media/characters/natasha/front-nsfw.svg",
  3082. extra: 859 / 824,
  3083. bottom: 23 / 879.6
  3084. }
  3085. },
  3086. frontErect: {
  3087. height: math.unit(5 + 5 / 12, "feet"),
  3088. weight: math.unit(75, "kg"),
  3089. name: "Front (Erect)",
  3090. image: {
  3091. source: "./media/characters/natasha/front-erect.svg",
  3092. extra: 859 / 824,
  3093. bottom: 23 / 879.6
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(5 + 5 / 12, "feet"),
  3098. weight: math.unit(75, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/natasha/back.svg",
  3102. extra: 887.9 / 852.6,
  3103. bottom: 9.7 / 896.4
  3104. }
  3105. },
  3106. backAlt: {
  3107. height: math.unit(5 + 5 / 12, "feet"),
  3108. weight: math.unit(75, "kg"),
  3109. name: "Back (Alt)",
  3110. image: {
  3111. source: "./media/characters/natasha/back-alt.svg",
  3112. extra: 1236.7 / 1192,
  3113. bottom: 22.3 / 1258.2
  3114. }
  3115. },
  3116. dick: {
  3117. height: math.unit(1.772, "feet"),
  3118. name: "Dick",
  3119. image: {
  3120. source: "./media/characters/natasha/dick.svg"
  3121. }
  3122. },
  3123. paw: {
  3124. height: math.unit(0.250, "meters"),
  3125. name: "Paw",
  3126. image: {
  3127. source: "./media/characters/natasha/paw.svg"
  3128. }
  3129. },
  3130. },
  3131. [
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(5 + 5 / 12, "feet")
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(12, "feet")
  3139. },
  3140. {
  3141. name: "Macro",
  3142. height: math.unit(100, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro+",
  3147. height: math.unit(260, "feet")
  3148. },
  3149. {
  3150. name: "Macro++",
  3151. height: math.unit(1, "mile")
  3152. },
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(6, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/malik/front.svg"
  3164. }
  3165. },
  3166. side: {
  3167. height: math.unit(6, "feet"),
  3168. weight: math.unit(75, "kg"),
  3169. name: "Side",
  3170. image: {
  3171. source: "./media/characters/malik/side.svg",
  3172. extra: 1.1539
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/malik/back.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(156, "feet"),
  3188. default: true
  3189. },
  3190. {
  3191. name: "Macro+",
  3192. height: math.unit(1188, "feet")
  3193. },
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(6, "feet"),
  3201. weight: math.unit(75, "kg"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/sefer/front.svg",
  3205. extra: 848 / 659,
  3206. bottom: 28.3 / 876.442
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(6, "feet"),
  3211. weight: math.unit(75, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/sefer/back.svg",
  3215. extra: 864 / 695,
  3216. bottom: 10 / 871
  3217. }
  3218. },
  3219. frontDressed: {
  3220. height: math.unit(6, "feet"),
  3221. weight: math.unit(75, "kg"),
  3222. name: "Front (Dressed)",
  3223. image: {
  3224. source: "./media/characters/sefer/front-dressed.svg",
  3225. extra: 839 / 653,
  3226. bottom: 37.6 / 878
  3227. }
  3228. },
  3229. },
  3230. [
  3231. {
  3232. name: "Normal",
  3233. height: math.unit(6, "feet"),
  3234. default: true
  3235. },
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3240. {
  3241. body: {
  3242. height: math.unit(2.2428, "meter"),
  3243. weight: math.unit(124.738, "kg"),
  3244. name: "Body",
  3245. image: {
  3246. extra: 1225 / 1050,
  3247. source: "./media/characters/north/front.svg"
  3248. }
  3249. }
  3250. },
  3251. [
  3252. {
  3253. name: "Micro",
  3254. height: math.unit(4, "inches")
  3255. },
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(63, "meters")
  3259. },
  3260. {
  3261. name: "Megamacro",
  3262. height: math.unit(101, "miles"),
  3263. default: true
  3264. }
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3269. {
  3270. angled: {
  3271. height: math.unit(4, "meter"),
  3272. weight: math.unit(150, "kg"),
  3273. name: "Angled",
  3274. image: {
  3275. source: "./media/characters/talan/angled-sfw.svg",
  3276. bottom: 29 / 3734
  3277. }
  3278. },
  3279. angledNsfw: {
  3280. height: math.unit(4, "meter"),
  3281. weight: math.unit(150, "kg"),
  3282. name: "Angled (NSFW)",
  3283. image: {
  3284. source: "./media/characters/talan/angled-nsfw.svg",
  3285. bottom: 29 / 3734
  3286. }
  3287. },
  3288. frontNsfw: {
  3289. height: math.unit(4, "meter"),
  3290. weight: math.unit(150, "kg"),
  3291. name: "Front (NSFW)",
  3292. image: {
  3293. source: "./media/characters/talan/front-nsfw.svg",
  3294. bottom: 29 / 3734
  3295. }
  3296. },
  3297. sideNsfw: {
  3298. height: math.unit(4, "meter"),
  3299. weight: math.unit(150, "kg"),
  3300. name: "Side (NSFW)",
  3301. image: {
  3302. source: "./media/characters/talan/side-nsfw.svg",
  3303. bottom: 29 / 3734
  3304. }
  3305. },
  3306. back: {
  3307. height: math.unit(4, "meter"),
  3308. weight: math.unit(150, "kg"),
  3309. name: "Back",
  3310. image: {
  3311. source: "./media/characters/talan/back.svg"
  3312. }
  3313. },
  3314. dickBottom: {
  3315. height: math.unit(0.621, "meter"),
  3316. name: "Dick (Bottom)",
  3317. image: {
  3318. source: "./media/characters/talan/dick-bottom.svg"
  3319. }
  3320. },
  3321. dickTop: {
  3322. height: math.unit(0.621, "meter"),
  3323. name: "Dick (Top)",
  3324. image: {
  3325. source: "./media/characters/talan/dick-top.svg"
  3326. }
  3327. },
  3328. dickSide: {
  3329. height: math.unit(0.305, "meter"),
  3330. name: "Dick (Side)",
  3331. image: {
  3332. source: "./media/characters/talan/dick-side.svg"
  3333. }
  3334. },
  3335. dickFront: {
  3336. height: math.unit(0.305, "meter"),
  3337. name: "Dick (Front)",
  3338. image: {
  3339. source: "./media/characters/talan/dick-front.svg"
  3340. }
  3341. },
  3342. },
  3343. [
  3344. {
  3345. name: "Normal",
  3346. height: math.unit(4, "meters")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(100, "meters")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(2, "miles"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Gigamacro",
  3359. height: math.unit(5000, "miles")
  3360. },
  3361. {
  3362. name: "Teramacro",
  3363. height: math.unit(100, "parsecs")
  3364. }
  3365. ]
  3366. ))
  3367. characterMakers.push(() => makeCharacter(
  3368. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3369. {
  3370. front: {
  3371. height: math.unit(2, "meter"),
  3372. weight: math.unit(90, "kg"),
  3373. name: "Front",
  3374. image: {
  3375. source: "./media/characters/gael'rathus/front.svg"
  3376. }
  3377. },
  3378. frontAlt: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(90, "kg"),
  3381. name: "Front (alt)",
  3382. image: {
  3383. source: "./media/characters/gael'rathus/front-alt.svg"
  3384. }
  3385. },
  3386. frontAlt2: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(90, "kg"),
  3389. name: "Front (alt 2)",
  3390. image: {
  3391. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(9, "feet"),
  3399. default: true
  3400. },
  3401. {
  3402. name: "Large",
  3403. height: math.unit(25, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(0.25, "miles")
  3408. },
  3409. {
  3410. name: "Megamacro",
  3411. height: math.unit(10, "miles")
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3417. {
  3418. side: {
  3419. height: math.unit(2, "meter"),
  3420. weight: math.unit(140, "kg"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/sosha/side.svg",
  3424. bottom: 0.042
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(12, "feet"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3438. {
  3439. side: {
  3440. height: math.unit(5 + 5 / 12, "feet"),
  3441. weight: math.unit(170, "kg"),
  3442. name: "Side",
  3443. image: {
  3444. source: "./media/characters/runnola/side.svg",
  3445. extra: 741 / 448,
  3446. bottom: 0.05
  3447. }
  3448. },
  3449. },
  3450. [
  3451. {
  3452. name: "Small",
  3453. height: math.unit(3, "feet")
  3454. },
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(5 + 5 / 12, "feet"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Big",
  3462. height: math.unit(10, "feet")
  3463. },
  3464. ]
  3465. ))
  3466. characterMakers.push(() => makeCharacter(
  3467. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3468. {
  3469. front: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(50, "kg"),
  3472. name: "Front",
  3473. image: {
  3474. source: "./media/characters/kurribird/front.svg",
  3475. bottom: 0.015
  3476. }
  3477. },
  3478. frontAlt: {
  3479. height: math.unit(1.5, "meter"),
  3480. weight: math.unit(50, "kg"),
  3481. name: "Front (Alt)",
  3482. image: {
  3483. source: "./media/characters/kurribird/front-alt.svg",
  3484. extra: 1.45
  3485. }
  3486. },
  3487. },
  3488. [
  3489. {
  3490. name: "Normal",
  3491. height: math.unit(7, "feet")
  3492. },
  3493. {
  3494. name: "Big",
  3495. height: math.unit(12, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(1500, "feet")
  3501. },
  3502. {
  3503. name: "Megamacro",
  3504. height: math.unit(2, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(80, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/elbial/front.svg",
  3517. extra: 1643 / 1556,
  3518. bottom: 60.2 / 1696
  3519. }
  3520. },
  3521. side: {
  3522. height: math.unit(2, "meter"),
  3523. weight: math.unit(80, "kg"),
  3524. name: "Side",
  3525. image: {
  3526. source: "./media/characters/elbial/side.svg",
  3527. extra: 1601/1528,
  3528. bottom: 97/1698
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/elbial/back.svg",
  3537. extra: 1653/1569,
  3538. bottom: 20/1673
  3539. }
  3540. },
  3541. frontDressed: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(80, "kg"),
  3544. name: "Front (Dressed)",
  3545. image: {
  3546. source: "./media/characters/elbial/front-dressed.svg",
  3547. extra: 1638/1569,
  3548. bottom: 70/1708
  3549. }
  3550. },
  3551. genitals: {
  3552. height: math.unit(2 / 3.367, "meter"),
  3553. name: "Genitals",
  3554. image: {
  3555. source: "./media/characters/elbial/genitals.svg"
  3556. }
  3557. },
  3558. },
  3559. [
  3560. {
  3561. name: "Large",
  3562. height: math.unit(100, "feet")
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(500, "feet"),
  3567. default: true
  3568. },
  3569. {
  3570. name: "Megamacro",
  3571. height: math.unit(10, "miles")
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(25000, "miles")
  3576. },
  3577. {
  3578. name: "Full-Size",
  3579. height: math.unit(8000000, "gigaparsecs")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(2, "meter"),
  3588. weight: math.unit(60, "kg"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/noah/front.svg"
  3592. }
  3593. },
  3594. talons: {
  3595. height: math.unit(0.315, "meter"),
  3596. name: "Talons",
  3597. image: {
  3598. source: "./media/characters/noah/talons.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Large",
  3605. height: math.unit(50, "feet")
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(750, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(50, "miles")
  3615. },
  3616. {
  3617. name: "Gigamacro",
  3618. height: math.unit(100000, "miles")
  3619. },
  3620. {
  3621. name: "Full-Size",
  3622. height: math.unit(3000000000, "miles")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(2, "meter"),
  3631. weight: math.unit(80, "kg"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/natalya/front.svg"
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(80, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/natalya/back.svg"
  3643. }
  3644. }
  3645. },
  3646. [
  3647. {
  3648. name: "Normal",
  3649. height: math.unit(150, "feet"),
  3650. default: true
  3651. },
  3652. {
  3653. name: "Megamacro",
  3654. height: math.unit(5, "miles")
  3655. },
  3656. {
  3657. name: "Full-Size",
  3658. height: math.unit(600, "kiloparsecs")
  3659. }
  3660. ]
  3661. ))
  3662. characterMakers.push(() => makeCharacter(
  3663. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3664. {
  3665. front: {
  3666. height: math.unit(2, "meter"),
  3667. weight: math.unit(50, "kg"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/erestrebah/front.svg",
  3671. extra: 1262/1162,
  3672. bottom: 96/1358
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(50, "kg"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/erestrebah/back.svg",
  3681. extra: 1257/1139,
  3682. bottom: 13/1270
  3683. }
  3684. },
  3685. wing: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(50, "kg"),
  3688. name: "Wing",
  3689. image: {
  3690. source: "./media/characters/erestrebah/wing.svg",
  3691. extra: 1262/1162,
  3692. bottom: 96/1358
  3693. }
  3694. },
  3695. mouth: {
  3696. height: math.unit(0.39, "feet"),
  3697. name: "Mouth",
  3698. image: {
  3699. source: "./media/characters/erestrebah/mouth.svg"
  3700. }
  3701. }
  3702. },
  3703. [
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(10, "feet")
  3707. },
  3708. {
  3709. name: "Large",
  3710. height: math.unit(50, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(300, "feet")
  3716. },
  3717. {
  3718. name: "Macro+",
  3719. height: math.unit(750, "feet")
  3720. },
  3721. {
  3722. name: "Megamacro",
  3723. height: math.unit(3, "miles")
  3724. }
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(2, "meter"),
  3732. weight: math.unit(80, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/jennifer/front.svg",
  3736. bottom: 0.11,
  3737. extra: 1.16
  3738. }
  3739. },
  3740. frontAlt: {
  3741. height: math.unit(2, "meter"),
  3742. weight: math.unit(80, "kg"),
  3743. name: "Front (Alt)",
  3744. image: {
  3745. source: "./media/characters/jennifer/front-alt.svg"
  3746. }
  3747. }
  3748. },
  3749. [
  3750. {
  3751. name: "Canon Height",
  3752. height: math.unit(120, "feet"),
  3753. default: true
  3754. },
  3755. {
  3756. name: "Macro+",
  3757. height: math.unit(300, "feet")
  3758. },
  3759. {
  3760. name: "Megamacro",
  3761. height: math.unit(20000, "feet")
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(2, "meter"),
  3770. weight: math.unit(50, "kg"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/kalista/front.svg",
  3774. extra: 1314/1145,
  3775. bottom: 101/1415
  3776. }
  3777. },
  3778. back: {
  3779. height: math.unit(2, "meter"),
  3780. weight: math.unit(50, "kg"),
  3781. name: "Back",
  3782. image: {
  3783. source: "./media/characters/kalista/back.svg",
  3784. extra: 1366 / 1156,
  3785. bottom: 33.9 / 1362.78
  3786. }
  3787. }
  3788. },
  3789. [
  3790. {
  3791. name: "Uncomfortably Small",
  3792. height: math.unit(10, "feet")
  3793. },
  3794. {
  3795. name: "Small",
  3796. height: math.unit(30, "feet")
  3797. },
  3798. {
  3799. name: "Macro",
  3800. height: math.unit(100, "feet"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Macro+",
  3805. height: math.unit(2000, "feet")
  3806. },
  3807. {
  3808. name: "True Form",
  3809. height: math.unit(8924, "miles")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(2, "meter"),
  3818. weight: math.unit(120, "kg"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/ggv/front.svg"
  3822. }
  3823. },
  3824. side: {
  3825. height: math.unit(2, "meter"),
  3826. weight: math.unit(120, "kg"),
  3827. name: "Side",
  3828. image: {
  3829. source: "./media/characters/ggv/side.svg"
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Extremely Puny",
  3836. height: math.unit(9 + 5 / 12, "feet")
  3837. },
  3838. {
  3839. name: "Horribly Small",
  3840. height: math.unit(47.7, "miles"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Reasonably Sized",
  3845. height: math.unit(25000, "parsecs")
  3846. },
  3847. {
  3848. name: "Slightly Uncompressed",
  3849. height: math.unit(7.77e31, "parsecs")
  3850. },
  3851. {
  3852. name: "Omniversal",
  3853. height: math.unit(1e300, "meters")
  3854. },
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(75, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/napalm/front.svg"
  3866. }
  3867. },
  3868. back: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(75, "lb"),
  3871. name: "Back",
  3872. image: {
  3873. source: "./media/characters/napalm/back.svg"
  3874. }
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Standard",
  3880. height: math.unit(55, "feet"),
  3881. default: true
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(7 + 5 / 6, "feet"),
  3890. weight: math.unit(325, "lb"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/asana/front.svg",
  3894. extra: 1133 / 1060,
  3895. bottom: 15.2 / 1148.6
  3896. }
  3897. },
  3898. back: {
  3899. height: math.unit(7 + 5 / 6, "feet"),
  3900. weight: math.unit(325, "lb"),
  3901. name: "Back",
  3902. image: {
  3903. source: "./media/characters/asana/back.svg",
  3904. extra: 1114 / 1043,
  3905. bottom: 5 / 1120
  3906. }
  3907. },
  3908. dressedDark: {
  3909. height: math.unit(7 + 5 / 6, "feet"),
  3910. weight: math.unit(325, "lb"),
  3911. name: "Dressed (Dark)",
  3912. image: {
  3913. source: "./media/characters/asana/dressed-dark.svg",
  3914. extra: 1133 / 1060,
  3915. bottom: 15.2 / 1148.6
  3916. }
  3917. },
  3918. dressedLight: {
  3919. height: math.unit(7 + 5 / 6, "feet"),
  3920. weight: math.unit(325, "lb"),
  3921. name: "Dressed (Light)",
  3922. image: {
  3923. source: "./media/characters/asana/dressed-light.svg",
  3924. extra: 1133 / 1060,
  3925. bottom: 15.2 / 1148.6
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Standard",
  3932. height: math.unit(7 + 5 / 6, "feet"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Large",
  3937. height: math.unit(10, "meters")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(2500, "meters")
  3942. },
  3943. {
  3944. name: "Megamacro",
  3945. height: math.unit(5e6, "meters")
  3946. },
  3947. {
  3948. name: "Examacro",
  3949. height: math.unit(5e12, "lightyears")
  3950. },
  3951. {
  3952. name: "Max Size",
  3953. height: math.unit(1e31, "lightyears")
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(2, "meter"),
  3962. weight: math.unit(60, "kg"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/ebony/front.svg",
  3966. bottom: 0.03,
  3967. extra: 1045 / 810 + 0.03
  3968. }
  3969. },
  3970. side: {
  3971. height: math.unit(2, "meter"),
  3972. weight: math.unit(60, "kg"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/ebony/side.svg",
  3976. bottom: 0.03,
  3977. extra: 1045 / 810 + 0.03
  3978. }
  3979. },
  3980. back: {
  3981. height: math.unit(2, "meter"),
  3982. weight: math.unit(60, "kg"),
  3983. name: "Back",
  3984. image: {
  3985. source: "./media/characters/ebony/back.svg",
  3986. bottom: 0.01,
  3987. extra: 1045 / 810 + 0.01
  3988. }
  3989. },
  3990. },
  3991. [
  3992. // TODO check why I did this lol
  3993. {
  3994. name: "Standard",
  3995. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(200, "feet")
  4001. },
  4002. {
  4003. name: "Gigamacro",
  4004. height: math.unit(13000, "km")
  4005. }
  4006. ]
  4007. ))
  4008. characterMakers.push(() => makeCharacter(
  4009. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4010. {
  4011. front: {
  4012. height: math.unit(6, "feet"),
  4013. weight: math.unit(175, "lb"),
  4014. name: "Front",
  4015. image: {
  4016. source: "./media/characters/mountain/front.svg",
  4017. extra: 972 / 955,
  4018. bottom: 64 / 1036.6
  4019. }
  4020. },
  4021. back: {
  4022. height: math.unit(6, "feet"),
  4023. weight: math.unit(175, "lb"),
  4024. name: "Back",
  4025. image: {
  4026. source: "./media/characters/mountain/back.svg",
  4027. extra: 970 / 950,
  4028. bottom: 28.25 / 999
  4029. }
  4030. },
  4031. },
  4032. [
  4033. {
  4034. name: "Large",
  4035. height: math.unit(20, "meters")
  4036. },
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(300, "meters")
  4040. },
  4041. {
  4042. name: "Gigamacro",
  4043. height: math.unit(10000, "km"),
  4044. default: true
  4045. },
  4046. {
  4047. name: "Examacro",
  4048. height: math.unit(10e9, "lightyears")
  4049. }
  4050. ]
  4051. ))
  4052. characterMakers.push(() => makeCharacter(
  4053. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4054. {
  4055. front: {
  4056. height: math.unit(8, "feet"),
  4057. weight: math.unit(500, "lb"),
  4058. name: "Front",
  4059. image: {
  4060. source: "./media/characters/rick/front.svg"
  4061. }
  4062. }
  4063. },
  4064. [
  4065. {
  4066. name: "Normal",
  4067. height: math.unit(8, "feet"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(5, "km")
  4073. }
  4074. ]
  4075. ))
  4076. characterMakers.push(() => makeCharacter(
  4077. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4078. {
  4079. front: {
  4080. height: math.unit(8, "feet"),
  4081. weight: math.unit(120, "lb"),
  4082. name: "Front",
  4083. image: {
  4084. source: "./media/characters/ona/front.svg"
  4085. }
  4086. },
  4087. frontAlt: {
  4088. height: math.unit(8, "feet"),
  4089. weight: math.unit(120, "lb"),
  4090. name: "Front (Alt)",
  4091. image: {
  4092. source: "./media/characters/ona/front-alt.svg"
  4093. }
  4094. },
  4095. back: {
  4096. height: math.unit(8, "feet"),
  4097. weight: math.unit(120, "lb"),
  4098. name: "Back",
  4099. image: {
  4100. source: "./media/characters/ona/back.svg"
  4101. }
  4102. },
  4103. foot: {
  4104. height: math.unit(1.1, "feet"),
  4105. name: "Foot",
  4106. image: {
  4107. source: "./media/characters/ona/foot.svg"
  4108. }
  4109. }
  4110. },
  4111. [
  4112. {
  4113. name: "Megamacro",
  4114. height: math.unit(70, "km"),
  4115. default: true
  4116. },
  4117. {
  4118. name: "Gigamacro",
  4119. height: math.unit(681818, "miles")
  4120. },
  4121. {
  4122. name: "Examacro",
  4123. height: math.unit(3800000, "lightyears")
  4124. },
  4125. ]
  4126. ))
  4127. characterMakers.push(() => makeCharacter(
  4128. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4129. {
  4130. front: {
  4131. height: math.unit(12, "feet"),
  4132. weight: math.unit(3000, "lb"),
  4133. name: "Front",
  4134. image: {
  4135. source: "./media/characters/mech/front.svg",
  4136. extra: 2900 / 2770,
  4137. bottom: 110 / 3010
  4138. }
  4139. },
  4140. back: {
  4141. height: math.unit(12, "feet"),
  4142. weight: math.unit(3000, "lb"),
  4143. name: "Back",
  4144. image: {
  4145. source: "./media/characters/mech/back.svg",
  4146. extra: 3011 / 2890,
  4147. bottom: 94 / 3105
  4148. }
  4149. },
  4150. maw: {
  4151. height: math.unit(3.07, "feet"),
  4152. name: "Maw",
  4153. image: {
  4154. source: "./media/characters/mech/maw.svg"
  4155. }
  4156. },
  4157. head: {
  4158. height: math.unit(2.82, "feet"),
  4159. name: "Head",
  4160. image: {
  4161. source: "./media/characters/mech/head.svg"
  4162. }
  4163. },
  4164. dick: {
  4165. height: math.unit(1.43, "feet"),
  4166. name: "Dick",
  4167. image: {
  4168. source: "./media/characters/mech/dick.svg"
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(12, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(300, "feet"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Macro+",
  4184. height: math.unit(1500, "feet")
  4185. },
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(1.3, "meter"),
  4193. weight: math.unit(30, "kg"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/gregory/front.svg",
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(1.3, "meter"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(20, "meter")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(2.8, "meter"),
  4217. weight: math.unit(200, "kg"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/elory/front.svg",
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(2.8, "meter"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Macro",
  4232. height: math.unit(38, "meter")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(470, "feet"),
  4241. weight: math.unit(924, "tons"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/angelpatamon/front.svg",
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(470, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Deity Size I",
  4256. height: math.unit(28651.2, "km")
  4257. },
  4258. {
  4259. name: "Deity Size II",
  4260. height: math.unit(171907.2, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4266. {
  4267. side: {
  4268. height: math.unit(7.2, "meter"),
  4269. weight: math.unit(8.2, "tons"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/cryae/side.svg",
  4273. extra: 3500 / 1500
  4274. }
  4275. }
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(7.2, "meter"),
  4281. default: true
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(175, "lb"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/xera/front.svg",
  4294. extra: 2377 / 1972,
  4295. bottom: 75.5 / 2452
  4296. }
  4297. },
  4298. side: {
  4299. height: math.unit(6, "feet"),
  4300. weight: math.unit(175, "lb"),
  4301. name: "Side",
  4302. image: {
  4303. source: "./media/characters/xera/side.svg",
  4304. extra: 2345 / 2019,
  4305. bottom: 39.7 / 2384
  4306. }
  4307. },
  4308. back: {
  4309. height: math.unit(6, "feet"),
  4310. weight: math.unit(175, "lb"),
  4311. name: "Back",
  4312. image: {
  4313. source: "./media/characters/xera/back.svg",
  4314. extra: 2095 / 1984,
  4315. bottom: 67 / 2166
  4316. }
  4317. },
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(10, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Macro+",
  4331. height: math.unit(10, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(25000, "km")
  4336. },
  4337. {
  4338. name: "Teramacro",
  4339. height: math.unit(3e6, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(175, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/nebula/front.svg",
  4352. extra: 2566 / 2362,
  4353. bottom: 81 / 2644
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Small",
  4360. height: math.unit(4.5, "meters")
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(1500, "meters"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(150, "km")
  4370. },
  4371. {
  4372. name: "Gigamacro",
  4373. height: math.unit(27000, "km")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(225, "lb"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/abysgar/front.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Small",
  4392. height: math.unit(4.5, "meters")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(1250, "meters"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(125, "km")
  4402. },
  4403. {
  4404. name: "Gigamacro",
  4405. height: math.unit(26000, "km")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(6, "feet"),
  4414. weight: math.unit(180, "lb"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/yakuz/front.svg"
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(1500, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(200, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(100000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(175, "lb"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/mirova/front.svg",
  4450. extra: 3334 / 3071,
  4451. bottom: 42 / 3375.6
  4452. }
  4453. }
  4454. },
  4455. [
  4456. {
  4457. name: "Small",
  4458. height: math.unit(5, "meters")
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(900, "meters"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Megamacro",
  4467. height: math.unit(135, "km")
  4468. },
  4469. {
  4470. name: "Gigamacro",
  4471. height: math.unit(20000, "km")
  4472. }
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4477. {
  4478. side: {
  4479. height: math.unit(28.35, "feet"),
  4480. weight: math.unit(99.75, "tons"),
  4481. name: "Side",
  4482. image: {
  4483. source: "./media/characters/asana-mech/side.svg",
  4484. extra: 923 / 699,
  4485. bottom: 50 / 975
  4486. }
  4487. },
  4488. chaingun: {
  4489. height: math.unit(7, "feet"),
  4490. weight: math.unit(2400, "lb"),
  4491. name: "Chaingun",
  4492. image: {
  4493. source: "./media/characters/asana-mech/chaingun.svg"
  4494. }
  4495. },
  4496. laser: {
  4497. height: math.unit(7.12, "feet"),
  4498. weight: math.unit(2000, "lb"),
  4499. name: "Laser",
  4500. image: {
  4501. source: "./media/characters/asana-mech/laser.svg"
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(28.35, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(2500, "feet")
  4514. },
  4515. {
  4516. name: "Megamacro",
  4517. height: math.unit(25, "miles")
  4518. },
  4519. {
  4520. name: "Examacro",
  4521. height: math.unit(6e8, "lightyears")
  4522. },
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(5, "meters"),
  4530. weight: math.unit(1000, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/asche/front.svg",
  4534. extra: 1258 / 1190,
  4535. bottom: 47 / 1305
  4536. }
  4537. },
  4538. frontUnderwear: {
  4539. height: math.unit(5, "meters"),
  4540. weight: math.unit(1000, "kg"),
  4541. name: "Front (Underwear)",
  4542. image: {
  4543. source: "./media/characters/asche/front-underwear.svg",
  4544. extra: 1258 / 1190,
  4545. bottom: 47 / 1305
  4546. }
  4547. },
  4548. frontDressed: {
  4549. height: math.unit(5, "meters"),
  4550. weight: math.unit(1000, "kg"),
  4551. name: "Front (Dressed)",
  4552. image: {
  4553. source: "./media/characters/asche/front-dressed.svg",
  4554. extra: 1258 / 1190,
  4555. bottom: 47 / 1305
  4556. }
  4557. },
  4558. frontArmor: {
  4559. height: math.unit(5, "meters"),
  4560. weight: math.unit(1000, "kg"),
  4561. name: "Front (Armored)",
  4562. image: {
  4563. source: "./media/characters/asche/front-armored.svg",
  4564. extra: 1374 / 1308,
  4565. bottom: 23 / 1397
  4566. }
  4567. },
  4568. mp724: {
  4569. height: math.unit(0.96, "meters"),
  4570. weight: math.unit(38, "kg"),
  4571. name: "H&K MP724",
  4572. image: {
  4573. source: "./media/characters/asche/h&k-mp724.svg"
  4574. }
  4575. },
  4576. side: {
  4577. height: math.unit(5, "meters"),
  4578. weight: math.unit(1000, "kg"),
  4579. name: "Side",
  4580. image: {
  4581. source: "./media/characters/asche/side.svg",
  4582. extra: 1717 / 1609,
  4583. bottom: 0.005
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(5, "meters"),
  4588. weight: math.unit(1000, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/asche/back.svg",
  4592. extra: 1570 / 1501
  4593. }
  4594. },
  4595. },
  4596. [
  4597. {
  4598. name: "DEFCON 5",
  4599. height: math.unit(5, "meters")
  4600. },
  4601. {
  4602. name: "DEFCON 4",
  4603. height: math.unit(500, "meters"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "DEFCON 3",
  4608. height: math.unit(5, "km")
  4609. },
  4610. {
  4611. name: "DEFCON 2",
  4612. height: math.unit(500, "km")
  4613. },
  4614. {
  4615. name: "DEFCON 1",
  4616. height: math.unit(500000, "km")
  4617. },
  4618. {
  4619. name: "DEFCON 0",
  4620. height: math.unit(3, "gigaparsecs")
  4621. },
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(2, "meters"),
  4629. weight: math.unit(76, "kg"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/gale/front.svg"
  4633. }
  4634. },
  4635. frontAlt1: {
  4636. height: math.unit(2, "meters"),
  4637. weight: math.unit(76, "kg"),
  4638. name: "Front (Alt 1)",
  4639. image: {
  4640. source: "./media/characters/gale/front-alt-1.svg"
  4641. }
  4642. },
  4643. frontAlt2: {
  4644. height: math.unit(2, "meters"),
  4645. weight: math.unit(76, "kg"),
  4646. name: "Front (Alt 2)",
  4647. image: {
  4648. source: "./media/characters/gale/front-alt-2.svg"
  4649. }
  4650. },
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(7, "feet")
  4656. },
  4657. {
  4658. name: "Macro",
  4659. height: math.unit(150, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "Macro+",
  4664. height: math.unit(300, "feet")
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(5 + 10/12, "feet"),
  4673. weight: math.unit(67, "kg"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/draylen/front.svg",
  4677. extra: 832/777,
  4678. bottom: 85/917
  4679. }
  4680. }
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(5 + 10/12, "feet")
  4686. },
  4687. {
  4688. name: "Macro",
  4689. height: math.unit(150, "feet"),
  4690. default: true
  4691. }
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4696. {
  4697. front: {
  4698. height: math.unit(7 + 9 / 12, "feet"),
  4699. weight: math.unit(379, "lbs"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/chez/front.svg"
  4703. }
  4704. },
  4705. side: {
  4706. height: math.unit(7 + 9 / 12, "feet"),
  4707. weight: math.unit(379, "lbs"),
  4708. name: "Side",
  4709. image: {
  4710. source: "./media/characters/chez/side.svg"
  4711. }
  4712. }
  4713. },
  4714. [
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(7 + 9 / 12, "feet"),
  4718. default: true
  4719. },
  4720. {
  4721. name: "God King",
  4722. height: math.unit(9750000, "meters")
  4723. }
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(275, "lbs"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/kaylum/front.svg",
  4735. bottom: 0.01,
  4736. extra: 1166 / 1031
  4737. }
  4738. },
  4739. frontWingless: {
  4740. height: math.unit(6, "feet"),
  4741. weight: math.unit(275, "lbs"),
  4742. name: "Front (Wingless)",
  4743. image: {
  4744. source: "./media/characters/kaylum/front-wingless.svg",
  4745. bottom: 0.01,
  4746. extra: 1117 / 1031
  4747. }
  4748. }
  4749. },
  4750. [
  4751. {
  4752. name: "Normal",
  4753. height: math.unit(3.05, "meters")
  4754. },
  4755. {
  4756. name: "Master",
  4757. height: math.unit(5.5, "meters")
  4758. },
  4759. {
  4760. name: "Rampage",
  4761. height: math.unit(19, "meters")
  4762. },
  4763. {
  4764. name: "Macro Lite",
  4765. height: math.unit(37, "meters")
  4766. },
  4767. {
  4768. name: "Hyper Predator",
  4769. height: math.unit(61, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(138, "meters"),
  4774. default: true
  4775. }
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4780. {
  4781. front: {
  4782. height: math.unit(6, "feet"),
  4783. weight: math.unit(150, "lbs"),
  4784. name: "Front",
  4785. image: {
  4786. source: "./media/characters/geta/front.svg"
  4787. }
  4788. }
  4789. },
  4790. [
  4791. {
  4792. name: "Micro",
  4793. height: math.unit(3, "inches"),
  4794. default: true
  4795. },
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(5 + 5 / 12, "feet")
  4799. }
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4804. {
  4805. front: {
  4806. height: math.unit(6, "feet"),
  4807. weight: math.unit(300, "lbs"),
  4808. name: "Front",
  4809. image: {
  4810. source: "./media/characters/tyrnn/front.svg"
  4811. }
  4812. }
  4813. },
  4814. [
  4815. {
  4816. name: "Main Height",
  4817. height: math.unit(355, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Fave. Height",
  4822. height: math.unit(2400, "feet")
  4823. }
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4828. {
  4829. front: {
  4830. height: math.unit(6, "feet"),
  4831. weight: math.unit(300, "lbs"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/appledectomy/front.svg"
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(2500, "feet")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(50, "miles"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Gigamacro",
  4850. height: math.unit(5000, "miles")
  4851. },
  4852. {
  4853. name: "Teramacro",
  4854. height: math.unit(250000, "miles")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(200, "lbs"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/vulpes/front.svg",
  4867. extra: 573 / 543,
  4868. bottom: 0.033
  4869. }
  4870. },
  4871. side: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(200, "lbs"),
  4874. name: "Side",
  4875. image: {
  4876. source: "./media/characters/vulpes/side.svg",
  4877. extra: 577 / 549,
  4878. bottom: 11 / 588
  4879. }
  4880. },
  4881. back: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(200, "lbs"),
  4884. name: "Back",
  4885. image: {
  4886. source: "./media/characters/vulpes/back.svg",
  4887. extra: 573 / 549,
  4888. bottom: 20 / 593
  4889. }
  4890. },
  4891. feet: {
  4892. height: math.unit(1.276, "feet"),
  4893. name: "Feet",
  4894. image: {
  4895. source: "./media/characters/vulpes/feet.svg"
  4896. }
  4897. },
  4898. maw: {
  4899. height: math.unit(1.18, "feet"),
  4900. name: "Maw",
  4901. image: {
  4902. source: "./media/characters/vulpes/maw.svg"
  4903. }
  4904. },
  4905. },
  4906. [
  4907. {
  4908. name: "Micro",
  4909. height: math.unit(2, "inches")
  4910. },
  4911. {
  4912. name: "Normal",
  4913. height: math.unit(6.3, "feet")
  4914. },
  4915. {
  4916. name: "Macro",
  4917. height: math.unit(850, "feet")
  4918. },
  4919. {
  4920. name: "Megamacro",
  4921. height: math.unit(7500, "feet"),
  4922. default: true
  4923. },
  4924. {
  4925. name: "Gigamacro",
  4926. height: math.unit(570000, "miles")
  4927. }
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(210, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/rain-fallen/front.svg"
  4939. }
  4940. },
  4941. side: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(210, "lbs"),
  4944. name: "Side",
  4945. image: {
  4946. source: "./media/characters/rain-fallen/side.svg"
  4947. }
  4948. },
  4949. back: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(210, "lbs"),
  4952. name: "Back",
  4953. image: {
  4954. source: "./media/characters/rain-fallen/back.svg"
  4955. }
  4956. },
  4957. feral: {
  4958. height: math.unit(9, "feet"),
  4959. weight: math.unit(700, "lbs"),
  4960. name: "Feral",
  4961. image: {
  4962. source: "./media/characters/rain-fallen/feral.svg"
  4963. }
  4964. },
  4965. },
  4966. [
  4967. {
  4968. name: "Meddling with Mortals",
  4969. height: math.unit(8 + 8/12, "feet")
  4970. },
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(5, "meter")
  4974. },
  4975. {
  4976. name: "Macro",
  4977. height: math.unit(150, "meter"),
  4978. default: true
  4979. },
  4980. {
  4981. name: "Megamacro",
  4982. height: math.unit(278e6, "meter")
  4983. },
  4984. {
  4985. name: "Gigamacro",
  4986. height: math.unit(2e9, "meter")
  4987. },
  4988. {
  4989. name: "Teramacro",
  4990. height: math.unit(8e12, "meter")
  4991. },
  4992. {
  4993. name: "Devourer",
  4994. height: math.unit(14, "zettameters")
  4995. },
  4996. {
  4997. name: "Scarlet King",
  4998. height: math.unit(18, "yottameters")
  4999. },
  5000. {
  5001. name: "Void",
  5002. height: math.unit(1e88, "yottameters")
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5008. {
  5009. standing: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Standing",
  5013. image: {
  5014. source: "./media/characters/zaakira/standing.svg",
  5015. extra: 1599/1504,
  5016. bottom: 39/1638
  5017. }
  5018. },
  5019. laying: {
  5020. height: math.unit(3, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Laying",
  5023. image: {
  5024. source: "./media/characters/zaakira/laying.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Normal",
  5031. height: math.unit(12, "feet")
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(279, "feet"),
  5036. default: true
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5042. {
  5043. femSfw: {
  5044. height: math.unit(8, "feet"),
  5045. weight: math.unit(350, "lb"),
  5046. name: "Fem",
  5047. image: {
  5048. source: "./media/characters/sigvald/fem-sfw.svg",
  5049. extra: 182 / 164,
  5050. bottom: 8.7 / 190.5
  5051. }
  5052. },
  5053. femNsfw: {
  5054. height: math.unit(8, "feet"),
  5055. weight: math.unit(350, "lb"),
  5056. name: "Fem (NSFW)",
  5057. image: {
  5058. source: "./media/characters/sigvald/fem-nsfw.svg",
  5059. extra: 182 / 164,
  5060. bottom: 8.7 / 190.5
  5061. }
  5062. },
  5063. maleNsfw: {
  5064. height: math.unit(8, "feet"),
  5065. weight: math.unit(350, "lb"),
  5066. name: "Male (NSFW)",
  5067. image: {
  5068. source: "./media/characters/sigvald/male-nsfw.svg",
  5069. extra: 182 / 164,
  5070. bottom: 8.7 / 190.5
  5071. }
  5072. },
  5073. hermNsfw: {
  5074. height: math.unit(8, "feet"),
  5075. weight: math.unit(350, "lb"),
  5076. name: "Herm (NSFW)",
  5077. image: {
  5078. source: "./media/characters/sigvald/herm-nsfw.svg",
  5079. extra: 182 / 164,
  5080. bottom: 8.7 / 190.5
  5081. }
  5082. },
  5083. dick: {
  5084. height: math.unit(2.36, "feet"),
  5085. name: "Dick",
  5086. image: {
  5087. source: "./media/characters/sigvald/dick.svg"
  5088. }
  5089. },
  5090. eye: {
  5091. height: math.unit(0.31, "feet"),
  5092. name: "Eye",
  5093. image: {
  5094. source: "./media/characters/sigvald/eye.svg"
  5095. }
  5096. },
  5097. mouth: {
  5098. height: math.unit(0.92, "feet"),
  5099. name: "Mouth",
  5100. image: {
  5101. source: "./media/characters/sigvald/mouth.svg"
  5102. }
  5103. },
  5104. paws: {
  5105. height: math.unit(2.2, "feet"),
  5106. name: "Paws",
  5107. image: {
  5108. source: "./media/characters/sigvald/paws.svg"
  5109. }
  5110. }
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8, "feet")
  5116. },
  5117. {
  5118. name: "Large",
  5119. height: math.unit(12, "feet")
  5120. },
  5121. {
  5122. name: "Larger",
  5123. height: math.unit(20, "feet")
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(150, "feet")
  5128. },
  5129. {
  5130. name: "Macro+",
  5131. height: math.unit(200, "feet"),
  5132. default: true
  5133. },
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5138. {
  5139. side: {
  5140. height: math.unit(12, "feet"),
  5141. weight: math.unit(2000, "kg"),
  5142. name: "Side",
  5143. image: {
  5144. source: "./media/characters/scott/side.svg",
  5145. extra: 754 / 724,
  5146. bottom: 0.069
  5147. }
  5148. },
  5149. upright: {
  5150. height: math.unit(12, "feet"),
  5151. weight: math.unit(2000, "kg"),
  5152. name: "Upright",
  5153. image: {
  5154. source: "./media/characters/scott/upright.svg",
  5155. extra: 3881 / 3722,
  5156. bottom: 0.05
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(12, "feet"),
  5164. default: true
  5165. },
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5170. {
  5171. side: {
  5172. height: math.unit(8, "meters"),
  5173. weight: math.unit(84755, "lbs"),
  5174. name: "Side",
  5175. image: {
  5176. source: "./media/characters/tobias/side.svg",
  5177. extra: 1474 / 1096,
  5178. bottom: 38.9 / 1513.1235
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(8, "meters"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5192. {
  5193. front: {
  5194. height: math.unit(5.5, "feet"),
  5195. weight: math.unit(400, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/kieran/front.svg",
  5199. extra: 2694 / 2364,
  5200. bottom: 217 / 2908
  5201. }
  5202. },
  5203. side: {
  5204. height: math.unit(5.5, "feet"),
  5205. weight: math.unit(400, "lbs"),
  5206. name: "Side",
  5207. image: {
  5208. source: "./media/characters/kieran/side.svg",
  5209. extra: 875 / 777,
  5210. bottom: 84.6 / 959
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(5.5, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5224. {
  5225. side: {
  5226. height: math.unit(2, "meters"),
  5227. weight: math.unit(70, "kg"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/sanya/side.svg",
  5231. bottom: 0.02,
  5232. extra: 1.02
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Small",
  5239. height: math.unit(2, "meters")
  5240. },
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(3, "meters")
  5244. },
  5245. {
  5246. name: "Macro",
  5247. height: math.unit(16, "meters"),
  5248. default: true
  5249. },
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5254. {
  5255. front: {
  5256. height: math.unit(2, "meters"),
  5257. weight: math.unit(120, "kg"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/miranda/front.svg",
  5261. extra: 195 / 185,
  5262. bottom: 10.9 / 206.5
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(2, "meters"),
  5267. weight: math.unit(120, "kg"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/miranda/back.svg",
  5271. extra: 201 / 193,
  5272. bottom: 2.3 / 203.7
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(10, "feet"),
  5280. default: true
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "James", species: ["deer"], tags: ["anthro"] },
  5286. {
  5287. side: {
  5288. height: math.unit(2, "meters"),
  5289. weight: math.unit(100, "kg"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/james/front.svg",
  5293. extra: 10 / 8.5
  5294. }
  5295. },
  5296. },
  5297. [
  5298. {
  5299. name: "Normal",
  5300. height: math.unit(8.5, "feet"),
  5301. default: true
  5302. }
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5307. {
  5308. side: {
  5309. height: math.unit(9.5, "feet"),
  5310. weight: math.unit(2500, "lbs"),
  5311. name: "Side",
  5312. image: {
  5313. source: "./media/characters/heather/side.svg"
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Normal",
  5320. height: math.unit(9.5, "feet"),
  5321. default: true
  5322. }
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5327. {
  5328. side: {
  5329. height: math.unit(6.5, "feet"),
  5330. weight: math.unit(400, "lbs"),
  5331. name: "Side",
  5332. image: {
  5333. source: "./media/characters/lukas/side.svg",
  5334. extra: 7.25 / 6.5
  5335. }
  5336. },
  5337. },
  5338. [
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(6.5, "feet"),
  5342. default: true
  5343. }
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5348. {
  5349. side: {
  5350. height: math.unit(5, "feet"),
  5351. weight: math.unit(3000, "lbs"),
  5352. name: "Side",
  5353. image: {
  5354. source: "./media/characters/louise/side.svg"
  5355. }
  5356. },
  5357. },
  5358. [
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5, "feet"),
  5362. default: true
  5363. }
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5368. {
  5369. side: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(150, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/ramona/side.svg",
  5375. extra: 871/854,
  5376. bottom: 41/912
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(5.3, "meters"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(20, "stories")
  5389. },
  5390. {
  5391. name: "Macro+",
  5392. height: math.unit(50, "stories")
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5398. {
  5399. standing: {
  5400. height: math.unit(5.75, "feet"),
  5401. weight: math.unit(160, "lbs"),
  5402. name: "Standing",
  5403. image: {
  5404. source: "./media/characters/deerpuff/standing.svg",
  5405. extra: 682 / 624
  5406. }
  5407. },
  5408. sitting: {
  5409. height: math.unit(5.75 / 1.79, "feet"),
  5410. weight: math.unit(160, "lbs"),
  5411. name: "Sitting",
  5412. image: {
  5413. source: "./media/characters/deerpuff/sitting.svg",
  5414. bottom: 44 / 400,
  5415. extra: 1
  5416. }
  5417. },
  5418. taurLaying: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(400, "lbs"),
  5421. name: "Taur (Laying)",
  5422. image: {
  5423. source: "./media/characters/deerpuff/taur-laying.svg"
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Puffball",
  5430. height: math.unit(6, "inches")
  5431. },
  5432. {
  5433. name: "Normalpuff",
  5434. height: math.unit(5.75, "feet")
  5435. },
  5436. {
  5437. name: "Macropuff",
  5438. height: math.unit(1500, "feet"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Megapuff",
  5443. height: math.unit(500, "miles")
  5444. },
  5445. {
  5446. name: "Gigapuff",
  5447. height: math.unit(250000, "miles")
  5448. },
  5449. {
  5450. name: "Omegapuff",
  5451. height: math.unit(1000, "lightyears")
  5452. },
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5457. {
  5458. stomping: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(170, "lbs"),
  5461. name: "Stomping",
  5462. image: {
  5463. source: "./media/characters/vivian/stomping.svg"
  5464. }
  5465. },
  5466. sitting: {
  5467. height: math.unit(6 / 1.75, "feet"),
  5468. weight: math.unit(170, "lbs"),
  5469. name: "Sitting",
  5470. image: {
  5471. source: "./media/characters/vivian/sitting.svg",
  5472. bottom: 1 / 6.4,
  5473. extra: 1,
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(7, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(10, "stories")
  5486. },
  5487. {
  5488. name: "Macro+",
  5489. height: math.unit(30, "stories")
  5490. },
  5491. {
  5492. name: "Megamacro",
  5493. height: math.unit(10, "miles")
  5494. },
  5495. {
  5496. name: "Megamacro+",
  5497. height: math.unit(2750000, "meters")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(160, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/prince/front.svg",
  5510. extra: 3400 / 3000
  5511. }
  5512. },
  5513. jumping: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(160, "lbs"),
  5516. name: "Jumping",
  5517. image: {
  5518. source: "./media/characters/prince/jump.svg",
  5519. extra: 2555 / 2134
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(7.75, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Not cute",
  5531. height: math.unit(17, "feet")
  5532. },
  5533. {
  5534. name: "I said NOT",
  5535. height: math.unit(91, "feet")
  5536. },
  5537. {
  5538. name: "Please stop",
  5539. height: math.unit(560, "feet")
  5540. },
  5541. {
  5542. name: "What have you done",
  5543. height: math.unit(2200, "feet")
  5544. },
  5545. {
  5546. name: "Deer God",
  5547. height: math.unit(3.6, "miles")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5553. {
  5554. standing: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(300, "lbs"),
  5557. name: "Standing",
  5558. image: {
  5559. source: "./media/characters/psymon/standing.svg",
  5560. extra: 1888 / 1810,
  5561. bottom: 0.05
  5562. }
  5563. },
  5564. slithering: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(300, "lbs"),
  5567. name: "Slithering",
  5568. image: {
  5569. source: "./media/characters/psymon/slithering.svg",
  5570. extra: 1330 / 1224
  5571. }
  5572. },
  5573. slitheringAlt: {
  5574. height: math.unit(6, "feet"),
  5575. weight: math.unit(300, "lbs"),
  5576. name: "Slithering (Alt)",
  5577. image: {
  5578. source: "./media/characters/psymon/slithering-alt.svg",
  5579. extra: 1330 / 1224
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(11.25, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Large",
  5591. height: math.unit(27, "feet")
  5592. },
  5593. {
  5594. name: "Giant",
  5595. height: math.unit(87, "feet")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(365, "feet")
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(3, "miles")
  5604. },
  5605. {
  5606. name: "World Serpent",
  5607. height: math.unit(8000, "miles")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/daimos/front.svg",
  5620. extra: 4160 / 3897,
  5621. bottom: 0.021
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(8, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Big Dog",
  5633. height: math.unit(22, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(127, "feet")
  5638. },
  5639. {
  5640. name: "Megamacro",
  5641. height: math.unit(3600, "feet")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/blake/side.svg",
  5654. extra: 1212 / 1120,
  5655. bottom: 0.05
  5656. }
  5657. },
  5658. crouched: {
  5659. height: math.unit(6 * 0.57, "feet"),
  5660. weight: math.unit(180, "lbs"),
  5661. name: "Crouched",
  5662. image: {
  5663. source: "./media/characters/blake/crouched.svg",
  5664. extra: 840 / 587,
  5665. bottom: 0.04
  5666. }
  5667. },
  5668. bent: {
  5669. height: math.unit(6 * 0.75, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Bent",
  5672. image: {
  5673. source: "./media/characters/blake/bent.svg",
  5674. extra: 592 / 544,
  5675. bottom: 0.035
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8 + 1 / 6, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Backside",
  5687. height: math.unit(37, "feet")
  5688. },
  5689. {
  5690. name: "Subway Shredder",
  5691. height: math.unit(72, "feet")
  5692. },
  5693. {
  5694. name: "City Carver",
  5695. height: math.unit(1675, "feet")
  5696. },
  5697. {
  5698. name: "Tectonic Tweaker",
  5699. height: math.unit(2300, "miles")
  5700. },
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(6, "feet"),
  5708. weight: math.unit(180, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/guisetto/front.svg",
  5712. extra: 856 / 817,
  5713. bottom: 0.06
  5714. }
  5715. },
  5716. airborne: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(180, "lbs"),
  5719. name: "Airborne",
  5720. image: {
  5721. source: "./media/characters/guisetto/airborne.svg",
  5722. extra: 584 / 525
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(10 + 11 / 12, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Large",
  5734. height: math.unit(35, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(475, "feet")
  5739. },
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(180, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/luxor/front.svg",
  5751. extra: 2940 / 2152
  5752. }
  5753. },
  5754. back: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(180, "lbs"),
  5757. name: "Back",
  5758. image: {
  5759. source: "./media/characters/luxor/back.svg",
  5760. extra: 1083 / 960
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(5 + 5 / 6, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "Lamp",
  5772. height: math.unit(50, "feet")
  5773. },
  5774. {
  5775. name: "Lämp",
  5776. height: math.unit(300, "feet")
  5777. },
  5778. {
  5779. name: "The sun is a lamp",
  5780. height: math.unit(250000, "miles")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(50, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/huoyan/front.svg"
  5793. }
  5794. },
  5795. side: {
  5796. height: math.unit(6, "feet"),
  5797. weight: math.unit(180, "lbs"),
  5798. name: "Side",
  5799. image: {
  5800. source: "./media/characters/huoyan/side.svg"
  5801. }
  5802. },
  5803. },
  5804. [
  5805. {
  5806. name: "Chef",
  5807. height: math.unit(9, "feet")
  5808. },
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(65, "feet"),
  5812. default: true
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(780, "feet")
  5817. },
  5818. {
  5819. name: "Flaming Mountain",
  5820. height: math.unit(4.8, "miles")
  5821. },
  5822. {
  5823. name: "Celestial",
  5824. height: math.unit(765000, "miles")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(5 + 3 / 4, "feet"),
  5833. weight: math.unit(120, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/tails/front.svg"
  5837. }
  5838. }
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(5 + 3 / 4, "feet"),
  5844. default: true
  5845. }
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(4, "feet"),
  5853. weight: math.unit(50, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/rainy/front.svg"
  5857. }
  5858. }
  5859. },
  5860. [
  5861. {
  5862. name: "Macro",
  5863. height: math.unit(800, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(150, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/rainier/front.svg"
  5877. }
  5878. }
  5879. },
  5880. [
  5881. {
  5882. name: "Micro",
  5883. height: math.unit(2, "mm"),
  5884. default: true
  5885. }
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5890. {
  5891. front: {
  5892. height: math.unit(8 + 4/12, "feet"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/andy-renard/front.svg",
  5896. extra: 1839/1726,
  5897. bottom: 134/1973
  5898. }
  5899. },
  5900. back: {
  5901. height: math.unit(8 + 4/12, "feet"),
  5902. name: "Back",
  5903. image: {
  5904. source: "./media/characters/andy-renard/back.svg",
  5905. extra: 1838/1710,
  5906. bottom: 105/1943
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Tall",
  5913. height: math.unit(8 + 4/12, "feet")
  5914. },
  5915. {
  5916. name: "Mini Macro",
  5917. height: math.unit(15, "feet"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(100, "feet")
  5923. },
  5924. {
  5925. name: "Mega Macro",
  5926. height: math.unit(1000, "feet")
  5927. },
  5928. {
  5929. name: "Giga Macro",
  5930. height: math.unit(10, "miles")
  5931. },
  5932. {
  5933. name: "God Macro",
  5934. height: math.unit(1, "multiverse")
  5935. },
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(210, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/cimmaron/front-sfw.svg",
  5947. extra: 701 / 676,
  5948. bottom: 0.046
  5949. }
  5950. },
  5951. back: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(210, "lbs"),
  5954. name: "Back",
  5955. image: {
  5956. source: "./media/characters/cimmaron/back-sfw.svg",
  5957. extra: 701 / 676,
  5958. bottom: 0.046
  5959. }
  5960. },
  5961. frontNsfw: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(210, "lbs"),
  5964. name: "Front (NSFW)",
  5965. image: {
  5966. source: "./media/characters/cimmaron/front-nsfw.svg",
  5967. extra: 701 / 676,
  5968. bottom: 0.046
  5969. }
  5970. },
  5971. backNsfw: {
  5972. height: math.unit(6, "feet"),
  5973. weight: math.unit(210, "lbs"),
  5974. name: "Back (NSFW)",
  5975. image: {
  5976. source: "./media/characters/cimmaron/back-nsfw.svg",
  5977. extra: 701 / 676,
  5978. bottom: 0.046
  5979. }
  5980. },
  5981. dick: {
  5982. height: math.unit(1.714, "feet"),
  5983. name: "Dick",
  5984. image: {
  5985. source: "./media/characters/cimmaron/dick.svg"
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(6, "feet"),
  5993. default: true
  5994. },
  5995. {
  5996. name: "Macro Mayor",
  5997. height: math.unit(350, "meters")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(200, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/akari/front.svg",
  6010. extra: 962 / 901,
  6011. bottom: 0.04
  6012. }
  6013. }
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(5, "inches"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Normal",
  6023. height: math.unit(7, "feet")
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(140, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/cynosura/front.svg",
  6036. extra: 896 / 847
  6037. }
  6038. },
  6039. back: {
  6040. height: math.unit(6, "feet"),
  6041. weight: math.unit(140, "lbs"),
  6042. name: "Back",
  6043. image: {
  6044. source: "./media/characters/cynosura/back.svg",
  6045. extra: 1365 / 1250
  6046. }
  6047. },
  6048. },
  6049. [
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(4, "inches")
  6053. },
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(5.75, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Tall",
  6061. height: math.unit(10, "feet")
  6062. },
  6063. {
  6064. name: "Big",
  6065. height: math.unit(20, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(50, "feet")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(13 + 2/12, "feet"),
  6078. weight: math.unit(800, "kg"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/gin/front.svg",
  6082. extra: 1312/1191,
  6083. bottom: 45/1357
  6084. }
  6085. },
  6086. mouth: {
  6087. height: math.unit(2.39 * 1.8, "feet"),
  6088. name: "Mouth",
  6089. image: {
  6090. source: "./media/characters/gin/mouth.svg"
  6091. }
  6092. },
  6093. hand: {
  6094. height: math.unit(1.57 * 2.19, "feet"),
  6095. name: "Hand",
  6096. image: {
  6097. source: "./media/characters/gin/hand.svg"
  6098. }
  6099. },
  6100. foot: {
  6101. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6102. name: "Foot",
  6103. image: {
  6104. source: "./media/characters/gin/foot.svg"
  6105. }
  6106. },
  6107. sole: {
  6108. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6109. name: "Sole",
  6110. image: {
  6111. source: "./media/characters/gin/sole.svg"
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Very Small",
  6118. height: math.unit(13 + 2 / 12, "feet")
  6119. },
  6120. {
  6121. name: "Micro",
  6122. height: math.unit(600, "miles")
  6123. },
  6124. {
  6125. name: "Regular",
  6126. height: math.unit(20, "earths"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Macro",
  6131. height: math.unit(2.2, "solarradii")
  6132. },
  6133. {
  6134. name: "Teramacro",
  6135. height: math.unit(1.2, "galaxies")
  6136. },
  6137. {
  6138. name: "Omegamacro",
  6139. height: math.unit(200, "universes")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(6 + 1 / 6, "feet"),
  6148. weight: math.unit(178, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/guy/front.svg"
  6152. }
  6153. }
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(6 + 1 / 6, "feet"),
  6159. default: true
  6160. },
  6161. {
  6162. name: "Large",
  6163. height: math.unit(25 + 7 / 12, "feet")
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(60 + 9 / 12, "feet")
  6168. },
  6169. {
  6170. name: "Macro+",
  6171. height: math.unit(246, "feet")
  6172. },
  6173. {
  6174. name: "Macro++",
  6175. height: math.unit(878, "feet")
  6176. }
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(9, "feet"),
  6184. weight: math.unit(800, "lbs"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/tiberius/front.svg",
  6188. extra: 2295 / 2071
  6189. }
  6190. },
  6191. back: {
  6192. height: math.unit(9, "feet"),
  6193. weight: math.unit(800, "lbs"),
  6194. name: "Back",
  6195. image: {
  6196. source: "./media/characters/tiberius/back.svg",
  6197. extra: 2373 / 2160
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(9, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6211. {
  6212. front: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(600, "lbs"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/surgo/front.svg",
  6218. extra: 3591 / 2227
  6219. }
  6220. },
  6221. back: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(600, "lbs"),
  6224. name: "Back",
  6225. image: {
  6226. source: "./media/characters/surgo/back.svg",
  6227. extra: 3557 / 2228
  6228. }
  6229. },
  6230. laying: {
  6231. height: math.unit(6 * 0.85, "feet"),
  6232. weight: math.unit(600, "lbs"),
  6233. name: "Laying",
  6234. image: {
  6235. source: "./media/characters/surgo/laying.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(6, "feet"),
  6243. default: true
  6244. }
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6249. {
  6250. side: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(150, "lbs"),
  6253. name: "Side",
  6254. image: {
  6255. source: "./media/characters/cibus/side.svg",
  6256. extra: 800 / 400
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(6, "feet"),
  6264. default: true
  6265. }
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(240, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/nibbles/front.svg"
  6277. }
  6278. },
  6279. side: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(240, "lbs"),
  6282. name: "Side",
  6283. image: {
  6284. source: "./media/characters/nibbles/side.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(9, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6298. {
  6299. side: {
  6300. height: math.unit(5 + 1 / 6, "feet"),
  6301. weight: math.unit(130, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/rikky/side.svg",
  6305. extra: 851 / 801
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Normal",
  6312. height: math.unit(5 + 1 / 6, "feet")
  6313. },
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(152, "feet"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Megamacro",
  6321. height: math.unit(7, "miles")
  6322. }
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6327. {
  6328. side: {
  6329. height: math.unit(370, "cm"),
  6330. weight: math.unit(350, "lbs"),
  6331. name: "Side",
  6332. image: {
  6333. source: "./media/characters/malfressa/side.svg"
  6334. }
  6335. },
  6336. walking: {
  6337. height: math.unit(370, "cm"),
  6338. weight: math.unit(350, "lbs"),
  6339. name: "Walking",
  6340. image: {
  6341. source: "./media/characters/malfressa/walking.svg"
  6342. }
  6343. },
  6344. feral: {
  6345. height: math.unit(2500, "cm"),
  6346. weight: math.unit(100000, "lbs"),
  6347. name: "Feral",
  6348. image: {
  6349. source: "./media/characters/malfressa/feral.svg",
  6350. extra: 2108 / 837,
  6351. bottom: 0.02
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(370, "cm")
  6359. },
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(300, "meters"),
  6363. default: true
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(60, "kg"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/jaro/front.svg",
  6376. extra: 845/817,
  6377. bottom: 45/890
  6378. }
  6379. },
  6380. back: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(60, "kg"),
  6383. name: "Back",
  6384. image: {
  6385. source: "./media/characters/jaro/back.svg",
  6386. extra: 847/817,
  6387. bottom: 34/881
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Micro",
  6394. height: math.unit(7, "inches")
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(5.5, "feet"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Minimacro",
  6403. height: math.unit(20, "feet")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(200, "meters")
  6408. }
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(195, "lb"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/rogue/front.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Macro",
  6426. height: math.unit(90, "feet"),
  6427. default: true
  6428. },
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6433. {
  6434. front: {
  6435. height: math.unit(5 + 8 / 12, "feet"),
  6436. weight: math.unit(140, "lb"),
  6437. name: "Front",
  6438. image: {
  6439. source: "./media/characters/piper/front.svg",
  6440. extra: 3948/3655,
  6441. bottom: 0/3948
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(2, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5 + 8 / 12, "feet")
  6453. },
  6454. {
  6455. name: "Macro",
  6456. height: math.unit(250, "feet"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Megamacro",
  6461. height: math.unit(7, "miles")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(220, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/gemini/front.svg"
  6474. }
  6475. },
  6476. back: {
  6477. height: math.unit(6, "feet"),
  6478. weight: math.unit(220, "lb"),
  6479. name: "Back",
  6480. image: {
  6481. source: "./media/characters/gemini/back.svg"
  6482. }
  6483. },
  6484. kneeling: {
  6485. height: math.unit(6 / 1.5, "feet"),
  6486. weight: math.unit(220, "lb"),
  6487. name: "Kneeling",
  6488. image: {
  6489. source: "./media/characters/gemini/kneeling.svg",
  6490. bottom: 0.02
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(300, "meters"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(6900, "meters")
  6503. },
  6504. ]
  6505. ))
  6506. characterMakers.push(() => makeCharacter(
  6507. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6508. {
  6509. anthro: {
  6510. height: math.unit(2.35, "meters"),
  6511. weight: math.unit(73, "kg"),
  6512. name: "Anthro",
  6513. image: {
  6514. source: "./media/characters/alicia/anthro.svg",
  6515. extra: 2571 / 2385,
  6516. bottom: 75 / 2648
  6517. }
  6518. },
  6519. paw: {
  6520. height: math.unit(1.32, "feet"),
  6521. name: "Paw",
  6522. image: {
  6523. source: "./media/characters/alicia/paw.svg"
  6524. }
  6525. },
  6526. feral: {
  6527. height: math.unit(1.69, "meters"),
  6528. weight: math.unit(73, "kg"),
  6529. name: "Feral",
  6530. image: {
  6531. source: "./media/characters/alicia/feral.svg",
  6532. extra: 2123 / 1715,
  6533. bottom: 222 / 2349
  6534. }
  6535. },
  6536. },
  6537. [
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(2.35, "meters")
  6541. },
  6542. {
  6543. name: "Macro",
  6544. height: math.unit(60, "meters"),
  6545. default: true
  6546. },
  6547. {
  6548. name: "Megamacro",
  6549. height: math.unit(10000, "kilometers")
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6555. {
  6556. front: {
  6557. height: math.unit(7, "feet"),
  6558. weight: math.unit(250, "lbs"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/archy/front.svg"
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Micro",
  6568. height: math.unit(1, "inch")
  6569. },
  6570. {
  6571. name: "Shorty",
  6572. height: math.unit(5, "feet")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(7, "feet")
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(600, "meters"),
  6581. default: true
  6582. },
  6583. {
  6584. name: "Megamacro",
  6585. height: math.unit(1, "mile")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(1.65, "meters"),
  6594. weight: math.unit(74, "kg"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/berri/front.svg",
  6598. extra: 857 / 837,
  6599. bottom: 18 / 877
  6600. }
  6601. },
  6602. bum: {
  6603. height: math.unit(1.46, "feet"),
  6604. name: "Bum",
  6605. image: {
  6606. source: "./media/characters/berri/bum.svg"
  6607. }
  6608. },
  6609. mouth: {
  6610. height: math.unit(0.44, "feet"),
  6611. name: "Mouth",
  6612. image: {
  6613. source: "./media/characters/berri/mouth.svg"
  6614. }
  6615. },
  6616. paw: {
  6617. height: math.unit(0.826, "feet"),
  6618. name: "Paw",
  6619. image: {
  6620. source: "./media/characters/berri/paw.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(1.65, "meters")
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(60, "m"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Megamacro",
  6636. height: math.unit(9.213, "km")
  6637. },
  6638. {
  6639. name: "Planet Eater",
  6640. height: math.unit(489, "megameters")
  6641. },
  6642. {
  6643. name: "Teramacro",
  6644. height: math.unit(2471635000000, "meters")
  6645. },
  6646. {
  6647. name: "Examacro",
  6648. height: math.unit(8.0624e+26, "meters")
  6649. }
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.72, "meters"),
  6657. weight: math.unit(68, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/lexi/front.svg"
  6661. }
  6662. }
  6663. },
  6664. [
  6665. {
  6666. name: "Very Smol",
  6667. height: math.unit(10, "mm")
  6668. },
  6669. {
  6670. name: "Micro",
  6671. height: math.unit(6.8, "cm"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(1.72, "m")
  6677. }
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6682. {
  6683. front: {
  6684. height: math.unit(1.69, "meters"),
  6685. weight: math.unit(68, "kg"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/martin/front.svg",
  6689. extra: 596 / 581
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Micro",
  6696. height: math.unit(6.85, "cm"),
  6697. default: true
  6698. },
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(1.69, "m")
  6702. }
  6703. ]
  6704. ))
  6705. characterMakers.push(() => makeCharacter(
  6706. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6707. {
  6708. front: {
  6709. height: math.unit(1.69, "meters"),
  6710. weight: math.unit(68, "kg"),
  6711. name: "Front",
  6712. image: {
  6713. source: "./media/characters/juno/front.svg"
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Micro",
  6720. height: math.unit(7, "cm")
  6721. },
  6722. {
  6723. name: "Normal",
  6724. height: math.unit(1.89, "m")
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(353, "meters"),
  6729. default: true
  6730. }
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(1.93, "meters"),
  6738. weight: math.unit(83, "kg"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/samantha/front.svg"
  6742. }
  6743. },
  6744. frontClothed: {
  6745. height: math.unit(1.93, "meters"),
  6746. weight: math.unit(83, "kg"),
  6747. name: "Front (Clothed)",
  6748. image: {
  6749. source: "./media/characters/samantha/front-clothed.svg"
  6750. }
  6751. },
  6752. back: {
  6753. height: math.unit(1.93, "meters"),
  6754. weight: math.unit(83, "kg"),
  6755. name: "Back",
  6756. image: {
  6757. source: "./media/characters/samantha/back.svg"
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.93, "m")
  6765. },
  6766. {
  6767. name: "Macro",
  6768. height: math.unit(74, "meters"),
  6769. default: true
  6770. },
  6771. {
  6772. name: "Macro+",
  6773. height: math.unit(223, "meters"),
  6774. },
  6775. {
  6776. name: "Megamacro",
  6777. height: math.unit(8381, "meters"),
  6778. },
  6779. {
  6780. name: "Megamacro+",
  6781. height: math.unit(12000, "kilometers")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(1.92, "meters"),
  6790. weight: math.unit(80, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/dr-clay/front.svg"
  6794. }
  6795. },
  6796. frontClothed: {
  6797. height: math.unit(1.92, "meters"),
  6798. weight: math.unit(80, "kg"),
  6799. name: "Front (Clothed)",
  6800. image: {
  6801. source: "./media/characters/dr-clay/front-clothed.svg"
  6802. }
  6803. }
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(1.92, "m")
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(214, "meters"),
  6813. default: true
  6814. },
  6815. {
  6816. name: "Macro+",
  6817. height: math.unit(12.237, "meters"),
  6818. },
  6819. {
  6820. name: "Megamacro",
  6821. height: math.unit(557, "megameters"),
  6822. },
  6823. {
  6824. name: "Unimaginable",
  6825. height: math.unit(120e9, "lightyears")
  6826. },
  6827. ]
  6828. ))
  6829. characterMakers.push(() => makeCharacter(
  6830. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6831. {
  6832. front: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(80, "kg"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6838. }
  6839. }
  6840. },
  6841. [
  6842. {
  6843. name: "Teramacro",
  6844. height: math.unit(500000, "lightyears"),
  6845. default: true
  6846. },
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6851. {
  6852. crux: {
  6853. height: math.unit(2, "meters"),
  6854. weight: math.unit(150, "kg"),
  6855. name: "Crux",
  6856. image: {
  6857. source: "./media/characters/vemus/crux.svg",
  6858. extra: 1074/936,
  6859. bottom: 23/1097
  6860. }
  6861. },
  6862. skunkTanuki: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(150, "kg"),
  6865. name: "Skunk-Tanuki",
  6866. image: {
  6867. source: "./media/characters/vemus/skunk-tanuki.svg",
  6868. extra: 926/893,
  6869. bottom: 20/946
  6870. }
  6871. },
  6872. },
  6873. [
  6874. {
  6875. name: "Normal",
  6876. height: math.unit(3.75, "meters"),
  6877. default: true
  6878. },
  6879. {
  6880. name: "Big",
  6881. height: math.unit(8, "meters")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(100, "meters")
  6886. },
  6887. {
  6888. name: "Macro+",
  6889. height: math.unit(1500, "meters")
  6890. },
  6891. {
  6892. name: "Stellar",
  6893. height: math.unit(14e8, "meters")
  6894. },
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(2, "meters"),
  6902. weight: math.unit(70, "kg"),
  6903. name: "Front",
  6904. image: {
  6905. source: "./media/characters/beherit/front.svg",
  6906. extra: 1234/1109,
  6907. bottom: 55/1289
  6908. }
  6909. }
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(6, "feet")
  6915. },
  6916. {
  6917. name: "Lorg",
  6918. height: math.unit(25, "feet"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Lorger",
  6923. height: math.unit(75, "feet")
  6924. },
  6925. {
  6926. name: "Macro",
  6927. height: math.unit(200, "meters")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(2, "meters"),
  6936. weight: math.unit(150, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/everett/front.svg",
  6940. extra: 1017/866,
  6941. bottom: 86/1103
  6942. }
  6943. },
  6944. paw: {
  6945. height: math.unit(2 / 3.6, "meters"),
  6946. name: "Paw",
  6947. image: {
  6948. source: "./media/characters/everett/paw.svg"
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(15, "feet"),
  6956. default: true
  6957. },
  6958. {
  6959. name: "Lorg",
  6960. height: math.unit(70, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Lorger",
  6965. height: math.unit(250, "feet")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(500, "meters")
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6975. {
  6976. front: {
  6977. height: math.unit(2, "meters"),
  6978. weight: math.unit(86, "kg"),
  6979. name: "Front",
  6980. image: {
  6981. source: "./media/characters/rose/front.svg",
  6982. extra: 1785/1636,
  6983. bottom: 30/1815
  6984. }
  6985. },
  6986. frontSporty: {
  6987. height: math.unit(2, "meters"),
  6988. weight: math.unit(86, "kg"),
  6989. name: "Front (Sporty)",
  6990. image: {
  6991. source: "./media/characters/rose/front-sporty.svg",
  6992. extra: 350/335,
  6993. bottom: 10/360
  6994. }
  6995. },
  6996. frontAlt: {
  6997. height: math.unit(1.6, "meters"),
  6998. weight: math.unit(86, "kg"),
  6999. name: "Front (Alt)",
  7000. image: {
  7001. source: "./media/characters/rose/front-alt.svg",
  7002. extra: 299/283,
  7003. bottom: 3/302
  7004. }
  7005. },
  7006. plush: {
  7007. height: math.unit(2, "meters"),
  7008. weight: math.unit(86/3, "kg"),
  7009. name: "Plush",
  7010. image: {
  7011. source: "./media/characters/rose/plush.svg",
  7012. extra: 361/337,
  7013. bottom: 11/372
  7014. }
  7015. },
  7016. },
  7017. [
  7018. {
  7019. name: "True Micro",
  7020. height: math.unit(9, "cm")
  7021. },
  7022. {
  7023. name: "Micro",
  7024. height: math.unit(16, "cm")
  7025. },
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(1.85, "meters"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Mini-Macro",
  7033. height: math.unit(5, "meters")
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(15, "meters")
  7038. },
  7039. {
  7040. name: "True Macro",
  7041. height: math.unit(40, "meters")
  7042. },
  7043. {
  7044. name: "City Scale",
  7045. height: math.unit(1, "km")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(2, "meters"),
  7054. weight: math.unit(350, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/regal/front.svg"
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(350, "lbs"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/regal/back.svg"
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(350, "feet"),
  7073. default: true
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(4 + 11 / 12, "feet"),
  7082. weight: math.unit(100, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/opal/front.svg"
  7086. }
  7087. },
  7088. frontAlt: {
  7089. height: math.unit(4 + 11 / 12, "feet"),
  7090. weight: math.unit(100, "lbs"),
  7091. name: "Front (Alt)",
  7092. image: {
  7093. source: "./media/characters/opal/front-alt.svg"
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Small",
  7100. height: math.unit(4 + 11 / 12, "feet")
  7101. },
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(20, "feet"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(120, "feet")
  7110. },
  7111. {
  7112. name: "Megamacro",
  7113. height: math.unit(80, "miles")
  7114. },
  7115. {
  7116. name: "True Size",
  7117. height: math.unit(100000, "lightyears")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(200, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/vector-wuff/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(2.8, "meters")
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(450, "meters"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Megamacro",
  7145. height: math.unit(15, "kilometers")
  7146. }
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(256, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/dannik/front.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(69.57, "meters"),
  7165. default: true
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(6, "feet"),
  7174. weight: math.unit(120, "lbs"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/azura-saharah/front.svg"
  7178. }
  7179. },
  7180. back: {
  7181. height: math.unit(6, "feet"),
  7182. weight: math.unit(120, "lbs"),
  7183. name: "Back",
  7184. image: {
  7185. source: "./media/characters/azura-saharah/back.svg"
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(100, "feet"),
  7193. default: true
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7199. {
  7200. side: {
  7201. height: math.unit(5 + 4 / 12, "feet"),
  7202. weight: math.unit(163, "lbs"),
  7203. name: "Side",
  7204. image: {
  7205. source: "./media/characters/kennedy/side.svg"
  7206. }
  7207. }
  7208. },
  7209. [
  7210. {
  7211. name: "Standard Doggo",
  7212. height: math.unit(5 + 4 / 12, "feet")
  7213. },
  7214. {
  7215. name: "Big Doggo",
  7216. height: math.unit(25 + 3 / 12, "feet"),
  7217. default: true
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(5 + 5/12, "feet"),
  7226. weight: math.unit(100, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/odios-de-lunar/front.svg",
  7230. extra: 1468/1323,
  7231. bottom: 22/1490
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Micro",
  7238. height: math.unit(3, "inches")
  7239. },
  7240. {
  7241. name: "Normal",
  7242. height: math.unit(5.5, "feet"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Macro",
  7247. height: math.unit(100, "feet")
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7253. {
  7254. back: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(220, "lbs"),
  7257. name: "Back",
  7258. image: {
  7259. source: "./media/characters/mandake/back.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(7, "feet"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(78, "feet")
  7272. },
  7273. {
  7274. name: "Macro+",
  7275. height: math.unit(300, "meters")
  7276. },
  7277. {
  7278. name: "Macro++",
  7279. height: math.unit(2400, "feet")
  7280. },
  7281. {
  7282. name: "Megamacro",
  7283. height: math.unit(5167, "meters")
  7284. },
  7285. {
  7286. name: "Gigamacro",
  7287. height: math.unit(41769, "miles")
  7288. },
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(120, "lbs"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/yozey/front.svg"
  7300. }
  7301. },
  7302. frontAlt: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(120, "lbs"),
  7305. name: "Front (Alt)",
  7306. image: {
  7307. source: "./media/characters/yozey/front-alt.svg"
  7308. }
  7309. },
  7310. side: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(120, "lbs"),
  7313. name: "Side",
  7314. image: {
  7315. source: "./media/characters/yozey/side.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Micro",
  7322. height: math.unit(3, "inches"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(6, "feet")
  7328. }
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7333. {
  7334. front: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(103, "lbs"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/valeska-voss/front.svg"
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Mini-Sized Sub",
  7346. height: math.unit(3.1, "inches")
  7347. },
  7348. {
  7349. name: "Mid-Sized Sub",
  7350. height: math.unit(6.2, "inches")
  7351. },
  7352. {
  7353. name: "Full-Sized Sub",
  7354. height: math.unit(9.3, "inches")
  7355. },
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(5 + 2 / 12, "foot"),
  7359. default: true
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(160, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/gene-zeta/front.svg",
  7372. extra: 3006 / 2826,
  7373. bottom: 182 / 3188
  7374. }
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(6, "inches")
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(5 + 11 / 12, "foot"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(140, "feet")
  7390. },
  7391. {
  7392. name: "Supercharged",
  7393. height: math.unit(2500, "feet")
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(350, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/razinox/front.svg",
  7406. extra: 1686 / 1548,
  7407. bottom: 28.2 / 1868
  7408. }
  7409. },
  7410. back: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(350, "lbs"),
  7413. name: "Back",
  7414. image: {
  7415. source: "./media/characters/razinox/back.svg",
  7416. extra: 1660 / 1590,
  7417. bottom: 15 / 1665
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(10 + 8 / 12, "foot")
  7425. },
  7426. {
  7427. name: "Minimacro",
  7428. height: math.unit(15, "foot")
  7429. },
  7430. {
  7431. name: "Macro",
  7432. height: math.unit(60, "foot"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Megamacro",
  7437. height: math.unit(5, "miles")
  7438. },
  7439. {
  7440. name: "Gigamacro",
  7441. height: math.unit(6000, "miles")
  7442. },
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7447. {
  7448. front: {
  7449. height: math.unit(6, "feet"),
  7450. weight: math.unit(150, "lbs"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/cobalt/front.svg"
  7454. }
  7455. }
  7456. },
  7457. [
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(8 + 1 / 12, "foot")
  7461. },
  7462. {
  7463. name: "Macro",
  7464. height: math.unit(111, "foot"),
  7465. default: true
  7466. },
  7467. {
  7468. name: "Supracosmic",
  7469. height: math.unit(1e42, "feet")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(140, "lbs"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/amanda/front.svg"
  7482. }
  7483. }
  7484. },
  7485. [
  7486. {
  7487. name: "Micro",
  7488. height: math.unit(5, "inches"),
  7489. default: true
  7490. },
  7491. ]
  7492. ))
  7493. characterMakers.push(() => makeCharacter(
  7494. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7495. {
  7496. front: {
  7497. height: math.unit(2.75, "meters"),
  7498. weight: math.unit(1200, "lb"),
  7499. name: "Front",
  7500. image: {
  7501. source: "./media/characters/teal/front.svg",
  7502. extra: 2463 / 2320,
  7503. bottom: 166 / 2629
  7504. }
  7505. },
  7506. back: {
  7507. height: math.unit(2.75, "meters"),
  7508. weight: math.unit(1200, "lb"),
  7509. name: "Back",
  7510. image: {
  7511. source: "./media/characters/teal/back.svg",
  7512. extra: 2580 / 2489,
  7513. bottom: 151 / 2731
  7514. }
  7515. },
  7516. sitting: {
  7517. height: math.unit(1.9, "meters"),
  7518. weight: math.unit(1200, "lb"),
  7519. name: "Sitting",
  7520. image: {
  7521. source: "./media/characters/teal/sitting.svg",
  7522. extra: 623 / 590,
  7523. bottom: 121 / 744
  7524. }
  7525. },
  7526. standing: {
  7527. height: math.unit(2.75, "meters"),
  7528. weight: math.unit(1200, "lb"),
  7529. name: "Standing",
  7530. image: {
  7531. source: "./media/characters/teal/standing.svg",
  7532. extra: 923 / 893,
  7533. bottom: 60 / 983
  7534. }
  7535. },
  7536. stretching: {
  7537. height: math.unit(3.65, "meters"),
  7538. weight: math.unit(1200, "lb"),
  7539. name: "Stretching",
  7540. image: {
  7541. source: "./media/characters/teal/stretching.svg",
  7542. extra: 1276 / 1244,
  7543. bottom: 0 / 1276
  7544. }
  7545. },
  7546. legged: {
  7547. height: math.unit(1.3, "meters"),
  7548. weight: math.unit(100, "lb"),
  7549. name: "Legged",
  7550. image: {
  7551. source: "./media/characters/teal/legged.svg",
  7552. extra: 462 / 437,
  7553. bottom: 24 / 486
  7554. }
  7555. },
  7556. naga: {
  7557. height: math.unit(5.4, "meters"),
  7558. weight: math.unit(4000, "lb"),
  7559. name: "Naga",
  7560. image: {
  7561. source: "./media/characters/teal/naga.svg",
  7562. extra: 1902 / 1858,
  7563. bottom: 0 / 1902
  7564. }
  7565. },
  7566. hand: {
  7567. height: math.unit(0.52, "meters"),
  7568. name: "Hand",
  7569. image: {
  7570. source: "./media/characters/teal/hand.svg"
  7571. }
  7572. },
  7573. maw: {
  7574. height: math.unit(0.43, "meters"),
  7575. name: "Maw",
  7576. image: {
  7577. source: "./media/characters/teal/maw.svg"
  7578. }
  7579. },
  7580. slit: {
  7581. height: math.unit(0.25, "meters"),
  7582. name: "Slit",
  7583. image: {
  7584. source: "./media/characters/teal/slit.svg"
  7585. }
  7586. },
  7587. },
  7588. [
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(2.75, "meters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Macro",
  7596. height: math.unit(300, "feet")
  7597. },
  7598. {
  7599. name: "Macro+",
  7600. height: math.unit(2000, "feet")
  7601. },
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7606. {
  7607. frontCat: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(180, "lbs"),
  7610. name: "Front (Cat)",
  7611. image: {
  7612. source: "./media/characters/ravin-amulet/front-cat.svg"
  7613. }
  7614. },
  7615. frontCatAlt: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(180, "lbs"),
  7618. name: "Front (Alt, Cat)",
  7619. image: {
  7620. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7621. }
  7622. },
  7623. frontWerewolf: {
  7624. height: math.unit(6 * 1.2, "feet"),
  7625. weight: math.unit(225, "lbs"),
  7626. name: "Front (Werewolf)",
  7627. image: {
  7628. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7629. }
  7630. },
  7631. backWerewolf: {
  7632. height: math.unit(6 * 1.2, "feet"),
  7633. weight: math.unit(225, "lbs"),
  7634. name: "Back (Werewolf)",
  7635. image: {
  7636. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Nano",
  7643. height: math.unit(1, "micrometer")
  7644. },
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(1, "inch")
  7648. },
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(6, "feet"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(60, "feet")
  7657. }
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(6, "feet"),
  7665. weight: math.unit(165, "lbs"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/fluoresce/front.svg"
  7669. }
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Micro",
  7675. height: math.unit(6, "cm")
  7676. },
  7677. {
  7678. name: "Normal",
  7679. height: math.unit(5 + 7 / 12, "feet"),
  7680. default: true
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(56, "feet")
  7685. },
  7686. {
  7687. name: "Megamacro",
  7688. height: math.unit(1.9, "miles")
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(9 + 6 / 12, "feet"),
  7697. weight: math.unit(523, "lbs"),
  7698. name: "Side",
  7699. image: {
  7700. source: "./media/characters/aurora/side.svg"
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(9 + 6 / 12, "feet")
  7708. },
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(96, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Macro+",
  7716. height: math.unit(243, "feet")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(194, "cm"),
  7725. weight: math.unit(90, "kg"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/ranek/front.svg"
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(194, "cm"),
  7733. weight: math.unit(90, "kg"),
  7734. name: "Side",
  7735. image: {
  7736. source: "./media/characters/ranek/side.svg"
  7737. }
  7738. },
  7739. back: {
  7740. height: math.unit(194, "cm"),
  7741. weight: math.unit(90, "kg"),
  7742. name: "Back",
  7743. image: {
  7744. source: "./media/characters/ranek/back.svg"
  7745. }
  7746. },
  7747. feral: {
  7748. height: math.unit(30, "cm"),
  7749. weight: math.unit(1.6, "lbs"),
  7750. name: "Feral",
  7751. image: {
  7752. source: "./media/characters/ranek/feral.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(194, "cm"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(100, "meters")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(5 + 6 / 12, "feet"),
  7773. weight: math.unit(153, "lbs"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/andrew-cooper/front.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Nano",
  7783. height: math.unit(1, "mm")
  7784. },
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches")
  7788. },
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(5 + 6 / 12, "feet"),
  7792. default: true
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(180, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/akane-sato/front.svg",
  7805. extra: 1219 / 1140
  7806. }
  7807. },
  7808. back: {
  7809. height: math.unit(6, "feet"),
  7810. weight: math.unit(180, "lbs"),
  7811. name: "Back",
  7812. image: {
  7813. source: "./media/characters/akane-sato/back.svg",
  7814. extra: 1219 / 1170
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(2.5, "meters")
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(250, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(25, "km")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(6, "feet"),
  7839. weight: math.unit(65, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/rook/front.svg",
  7843. extra: 960 / 950
  7844. }
  7845. }
  7846. },
  7847. [
  7848. {
  7849. name: "Normal",
  7850. height: math.unit(8.8, "feet")
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(88, "feet"),
  7855. default: true
  7856. },
  7857. {
  7858. name: "Megamacro",
  7859. height: math.unit(8, "miles")
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(12 + 2 / 12, "feet"),
  7868. weight: math.unit(808, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/prodigy/front.svg"
  7872. }
  7873. }
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(12 + 2 / 12, "feet"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(143, "feet")
  7884. },
  7885. {
  7886. name: "Macro+",
  7887. height: math.unit(400, "feet")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(225, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/daniel/front.svg"
  7900. }
  7901. },
  7902. leaning: {
  7903. height: math.unit(6, "feet"),
  7904. weight: math.unit(225, "lbs"),
  7905. name: "Leaning",
  7906. image: {
  7907. source: "./media/characters/daniel/leaning.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Macro",
  7914. height: math.unit(1000, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(6, "feet"),
  7924. weight: math.unit(88, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/chiros/front.svg",
  7928. extra: 306 / 226
  7929. }
  7930. },
  7931. side: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(88, "lbs"),
  7934. name: "Side",
  7935. image: {
  7936. source: "./media/characters/chiros/side.svg",
  7937. extra: 306 / 226
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(6, "cm"),
  7945. default: true
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7951. {
  7952. front: {
  7953. height: math.unit(6, "feet"),
  7954. weight: math.unit(100, "lbs"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/selka/front.svg",
  7958. extra: 947 / 887
  7959. }
  7960. }
  7961. },
  7962. [
  7963. {
  7964. name: "Normal",
  7965. height: math.unit(5, "cm"),
  7966. default: true
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(8 + 3 / 12, "feet"),
  7975. weight: math.unit(424, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/verin/front.svg",
  7979. extra: 1845 / 1550
  7980. }
  7981. },
  7982. frontArmored: {
  7983. height: math.unit(8 + 3 / 12, "feet"),
  7984. weight: math.unit(424, "lbs"),
  7985. name: "Front (Armored)",
  7986. image: {
  7987. source: "./media/characters/verin/front-armor.svg",
  7988. extra: 1845 / 1550,
  7989. bottom: 0.01
  7990. }
  7991. },
  7992. back: {
  7993. height: math.unit(8 + 3 / 12, "feet"),
  7994. weight: math.unit(424, "lbs"),
  7995. name: "Back",
  7996. image: {
  7997. source: "./media/characters/verin/back.svg",
  7998. bottom: 0.1,
  7999. extra: 1
  8000. }
  8001. },
  8002. foot: {
  8003. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8004. name: "Foot",
  8005. image: {
  8006. source: "./media/characters/verin/foot.svg"
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(8 + 3 / 12, "feet")
  8014. },
  8015. {
  8016. name: "Minimacro",
  8017. height: math.unit(21, "feet"),
  8018. default: true
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(626, "feet")
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(2.718, "meters"),
  8031. weight: math.unit(150, "lbs"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/sovrim-terraquian/front.svg",
  8035. extra: 1752/1689,
  8036. bottom: 36/1788
  8037. }
  8038. },
  8039. back: {
  8040. height: math.unit(2.718, "meters"),
  8041. weight: math.unit(150, "lbs"),
  8042. name: "Back",
  8043. image: {
  8044. source: "./media/characters/sovrim-terraquian/back.svg",
  8045. extra: 1698/1657,
  8046. bottom: 58/1756
  8047. }
  8048. },
  8049. tongue: {
  8050. height: math.unit(2.865, "feet"),
  8051. name: "Tongue",
  8052. image: {
  8053. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8054. }
  8055. },
  8056. hand: {
  8057. height: math.unit(1.61, "feet"),
  8058. name: "Hand",
  8059. image: {
  8060. source: "./media/characters/sovrim-terraquian/hand.svg"
  8061. }
  8062. },
  8063. foot: {
  8064. height: math.unit(1.05, "feet"),
  8065. name: "Foot",
  8066. image: {
  8067. source: "./media/characters/sovrim-terraquian/foot.svg"
  8068. }
  8069. },
  8070. footAlt: {
  8071. height: math.unit(0.88, "feet"),
  8072. name: "Foot (Alt)",
  8073. image: {
  8074. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Micro",
  8081. height: math.unit(2, "inches")
  8082. },
  8083. {
  8084. name: "Small",
  8085. height: math.unit(1, "meter")
  8086. },
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(Math.E, "meters"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Macro",
  8094. height: math.unit(20, "meters")
  8095. },
  8096. {
  8097. name: "Macro+",
  8098. height: math.unit(400, "meters")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(7, "feet"),
  8107. weight: math.unit(489, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/reece-silvermane/front.svg",
  8111. bottom: 0.02,
  8112. extra: 1
  8113. }
  8114. },
  8115. },
  8116. [
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(1.5, "miles"),
  8120. default: true
  8121. },
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(78, "kg"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/kane/front.svg",
  8133. extra: 978 / 899
  8134. }
  8135. },
  8136. },
  8137. [
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(2.1, "m"),
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(1, "km"),
  8145. default: true
  8146. },
  8147. ]
  8148. ))
  8149. characterMakers.push(() => makeCharacter(
  8150. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8151. {
  8152. front: {
  8153. height: math.unit(6, "feet"),
  8154. weight: math.unit(200, "kg"),
  8155. name: "Front",
  8156. image: {
  8157. source: "./media/characters/tegon/front.svg",
  8158. bottom: 0.01,
  8159. extra: 1
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(1, "inch")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(6 + 3 / 12, "feet"),
  8171. default: true
  8172. },
  8173. {
  8174. name: "Macro",
  8175. height: math.unit(300, "feet")
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(69, "miles")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8185. {
  8186. side: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(2304, "lbs"),
  8189. name: "Side",
  8190. image: {
  8191. source: "./media/characters/arcturax/side.svg",
  8192. extra: 790 / 376,
  8193. bottom: 0.01
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Micro",
  8200. height: math.unit(2, "inch")
  8201. },
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(6, "feet")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(39, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Megamacro",
  8213. height: math.unit(7, "miles")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8219. {
  8220. front: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(50, "lbs"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/sentri/front.svg",
  8226. extra: 1750 / 1570,
  8227. bottom: 0.025
  8228. }
  8229. },
  8230. frontAlt: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(50, "lbs"),
  8233. name: "Front (Alt)",
  8234. image: {
  8235. source: "./media/characters/sentri/front-alt.svg",
  8236. extra: 1750 / 1570,
  8237. bottom: 0.025
  8238. }
  8239. },
  8240. },
  8241. [
  8242. {
  8243. name: "Normal",
  8244. height: math.unit(15, "feet"),
  8245. default: true
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(2500, "feet")
  8250. }
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(5 + 8 / 12, "feet"),
  8258. weight: math.unit(130, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/corvin/front.svg",
  8262. extra: 1803 / 1629
  8263. }
  8264. },
  8265. frontShirt: {
  8266. height: math.unit(5 + 8 / 12, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Front (Shirt)",
  8269. image: {
  8270. source: "./media/characters/corvin/front-shirt.svg",
  8271. extra: 1803 / 1629
  8272. }
  8273. },
  8274. frontPoncho: {
  8275. height: math.unit(5 + 8 / 12, "feet"),
  8276. weight: math.unit(130, "lbs"),
  8277. name: "Front (Poncho)",
  8278. image: {
  8279. source: "./media/characters/corvin/front-poncho.svg",
  8280. extra: 1803 / 1629
  8281. }
  8282. },
  8283. side: {
  8284. height: math.unit(5 + 8 / 12, "feet"),
  8285. weight: math.unit(130, "lbs"),
  8286. name: "Side",
  8287. image: {
  8288. source: "./media/characters/corvin/side.svg",
  8289. extra: 1012 / 945
  8290. }
  8291. },
  8292. back: {
  8293. height: math.unit(5 + 8 / 12, "feet"),
  8294. weight: math.unit(130, "lbs"),
  8295. name: "Back",
  8296. image: {
  8297. source: "./media/characters/corvin/back.svg",
  8298. extra: 1803 / 1629
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Micro",
  8305. height: math.unit(3, "inches")
  8306. },
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(5 + 8 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(300, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Megamacro",
  8318. height: math.unit(500, "miles")
  8319. }
  8320. ]
  8321. ))
  8322. characterMakers.push(() => makeCharacter(
  8323. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8324. {
  8325. front: {
  8326. height: math.unit(6, "feet"),
  8327. weight: math.unit(135, "lbs"),
  8328. name: "Front",
  8329. image: {
  8330. source: "./media/characters/q/front.svg",
  8331. extra: 854 / 752,
  8332. bottom: 0.005
  8333. }
  8334. },
  8335. back: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Back",
  8339. image: {
  8340. source: "./media/characters/q/back.svg",
  8341. extra: 854 / 752
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Macro",
  8348. height: math.unit(90, "feet"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Extra Macro",
  8353. height: math.unit(300, "feet"),
  8354. },
  8355. {
  8356. name: "BIG WALF",
  8357. height: math.unit(750, "feet"),
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(150, "lbs"),
  8367. name: "Front",
  8368. image: {
  8369. source: "./media/characters/carley/front.svg",
  8370. extra: 3927 / 3540,
  8371. bottom: 29.2 / 735
  8372. }
  8373. }
  8374. },
  8375. [
  8376. {
  8377. name: "Normal",
  8378. height: math.unit(6 + 3 / 12, "feet")
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(185, "feet"),
  8383. default: true
  8384. },
  8385. {
  8386. name: "Megamacro",
  8387. height: math.unit(8, "miles"),
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(3, "feet"),
  8396. weight: math.unit(28, "lbs"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/citrine/front.svg"
  8400. }
  8401. }
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(3, "feet"),
  8407. default: true
  8408. }
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8413. {
  8414. front: {
  8415. height: math.unit(14, "feet"),
  8416. weight: math.unit(1450, "kg"),
  8417. capacity: math.unit(15, "people"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/aura-starwind/front.svg",
  8421. extra: 1440/1327,
  8422. bottom: 11/1451
  8423. }
  8424. },
  8425. side: {
  8426. height: math.unit(14, "feet"),
  8427. weight: math.unit(1450, "kg"),
  8428. capacity: math.unit(15, "people"),
  8429. name: "Side",
  8430. image: {
  8431. source: "./media/characters/aura-starwind/side.svg",
  8432. extra: 1654 / 1497
  8433. }
  8434. },
  8435. taur: {
  8436. height: math.unit(18, "feet"),
  8437. weight: math.unit(5500, "kg"),
  8438. capacity: math.unit(50, "people"),
  8439. name: "Taur",
  8440. image: {
  8441. source: "./media/characters/aura-starwind/taur.svg",
  8442. extra: 1760 / 1650
  8443. }
  8444. },
  8445. feral: {
  8446. height: math.unit(46, "feet"),
  8447. weight: math.unit(25000, "kg"),
  8448. capacity: math.unit(120, "people"),
  8449. name: "Feral",
  8450. image: {
  8451. source: "./media/characters/aura-starwind/feral.svg"
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(14, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(50, "meters")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(5000, "meters")
  8468. },
  8469. {
  8470. name: "Gigamacro",
  8471. height: math.unit(100000, "kilometers")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(2 + 7 / 12, "feet"),
  8480. weight: math.unit(32, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/rivet/front.svg",
  8484. extra: 1716 / 1658,
  8485. bottom: 0.03
  8486. }
  8487. },
  8488. foot: {
  8489. height: math.unit(0.551, "feet"),
  8490. name: "Rivet's Foot",
  8491. image: {
  8492. source: "./media/characters/rivet/foot.svg"
  8493. },
  8494. rename: true
  8495. }
  8496. },
  8497. [
  8498. {
  8499. name: "Micro",
  8500. height: math.unit(1.5, "inches"),
  8501. },
  8502. {
  8503. name: "Normal",
  8504. height: math.unit(2 + 7 / 12, "feet"),
  8505. default: true
  8506. },
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(85, "feet")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(2.2, "km")
  8514. }
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(5 + 9 / 12, "feet"),
  8522. weight: math.unit(150, "lbs"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/coffee/front.svg",
  8526. extra: 3666 / 3032,
  8527. bottom: 0.04
  8528. }
  8529. },
  8530. foot: {
  8531. height: math.unit(1.29, "feet"),
  8532. name: "Foot",
  8533. image: {
  8534. source: "./media/characters/coffee/foot.svg"
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Micro",
  8541. height: math.unit(2, "inches"),
  8542. },
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(5 + 9 / 12, "feet"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Macro",
  8550. height: math.unit(800, "feet")
  8551. },
  8552. {
  8553. name: "Megamacro",
  8554. height: math.unit(25, "miles")
  8555. }
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(200, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/chari-gal/front.svg",
  8567. extra: 1568 / 1385,
  8568. bottom: 0.047
  8569. }
  8570. },
  8571. gigantamax: {
  8572. height: math.unit(6 * 16, "feet"),
  8573. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8574. name: "Gigantamax",
  8575. image: {
  8576. source: "./media/characters/chari-gal/gigantamax.svg",
  8577. extra: 1124 / 888,
  8578. bottom: 0.03
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(5 + 7 / 12, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(200, "feet"),
  8590. default: true
  8591. }
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(150, "lbs"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/nova/front.svg",
  8603. extra: 5000 / 4722,
  8604. bottom: 0.02
  8605. }
  8606. }
  8607. },
  8608. [
  8609. {
  8610. name: "Micro-",
  8611. height: math.unit(0.8, "inches")
  8612. },
  8613. {
  8614. name: "Micro",
  8615. height: math.unit(2, "inches"),
  8616. default: true
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(3 + 1 / 12, "feet"),
  8625. weight: math.unit(21.7, "lbs"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/argent/front.svg",
  8629. extra: 1471 / 1331,
  8630. bottom: 100.8 / 1575.5
  8631. }
  8632. }
  8633. },
  8634. [
  8635. {
  8636. name: "Micro",
  8637. height: math.unit(2, "inches")
  8638. },
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(3 + 1 / 12, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(120, "feet")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8652. {
  8653. lamp: {
  8654. height: math.unit(7 * 1559 / 989, "feet"),
  8655. name: "Magic Lamp",
  8656. image: {
  8657. source: "./media/characters/mira-al-cul/lamp.svg",
  8658. extra: 1617 / 1559
  8659. }
  8660. },
  8661. front: {
  8662. height: math.unit(7, "feet"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/mira-al-cul/front.svg",
  8666. extra: 1044 / 990
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Heavily Restricted",
  8673. height: math.unit(7 * 1559 / 989, "feet")
  8674. },
  8675. {
  8676. name: "Freshly Freed",
  8677. height: math.unit(50 * 1559 / 989, "feet")
  8678. },
  8679. {
  8680. name: "World Encompassing",
  8681. height: math.unit(10000 * 1559 / 989, "miles")
  8682. },
  8683. {
  8684. name: "Galactic",
  8685. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8686. },
  8687. {
  8688. name: "Palmed Universe",
  8689. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Multiversal Matriarch",
  8694. height: math.unit(8.87e10, "yottameters")
  8695. },
  8696. {
  8697. name: "Void Mother",
  8698. height: math.unit(3.14e110, "yottaparsecs")
  8699. },
  8700. {
  8701. name: "Toying with Transcendence",
  8702. height: math.unit(1e307, "meters")
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8708. {
  8709. front: {
  8710. height: math.unit(17 + 1 / 12, "feet"),
  8711. weight: math.unit(476.2 * 5, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/kuro-shi-uchū/front.svg",
  8715. extra: 2329 / 1835,
  8716. bottom: 0.02
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Micro",
  8723. height: math.unit(2, "inches")
  8724. },
  8725. {
  8726. name: "Normal",
  8727. height: math.unit(12, "meters")
  8728. },
  8729. {
  8730. name: "Planetary",
  8731. height: math.unit(0.00929, "AU"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Universal",
  8736. height: math.unit(20, "gigaparsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5 + 2 / 12, "feet"),
  8745. weight: math.unit(120, "lbs"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/katherine/front.svg",
  8749. extra: 2075 / 1969
  8750. }
  8751. },
  8752. dress: {
  8753. height: math.unit(5 + 2 / 12, "feet"),
  8754. weight: math.unit(120, "lbs"),
  8755. name: "Dress",
  8756. image: {
  8757. source: "./media/characters/katherine/dress.svg",
  8758. extra: 2258 / 2064
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Micro",
  8765. height: math.unit(1, "inches"),
  8766. default: true
  8767. },
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(5 + 2 / 12, "feet")
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(100, "meters")
  8775. },
  8776. {
  8777. name: "Megamacro",
  8778. height: math.unit(80, "miles")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(7 + 8 / 12, "feet"),
  8787. weight: math.unit(250, "lbs"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/yevis/front.svg",
  8791. extra: 1938 / 1755
  8792. }
  8793. }
  8794. },
  8795. [
  8796. {
  8797. name: "Mortal",
  8798. height: math.unit(7 + 8 / 12, "feet")
  8799. },
  8800. {
  8801. name: "Battle",
  8802. height: math.unit(25 + 11 / 12, "feet")
  8803. },
  8804. {
  8805. name: "Wrath",
  8806. height: math.unit(1654 + 11 / 12, "feet")
  8807. },
  8808. {
  8809. name: "Planet Destroyer",
  8810. height: math.unit(12000, "miles")
  8811. },
  8812. {
  8813. name: "Galaxy Conqueror",
  8814. height: math.unit(1.45, "zettameters"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Universal War",
  8819. height: math.unit(184, "gigaparsecs")
  8820. },
  8821. {
  8822. name: "Eternity War",
  8823. height: math.unit(1.98e55, "yottaparsecs")
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(5 + 8 / 12, "feet"),
  8832. weight: math.unit(63, "kg"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/xavier/front.svg",
  8836. extra: 944 / 883
  8837. }
  8838. },
  8839. frontStretch: {
  8840. height: math.unit(5 + 8 / 12, "feet"),
  8841. weight: math.unit(63, "kg"),
  8842. name: "Stretching",
  8843. image: {
  8844. source: "./media/characters/xavier/front-stretch.svg",
  8845. extra: 962 / 820
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(5 + 8 / 12, "feet")
  8853. },
  8854. {
  8855. name: "Macro",
  8856. height: math.unit(100, "meters"),
  8857. default: true
  8858. },
  8859. {
  8860. name: "McLargeHuge",
  8861. height: math.unit(10, "miles")
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(5 + 5 / 12, "feet"),
  8870. weight: math.unit(150, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/joshii/front.svg",
  8874. extra: 765 / 653,
  8875. bottom: 51 / 816
  8876. }
  8877. },
  8878. foot: {
  8879. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8880. name: "Foot",
  8881. image: {
  8882. source: "./media/characters/joshii/foot.svg"
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(2, "inches"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 5 / 12, "feet")
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(785, "feet")
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(24.5, "miles")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(150, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/goddess-elizabeth/front.svg",
  8915. extra: 1800 / 1525,
  8916. bottom: 0.005
  8917. }
  8918. },
  8919. foot: {
  8920. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8921. name: "Foot",
  8922. image: {
  8923. source: "./media/characters/goddess-elizabeth/foot.svg"
  8924. }
  8925. },
  8926. mouth: {
  8927. height: math.unit(6, "feet"),
  8928. name: "Mouth",
  8929. image: {
  8930. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(12, "feet")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(80, "miles"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(15000, "parsecs")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(5 + 9 / 12, "feet"),
  8955. weight: math.unit(144, "lb"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/kara/front.svg"
  8959. }
  8960. },
  8961. feet: {
  8962. height: math.unit(6 / 6.765, "feet"),
  8963. name: "Kara's Feet",
  8964. rename: true,
  8965. image: {
  8966. source: "./media/characters/kara/feet.svg"
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(5 + 9 / 12, "feet")
  8974. },
  8975. {
  8976. name: "Macro",
  8977. height: math.unit(174, "feet"),
  8978. default: true
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(18, "feet"),
  8987. weight: math.unit(4050, "lb"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/tyrone/front.svg",
  8991. extra: 2405 / 2270,
  8992. bottom: 182 / 2587
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(18, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(300, "feet")
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(15, "km")
  9009. },
  9010. {
  9011. name: "Gigamacro",
  9012. height: math.unit(500, "km")
  9013. },
  9014. {
  9015. name: "Teramacro",
  9016. height: math.unit(0.5, "gigameters")
  9017. },
  9018. {
  9019. name: "Omnimacro",
  9020. height: math.unit(1e252, "yottauniverse")
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(7 + 8 / 12, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/danny/front.svg",
  9033. extra: 1490 / 1350
  9034. }
  9035. },
  9036. back: {
  9037. height: math.unit(7 + 8 / 12, "feet"),
  9038. weight: math.unit(120, "lb"),
  9039. name: "Back",
  9040. image: {
  9041. source: "./media/characters/danny/back.svg",
  9042. extra: 1490 / 1350
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(7 + 8 / 12, "feet"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(3.5, "inches"),
  9059. weight: math.unit(19, "grams"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/mallow/front.svg",
  9063. extra: 471 / 431
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(3.5, "inches"),
  9068. weight: math.unit(19, "grams"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/mallow/back.svg",
  9072. extra: 471 / 431
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(3.5, "inches"),
  9080. default: true
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(9, "feet"),
  9089. weight: math.unit(230, "kg"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/starry-aqua/front.svg"
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(9, "feet"),
  9097. weight: math.unit(230, "kg"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/starry-aqua/back.svg"
  9101. }
  9102. },
  9103. hand: {
  9104. height: math.unit(9 * 0.1168, "feet"),
  9105. name: "Hand",
  9106. image: {
  9107. source: "./media/characters/starry-aqua/hand.svg"
  9108. }
  9109. },
  9110. foot: {
  9111. height: math.unit(9 * 0.18, "feet"),
  9112. name: "Foot",
  9113. image: {
  9114. source: "./media/characters/starry-aqua/foot.svg"
  9115. }
  9116. }
  9117. },
  9118. [
  9119. {
  9120. name: "Micro",
  9121. height: math.unit(3, "inches")
  9122. },
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(9, "feet")
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(300, "feet"),
  9130. default: true
  9131. },
  9132. {
  9133. name: "Megamacro",
  9134. height: math.unit(3200, "feet")
  9135. }
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9140. {
  9141. front: {
  9142. height: math.unit(15, "feet"),
  9143. weight: math.unit(5026, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/luka-towers/front.svg",
  9147. extra: 1269/1133,
  9148. bottom: 51/1320
  9149. }
  9150. },
  9151. },
  9152. [
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(15, "feet"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Minimacro",
  9160. height: math.unit(25, "feet")
  9161. },
  9162. {
  9163. name: "Macro",
  9164. height: math.unit(320, "feet")
  9165. },
  9166. {
  9167. name: "Megamacro",
  9168. height: math.unit(35000, "feet")
  9169. },
  9170. {
  9171. name: "Gigamacro",
  9172. height: math.unit(4000, "miles")
  9173. },
  9174. {
  9175. name: "Teramacro",
  9176. height: math.unit(15000, "miles")
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(6, "feet"),
  9185. weight: math.unit(150, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/natalie-nightring/front.svg",
  9189. extra: 1,
  9190. bottom: 0.06
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Uh Oh",
  9197. height: math.unit(0.1, "mm")
  9198. },
  9199. {
  9200. name: "Small",
  9201. height: math.unit(3, "inches")
  9202. },
  9203. {
  9204. name: "Human Scale",
  9205. height: math.unit(6, "feet")
  9206. },
  9207. {
  9208. name: "Librarian",
  9209. height: math.unit(50, "feet"),
  9210. default: true
  9211. },
  9212. {
  9213. name: "Immense",
  9214. height: math.unit(200, "miles")
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9220. {
  9221. front: {
  9222. height: math.unit(6, "feet"),
  9223. weight: math.unit(180, "lbs"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/danni-rosie/front.svg",
  9227. extra: 1260 / 1128,
  9228. bottom: 0.022
  9229. }
  9230. },
  9231. },
  9232. [
  9233. {
  9234. name: "Micro",
  9235. height: math.unit(2, "inches"),
  9236. default: true
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 9 / 12, "feet"),
  9245. weight: math.unit(220, "lb"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/samantha-kruse/front.svg",
  9249. extra: (985 / 935),
  9250. bottom: 0.03
  9251. }
  9252. },
  9253. frontUndressed: {
  9254. height: math.unit(5 + 9 / 12, "feet"),
  9255. weight: math.unit(220, "lb"),
  9256. name: "Front (Undressed)",
  9257. image: {
  9258. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9259. extra: (973 / 923),
  9260. bottom: 0.025
  9261. }
  9262. },
  9263. fat: {
  9264. height: math.unit(5 + 9 / 12, "feet"),
  9265. weight: math.unit(900, "lb"),
  9266. name: "Front (Fat)",
  9267. image: {
  9268. source: "./media/characters/samantha-kruse/fat.svg",
  9269. extra: 2688 / 2561
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(5 + 9 / 12, "feet"),
  9277. default: true
  9278. }
  9279. ]
  9280. ))
  9281. characterMakers.push(() => makeCharacter(
  9282. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9283. {
  9284. back: {
  9285. height: math.unit(5 + 4 / 12, "feet"),
  9286. weight: math.unit(4963, "lb"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/amelia-rosie/back.svg",
  9290. extra: 1113 / 963,
  9291. bottom: 0.01
  9292. }
  9293. },
  9294. },
  9295. [
  9296. {
  9297. name: "Level 0",
  9298. height: math.unit(5 + 4 / 12, "feet")
  9299. },
  9300. {
  9301. name: "Level 1",
  9302. height: math.unit(164597, "feet"),
  9303. default: true
  9304. },
  9305. {
  9306. name: "Level 2",
  9307. height: math.unit(956243, "miles")
  9308. },
  9309. {
  9310. name: "Level 3",
  9311. height: math.unit(29421709423, "miles")
  9312. },
  9313. {
  9314. name: "Level 4",
  9315. height: math.unit(154, "lightyears")
  9316. },
  9317. {
  9318. name: "Level 5",
  9319. height: math.unit(4738272, "lightyears")
  9320. },
  9321. {
  9322. name: "Level 6",
  9323. height: math.unit(145787152896, "lightyears")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 11 / 12, "feet"),
  9332. weight: math.unit(65, "kg"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/rook-kitara/front.svg",
  9336. extra: 1347 / 1274,
  9337. bottom: 0.005
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Totally Unfair",
  9344. height: math.unit(1.8, "mm")
  9345. },
  9346. {
  9347. name: "Lap Rookie",
  9348. height: math.unit(1.4, "feet")
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(5 + 11 / 12, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "How Did This Happen",
  9357. height: math.unit(80, "miles")
  9358. }
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(7, "feet"),
  9366. weight: math.unit(300, "lb"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/pisces/front.svg",
  9370. extra: 2255 / 2115,
  9371. bottom: 0.03
  9372. }
  9373. },
  9374. back: {
  9375. height: math.unit(7, "feet"),
  9376. weight: math.unit(300, "lb"),
  9377. name: "Back",
  9378. image: {
  9379. source: "./media/characters/pisces/back.svg",
  9380. extra: 2146 / 2055,
  9381. bottom: 0.04
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(7, "feet"),
  9389. default: true
  9390. },
  9391. {
  9392. name: "Swimming Pool",
  9393. height: math.unit(12.2, "meters")
  9394. },
  9395. {
  9396. name: "Olympic Swimming Pool",
  9397. height: math.unit(56.3, "meters")
  9398. },
  9399. {
  9400. name: "Lake Superior",
  9401. height: math.unit(93900, "meters")
  9402. },
  9403. {
  9404. name: "Mediterranean Sea",
  9405. height: math.unit(644457, "meters")
  9406. },
  9407. {
  9408. name: "World's Oceans",
  9409. height: math.unit(4567491, "meters")
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(2.3, "meters"),
  9418. weight: math.unit(120, "kg"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/zelas/front.svg"
  9422. }
  9423. },
  9424. side: {
  9425. height: math.unit(2.3, "meters"),
  9426. weight: math.unit(120, "kg"),
  9427. name: "Side",
  9428. image: {
  9429. source: "./media/characters/zelas/side.svg"
  9430. }
  9431. },
  9432. back: {
  9433. height: math.unit(2.3, "meters"),
  9434. weight: math.unit(120, "kg"),
  9435. name: "Back",
  9436. image: {
  9437. source: "./media/characters/zelas/back.svg"
  9438. }
  9439. },
  9440. foot: {
  9441. height: math.unit(1.116, "feet"),
  9442. name: "Foot",
  9443. image: {
  9444. source: "./media/characters/zelas/foot.svg"
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(2.3, "meters")
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(30, "meters"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9462. {
  9463. front: {
  9464. height: math.unit(1, "inch"),
  9465. weight: math.unit(0.21, "grams"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/talbot/front.svg",
  9469. extra: 594 / 544
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(1, "inch"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9483. {
  9484. front: {
  9485. height: math.unit(3 + 3 / 12, "feet"),
  9486. weight: math.unit(51.8, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/fliss/front.svg",
  9490. extra: 840 / 640
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Teeny Tiny",
  9497. height: math.unit(1, "mm")
  9498. },
  9499. {
  9500. name: "Small",
  9501. height: math.unit(1, "inch"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Standard Sylveon",
  9506. height: math.unit(3 + 3 / 12, "feet")
  9507. },
  9508. {
  9509. name: "Large Nuisance",
  9510. height: math.unit(33, "feet")
  9511. },
  9512. {
  9513. name: "City Filler",
  9514. height: math.unit(3000, "feet")
  9515. },
  9516. {
  9517. name: "New Horizon",
  9518. height: math.unit(6000, "miles")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(5, "cm"),
  9527. weight: math.unit(1.94, "g"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/fleta/front.svg",
  9531. extra: 835 / 803
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(5, "cm"),
  9536. weight: math.unit(1.94, "g"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/fleta/back.svg",
  9540. extra: 835 / 803
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(5, "cm"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(225, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/dominic/front.svg",
  9561. extra: 1770 / 1620,
  9562. bottom: 0.025
  9563. }
  9564. },
  9565. back: {
  9566. height: math.unit(6, "feet"),
  9567. weight: math.unit(225, "lb"),
  9568. name: "Back",
  9569. image: {
  9570. source: "./media/characters/dominic/back.svg",
  9571. extra: 1745 / 1620,
  9572. bottom: 0.065
  9573. }
  9574. },
  9575. },
  9576. [
  9577. {
  9578. name: "Nano",
  9579. height: math.unit(0.1, "mm")
  9580. },
  9581. {
  9582. name: "Micro-",
  9583. height: math.unit(1, "mm")
  9584. },
  9585. {
  9586. name: "Micro",
  9587. height: math.unit(4, "inches")
  9588. },
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(6 + 4 / 12, "feet"),
  9592. default: true
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(115, "feet")
  9597. },
  9598. {
  9599. name: "Macro+",
  9600. height: math.unit(955, "feet")
  9601. },
  9602. {
  9603. name: "Megamacro",
  9604. height: math.unit(8990, "feet")
  9605. },
  9606. {
  9607. name: "Gigmacro",
  9608. height: math.unit(9310, "miles")
  9609. },
  9610. {
  9611. name: "Teramacro",
  9612. height: math.unit(1567005010, "miles")
  9613. },
  9614. {
  9615. name: "Examacro",
  9616. height: math.unit(1425, "parsecs")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9622. {
  9623. front: {
  9624. height: math.unit(400, "feet"),
  9625. weight: math.unit(44444444, "lb"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/major-colonel/front.svg"
  9629. }
  9630. },
  9631. back: {
  9632. height: math.unit(400, "feet"),
  9633. weight: math.unit(44444444, "lb"),
  9634. name: "Back",
  9635. image: {
  9636. source: "./media/characters/major-colonel/back.svg"
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Macro",
  9643. height: math.unit(400, "feet"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9650. {
  9651. catFront: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(120, "lb"),
  9654. name: "Front (Cat Side)",
  9655. image: {
  9656. source: "./media/characters/axel-lycan/cat-front.svg",
  9657. extra: 430 / 402,
  9658. bottom: 43 / 472.35
  9659. }
  9660. },
  9661. catBack: {
  9662. height: math.unit(6, "feet"),
  9663. weight: math.unit(120, "lb"),
  9664. name: "Back (Cat Side)",
  9665. image: {
  9666. source: "./media/characters/axel-lycan/cat-back.svg",
  9667. extra: 447 / 419,
  9668. bottom: 23.3 / 469
  9669. }
  9670. },
  9671. wolfFront: {
  9672. height: math.unit(6, "feet"),
  9673. weight: math.unit(120, "lb"),
  9674. name: "Front (Wolf Side)",
  9675. image: {
  9676. source: "./media/characters/axel-lycan/wolf-front.svg",
  9677. extra: 485 / 456,
  9678. bottom: 19 / 504
  9679. }
  9680. },
  9681. wolfBack: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(120, "lb"),
  9684. name: "Back (Wolf Side)",
  9685. image: {
  9686. source: "./media/characters/axel-lycan/wolf-back.svg",
  9687. extra: 475 / 438,
  9688. bottom: 39.2 / 514
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(1, "km"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9702. {
  9703. front: {
  9704. height: math.unit(5 + 9 / 12, "feet"),
  9705. weight: math.unit(175, "lb"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/vanrel-hyena/front.svg",
  9709. extra: 1086 / 1010,
  9710. bottom: 0.04
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. default: true
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(6, "feet"),
  9727. weight: math.unit(103, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/abbott-absol/front.svg",
  9731. extra: 2010 / 1842
  9732. }
  9733. },
  9734. },
  9735. [
  9736. {
  9737. name: "Megamicro",
  9738. height: math.unit(0.1, "mm")
  9739. },
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(1, "inch")
  9743. },
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(6, "feet"),
  9747. default: true
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(264, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/hector/front.svg",
  9760. extra: 2280 / 2130,
  9761. bottom: 0.07
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(12.25, "foot"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(160, "feet")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/sal/front.svg",
  9786. extra: 1846 / 1699,
  9787. bottom: 0.04
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Megamacro",
  9794. height: math.unit(10, "miles"),
  9795. default: true
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9801. {
  9802. front: {
  9803. height: math.unit(3, "meters"),
  9804. weight: math.unit(450, "kg"),
  9805. name: "front",
  9806. image: {
  9807. source: "./media/characters/ranger/front.svg",
  9808. extra: 2401 / 2243,
  9809. bottom: 0.05
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(3, "meters"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(14, "feet"),
  9826. weight: math.unit(800, "kg"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/theresa/front.svg",
  9830. extra: 3575 / 3346,
  9831. bottom: 0.03
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Normal",
  9838. height: math.unit(14, "feet"),
  9839. default: true
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9845. {
  9846. front: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(3, "kg"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/ine/front.svg",
  9852. extra: 678 / 539,
  9853. bottom: 0.023
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(2.265, "feet"),
  9861. default: true
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(5, "feet"),
  9870. weight: math.unit(30, "kg"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/vial/front.svg",
  9874. extra: 1365 / 1277,
  9875. bottom: 0.04
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Normal",
  9882. height: math.unit(5, "feet"),
  9883. default: true
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9889. {
  9890. side: {
  9891. height: math.unit(3.4, "meters"),
  9892. weight: math.unit(1000, "lb"),
  9893. name: "Side",
  9894. image: {
  9895. source: "./media/characters/rovoska/side.svg",
  9896. extra: 4403 / 1515
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(3.4, "meters"),
  9904. default: true
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(8, "feet"),
  9913. weight: math.unit(315, "lb"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/gunner-rotthbauer/front.svg"
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(8, "feet"),
  9921. weight: math.unit(315, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/gunner-rotthbauer/back.svg"
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Micro",
  9931. height: math.unit(3.5, "inches")
  9932. },
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(8, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Macro",
  9940. height: math.unit(250, "feet")
  9941. },
  9942. {
  9943. name: "Megamacro",
  9944. height: math.unit(1, "AU")
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9950. {
  9951. front: {
  9952. height: math.unit(5 + 5 / 12, "feet"),
  9953. weight: math.unit(140, "lb"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/allatia/front.svg",
  9957. extra: 1227 / 1180,
  9958. bottom: 0.027
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(5 + 5 / 12, "feet")
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(250, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(8, "miles")
  9975. }
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(120, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/tene/front.svg",
  9987. extra: 1728 / 1578,
  9988. bottom: 0.022
  9989. }
  9990. },
  9991. stomping: {
  9992. height: math.unit(2.025, "meters"),
  9993. weight: math.unit(120, "lb"),
  9994. name: "Stomping",
  9995. image: {
  9996. source: "./media/characters/tene/stomping.svg",
  9997. extra: 938 / 873,
  9998. bottom: 0.01
  9999. }
  10000. },
  10001. sitting: {
  10002. height: math.unit(1, "meter"),
  10003. weight: math.unit(120, "lb"),
  10004. name: "Sitting",
  10005. image: {
  10006. source: "./media/characters/tene/sitting.svg",
  10007. extra: 437 / 415,
  10008. bottom: 0.1
  10009. }
  10010. },
  10011. feral: {
  10012. height: math.unit(3.9, "feet"),
  10013. weight: math.unit(250, "lb"),
  10014. name: "Feral",
  10015. image: {
  10016. source: "./media/characters/tene/feral.svg",
  10017. extra: 717 / 458,
  10018. bottom: 0.179
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Normal",
  10025. height: math.unit(6, "feet")
  10026. },
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(300, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Megamacro",
  10034. height: math.unit(5, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10040. {
  10041. side: {
  10042. height: math.unit(6, "feet"),
  10043. name: "Side",
  10044. image: {
  10045. source: "./media/characters/evander/side.svg",
  10046. extra: 877 / 477
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Normal",
  10053. height: math.unit(0.83, "meters"),
  10054. default: true
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(12, "feet"),
  10063. weight: math.unit(1000, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10067. extra: 1762 / 1611
  10068. }
  10069. },
  10070. back: {
  10071. height: math.unit(12, "feet"),
  10072. weight: math.unit(1000, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10076. extra: 1762 / 1611
  10077. }
  10078. },
  10079. },
  10080. [
  10081. {
  10082. name: "Normal",
  10083. height: math.unit(12, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Kaiju",
  10088. height: math.unit(150, "feet")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(150, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/zero-alurus/front.svg"
  10101. }
  10102. },
  10103. back: {
  10104. height: math.unit(6, "feet"),
  10105. weight: math.unit(150, "lb"),
  10106. name: "Back",
  10107. image: {
  10108. source: "./media/characters/zero-alurus/back.svg"
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(5 + 10 / 12, "feet")
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(60, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Macro+",
  10124. height: math.unit(450, "feet")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(200, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/mega-shi/front.svg",
  10137. extra: 1279 / 1250,
  10138. bottom: 0.02
  10139. }
  10140. },
  10141. back: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(200, "lb"),
  10144. name: "Back",
  10145. image: {
  10146. source: "./media/characters/mega-shi/back.svg",
  10147. extra: 1279 / 1250,
  10148. bottom: 0.02
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Micro",
  10155. height: math.unit(16 + 6 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Third Dimension",
  10159. height: math.unit(40, "meters")
  10160. },
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(660, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(10, "miles")
  10169. },
  10170. {
  10171. name: "Planetary Launch",
  10172. height: math.unit(500, "miles")
  10173. },
  10174. {
  10175. name: "Interstellar",
  10176. height: math.unit(1e9, "miles")
  10177. },
  10178. {
  10179. name: "Leaving the Universe",
  10180. height: math.unit(1, "gigaparsec")
  10181. },
  10182. {
  10183. name: "Travelling Universes",
  10184. height: math.unit(30e15, "parsecs")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(5 + 4/12, "feet"),
  10193. weight: math.unit(120, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/odyssey/front.svg",
  10197. extra: 1747/1571,
  10198. bottom: 47/1794
  10199. }
  10200. },
  10201. side: {
  10202. height: math.unit(5.1, "feet"),
  10203. weight: math.unit(120, "lb"),
  10204. name: "Side",
  10205. image: {
  10206. source: "./media/characters/odyssey/side.svg",
  10207. extra: 1847/1619,
  10208. bottom: 47/1894
  10209. }
  10210. },
  10211. lounging: {
  10212. height: math.unit(1.464, "feet"),
  10213. weight: math.unit(120, "lb"),
  10214. name: "Lounging",
  10215. image: {
  10216. source: "./media/characters/odyssey/lounging.svg",
  10217. extra: 1235/837,
  10218. bottom: 551/1786
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 4 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(1, "km")
  10230. },
  10231. {
  10232. name: "Megamacro",
  10233. height: math.unit(3000, "km")
  10234. },
  10235. {
  10236. name: "Gigamacro",
  10237. height: math.unit(1, "AU"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Omniversal",
  10242. height: math.unit(100e14, "lightyears")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(6, "feet"),
  10251. weight: math.unit(300, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/mekuto/front.svg",
  10255. extra: 921 / 832,
  10256. bottom: 0.03
  10257. }
  10258. },
  10259. hand: {
  10260. height: math.unit(6 / 10.24, "feet"),
  10261. name: "Hand",
  10262. image: {
  10263. source: "./media/characters/mekuto/hand.svg"
  10264. }
  10265. },
  10266. foot: {
  10267. height: math.unit(6 / 5.05, "feet"),
  10268. name: "Foot",
  10269. image: {
  10270. source: "./media/characters/mekuto/foot.svg"
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Minimicro",
  10277. height: math.unit(0.2, "inches")
  10278. },
  10279. {
  10280. name: "Micro",
  10281. height: math.unit(1.5, "inches")
  10282. },
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(5 + 11 / 12, "feet"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Minimacro",
  10290. height: math.unit(17 + 9 / 12, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(177.5, "feet")
  10295. },
  10296. {
  10297. name: "Megamacro",
  10298. height: math.unit(152, "miles")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6.5, "inches"),
  10307. weight: math.unit(13, "oz"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/dafydd-tomos/front.svg",
  10311. extra: 2990 / 2603,
  10312. bottom: 0.03
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Micro",
  10319. height: math.unit(6.5, "inches"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/splinter/front.svg",
  10333. extra: 2990 / 2882,
  10334. bottom: 0.04
  10335. }
  10336. },
  10337. back: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Back",
  10341. image: {
  10342. source: "./media/characters/splinter/back.svg",
  10343. extra: 2990 / 2882,
  10344. bottom: 0.04
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(6, "feet")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(230, "meters"),
  10356. default: true
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(4 + 10 / 12, "feet"),
  10365. weight: math.unit(480, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/snow-gabumon/front.svg",
  10369. extra: 1140 / 963,
  10370. bottom: 0.058
  10371. }
  10372. },
  10373. back: {
  10374. height: math.unit(4 + 10 / 12, "feet"),
  10375. weight: math.unit(480, "lb"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/snow-gabumon/back.svg",
  10379. extra: 1115 / 962,
  10380. bottom: 0.041
  10381. }
  10382. },
  10383. frontUndresed: {
  10384. height: math.unit(4 + 10 / 12, "feet"),
  10385. weight: math.unit(480, "lb"),
  10386. name: "Front (Undressed)",
  10387. image: {
  10388. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10389. extra: 1061 / 960,
  10390. bottom: 0.045
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(1, "inch")
  10398. },
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(4 + 10 / 12, "feet"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(200, "feet")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(120, "miles")
  10411. },
  10412. {
  10413. name: "Gigamacro",
  10414. height: math.unit(9800, "miles")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(1.7, "meters"),
  10423. weight: math.unit(140, "lb"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/moody/front.svg",
  10427. extra: 3226 / 3007,
  10428. bottom: 0.087
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Micro",
  10435. height: math.unit(1, "mm")
  10436. },
  10437. {
  10438. name: "Normal",
  10439. height: math.unit(1.7, "meters"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(80, "meters")
  10445. },
  10446. {
  10447. name: "Macro+",
  10448. height: math.unit(500, "meters")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(150, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/zyas/front.svg",
  10461. extra: 1180 / 1120,
  10462. bottom: 0.045
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Normal",
  10469. height: math.unit(10, "feet"),
  10470. default: true
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(500, "feet")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(5, "miles")
  10479. },
  10480. {
  10481. name: "Teramacro",
  10482. height: math.unit(150000, "miles")
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10488. {
  10489. front: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(150, "lb"),
  10492. name: "Front",
  10493. image: {
  10494. source: "./media/characters/cuon/front.svg",
  10495. extra: 1390 / 1320,
  10496. bottom: 0.008
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Micro",
  10503. height: math.unit(3, "inches")
  10504. },
  10505. {
  10506. name: "Normal",
  10507. height: math.unit(18 + 9 / 12, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(360, "feet")
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(360, "miles")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(2.4, "meters"),
  10525. weight: math.unit(70, "kg"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/nyanuxk/front.svg",
  10529. extra: 1172 / 1084,
  10530. bottom: 0.065
  10531. }
  10532. },
  10533. side: {
  10534. height: math.unit(2.4, "meters"),
  10535. weight: math.unit(70, "kg"),
  10536. name: "Side",
  10537. image: {
  10538. source: "./media/characters/nyanuxk/side.svg",
  10539. extra: 1190 / 1132,
  10540. bottom: 0.007
  10541. }
  10542. },
  10543. back: {
  10544. height: math.unit(2.4, "meters"),
  10545. weight: math.unit(70, "kg"),
  10546. name: "Back",
  10547. image: {
  10548. source: "./media/characters/nyanuxk/back.svg",
  10549. extra: 1200 / 1141,
  10550. bottom: 0.015
  10551. }
  10552. },
  10553. foot: {
  10554. height: math.unit(0.52, "meters"),
  10555. name: "Foot",
  10556. image: {
  10557. source: "./media/characters/nyanuxk/foot.svg"
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Micro",
  10564. height: math.unit(2, "cm")
  10565. },
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(2.4, "meters"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Smaller Macro",
  10573. height: math.unit(120, "meters")
  10574. },
  10575. {
  10576. name: "Bigger Macro",
  10577. height: math.unit(1.2, "km")
  10578. },
  10579. {
  10580. name: "Megamacro",
  10581. height: math.unit(15, "kilometers")
  10582. },
  10583. {
  10584. name: "Gigamacro",
  10585. height: math.unit(2000, "km")
  10586. },
  10587. {
  10588. name: "Teramacro",
  10589. height: math.unit(500000, "km")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10595. {
  10596. side: {
  10597. height: math.unit(6, "feet"),
  10598. name: "Side",
  10599. image: {
  10600. source: "./media/characters/ailbhe/side.svg",
  10601. extra: 757 / 464,
  10602. bottom: 0.041
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(1.07, "meters"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(120, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/zevulfius/front.svg",
  10623. extra: 965 / 903
  10624. }
  10625. },
  10626. side: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(120, "kg"),
  10629. name: "Side",
  10630. image: {
  10631. source: "./media/characters/zevulfius/side.svg",
  10632. extra: 939 / 900
  10633. }
  10634. },
  10635. back: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(120, "kg"),
  10638. name: "Back",
  10639. image: {
  10640. source: "./media/characters/zevulfius/back.svg",
  10641. extra: 918 / 854,
  10642. bottom: 0.005
  10643. }
  10644. },
  10645. foot: {
  10646. height: math.unit(6 / 3.72, "feet"),
  10647. name: "Foot",
  10648. image: {
  10649. source: "./media/characters/zevulfius/foot.svg"
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(750, "meters")
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(20, "km"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Gigamacro",
  10665. height: math.unit(2000, "km")
  10666. },
  10667. {
  10668. name: "Teramacro",
  10669. height: math.unit(250000, "km")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(100, "feet"),
  10678. weight: math.unit(350, "kg"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/rikes/front.svg",
  10682. extra: 1565 / 1483,
  10683. bottom: 0.017
  10684. }
  10685. },
  10686. },
  10687. [
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(100, "feet"),
  10691. default: true
  10692. },
  10693. ]
  10694. ))
  10695. characterMakers.push(() => makeCharacter(
  10696. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10697. {
  10698. front: {
  10699. height: math.unit(8, "feet"),
  10700. weight: math.unit(356, "lb"),
  10701. name: "Front",
  10702. image: {
  10703. source: "./media/characters/adam-silver-mane/front.svg",
  10704. extra: 1036/937,
  10705. bottom: 63/1099
  10706. }
  10707. },
  10708. side: {
  10709. height: math.unit(8, "feet"),
  10710. weight: math.unit(356, "lb"),
  10711. name: "Side",
  10712. image: {
  10713. source: "./media/characters/adam-silver-mane/side.svg",
  10714. extra: 997/901,
  10715. bottom: 59/1056
  10716. }
  10717. },
  10718. frontNsfw: {
  10719. height: math.unit(8, "feet"),
  10720. weight: math.unit(356, "lb"),
  10721. name: "Front (NSFW)",
  10722. image: {
  10723. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10724. extra: 1036/937,
  10725. bottom: 63/1099
  10726. }
  10727. },
  10728. sideNsfw: {
  10729. height: math.unit(8, "feet"),
  10730. weight: math.unit(356, "lb"),
  10731. name: "Side (NSFW)",
  10732. image: {
  10733. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10734. extra: 997/901,
  10735. bottom: 59/1056
  10736. }
  10737. },
  10738. dick: {
  10739. height: math.unit(2.1, "feet"),
  10740. name: "Dick",
  10741. image: {
  10742. source: "./media/characters/adam-silver-mane/dick.svg"
  10743. }
  10744. },
  10745. taur: {
  10746. height: math.unit(16, "feet"),
  10747. weight: math.unit(1500, "kg"),
  10748. name: "Taur",
  10749. image: {
  10750. source: "./media/characters/adam-silver-mane/taur.svg",
  10751. extra: 1713 / 1571,
  10752. bottom: 0.01
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(8, "feet")
  10760. },
  10761. {
  10762. name: "Minimacro",
  10763. height: math.unit(80, "feet")
  10764. },
  10765. {
  10766. name: "MDA",
  10767. height: math.unit(80, "meters")
  10768. },
  10769. {
  10770. name: "Macro",
  10771. height: math.unit(800, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(8000, "feet")
  10777. },
  10778. {
  10779. name: "Gigamacro",
  10780. height: math.unit(800, "miles")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(80000, "miles")
  10785. },
  10786. {
  10787. name: "Celestial",
  10788. height: math.unit(8e6, "miles")
  10789. },
  10790. {
  10791. name: "Star Dragon",
  10792. height: math.unit(800000, "parsecs")
  10793. },
  10794. {
  10795. name: "Godly",
  10796. height: math.unit(800, "teraparsecs")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(150, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/ky'owin/front.svg",
  10809. extra: 3888 / 3068,
  10810. bottom: 0.015
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(6 + 8 / 12, "feet")
  10818. },
  10819. {
  10820. name: "Large",
  10821. height: math.unit(68, "feet")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(132, "feet")
  10826. },
  10827. {
  10828. name: "Macro+",
  10829. height: math.unit(340, "feet")
  10830. },
  10831. {
  10832. name: "Macro++",
  10833. height: math.unit(680, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Megamacro",
  10838. height: math.unit(1, "mile")
  10839. },
  10840. {
  10841. name: "Megamacro+",
  10842. height: math.unit(10, "miles")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(4, "feet"),
  10851. weight: math.unit(50, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/mal/front.svg",
  10855. extra: 785 / 724,
  10856. bottom: 0.07
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Micro",
  10863. height: math.unit(4, "inches")
  10864. },
  10865. {
  10866. name: "Normal",
  10867. height: math.unit(4, "feet"),
  10868. default: true
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(200, "feet")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/jordan-deware/front.svg",
  10885. extra: 1191 / 1012
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Nano",
  10892. height: math.unit(0.01, "mm")
  10893. },
  10894. {
  10895. name: "Minimicro",
  10896. height: math.unit(1, "mm")
  10897. },
  10898. {
  10899. name: "Micro",
  10900. height: math.unit(0.5, "inches")
  10901. },
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(4, "feet"),
  10905. default: true
  10906. },
  10907. {
  10908. name: "Minimacro",
  10909. height: math.unit(40, "meters")
  10910. },
  10911. {
  10912. name: "Small Macro",
  10913. height: math.unit(400, "meters")
  10914. },
  10915. {
  10916. name: "Macro",
  10917. height: math.unit(4, "miles")
  10918. },
  10919. {
  10920. name: "Megamacro",
  10921. height: math.unit(40, "miles")
  10922. },
  10923. {
  10924. name: "Megamacro+",
  10925. height: math.unit(400, "miles")
  10926. },
  10927. {
  10928. name: "Gigamacro",
  10929. height: math.unit(400000, "miles")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10935. {
  10936. side: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(150, "lb"),
  10939. name: "Side",
  10940. image: {
  10941. source: "./media/characters/kimiko/side.svg",
  10942. extra: 600 / 358
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(15, "feet"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(220, "feet")
  10955. },
  10956. {
  10957. name: "Macro+",
  10958. height: math.unit(1450, "feet")
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(11500, "feet")
  10963. },
  10964. {
  10965. name: "Gigamacro",
  10966. height: math.unit(9500, "miles")
  10967. },
  10968. {
  10969. name: "Teramacro",
  10970. height: math.unit(2208005005, "miles")
  10971. },
  10972. {
  10973. name: "Examacro",
  10974. height: math.unit(2750, "parsecs")
  10975. },
  10976. {
  10977. name: "Zettamacro",
  10978. height: math.unit(101500, "parsecs")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(70, "kg"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/andrew-sleepy/front.svg"
  10991. }
  10992. },
  10993. side: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(70, "kg"),
  10996. name: "Side",
  10997. image: {
  10998. source: "./media/characters/andrew-sleepy/side.svg"
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Micro",
  11005. height: math.unit(1, "mm"),
  11006. default: true
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/judio/front.svg",
  11019. extra: 1258 / 1110
  11020. }
  11021. },
  11022. },
  11023. [
  11024. {
  11025. name: "Normal",
  11026. height: math.unit(5 + 6 / 12, "feet")
  11027. },
  11028. {
  11029. name: "Macro",
  11030. height: math.unit(1000, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(10, "miles")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11041. {
  11042. frontDressed: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(68, "kg"),
  11045. name: "Front (Dressed)",
  11046. image: {
  11047. source: "./media/characters/nomaxice/front-dressed.svg",
  11048. extra: 1137/824,
  11049. bottom: 74/1211
  11050. }
  11051. },
  11052. frontShorts: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(68, "kg"),
  11055. name: "Front (Shorts)",
  11056. image: {
  11057. source: "./media/characters/nomaxice/front-shorts.svg",
  11058. extra: 1137/824,
  11059. bottom: 74/1211
  11060. }
  11061. },
  11062. back: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(68, "kg"),
  11065. name: "Back",
  11066. image: {
  11067. source: "./media/characters/nomaxice/back.svg",
  11068. extra: 822/786,
  11069. bottom: 39/861
  11070. }
  11071. },
  11072. hand: {
  11073. height: math.unit(0.565, "feet"),
  11074. name: "Hand",
  11075. image: {
  11076. source: "./media/characters/nomaxice/hand.svg"
  11077. }
  11078. },
  11079. foot: {
  11080. height: math.unit(1, "feet"),
  11081. name: "Foot",
  11082. image: {
  11083. source: "./media/characters/nomaxice/foot.svg"
  11084. }
  11085. },
  11086. },
  11087. [
  11088. {
  11089. name: "Micro",
  11090. height: math.unit(8, "cm")
  11091. },
  11092. {
  11093. name: "Norm",
  11094. height: math.unit(1.82, "m")
  11095. },
  11096. {
  11097. name: "Norm+",
  11098. height: math.unit(8.8, "feet"),
  11099. default: true
  11100. },
  11101. {
  11102. name: "Big",
  11103. height: math.unit(8, "meters")
  11104. },
  11105. {
  11106. name: "Macro",
  11107. height: math.unit(18, "meters")
  11108. },
  11109. {
  11110. name: "Macro+",
  11111. height: math.unit(88, "meters")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(12, "feet"),
  11120. weight: math.unit(1.5, "tons"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/dydros/front.svg",
  11124. extra: 863 / 800,
  11125. bottom: 0.015
  11126. }
  11127. },
  11128. back: {
  11129. height: math.unit(12, "feet"),
  11130. weight: math.unit(1.5, "tons"),
  11131. name: "Back",
  11132. image: {
  11133. source: "./media/characters/dydros/back.svg",
  11134. extra: 900 / 843,
  11135. bottom: 0.005
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(12, "feet"),
  11143. default: true
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(100, "kg"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/riggi/front.svg",
  11156. extra: 5787 / 5303
  11157. }
  11158. },
  11159. hyper: {
  11160. height: math.unit(6 * 5 / 3, "feet"),
  11161. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11162. name: "Hyper",
  11163. image: {
  11164. source: "./media/characters/riggi/hyper.svg",
  11165. extra: 3595 / 3485
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Small Macro",
  11172. height: math.unit(50, "feet")
  11173. },
  11174. {
  11175. name: "Default",
  11176. height: math.unit(200, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Loom",
  11181. height: math.unit(10000, "feet")
  11182. },
  11183. {
  11184. name: "Cruising Altitude",
  11185. height: math.unit(30000, "feet")
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(100, "miles")
  11190. },
  11191. {
  11192. name: "Continent Sized",
  11193. height: math.unit(2800, "miles")
  11194. },
  11195. {
  11196. name: "Earth Sized",
  11197. height: math.unit(8000, "miles")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(6, "feet"),
  11206. weight: math.unit(250, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/alexi/front.svg",
  11210. extra: 3483 / 3291,
  11211. bottom: 0.04
  11212. }
  11213. },
  11214. back: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(250, "lb"),
  11217. name: "Back",
  11218. image: {
  11219. source: "./media/characters/alexi/back.svg",
  11220. extra: 3533 / 3356,
  11221. bottom: 0.021
  11222. }
  11223. },
  11224. frontTransforming: {
  11225. height: math.unit(8.58, "feet"),
  11226. weight: math.unit(1300, "lb"),
  11227. name: "Transforming",
  11228. image: {
  11229. source: "./media/characters/alexi/front-transforming.svg",
  11230. extra: 437 / 409,
  11231. bottom: 19 / 458.66
  11232. }
  11233. },
  11234. frontTransformed: {
  11235. height: math.unit(12.5, "feet"),
  11236. weight: math.unit(4000, "lb"),
  11237. name: "Transformed",
  11238. image: {
  11239. source: "./media/characters/alexi/front-transformed.svg",
  11240. extra: 639 / 614,
  11241. bottom: 30.55 / 671
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(14, "feet"),
  11249. default: true
  11250. },
  11251. {
  11252. name: "Minimacro",
  11253. height: math.unit(30, "meters")
  11254. },
  11255. {
  11256. name: "Macro",
  11257. height: math.unit(500, "meters")
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(9000, "km")
  11262. },
  11263. {
  11264. name: "Teramacro",
  11265. height: math.unit(384000, "km")
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11271. {
  11272. front: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(150, "lb"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/kayroo/front.svg",
  11278. extra: 1153 / 1038,
  11279. bottom: 0.06
  11280. }
  11281. },
  11282. foot: {
  11283. height: math.unit(6, "feet"),
  11284. weight: math.unit(150, "lb"),
  11285. name: "Foot",
  11286. image: {
  11287. source: "./media/characters/kayroo/foot.svg"
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(8, "feet"),
  11295. default: true
  11296. },
  11297. {
  11298. name: "Minimacro",
  11299. height: math.unit(250, "feet")
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(2800, "feet")
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(5200, "feet")
  11308. },
  11309. {
  11310. name: "Gigamacro",
  11311. height: math.unit(27000, "feet")
  11312. },
  11313. {
  11314. name: "Omega",
  11315. height: math.unit(45000, "feet")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(18, "feet"),
  11324. weight: math.unit(5800, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/rhys/front.svg",
  11328. extra: 3386 / 3090,
  11329. bottom: 0.07
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(18, "feet"),
  11337. default: true
  11338. },
  11339. {
  11340. name: "Working Size",
  11341. height: math.unit(200, "feet")
  11342. },
  11343. {
  11344. name: "Demolition Size",
  11345. height: math.unit(2000, "feet")
  11346. },
  11347. {
  11348. name: "Maximum Licensed Size",
  11349. height: math.unit(5, "miles")
  11350. },
  11351. {
  11352. name: "Maximum Observed Size",
  11353. height: math.unit(10, "yottameters")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(250, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/toto/front.svg",
  11366. extra: 527 / 479,
  11367. bottom: 0.05
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Micro",
  11374. height: math.unit(3, "feet")
  11375. },
  11376. {
  11377. name: "Normal",
  11378. height: math.unit(10, "feet")
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(150, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Megamacro",
  11387. height: math.unit(1200, "feet")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "King", species: ["lion"], tags: ["anthro"] },
  11393. {
  11394. back: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Back",
  11398. image: {
  11399. source: "./media/characters/king/back.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Micro",
  11406. height: math.unit(2, "inches")
  11407. },
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(8, "feet")
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(200, "feet"),
  11415. default: true
  11416. },
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(50, "miles")
  11420. },
  11421. ]
  11422. ))
  11423. characterMakers.push(() => makeCharacter(
  11424. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11425. {
  11426. front: {
  11427. height: math.unit(11, "feet"),
  11428. weight: math.unit(1400, "lb"),
  11429. name: "Front",
  11430. image: {
  11431. source: "./media/characters/cordite/front.svg",
  11432. extra: 1919/1827,
  11433. bottom: 40/1959
  11434. }
  11435. },
  11436. side: {
  11437. height: math.unit(11, "feet"),
  11438. weight: math.unit(1400, "lb"),
  11439. name: "Side",
  11440. image: {
  11441. source: "./media/characters/cordite/side.svg",
  11442. extra: 1908/1793,
  11443. bottom: 38/1946
  11444. }
  11445. },
  11446. back: {
  11447. height: math.unit(11, "feet"),
  11448. weight: math.unit(1400, "lb"),
  11449. name: "Back",
  11450. image: {
  11451. source: "./media/characters/cordite/back.svg",
  11452. extra: 1938/1837,
  11453. bottom: 10/1948
  11454. }
  11455. },
  11456. feral: {
  11457. height: math.unit(2, "feet"),
  11458. weight: math.unit(90, "lb"),
  11459. name: "Feral",
  11460. image: {
  11461. source: "./media/characters/cordite/feral.svg",
  11462. extra: 1260 / 755,
  11463. bottom: 0.05
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Normal",
  11470. height: math.unit(11, "feet"),
  11471. default: true
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(150, "lb"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/pianostrong/front.svg",
  11484. extra: 6577 / 6254,
  11485. bottom: 0.02
  11486. }
  11487. },
  11488. side: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "lb"),
  11491. name: "Side",
  11492. image: {
  11493. source: "./media/characters/pianostrong/side.svg",
  11494. extra: 6106 / 5730
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(150, "lb"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/pianostrong/back.svg",
  11503. extra: 6085 / 5733,
  11504. bottom: 0.01
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(100, "feet")
  11512. },
  11513. {
  11514. name: "Macro+",
  11515. height: math.unit(300, "feet"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Macro++",
  11520. height: math.unit(1000, "feet")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(150, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/kona/front.svg",
  11533. extra: 2960 / 2629,
  11534. bottom: 0.005
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(11 + 8 / 12, "feet")
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(850, "feet"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Macro+",
  11550. height: math.unit(1.5, "km"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Megamacro",
  11555. height: math.unit(80, "miles")
  11556. },
  11557. {
  11558. name: "Gigamacro",
  11559. height: math.unit(3500, "miles")
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11565. {
  11566. side: {
  11567. height: math.unit(1.9, "meters"),
  11568. weight: math.unit(326, "kg"),
  11569. name: "Side",
  11570. image: {
  11571. source: "./media/characters/levi/side.svg",
  11572. extra: 1704 / 1334,
  11573. bottom: 0.02
  11574. }
  11575. },
  11576. },
  11577. [
  11578. {
  11579. name: "Normal",
  11580. height: math.unit(1.9, "meters"),
  11581. default: true
  11582. },
  11583. {
  11584. name: "Macro",
  11585. height: math.unit(20, "meters")
  11586. },
  11587. {
  11588. name: "Macro+",
  11589. height: math.unit(200, "meters")
  11590. },
  11591. {
  11592. name: "Megamacro",
  11593. height: math.unit(2, "km")
  11594. },
  11595. {
  11596. name: "Megamacro+",
  11597. height: math.unit(20, "km")
  11598. },
  11599. {
  11600. name: "Gigamacro",
  11601. height: math.unit(2500, "km")
  11602. },
  11603. {
  11604. name: "Gigamacro+",
  11605. height: math.unit(120000, "km")
  11606. },
  11607. {
  11608. name: "Teramacro",
  11609. height: math.unit(7.77e6, "km")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11615. {
  11616. front: {
  11617. height: math.unit(6 + 4/12, "feet"),
  11618. weight: math.unit(190, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/bmc/front.svg",
  11622. extra: 1626/1472,
  11623. bottom: 79/1705
  11624. }
  11625. },
  11626. back: {
  11627. height: math.unit(6 + 4/12, "feet"),
  11628. weight: math.unit(190, "lb"),
  11629. name: "Back",
  11630. image: {
  11631. source: "./media/characters/bmc/back.svg",
  11632. extra: 1640/1479,
  11633. bottom: 45/1685
  11634. }
  11635. },
  11636. frontArmor: {
  11637. height: math.unit(6 + 4/12, "feet"),
  11638. weight: math.unit(190, "lb"),
  11639. name: "Front-armor",
  11640. image: {
  11641. source: "./media/characters/bmc/front-armor.svg",
  11642. extra: 1538/1468,
  11643. bottom: 79/1617
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Human-sized",
  11650. height: math.unit(6 + 4 / 12, "feet")
  11651. },
  11652. {
  11653. name: "Interactive Size",
  11654. height: math.unit(25, "feet")
  11655. },
  11656. {
  11657. name: "Small",
  11658. height: math.unit(250, "feet")
  11659. },
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(1250, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Good Day",
  11667. height: math.unit(88, "miles")
  11668. },
  11669. {
  11670. name: "Largest Measured Size",
  11671. height: math.unit(105.960, "galaxies")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(20, "feet"),
  11680. weight: math.unit(2016, "kg"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/sven-the-kaiju/front.svg",
  11684. extra: 1277/1250,
  11685. bottom: 35/1312
  11686. }
  11687. },
  11688. mouth: {
  11689. height: math.unit(1.85, "feet"),
  11690. name: "Mouth",
  11691. image: {
  11692. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Fairy",
  11699. height: math.unit(6, "inches")
  11700. },
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(20, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Rampage",
  11708. height: math.unit(200, "feet")
  11709. },
  11710. {
  11711. name: "Archfey Forest Guardian",
  11712. height: math.unit(1, "mile")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(4, "meters"),
  11721. weight: math.unit(2, "tons"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/marik/front.svg",
  11725. extra: 1057 / 1003,
  11726. bottom: 0.08
  11727. }
  11728. },
  11729. },
  11730. [
  11731. {
  11732. name: "Normal",
  11733. height: math.unit(4, "meters"),
  11734. default: true
  11735. },
  11736. {
  11737. name: "Macro",
  11738. height: math.unit(20, "meters")
  11739. },
  11740. {
  11741. name: "Megamacro",
  11742. height: math.unit(50, "km")
  11743. },
  11744. {
  11745. name: "Gigamacro",
  11746. height: math.unit(100, "km")
  11747. },
  11748. {
  11749. name: "Alpha Macro",
  11750. height: math.unit(7.88e7, "yottameters")
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11756. {
  11757. front: {
  11758. height: math.unit(6, "feet"),
  11759. weight: math.unit(110, "lb"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/mel/front.svg",
  11763. extra: 736 / 617,
  11764. bottom: 0.017
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Pico",
  11771. height: math.unit(3, "pm")
  11772. },
  11773. {
  11774. name: "Nano",
  11775. height: math.unit(3, "nm")
  11776. },
  11777. {
  11778. name: "Micro",
  11779. height: math.unit(0.3, "mm"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Micro+",
  11784. height: math.unit(3, "mm")
  11785. },
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(5 + 10.5 / 12, "feet")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11794. {
  11795. kaiju: {
  11796. height: math.unit(1.75, "meters"),
  11797. weight: math.unit(55, "kg"),
  11798. name: "Kaiju",
  11799. image: {
  11800. source: "./media/characters/lykonous/kaiju.svg",
  11801. extra: 1055 / 946,
  11802. bottom: 0.135
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Normal",
  11809. height: math.unit(2.5, "meters"),
  11810. default: true
  11811. },
  11812. {
  11813. name: "Kaiju Dragon",
  11814. height: math.unit(60, "meters")
  11815. },
  11816. {
  11817. name: "Mega Kaiju",
  11818. height: math.unit(120, "km")
  11819. },
  11820. {
  11821. name: "Giga Kaiju",
  11822. height: math.unit(200, "megameters")
  11823. },
  11824. {
  11825. name: "Terra Kaiju",
  11826. height: math.unit(400, "gigameters")
  11827. },
  11828. {
  11829. name: "Kaiju Dragon God",
  11830. height: math.unit(13000, "exaparsecs")
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11836. {
  11837. front: {
  11838. height: math.unit(6, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/blü/front.svg",
  11843. extra: 1883 / 1564,
  11844. bottom: 0.031
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(13, "feet"),
  11852. default: true
  11853. },
  11854. {
  11855. name: "Big Boi",
  11856. height: math.unit(150, "meters")
  11857. },
  11858. {
  11859. name: "Mini Stomper",
  11860. height: math.unit(300, "meters")
  11861. },
  11862. {
  11863. name: "Macro",
  11864. height: math.unit(1000, "meters")
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(11000, "meters")
  11869. },
  11870. {
  11871. name: "Gigamacro",
  11872. height: math.unit(11000, "km")
  11873. },
  11874. {
  11875. name: "Teramacro",
  11876. height: math.unit(420000, "km")
  11877. },
  11878. {
  11879. name: "Examacro",
  11880. height: math.unit(120, "parsecs")
  11881. },
  11882. {
  11883. name: "God Tho",
  11884. height: math.unit(98000000000, "parsecs")
  11885. },
  11886. ]
  11887. ))
  11888. characterMakers.push(() => makeCharacter(
  11889. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11890. {
  11891. taurFront: {
  11892. height: math.unit(6, "feet"),
  11893. weight: math.unit(200, "lb"),
  11894. name: "Taur (Front)",
  11895. image: {
  11896. source: "./media/characters/scales/taur-front.svg",
  11897. extra: 1,
  11898. bottom: 0.05
  11899. }
  11900. },
  11901. taurBack: {
  11902. height: math.unit(6, "feet"),
  11903. weight: math.unit(200, "lb"),
  11904. name: "Taur (Back)",
  11905. image: {
  11906. source: "./media/characters/scales/taur-back.svg",
  11907. extra: 1,
  11908. bottom: 0.08
  11909. }
  11910. },
  11911. anthro: {
  11912. height: math.unit(6 * 7 / 12, "feet"),
  11913. weight: math.unit(100, "lb"),
  11914. name: "Anthro",
  11915. image: {
  11916. source: "./media/characters/scales/anthro.svg",
  11917. extra: 1,
  11918. bottom: 0.06
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(12, "feet"),
  11926. default: true
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11932. {
  11933. front: {
  11934. height: math.unit(6, "feet"),
  11935. weight: math.unit(150, "lb"),
  11936. name: "Front",
  11937. image: {
  11938. source: "./media/characters/koragos/front.svg",
  11939. extra: 841 / 794,
  11940. bottom: 0.035
  11941. }
  11942. },
  11943. back: {
  11944. height: math.unit(6, "feet"),
  11945. weight: math.unit(150, "lb"),
  11946. name: "Back",
  11947. image: {
  11948. source: "./media/characters/koragos/back.svg",
  11949. extra: 841 / 810,
  11950. bottom: 0.022
  11951. }
  11952. },
  11953. },
  11954. [
  11955. {
  11956. name: "Normal",
  11957. height: math.unit(6 + 11 / 12, "feet"),
  11958. default: true
  11959. },
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(490, "feet")
  11963. },
  11964. {
  11965. name: "Megamacro",
  11966. height: math.unit(10, "miles")
  11967. },
  11968. {
  11969. name: "Gigamacro",
  11970. height: math.unit(50, "miles")
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11976. {
  11977. front: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(250, "lb"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/xylrem/front.svg",
  11983. extra: 3323 / 3050,
  11984. bottom: 0.065
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Micro",
  11991. height: math.unit(4, "feet")
  11992. },
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(16, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(2720, "feet")
  12001. },
  12002. {
  12003. name: "Megamacro",
  12004. height: math.unit(25000, "miles")
  12005. },
  12006. ]
  12007. ))
  12008. characterMakers.push(() => makeCharacter(
  12009. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12010. {
  12011. front: {
  12012. height: math.unit(8, "feet"),
  12013. weight: math.unit(250, "kg"),
  12014. name: "Front",
  12015. image: {
  12016. source: "./media/characters/ikideru/front.svg",
  12017. extra: 930 / 870,
  12018. bottom: 0.087
  12019. }
  12020. },
  12021. back: {
  12022. height: math.unit(8, "feet"),
  12023. weight: math.unit(250, "kg"),
  12024. name: "Back",
  12025. image: {
  12026. source: "./media/characters/ikideru/back.svg",
  12027. extra: 919 / 852,
  12028. bottom: 0.055
  12029. }
  12030. },
  12031. },
  12032. [
  12033. {
  12034. name: "Rare",
  12035. height: math.unit(8, "feet"),
  12036. default: true
  12037. },
  12038. {
  12039. name: "Playful Loom",
  12040. height: math.unit(80, "feet")
  12041. },
  12042. {
  12043. name: "City Leaner",
  12044. height: math.unit(230, "feet")
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(2500, "feet")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(26400, "feet")
  12053. },
  12054. {
  12055. name: "Tectonic Shifter",
  12056. height: math.unit(1.7, "megameters")
  12057. },
  12058. {
  12059. name: "Planet Carer",
  12060. height: math.unit(21, "megameters")
  12061. },
  12062. {
  12063. name: "God",
  12064. height: math.unit(11157.22, "parsecs")
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(120, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/neo/front.svg"
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(2, "inches"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Human Size",
  12088. height: math.unit(5 + 8 / 12, "feet")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(13 + 10 / 12, "feet"),
  12097. weight: math.unit(5320, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/chauncey-chantz/front.svg",
  12101. extra: 1587 / 1435,
  12102. bottom: 0.02
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(13 + 10 / 12, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(45, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(250, "miles")
  12119. },
  12120. {
  12121. name: "Planetary",
  12122. height: math.unit(10000, "miles")
  12123. },
  12124. {
  12125. name: "Galactic",
  12126. height: math.unit(40000, "parsecs")
  12127. },
  12128. {
  12129. name: "Universal",
  12130. height: math.unit(1, "yottameter")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/epifox/front.svg",
  12143. extra: 1,
  12144. bottom: 0.075
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Micro",
  12151. height: math.unit(6, "inches")
  12152. },
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(12, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(3810, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(500, "miles")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(1.8796, "m"),
  12173. weight: math.unit(230, "lb"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/colin-t/front.svg",
  12177. extra: 1272 / 1193,
  12178. bottom: 0.07
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Micro",
  12185. height: math.unit(0.571, "meters")
  12186. },
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(1.8796, "meters"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Tall",
  12194. height: math.unit(4, "meters")
  12195. },
  12196. {
  12197. name: "Macro",
  12198. height: math.unit(67.241, "meters")
  12199. },
  12200. {
  12201. name: "Megamacro",
  12202. height: math.unit(371.856, "meters")
  12203. },
  12204. {
  12205. name: "Planetary",
  12206. height: math.unit(12631.5689, "km")
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(1.85, "meters"),
  12215. weight: math.unit(80, "kg"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/matvei/front.svg",
  12219. extra: 614 / 594,
  12220. bottom: 0.01
  12221. }
  12222. },
  12223. },
  12224. [
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(1.85, "meters"),
  12228. default: true
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(5 + 9 / 12, "feet"),
  12237. weight: math.unit(70, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/quincy/front.svg",
  12241. extra: 3041 / 2751
  12242. }
  12243. },
  12244. back: {
  12245. height: math.unit(5 + 9 / 12, "feet"),
  12246. weight: math.unit(70, "lb"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/quincy/back.svg",
  12250. extra: 3041 / 2751
  12251. }
  12252. },
  12253. flying: {
  12254. height: math.unit(5 + 4 / 12, "feet"),
  12255. weight: math.unit(70, "lb"),
  12256. name: "Flying",
  12257. image: {
  12258. source: "./media/characters/quincy/flying.svg",
  12259. extra: 1044 / 930
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(3, "cm")
  12267. },
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(5 + 9 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(200, "meters"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(1000, "meters")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12285. {
  12286. front: {
  12287. height: math.unit(3 + 11/12, "feet"),
  12288. weight: math.unit(50, "lb"),
  12289. name: "Front",
  12290. image: {
  12291. source: "./media/characters/vanrel/front.svg",
  12292. extra: 1104/949,
  12293. bottom: 52/1156
  12294. }
  12295. },
  12296. back: {
  12297. height: math.unit(3 + 11/12, "feet"),
  12298. weight: math.unit(50, "lb"),
  12299. name: "Back",
  12300. image: {
  12301. source: "./media/characters/vanrel/back.svg",
  12302. extra: 1119/976,
  12303. bottom: 37/1156
  12304. }
  12305. },
  12306. tome: {
  12307. height: math.unit(1.35, "feet"),
  12308. weight: math.unit(10, "lb"),
  12309. name: "Vanrel's Tome",
  12310. rename: true,
  12311. image: {
  12312. source: "./media/characters/vanrel/tome.svg"
  12313. }
  12314. },
  12315. beans: {
  12316. height: math.unit(0.89, "feet"),
  12317. name: "Beans",
  12318. image: {
  12319. source: "./media/characters/vanrel/beans.svg"
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(3 + 11/12, "feet"),
  12327. default: true
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(7 + 5 / 12, "feet"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/kuiper-vanrel/front.svg",
  12339. extra: 1219/1169,
  12340. bottom: 69/1288
  12341. }
  12342. },
  12343. back: {
  12344. height: math.unit(7 + 5 / 12, "feet"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/kuiper-vanrel/back.svg",
  12348. extra: 1236/1193,
  12349. bottom: 27/1263
  12350. }
  12351. },
  12352. foot: {
  12353. height: math.unit(0.55, "meters"),
  12354. name: "Foot",
  12355. image: {
  12356. source: "./media/characters/kuiper-vanrel/foot.svg",
  12357. }
  12358. },
  12359. battle: {
  12360. height: math.unit(6.824, "feet"),
  12361. name: "Battle",
  12362. image: {
  12363. source: "./media/characters/kuiper-vanrel/battle.svg",
  12364. extra: 1466 / 1327,
  12365. bottom: 29 / 1492.5
  12366. }
  12367. },
  12368. meerkui: {
  12369. height: math.unit(18, "inches"),
  12370. name: "Meerkui",
  12371. image: {
  12372. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12373. extra: 1354/1289,
  12374. bottom: 69/1423
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(7 + 5 / 12, "feet"),
  12382. default: true
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(8 + 5 / 12, "feet"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/keset-vanrel/front.svg",
  12394. extra: 1231/1148,
  12395. bottom: 82/1313
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(8 + 5 / 12, "feet"),
  12400. name: "Back",
  12401. image: {
  12402. source: "./media/characters/keset-vanrel/back.svg",
  12403. extra: 1240/1174,
  12404. bottom: 33/1273
  12405. }
  12406. },
  12407. hand: {
  12408. height: math.unit(0.6, "meters"),
  12409. name: "Hand",
  12410. image: {
  12411. source: "./media/characters/keset-vanrel/hand.svg"
  12412. }
  12413. },
  12414. foot: {
  12415. height: math.unit(0.94978, "meters"),
  12416. name: "Foot",
  12417. image: {
  12418. source: "./media/characters/keset-vanrel/foot.svg"
  12419. }
  12420. },
  12421. battle: {
  12422. height: math.unit(7.408, "feet"),
  12423. name: "Battle",
  12424. image: {
  12425. source: "./media/characters/keset-vanrel/battle.svg",
  12426. extra: 1890 / 1386,
  12427. bottom: 73.28 / 1970
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(8 + 5 / 12, "feet"),
  12435. default: true
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(150, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/neos/front.svg",
  12448. extra: 1696 / 992,
  12449. bottom: 0.14
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Normal",
  12456. height: math.unit(54, "cm"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Macro",
  12461. height: math.unit(100, "m")
  12462. },
  12463. {
  12464. name: "Megamacro",
  12465. height: math.unit(10, "km")
  12466. },
  12467. {
  12468. name: "Megamacro+",
  12469. height: math.unit(100, "km")
  12470. },
  12471. {
  12472. name: "Gigamacro",
  12473. height: math.unit(100, "Mm")
  12474. },
  12475. {
  12476. name: "Teramacro",
  12477. height: math.unit(100, "Gm")
  12478. },
  12479. {
  12480. name: "Examacro",
  12481. height: math.unit(100, "Em")
  12482. },
  12483. {
  12484. name: "Godly",
  12485. height: math.unit(10000, "Ym")
  12486. },
  12487. {
  12488. name: "Beyond Godly",
  12489. height: math.unit(25, "multiverses")
  12490. },
  12491. ]
  12492. ))
  12493. characterMakers.push(() => makeCharacter(
  12494. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12495. {
  12496. feminine: {
  12497. height: math.unit(5, "feet"),
  12498. weight: math.unit(100, "lb"),
  12499. name: "Feminine",
  12500. image: {
  12501. source: "./media/characters/sammy-mouse/feminine.svg",
  12502. extra: 2526 / 2425,
  12503. bottom: 0.123
  12504. }
  12505. },
  12506. masculine: {
  12507. height: math.unit(5, "feet"),
  12508. weight: math.unit(100, "lb"),
  12509. name: "Masculine",
  12510. image: {
  12511. source: "./media/characters/sammy-mouse/masculine.svg",
  12512. extra: 2526 / 2425,
  12513. bottom: 0.123
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Micro",
  12520. height: math.unit(5, "inches")
  12521. },
  12522. {
  12523. name: "Normal",
  12524. height: math.unit(5, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(60, "feet")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(4, "feet"),
  12538. weight: math.unit(50, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/kole/front.svg",
  12542. extra: 1423 / 1303,
  12543. bottom: 0.025
  12544. }
  12545. },
  12546. back: {
  12547. height: math.unit(4, "feet"),
  12548. weight: math.unit(50, "lb"),
  12549. name: "Back",
  12550. image: {
  12551. source: "./media/characters/kole/back.svg",
  12552. extra: 1426 / 1280,
  12553. bottom: 0.02
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(4, "feet"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(2.5, "feet"),
  12570. weight: math.unit(32, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/rufran/front.svg",
  12574. extra: 1313/885,
  12575. bottom: 94/1407
  12576. }
  12577. },
  12578. side: {
  12579. height: math.unit(2.5, "feet"),
  12580. weight: math.unit(32, "lb"),
  12581. name: "Side",
  12582. image: {
  12583. source: "./media/characters/rufran/side.svg",
  12584. extra: 1109/852,
  12585. bottom: 118/1227
  12586. }
  12587. },
  12588. back: {
  12589. height: math.unit(2.5, "feet"),
  12590. weight: math.unit(32, "lb"),
  12591. name: "Back",
  12592. image: {
  12593. source: "./media/characters/rufran/back.svg",
  12594. extra: 1280/878,
  12595. bottom: 131/1411
  12596. }
  12597. },
  12598. mouth: {
  12599. height: math.unit(1.13, "feet"),
  12600. name: "Mouth",
  12601. image: {
  12602. source: "./media/characters/rufran/mouth.svg"
  12603. }
  12604. },
  12605. foot: {
  12606. height: math.unit(1.33, "feet"),
  12607. name: "Foot",
  12608. image: {
  12609. source: "./media/characters/rufran/foot.svg"
  12610. }
  12611. },
  12612. koboldFront: {
  12613. height: math.unit(2 + 6 / 12, "feet"),
  12614. weight: math.unit(20, "lb"),
  12615. name: "Front (Kobold)",
  12616. image: {
  12617. source: "./media/characters/rufran/kobold-front.svg",
  12618. extra: 2041 / 1839,
  12619. bottom: 0.055
  12620. }
  12621. },
  12622. koboldBack: {
  12623. height: math.unit(2 + 6 / 12, "feet"),
  12624. weight: math.unit(20, "lb"),
  12625. name: "Back (Kobold)",
  12626. image: {
  12627. source: "./media/characters/rufran/kobold-back.svg",
  12628. extra: 2054 / 1839,
  12629. bottom: 0.01
  12630. }
  12631. },
  12632. koboldHand: {
  12633. height: math.unit(0.2166, "meters"),
  12634. name: "Hand (Kobold)",
  12635. image: {
  12636. source: "./media/characters/rufran/kobold-hand.svg"
  12637. }
  12638. },
  12639. koboldFoot: {
  12640. height: math.unit(0.185, "meters"),
  12641. name: "Foot (Kobold)",
  12642. image: {
  12643. source: "./media/characters/rufran/kobold-foot.svg"
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(1, "inch")
  12651. },
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(2 + 6 / 12, "feet"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Big",
  12659. height: math.unit(60, "feet")
  12660. },
  12661. {
  12662. name: "Macro",
  12663. height: math.unit(325, "feet")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(0.3, "meters"),
  12672. weight: math.unit(3.5, "kg"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/chip/front.svg",
  12676. extra: 748 / 674
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Micro",
  12683. height: math.unit(1, "inch"),
  12684. default: true
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12690. {
  12691. side: {
  12692. height: math.unit(2.3, "meters"),
  12693. weight: math.unit(3500, "lb"),
  12694. name: "Side",
  12695. image: {
  12696. source: "./media/characters/torvid/side.svg",
  12697. extra: 1972 / 722,
  12698. bottom: 0.035
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(2.3, "meters"),
  12706. default: true
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12712. {
  12713. front: {
  12714. height: math.unit(2, "meters"),
  12715. weight: math.unit(150.5, "kg"),
  12716. name: "Front",
  12717. image: {
  12718. source: "./media/characters/susan/front.svg",
  12719. extra: 693 / 635,
  12720. bottom: 0.05
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(505, "miles"),
  12728. default: true
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12734. {
  12735. front: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(150, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/raindrops/front.svg",
  12741. extra: 2655 / 2461,
  12742. bottom: 49 / 2705
  12743. }
  12744. },
  12745. back: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(150, "lb"),
  12748. name: "Back",
  12749. image: {
  12750. source: "./media/characters/raindrops/back.svg",
  12751. extra: 2574 / 2400,
  12752. bottom: 65 / 2634
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(6, "inches")
  12760. },
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(6 + 2 / 12, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(131, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(15, "miles")
  12773. },
  12774. {
  12775. name: "Gigamacro",
  12776. height: math.unit(4000, "miles")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(315000, "miles")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(2.794, "meters"),
  12789. weight: math.unit(325, "kg"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/tezwa/front.svg",
  12793. extra: 2083 / 1906,
  12794. bottom: 0.031
  12795. }
  12796. },
  12797. foot: {
  12798. height: math.unit(0.687, "meters"),
  12799. name: "Foot",
  12800. image: {
  12801. source: "./media/characters/tezwa/foot.svg"
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(9 + 2 / 12, "feet"),
  12809. default: true
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(58, "feet"),
  12818. weight: math.unit(89000, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/typhus/front.svg",
  12822. extra: 816 / 800,
  12823. bottom: 0.065
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(58, "feet"),
  12831. default: true
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(12, "feet"),
  12840. weight: math.unit(6, "tonnes"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/lyra-von-wulf/front.svg",
  12844. extra: 1,
  12845. bottom: 0.10
  12846. }
  12847. },
  12848. frontMecha: {
  12849. height: math.unit(12, "feet"),
  12850. weight: math.unit(12, "tonnes"),
  12851. name: "Front (Mecha)",
  12852. image: {
  12853. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12854. extra: 1,
  12855. bottom: 0.042
  12856. }
  12857. },
  12858. maw: {
  12859. height: math.unit(2.2, "feet"),
  12860. name: "Maw",
  12861. image: {
  12862. source: "./media/characters/lyra-von-wulf/maw.svg"
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(12, "feet"),
  12870. default: true
  12871. },
  12872. {
  12873. name: "Classic",
  12874. height: math.unit(50, "feet")
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(500, "feet")
  12879. },
  12880. {
  12881. name: "Megamacro",
  12882. height: math.unit(1, "mile")
  12883. },
  12884. {
  12885. name: "Gigamacro",
  12886. height: math.unit(400, "miles")
  12887. },
  12888. {
  12889. name: "Teramacro",
  12890. height: math.unit(22000, "miles")
  12891. },
  12892. {
  12893. name: "Solarmacro",
  12894. height: math.unit(8600000, "miles")
  12895. },
  12896. {
  12897. name: "Galactic",
  12898. height: math.unit(1057000, "lightyears")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6 + 10 / 12, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/dixon/front.svg",
  12911. extra: 3361 / 3209,
  12912. bottom: 0.01
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Normal",
  12919. height: math.unit(6 + 10 / 12, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Big",
  12924. height: math.unit(12, "meters")
  12925. },
  12926. {
  12927. name: "Macro",
  12928. height: math.unit(500, "meters")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(2, "km")
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(185, "cm"),
  12941. weight: math.unit(68, "kg"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/kauko/front.svg",
  12945. extra: 1455 / 1421,
  12946. bottom: 0.03
  12947. }
  12948. },
  12949. back: {
  12950. height: math.unit(185, "cm"),
  12951. weight: math.unit(68, "kg"),
  12952. name: "Back",
  12953. image: {
  12954. source: "./media/characters/kauko/back.svg",
  12955. extra: 1455 / 1421,
  12956. bottom: 0.004
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(185, "cm"),
  12964. default: true
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "kg"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/varg/front.svg",
  12977. extra: 1108 / 1018,
  12978. bottom: 0.0375
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(5, "meters")
  12986. },
  12987. {
  12988. name: "Macro",
  12989. height: math.unit(200, "meters")
  12990. },
  12991. {
  12992. name: "Megamacro",
  12993. height: math.unit(20, "kilometers")
  12994. },
  12995. {
  12996. name: "True Size",
  12997. height: math.unit(211, "km"),
  12998. default: true
  12999. },
  13000. {
  13001. name: "Gigamacro",
  13002. height: math.unit(1000, "km")
  13003. },
  13004. {
  13005. name: "Gigamacro+",
  13006. height: math.unit(8000, "km")
  13007. },
  13008. {
  13009. name: "Teramacro",
  13010. height: math.unit(1000000, "km")
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(7 + 7 / 12, "feet"),
  13019. weight: math.unit(267, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/dayza/front.svg",
  13023. extra: 1262 / 1200,
  13024. bottom: 0.035
  13025. }
  13026. },
  13027. side: {
  13028. height: math.unit(7 + 7 / 12, "feet"),
  13029. weight: math.unit(267, "lb"),
  13030. name: "Side",
  13031. image: {
  13032. source: "./media/characters/dayza/side.svg",
  13033. extra: 1295 / 1245,
  13034. bottom: 0.05
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(7 + 7 / 12, "feet"),
  13039. weight: math.unit(267, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/dayza/back.svg",
  13043. extra: 1241 / 1170
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Normal",
  13050. height: math.unit(7 + 7 / 12, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Macro",
  13055. height: math.unit(155, "feet")
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(6 + 5 / 12, "feet"),
  13064. weight: math.unit(160, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/xanthos/front.svg",
  13068. extra: 1,
  13069. bottom: 0.04
  13070. }
  13071. },
  13072. back: {
  13073. height: math.unit(6 + 5 / 12, "feet"),
  13074. weight: math.unit(160, "lb"),
  13075. name: "Back",
  13076. image: {
  13077. source: "./media/characters/xanthos/back.svg",
  13078. extra: 1,
  13079. bottom: 0.03
  13080. }
  13081. },
  13082. hand: {
  13083. height: math.unit(0.928, "feet"),
  13084. name: "Hand",
  13085. image: {
  13086. source: "./media/characters/xanthos/hand.svg"
  13087. }
  13088. },
  13089. foot: {
  13090. height: math.unit(1.286, "feet"),
  13091. name: "Foot",
  13092. image: {
  13093. source: "./media/characters/xanthos/foot.svg"
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(6 + 5 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Normal+",
  13105. height: math.unit(6, "meters")
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(40, "feet")
  13110. },
  13111. {
  13112. name: "Macro+",
  13113. height: math.unit(200, "meters")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(20, "km")
  13118. },
  13119. {
  13120. name: "Megamacro+",
  13121. height: math.unit(100, "km")
  13122. },
  13123. {
  13124. name: "Gigamacro",
  13125. height: math.unit(200, "megameters")
  13126. },
  13127. {
  13128. name: "Gigamacro+",
  13129. height: math.unit(1.5, "gigameters")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6 + 3 / 12, "feet"),
  13138. weight: math.unit(215, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/grynn/front.svg",
  13142. extra: 4627 / 4209,
  13143. bottom: 0.047
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Micro",
  13150. height: math.unit(6, "inches")
  13151. },
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(6 + 3 / 12, "feet"),
  13155. default: true
  13156. },
  13157. {
  13158. name: "Big",
  13159. height: math.unit(104, "feet")
  13160. },
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(944, "feet")
  13164. },
  13165. {
  13166. name: "Macro+",
  13167. height: math.unit(9480, "feet")
  13168. },
  13169. {
  13170. name: "Megamacro",
  13171. height: math.unit(78752, "feet")
  13172. },
  13173. {
  13174. name: "Megamacro+",
  13175. height: math.unit(630128, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro++",
  13179. height: math.unit(3150695, "feet")
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(7 + 5 / 12, "feet"),
  13188. weight: math.unit(450, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/mocha-aura/front.svg",
  13192. extra: 1907 / 1817,
  13193. bottom: 0.04
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(7 + 5 / 12, "feet"),
  13198. weight: math.unit(450, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/mocha-aura/back.svg",
  13202. extra: 1900 / 1825,
  13203. bottom: 0.045
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Nano",
  13210. height: math.unit(1, "nm")
  13211. },
  13212. {
  13213. name: "Megamicro",
  13214. height: math.unit(1, "mm")
  13215. },
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(3, "inches")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(7 + 5 / 12, "feet"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(30, "feet")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(3500, "feet")
  13232. },
  13233. {
  13234. name: "Teramacro",
  13235. height: math.unit(500000, "miles")
  13236. },
  13237. {
  13238. name: "Petamacro",
  13239. height: math.unit(50000000000000000, "parsecs")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(150, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/ilisha-devya/front.svg",
  13252. extra: 1053/1049,
  13253. bottom: 270/1323
  13254. }
  13255. },
  13256. back: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Back",
  13260. image: {
  13261. source: "./media/characters/ilisha-devya/back.svg",
  13262. extra: 1131/1128,
  13263. bottom: 39/1170
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Macro",
  13270. height: math.unit(500, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Megamacro",
  13275. height: math.unit(10, "miles")
  13276. },
  13277. {
  13278. name: "Gigamacro",
  13279. height: math.unit(100000, "miles")
  13280. },
  13281. {
  13282. name: "Examacro",
  13283. height: math.unit(1e9, "lightyears")
  13284. },
  13285. {
  13286. name: "Omniversal",
  13287. height: math.unit(1e33, "lightyears")
  13288. },
  13289. {
  13290. name: "Beyond Infinite",
  13291. height: math.unit(1e100, "lightyears")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13297. {
  13298. Side: {
  13299. height: math.unit(6, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Side",
  13302. image: {
  13303. source: "./media/characters/mira/side.svg",
  13304. extra: 900 / 799,
  13305. bottom: 0.02
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Human Size",
  13312. height: math.unit(6, "feet")
  13313. },
  13314. {
  13315. name: "Macro",
  13316. height: math.unit(100, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(10, "miles")
  13322. },
  13323. {
  13324. name: "Gigamacro",
  13325. height: math.unit(25000, "miles")
  13326. },
  13327. {
  13328. name: "Teramacro",
  13329. height: math.unit(300, "AU")
  13330. },
  13331. {
  13332. name: "Full Size",
  13333. height: math.unit(4.5e10, "lightyears")
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(6, "feet"),
  13342. weight: math.unit(150, "lb"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/holly/front.svg",
  13346. extra: 639 / 606
  13347. }
  13348. },
  13349. back: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Back",
  13353. image: {
  13354. source: "./media/characters/holly/back.svg",
  13355. extra: 623 / 598
  13356. }
  13357. },
  13358. frontWorking: {
  13359. height: math.unit(6, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Front (Working)",
  13362. image: {
  13363. source: "./media/characters/holly/front-working.svg",
  13364. extra: 607 / 577,
  13365. bottom: 0.048
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(12 + 3 / 12, "feet"),
  13373. default: true
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/porter/front.svg",
  13386. extra: 1,
  13387. bottom: 0.01
  13388. }
  13389. },
  13390. frontRobes: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(150, "lb"),
  13393. name: "Front (Robes)",
  13394. image: {
  13395. source: "./media/characters/porter/front-robes.svg",
  13396. extra: 1.01,
  13397. bottom: 0.01
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(11 + 9 / 12, "feet"),
  13405. default: true
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13411. {
  13412. legendary: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Legendary",
  13416. image: {
  13417. source: "./media/characters/lucy/legendary.svg",
  13418. extra: 1355 / 1100,
  13419. bottom: 0.045
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Legendary",
  13426. height: math.unit(86882 * 2, "miles"),
  13427. default: true
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13433. {
  13434. front: {
  13435. height: math.unit(6, "feet"),
  13436. weight: math.unit(150, "lb"),
  13437. name: "Front",
  13438. image: {
  13439. source: "./media/characters/drusilla/front.svg",
  13440. extra: 678 / 635,
  13441. bottom: 0.03
  13442. }
  13443. },
  13444. back: {
  13445. height: math.unit(6, "feet"),
  13446. weight: math.unit(150, "lb"),
  13447. name: "Back",
  13448. image: {
  13449. source: "./media/characters/drusilla/back.svg",
  13450. extra: 678 / 635,
  13451. bottom: 0.005
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(100, "feet")
  13459. },
  13460. {
  13461. name: "Canon Height",
  13462. height: math.unit(2000, "feet"),
  13463. default: true
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(180, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/renard-thatch/front.svg",
  13476. extra: 2411 / 2275,
  13477. bottom: 0.01
  13478. }
  13479. },
  13480. frontPosing: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(180, "lb"),
  13483. name: "Front (Posing)",
  13484. image: {
  13485. source: "./media/characters/renard-thatch/front-posing.svg",
  13486. extra: 2381 / 2261,
  13487. bottom: 0.01
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(180, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/renard-thatch/back.svg",
  13496. extra: 2428 / 2288
  13497. }
  13498. },
  13499. },
  13500. [
  13501. {
  13502. name: "Micro",
  13503. height: math.unit(3, "inches")
  13504. },
  13505. {
  13506. name: "Default",
  13507. height: math.unit(6, "feet"),
  13508. default: true
  13509. },
  13510. {
  13511. name: "Macro",
  13512. height: math.unit(75, "feet")
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(1450, "feet"),
  13521. weight: math.unit(1.21e6, "tons"),
  13522. name: "Front",
  13523. image: {
  13524. source: "./media/characters/sekvra/front.svg",
  13525. extra: 1193/1190,
  13526. bottom: 78/1271
  13527. }
  13528. },
  13529. side: {
  13530. height: math.unit(1450, "feet"),
  13531. weight: math.unit(1.21e6, "tons"),
  13532. name: "Side",
  13533. image: {
  13534. source: "./media/characters/sekvra/side.svg",
  13535. extra: 1193/1190,
  13536. bottom: 52/1245
  13537. }
  13538. },
  13539. back: {
  13540. height: math.unit(1450, "feet"),
  13541. weight: math.unit(1.21e6, "tons"),
  13542. name: "Back",
  13543. image: {
  13544. source: "./media/characters/sekvra/back.svg",
  13545. extra: 1219/1216,
  13546. bottom: 21/1240
  13547. }
  13548. },
  13549. frontClothed: {
  13550. height: math.unit(1450, "feet"),
  13551. weight: math.unit(1.21e6, "tons"),
  13552. name: "Front (Clothed)",
  13553. image: {
  13554. source: "./media/characters/sekvra/front-clothed.svg",
  13555. extra: 1192/1189,
  13556. bottom: 79/1271
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Macro",
  13563. height: math.unit(1450, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(15000, "feet")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/carmine/front.svg",
  13581. extra: 1,
  13582. bottom: 0.035
  13583. }
  13584. },
  13585. frontArmor: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(150, "lb"),
  13588. name: "Front (Armor)",
  13589. image: {
  13590. source: "./media/characters/carmine/front-armor.svg",
  13591. extra: 1,
  13592. bottom: 0.035
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Large",
  13599. height: math.unit(1, "mile")
  13600. },
  13601. {
  13602. name: "Huge",
  13603. height: math.unit(40, "miles"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Colossal",
  13608. height: math.unit(2500, "miles")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/elyssia/front.svg",
  13621. extra: 2201 / 2035,
  13622. bottom: 0.05
  13623. }
  13624. },
  13625. frontClothed: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Front (Clothed)",
  13629. image: {
  13630. source: "./media/characters/elyssia/front-clothed.svg",
  13631. extra: 2201 / 2035,
  13632. bottom: 0.05
  13633. }
  13634. },
  13635. back: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Back",
  13639. image: {
  13640. source: "./media/characters/elyssia/back.svg",
  13641. extra: 2201 / 2035,
  13642. bottom: 0.013
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Smaller",
  13649. height: math.unit(150, "feet")
  13650. },
  13651. {
  13652. name: "Standard",
  13653. height: math.unit(1400, "feet"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Distracted",
  13658. height: math.unit(15000, "feet")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(7 + 4/12, "feet"),
  13667. weight: math.unit(690, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/geno-maxwell/front.svg",
  13671. extra: 984/856,
  13672. bottom: 87/1071
  13673. }
  13674. },
  13675. back: {
  13676. height: math.unit(7 + 4/12, "feet"),
  13677. weight: math.unit(690, "lb"),
  13678. name: "Back",
  13679. image: {
  13680. source: "./media/characters/geno-maxwell/back.svg",
  13681. extra: 981/854,
  13682. bottom: 57/1038
  13683. }
  13684. },
  13685. frontCostume: {
  13686. height: math.unit(7 + 4/12, "feet"),
  13687. weight: math.unit(690, "lb"),
  13688. name: "Front (Costume)",
  13689. image: {
  13690. source: "./media/characters/geno-maxwell/front-costume.svg",
  13691. extra: 984/856,
  13692. bottom: 87/1071
  13693. }
  13694. },
  13695. backcostume: {
  13696. height: math.unit(7 + 4/12, "feet"),
  13697. weight: math.unit(690, "lb"),
  13698. name: "Back (Costume)",
  13699. image: {
  13700. source: "./media/characters/geno-maxwell/back-costume.svg",
  13701. extra: 981/854,
  13702. bottom: 57/1038
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Micro",
  13709. height: math.unit(3, "inches")
  13710. },
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(7 + 4 / 12, "feet"),
  13714. default: true
  13715. },
  13716. {
  13717. name: "Macro",
  13718. height: math.unit(220, "feet")
  13719. },
  13720. {
  13721. name: "Megamacro",
  13722. height: math.unit(11, "miles")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(7 + 4/12, "feet"),
  13731. weight: math.unit(750, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/regena-maxwell/front.svg",
  13735. extra: 984/856,
  13736. bottom: 87/1071
  13737. }
  13738. },
  13739. back: {
  13740. height: math.unit(7 + 4/12, "feet"),
  13741. weight: math.unit(750, "lb"),
  13742. name: "Back",
  13743. image: {
  13744. source: "./media/characters/regena-maxwell/back.svg",
  13745. extra: 981/854,
  13746. bottom: 57/1038
  13747. }
  13748. },
  13749. frontCostume: {
  13750. height: math.unit(7 + 4/12, "feet"),
  13751. weight: math.unit(750, "lb"),
  13752. name: "Front (Costume)",
  13753. image: {
  13754. source: "./media/characters/regena-maxwell/front-costume.svg",
  13755. extra: 984/856,
  13756. bottom: 87/1071
  13757. }
  13758. },
  13759. backcostume: {
  13760. height: math.unit(7 + 4/12, "feet"),
  13761. weight: math.unit(750, "lb"),
  13762. name: "Back (Costume)",
  13763. image: {
  13764. source: "./media/characters/regena-maxwell/back-costume.svg",
  13765. extra: 981/854,
  13766. bottom: 57/1038
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(7 + 4 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(220, "feet")
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(11, "miles")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(150, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13795. extra: 860 / 690,
  13796. bottom: 0.03
  13797. }
  13798. },
  13799. },
  13800. [
  13801. {
  13802. name: "Normal",
  13803. height: math.unit(1.7, "meters"),
  13804. default: true
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(150, "lb"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/quilly/front.svg",
  13817. extra: 890 / 776
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Gigamacro",
  13824. height: math.unit(404090, "miles"),
  13825. default: true
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(7 + 8 / 12, "feet"),
  13834. weight: math.unit(350, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/tempest/front.svg",
  13838. extra: 1175 / 1086,
  13839. bottom: 0.02
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(7 + 8 / 12, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13853. {
  13854. side: {
  13855. height: math.unit(4 + 5 / 12, "feet"),
  13856. weight: math.unit(80, "lb"),
  13857. name: "Side",
  13858. image: {
  13859. source: "./media/characters/rodger/side.svg",
  13860. extra: 1235 / 1118
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Micro",
  13867. height: math.unit(1, "inch")
  13868. },
  13869. {
  13870. name: "Normal",
  13871. height: math.unit(4 + 5 / 12, "feet"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Macro",
  13876. height: math.unit(120, "feet")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/danyel/front.svg",
  13889. extra: 1185 / 1123,
  13890. bottom: 0.05
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Shrunken",
  13897. height: math.unit(0.5, "mm")
  13898. },
  13899. {
  13900. name: "Micro",
  13901. height: math.unit(1, "mm"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Upsized",
  13906. height: math.unit(5 + 5 / 12, "feet")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(5 + 6 / 12, "feet"),
  13915. weight: math.unit(200, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/vivian-bijoux/front.svg",
  13919. extra: 1217/1209,
  13920. bottom: 76/1293
  13921. }
  13922. },
  13923. back: {
  13924. height: math.unit(5 + 6 / 12, "feet"),
  13925. weight: math.unit(200, "lb"),
  13926. name: "Back",
  13927. image: {
  13928. source: "./media/characters/vivian-bijoux/back.svg",
  13929. extra: 1214/1208,
  13930. bottom: 51/1265
  13931. }
  13932. },
  13933. dressed: {
  13934. height: math.unit(5 + 6 / 12, "feet"),
  13935. weight: math.unit(200, "lb"),
  13936. name: "Dressed",
  13937. image: {
  13938. source: "./media/characters/vivian-bijoux/dressed.svg",
  13939. extra: 1217/1209,
  13940. bottom: 76/1293
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(5 + 6 / 12, "feet"),
  13948. default: true
  13949. },
  13950. {
  13951. name: "Bad Dream",
  13952. height: math.unit(500, "feet")
  13953. },
  13954. {
  13955. name: "Nightmare",
  13956. height: math.unit(500, "miles")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6 + 1 / 12, "feet"),
  13965. weight: math.unit(260, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/zeta/front.svg",
  13969. extra: 1968 / 1889,
  13970. bottom: 0.06
  13971. }
  13972. },
  13973. back: {
  13974. height: math.unit(6 + 1 / 12, "feet"),
  13975. weight: math.unit(260, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/zeta/back.svg",
  13979. extra: 1944 / 1858,
  13980. bottom: 0.03
  13981. }
  13982. },
  13983. hand: {
  13984. height: math.unit(1.112, "feet"),
  13985. name: "Hand",
  13986. image: {
  13987. source: "./media/characters/zeta/hand.svg"
  13988. }
  13989. },
  13990. foot: {
  13991. height: math.unit(1.48, "feet"),
  13992. name: "Foot",
  13993. image: {
  13994. source: "./media/characters/zeta/foot.svg"
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Micro",
  14001. height: math.unit(6, "inches")
  14002. },
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(6 + 1 / 12, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(20, "feet")
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(6, "feet"),
  14019. weight: math.unit(150, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/jamie-larsen/front.svg",
  14023. extra: 962 / 933,
  14024. bottom: 0.02
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(6, "feet"),
  14029. weight: math.unit(150, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/jamie-larsen/back.svg",
  14033. extra: 997 / 946
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Macro",
  14040. height: math.unit(28 + 7 / 12, "feet"),
  14041. default: true
  14042. },
  14043. {
  14044. name: "Macro+",
  14045. height: math.unit(180, "feet")
  14046. },
  14047. {
  14048. name: "Megamacro",
  14049. height: math.unit(10, "miles")
  14050. },
  14051. {
  14052. name: "Gigamacro",
  14053. height: math.unit(200000, "miles")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(120, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/vance/front.svg",
  14066. extra: 1980 / 1890,
  14067. bottom: 0.09
  14068. }
  14069. },
  14070. back: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(120, "lb"),
  14073. name: "Back",
  14074. image: {
  14075. source: "./media/characters/vance/back.svg",
  14076. extra: 2081 / 1994,
  14077. bottom: 0.014
  14078. }
  14079. },
  14080. hand: {
  14081. height: math.unit(0.88, "feet"),
  14082. name: "Hand",
  14083. image: {
  14084. source: "./media/characters/vance/hand.svg"
  14085. }
  14086. },
  14087. foot: {
  14088. height: math.unit(0.64, "feet"),
  14089. name: "Foot",
  14090. image: {
  14091. source: "./media/characters/vance/foot.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Small",
  14098. height: math.unit(90, "feet"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(100, "meters")
  14104. },
  14105. {
  14106. name: "Megamacro",
  14107. height: math.unit(15, "miles")
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(180, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/xochitl/front.svg",
  14120. extra: 2297 / 2261,
  14121. bottom: 0.065
  14122. }
  14123. },
  14124. back: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(180, "lb"),
  14127. name: "Back",
  14128. image: {
  14129. source: "./media/characters/xochitl/back.svg",
  14130. extra: 2386 / 2354,
  14131. bottom: 0.01
  14132. }
  14133. },
  14134. foot: {
  14135. height: math.unit(6 / 5 * 1.15, "feet"),
  14136. weight: math.unit(150, "lb"),
  14137. name: "Foot",
  14138. image: {
  14139. source: "./media/characters/xochitl/foot.svg"
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Macro",
  14146. height: math.unit(80, "feet")
  14147. },
  14148. {
  14149. name: "Macro+",
  14150. height: math.unit(400, "feet"),
  14151. default: true
  14152. },
  14153. {
  14154. name: "Gigamacro",
  14155. height: math.unit(80000, "miles")
  14156. },
  14157. {
  14158. name: "Gigamacro+",
  14159. height: math.unit(400000, "miles")
  14160. },
  14161. {
  14162. name: "Teramacro",
  14163. height: math.unit(300, "AU")
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(150, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/vincent/front.svg",
  14176. extra: 1130 / 1080,
  14177. bottom: 0.055
  14178. }
  14179. },
  14180. beak: {
  14181. height: math.unit(6 * 0.1, "feet"),
  14182. name: "Beak",
  14183. image: {
  14184. source: "./media/characters/vincent/beak.svg"
  14185. }
  14186. },
  14187. hand: {
  14188. height: math.unit(6 * 0.85, "feet"),
  14189. weight: math.unit(150, "lb"),
  14190. name: "Hand",
  14191. image: {
  14192. source: "./media/characters/vincent/hand.svg"
  14193. }
  14194. },
  14195. foot: {
  14196. height: math.unit(6 * 0.19, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Foot",
  14199. image: {
  14200. source: "./media/characters/vincent/foot.svg"
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Base",
  14207. height: math.unit(6 + 5 / 12, "feet"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(300, "feet")
  14213. },
  14214. {
  14215. name: "Megamacro",
  14216. height: math.unit(2, "miles")
  14217. },
  14218. {
  14219. name: "Gigamacro",
  14220. height: math.unit(1000, "miles")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(2, "meters"),
  14229. weight: math.unit(500, "kg"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/coatl/front.svg",
  14233. extra: 3948 / 3500,
  14234. bottom: 0.082
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Normal",
  14241. height: math.unit(4, "meters")
  14242. },
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(100, "meters"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Macro+",
  14250. height: math.unit(300, "meters")
  14251. },
  14252. {
  14253. name: "Megamacro",
  14254. height: math.unit(3, "gigameters")
  14255. },
  14256. {
  14257. name: "Megamacro+",
  14258. height: math.unit(300, "terameters")
  14259. },
  14260. {
  14261. name: "Megamacro++",
  14262. height: math.unit(3, "lightyears")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(50, "kg"),
  14272. name: "front",
  14273. image: {
  14274. source: "./media/characters/shiroryu/front.svg",
  14275. extra: 1990 / 1935
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Mortal Mingling",
  14282. height: math.unit(3, "meters")
  14283. },
  14284. {
  14285. name: "Kaiju-ish",
  14286. height: math.unit(250, "meters")
  14287. },
  14288. {
  14289. name: "Somewhat Godly",
  14290. height: math.unit(400, "km"),
  14291. default: true
  14292. },
  14293. {
  14294. name: "Planetary",
  14295. height: math.unit(300, "megameters")
  14296. },
  14297. {
  14298. name: "Galaxy-dwarfing",
  14299. height: math.unit(450, "kiloparsecs")
  14300. },
  14301. {
  14302. name: "Universe Eater",
  14303. height: math.unit(150, "gigaparsecs")
  14304. },
  14305. {
  14306. name: "Almost Immeasurable",
  14307. height: math.unit(1.3e266, "yottaparsecs")
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14313. {
  14314. front: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(150, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/umeko/front.svg",
  14320. extra: 1,
  14321. bottom: 0.019
  14322. }
  14323. },
  14324. frontArmored: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Front (Armored)",
  14328. image: {
  14329. source: "./media/characters/umeko/front-armored.svg",
  14330. extra: 1,
  14331. bottom: 0.021
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Macro",
  14338. height: math.unit(220, "feet"),
  14339. default: true
  14340. },
  14341. {
  14342. name: "Guardian Dragon",
  14343. height: math.unit(50, "miles")
  14344. },
  14345. {
  14346. name: "Cosmic",
  14347. height: math.unit(800000, "miles")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(6, "feet"),
  14356. weight: math.unit(150, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/cassidy/front.svg",
  14360. extra: 810/808,
  14361. bottom: 41/851
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Canon Height",
  14368. height: math.unit(120, "feet"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Macro+",
  14373. height: math.unit(400, "feet")
  14374. },
  14375. {
  14376. name: "Macro++",
  14377. height: math.unit(4000, "feet")
  14378. },
  14379. {
  14380. name: "Megamacro",
  14381. height: math.unit(3, "miles")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(150, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/isaac/front.svg",
  14394. extra: 896 / 815,
  14395. bottom: 0.11
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Human Size",
  14402. height: math.unit(8, "feet"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(400, "feet")
  14408. },
  14409. {
  14410. name: "Megamacro",
  14411. height: math.unit(50, "miles")
  14412. },
  14413. {
  14414. name: "Canon Height",
  14415. height: math.unit(200, "AU")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(72, "kg"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/sleekit/front.svg",
  14428. extra: 4693 / 4487,
  14429. bottom: 0.012
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Minimum Height",
  14436. height: math.unit(10, "meters")
  14437. },
  14438. {
  14439. name: "Smaller",
  14440. height: math.unit(25, "meters")
  14441. },
  14442. {
  14443. name: "Larger",
  14444. height: math.unit(38, "meters"),
  14445. default: true
  14446. },
  14447. {
  14448. name: "Maximum height",
  14449. height: math.unit(100, "meters")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/nillia/front.svg",
  14462. extra: 2195 / 2037,
  14463. bottom: 0.005
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/nillia/back.svg",
  14472. extra: 2195 / 2037,
  14473. bottom: 0.005
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Canon Height",
  14480. height: math.unit(489, "feet"),
  14481. default: true
  14482. }
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(150, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/mesmyriza/front.svg",
  14494. extra: 2067 / 1784,
  14495. bottom: 0.035
  14496. }
  14497. },
  14498. foot: {
  14499. height: math.unit(6 / (250 / 35), "feet"),
  14500. name: "Foot",
  14501. image: {
  14502. source: "./media/characters/mesmyriza/foot.svg"
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Macro",
  14509. height: math.unit(457, "meters"),
  14510. default: true
  14511. },
  14512. {
  14513. name: "Megamacro",
  14514. height: math.unit(8, "megameters")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(250, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/saudade/front.svg",
  14527. extra: 1172 / 1139,
  14528. bottom: 0.035
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(3, "inches")
  14536. },
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(6, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(50, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(2800, "feet")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(5 + 4 / 12, "feet"),
  14557. weight: math.unit(100, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/keireer/front.svg",
  14561. extra: 716 / 666,
  14562. bottom: 0.05
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(5 + 4 / 12, "feet"),
  14570. default: true
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(6, "feet"),
  14579. weight: math.unit(90, "kg"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/mirja/front.svg",
  14583. extra: 1789 / 1683,
  14584. bottom: 0.05
  14585. }
  14586. },
  14587. frontDressed: {
  14588. height: math.unit(6, "feet"),
  14589. weight: math.unit(90, "lb"),
  14590. name: "Front (Dressed)",
  14591. image: {
  14592. source: "./media/characters/mirja/front-dressed.svg",
  14593. extra: 1789 / 1683,
  14594. bottom: 0.05
  14595. }
  14596. },
  14597. back: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(90, "lb"),
  14600. name: "Back",
  14601. image: {
  14602. source: "./media/characters/mirja/back.svg",
  14603. extra: 953 / 917,
  14604. bottom: 0.017
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "\"Incognito\"",
  14611. height: math.unit(3, "meters")
  14612. },
  14613. {
  14614. name: "Strolling Size",
  14615. height: math.unit(15, "km")
  14616. },
  14617. {
  14618. name: "Larger Strolling Size",
  14619. height: math.unit(400, "km")
  14620. },
  14621. {
  14622. name: "Preferred Size",
  14623. height: math.unit(5000, "km")
  14624. },
  14625. {
  14626. name: "True Size",
  14627. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(15, "feet"),
  14637. weight: math.unit(880, "kg"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/nightraver/front.svg",
  14641. extra: 2444 / 2160,
  14642. bottom: 0.027
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(15, "feet"),
  14647. weight: math.unit(880, "kg"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/nightraver/back.svg",
  14651. extra: 2309 / 2180,
  14652. bottom: 0.005
  14653. }
  14654. },
  14655. sole: {
  14656. height: math.unit(2.878, "feet"),
  14657. name: "Sole",
  14658. image: {
  14659. source: "./media/characters/nightraver/sole.svg"
  14660. }
  14661. },
  14662. foot: {
  14663. height: math.unit(2.285, "feet"),
  14664. name: "Foot",
  14665. image: {
  14666. source: "./media/characters/nightraver/foot.svg"
  14667. }
  14668. },
  14669. maw: {
  14670. height: math.unit(2.67, "feet"),
  14671. name: "Maw",
  14672. image: {
  14673. source: "./media/characters/nightraver/maw.svg"
  14674. }
  14675. },
  14676. },
  14677. [
  14678. {
  14679. name: "Micro",
  14680. height: math.unit(1, "cm")
  14681. },
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(15, "feet"),
  14685. default: true
  14686. },
  14687. {
  14688. name: "Macro",
  14689. height: math.unit(300, "feet")
  14690. },
  14691. {
  14692. name: "Megamacro",
  14693. height: math.unit(300, "miles")
  14694. },
  14695. {
  14696. name: "Gigamacro",
  14697. height: math.unit(10000, "miles")
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14703. {
  14704. side: {
  14705. height: math.unit(2, "inches"),
  14706. weight: math.unit(5, "grams"),
  14707. name: "Side",
  14708. image: {
  14709. source: "./media/characters/arc/side.svg"
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(2, "inches"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(1.1938, "meters"),
  14726. weight: math.unit(54, "kg"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/nebula-shahar/front.svg",
  14730. extra: 1642 / 1436,
  14731. bottom: 0.06
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Megamicro",
  14738. height: math.unit(0.3, "mm")
  14739. },
  14740. {
  14741. name: "Micro",
  14742. height: math.unit(3, "cm")
  14743. },
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(138, "cm"),
  14747. default: true
  14748. },
  14749. {
  14750. name: "Macro",
  14751. height: math.unit(30, "m")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(5.24, "feet"),
  14760. weight: math.unit(150, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/shayla/front.svg",
  14764. extra: 1512 / 1414,
  14765. bottom: 0.01
  14766. }
  14767. },
  14768. back: {
  14769. height: math.unit(5.24, "feet"),
  14770. weight: math.unit(150, "lb"),
  14771. name: "Back",
  14772. image: {
  14773. source: "./media/characters/shayla/back.svg",
  14774. extra: 1512 / 1414
  14775. }
  14776. },
  14777. hand: {
  14778. height: math.unit(0.7781496062992126, "feet"),
  14779. name: "Hand",
  14780. image: {
  14781. source: "./media/characters/shayla/hand.svg"
  14782. }
  14783. },
  14784. foot: {
  14785. height: math.unit(1.4206036745406823, "feet"),
  14786. name: "Foot",
  14787. image: {
  14788. source: "./media/characters/shayla/foot.svg"
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Micro",
  14795. height: math.unit(0.32, "feet")
  14796. },
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(5.24, "feet"),
  14800. default: true
  14801. },
  14802. {
  14803. name: "Macro",
  14804. height: math.unit(492.12, "feet")
  14805. },
  14806. {
  14807. name: "Megamacro",
  14808. height: math.unit(186.41, "miles")
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14814. {
  14815. front: {
  14816. height: math.unit(2.2, "m"),
  14817. weight: math.unit(120, "kg"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/pia-jr/front.svg",
  14821. extra: 1000 / 970,
  14822. bottom: 0.035
  14823. }
  14824. },
  14825. hand: {
  14826. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14827. name: "Hand",
  14828. image: {
  14829. source: "./media/characters/pia-jr/hand.svg"
  14830. }
  14831. },
  14832. paw: {
  14833. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14834. name: "Paw",
  14835. image: {
  14836. source: "./media/characters/pia-jr/paw.svg"
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Micro",
  14843. height: math.unit(1.2, "cm")
  14844. },
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(2.2, "m"),
  14848. default: true
  14849. },
  14850. {
  14851. name: "Macro",
  14852. height: math.unit(180, "m")
  14853. },
  14854. {
  14855. name: "Megamacro",
  14856. height: math.unit(420, "km")
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(2, "m"),
  14865. weight: math.unit(115, "kg"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/pia-sr/front.svg",
  14869. extra: 760 / 730,
  14870. bottom: 0.015
  14871. }
  14872. },
  14873. back: {
  14874. height: math.unit(2, "m"),
  14875. weight: math.unit(115, "kg"),
  14876. name: "Back",
  14877. image: {
  14878. source: "./media/characters/pia-sr/back.svg",
  14879. extra: 760 / 730,
  14880. bottom: 0.01
  14881. }
  14882. },
  14883. hand: {
  14884. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14885. name: "Hand",
  14886. image: {
  14887. source: "./media/characters/pia-sr/hand.svg"
  14888. }
  14889. },
  14890. foot: {
  14891. height: math.unit(1.83, "feet"),
  14892. name: "Foot",
  14893. image: {
  14894. source: "./media/characters/pia-sr/foot.svg"
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Micro",
  14901. height: math.unit(88, "mm")
  14902. },
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(2, "m"),
  14906. default: true
  14907. },
  14908. {
  14909. name: "Macro",
  14910. height: math.unit(200, "m")
  14911. },
  14912. {
  14913. name: "Megamacro",
  14914. height: math.unit(420, "km")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(8 + 2 / 12, "feet"),
  14923. weight: math.unit(300, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/kibibyte/front.svg",
  14927. extra: 2221 / 2098,
  14928. bottom: 0.04
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(8 + 2 / 12, "feet"),
  14936. default: true
  14937. },
  14938. {
  14939. name: "Socialable Macro",
  14940. height: math.unit(50, "feet")
  14941. },
  14942. {
  14943. name: "Macro",
  14944. height: math.unit(300, "feet")
  14945. },
  14946. {
  14947. name: "Megamacro",
  14948. height: math.unit(500, "miles")
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/felix/front.svg",
  14961. extra: 762 / 722,
  14962. bottom: 0.02
  14963. }
  14964. },
  14965. frontClothed: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Front (Clothed)",
  14969. image: {
  14970. source: "./media/characters/felix/front-clothed.svg",
  14971. extra: 762 / 722,
  14972. bottom: 0.02
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(6 + 8 / 12, "feet"),
  14980. default: true
  14981. },
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(2600, "feet")
  14985. },
  14986. {
  14987. name: "Megamacro",
  14988. height: math.unit(450, "miles")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(6 + 1 / 12, "feet"),
  14997. weight: math.unit(250, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/tobo/front.svg",
  15001. extra: 608 / 586,
  15002. bottom: 0.023
  15003. }
  15004. },
  15005. back: {
  15006. height: math.unit(6 + 1 / 12, "feet"),
  15007. weight: math.unit(250, "lb"),
  15008. name: "Back",
  15009. image: {
  15010. source: "./media/characters/tobo/back.svg",
  15011. extra: 608 / 586
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Nano",
  15018. height: math.unit(2, "nm")
  15019. },
  15020. {
  15021. name: "Megamicro",
  15022. height: math.unit(0.1, "mm")
  15023. },
  15024. {
  15025. name: "Micro",
  15026. height: math.unit(1, "inch"),
  15027. default: true
  15028. },
  15029. {
  15030. name: "Human-sized",
  15031. height: math.unit(6 + 1 / 12, "feet")
  15032. },
  15033. {
  15034. name: "Macro",
  15035. height: math.unit(250, "feet")
  15036. },
  15037. {
  15038. name: "Megamacro",
  15039. height: math.unit(75, "miles")
  15040. },
  15041. {
  15042. name: "Texas-sized",
  15043. height: math.unit(750, "miles")
  15044. },
  15045. {
  15046. name: "Teramacro",
  15047. height: math.unit(50000, "miles")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(269, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/danny-kapowsky/front.svg",
  15060. extra: 766 / 736,
  15061. bottom: 0.044
  15062. }
  15063. },
  15064. back: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(269, "lb"),
  15067. name: "Back",
  15068. image: {
  15069. source: "./media/characters/danny-kapowsky/back.svg",
  15070. extra: 797 / 760,
  15071. bottom: 0.025
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(150, "feet"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Macro+",
  15083. height: math.unit(200, "feet")
  15084. },
  15085. {
  15086. name: "Macro++",
  15087. height: math.unit(300, "feet")
  15088. },
  15089. {
  15090. name: "Macro+++",
  15091. height: math.unit(400, "feet")
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15097. {
  15098. side: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(170, "lb"),
  15101. name: "Side",
  15102. image: {
  15103. source: "./media/characters/finn/side.svg",
  15104. extra: 1953 / 1807,
  15105. bottom: 0.057
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Megamacro",
  15112. height: math.unit(14445, "feet"),
  15113. default: true
  15114. },
  15115. ]
  15116. ))
  15117. characterMakers.push(() => makeCharacter(
  15118. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15119. {
  15120. front: {
  15121. height: math.unit(5 + 6 / 12, "feet"),
  15122. weight: math.unit(125, "lb"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/roy/front.svg",
  15126. extra: 1,
  15127. bottom: 0.11
  15128. }
  15129. },
  15130. },
  15131. [
  15132. {
  15133. name: "Micro",
  15134. height: math.unit(3, "inches"),
  15135. default: true
  15136. },
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 6 / 12, "feet")
  15140. },
  15141. {
  15142. name: "Lesser Macro",
  15143. height: math.unit(60, "feet")
  15144. },
  15145. {
  15146. name: "Greater Macro",
  15147. height: math.unit(120, "feet")
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(6, "feet"),
  15156. weight: math.unit(100, "lb"),
  15157. name: "Front",
  15158. image: {
  15159. source: "./media/characters/aevsivs/front.svg",
  15160. extra: 1,
  15161. bottom: 0.03
  15162. }
  15163. },
  15164. back: {
  15165. height: math.unit(6, "feet"),
  15166. weight: math.unit(100, "lb"),
  15167. name: "Back",
  15168. image: {
  15169. source: "./media/characters/aevsivs/back.svg"
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Micro",
  15176. height: math.unit(2, "inches"),
  15177. default: true
  15178. },
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(5, "feet")
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 7 / 12, "feet"),
  15190. weight: math.unit(159, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/hildegard/front.svg",
  15194. extra: 289 / 269,
  15195. bottom: 7.63 / 297.8
  15196. }
  15197. },
  15198. back: {
  15199. height: math.unit(5 + 7 / 12, "feet"),
  15200. weight: math.unit(159, "lb"),
  15201. name: "Back",
  15202. image: {
  15203. source: "./media/characters/hildegard/back.svg",
  15204. extra: 280 / 260,
  15205. bottom: 2.3 / 282
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(5 + 7 / 12, "feet"),
  15213. default: true
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15219. {
  15220. bernard: {
  15221. height: math.unit(2 + 7 / 12, "feet"),
  15222. weight: math.unit(66, "lb"),
  15223. name: "Bernard",
  15224. rename: true,
  15225. image: {
  15226. source: "./media/characters/bernard-wilder/bernard.svg",
  15227. extra: 192 / 128,
  15228. bottom: 0.05
  15229. }
  15230. },
  15231. wilder: {
  15232. height: math.unit(5 + 8 / 12, "feet"),
  15233. weight: math.unit(143, "lb"),
  15234. name: "Wilder",
  15235. rename: true,
  15236. image: {
  15237. source: "./media/characters/bernard-wilder/wilder.svg",
  15238. extra: 361 / 312,
  15239. bottom: 0.02
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(2 + 7 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15253. {
  15254. anthro: {
  15255. height: math.unit(6 + 1 / 12, "feet"),
  15256. weight: math.unit(155, "lb"),
  15257. name: "Anthro",
  15258. image: {
  15259. source: "./media/characters/hearth/anthro.svg",
  15260. extra: 1178/1136,
  15261. bottom: 28/1206
  15262. }
  15263. },
  15264. feral: {
  15265. height: math.unit(3.78, "feet"),
  15266. weight: math.unit(35, "kg"),
  15267. name: "Feral",
  15268. image: {
  15269. source: "./media/characters/hearth/feral.svg",
  15270. extra: 153 / 135,
  15271. bottom: 0.03
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(6 + 1 / 12, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(182, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/ingrid/front.svg",
  15292. extra: 294 / 268,
  15293. bottom: 0.027
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(6, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15307. {
  15308. eevee: {
  15309. height: math.unit(2 + 10 / 12, "feet"),
  15310. weight: math.unit(86, "lb"),
  15311. name: "Malgam",
  15312. image: {
  15313. source: "./media/characters/malgam/eevee.svg",
  15314. extra: 952/784,
  15315. bottom: 38/990
  15316. }
  15317. },
  15318. sylveon: {
  15319. height: math.unit(4, "feet"),
  15320. weight: math.unit(101, "lb"),
  15321. name: "Future Malgam",
  15322. rename: true,
  15323. image: {
  15324. source: "./media/characters/malgam/sylveon.svg",
  15325. extra: 371 / 325,
  15326. bottom: 0.015
  15327. }
  15328. },
  15329. gigantamax: {
  15330. height: math.unit(50, "feet"),
  15331. name: "Gigantamax Malgam",
  15332. rename: true,
  15333. image: {
  15334. source: "./media/characters/malgam/gigantamax.svg"
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(2 + 10 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(5 + 11 / 12, "feet"),
  15351. weight: math.unit(188, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/fleur/front.svg",
  15355. extra: 309 / 283,
  15356. bottom: 0.007
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(5 + 11 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(5 + 4 / 12, "feet"),
  15373. weight: math.unit(122, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/jude/front.svg",
  15377. extra: 288 / 273,
  15378. bottom: 0.03
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(5 + 4 / 12, "feet"),
  15386. default: true
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(5 + 11 / 12, "feet"),
  15395. weight: math.unit(190, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/seara/front.svg",
  15399. extra: 1,
  15400. bottom: 0.05
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(5 + 11 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(16 + 5 / 12, "feet"),
  15417. weight: math.unit(524, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/caspian/front.svg",
  15421. extra: 1,
  15422. bottom: 0.04
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(16 + 5 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 7 / 12, "feet"),
  15439. weight: math.unit(170, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/mika/front.svg",
  15443. extra: 1,
  15444. bottom: 0.016
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(5 + 7 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6 + 2 / 12, "feet"),
  15461. weight: math.unit(268, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/sol/front.svg",
  15465. extra: 247 / 231,
  15466. bottom: 0.05
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(6 + 2 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15480. {
  15481. buizel: {
  15482. height: math.unit(2 + 5 / 12, "feet"),
  15483. weight: math.unit(87, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/umiko/buizel.svg",
  15487. extra: 172 / 157,
  15488. bottom: 0.01
  15489. },
  15490. form: "buizel",
  15491. default: true
  15492. },
  15493. floatzel: {
  15494. height: math.unit(5 + 9 / 12, "feet"),
  15495. weight: math.unit(250, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/umiko/floatzel.svg",
  15499. extra: 1076/1006,
  15500. bottom: 15/1091
  15501. },
  15502. form: "floatzel",
  15503. default: true
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(2 + 5 / 12, "feet"),
  15510. form: "buizel",
  15511. default: true
  15512. },
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(5 + 9 / 12, "feet"),
  15516. form: "floatzel",
  15517. default: true
  15518. },
  15519. ],
  15520. {
  15521. "buizel": {
  15522. name: "Buizel"
  15523. },
  15524. "floatzel": {
  15525. name: "Floatzel",
  15526. default: true
  15527. }
  15528. }
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6 + 2 / 12, "feet"),
  15535. weight: math.unit(146, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/iliac/front.svg",
  15539. extra: 389 / 365,
  15540. bottom: 0.035
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(6 + 2 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(170, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/topaz/front.svg",
  15561. extra: 317 / 303,
  15562. bottom: 0.055
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(5 + 11 / 12, "feet"),
  15579. weight: math.unit(144, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/gabriel/front.svg",
  15583. extra: 285 / 262,
  15584. bottom: 0.004
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(5 + 11 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15598. {
  15599. side: {
  15600. height: math.unit(6 + 5 / 12, "feet"),
  15601. weight: math.unit(300, "lb"),
  15602. name: "Side",
  15603. image: {
  15604. source: "./media/characters/tempest-suicune/side.svg",
  15605. extra: 195 / 154,
  15606. bottom: 0.04
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(6 + 5 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(7 + 2 / 12, "feet"),
  15623. weight: math.unit(322, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/vulcan/front.svg",
  15627. extra: 154 / 147,
  15628. bottom: 0.04
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(7 + 2 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 10 / 12, "feet"),
  15645. weight: math.unit(264, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/gault/front.svg",
  15649. extra: 161 / 140,
  15650. bottom: 0.028
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 10 / 12, "feet"),
  15658. default: true
  15659. },
  15660. ]
  15661. ))
  15662. characterMakers.push(() => makeCharacter(
  15663. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15664. {
  15665. front: {
  15666. height: math.unit(6, "feet"),
  15667. weight: math.unit(150, "lb"),
  15668. name: "Front",
  15669. image: {
  15670. source: "./media/characters/shard/front.svg",
  15671. extra: 273 / 238,
  15672. bottom: 0.02
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Normal",
  15679. height: math.unit(3 + 6 / 12, "feet"),
  15680. default: true
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(5 + 11 / 12, "feet"),
  15689. weight: math.unit(146, "lb"),
  15690. name: "Front",
  15691. image: {
  15692. source: "./media/characters/ashe/front.svg",
  15693. extra: 400 / 373,
  15694. bottom: 0.01
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(5 + 11 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(5 + 5 / 12, "feet"),
  15711. weight: math.unit(135, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/beatrix/front.svg",
  15715. extra: 392 / 379,
  15716. bottom: 0.01
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(6, "feet"),
  15724. default: true
  15725. },
  15726. ]
  15727. ))
  15728. characterMakers.push(() => makeCharacter(
  15729. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15730. {
  15731. front: {
  15732. height: math.unit(6 + 2/12, "feet"),
  15733. weight: math.unit(135, "lb"),
  15734. name: "Front",
  15735. image: {
  15736. source: "./media/characters/ignatius/front.svg",
  15737. extra: 1380/1259,
  15738. bottom: 27/1407
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(6 + 2/12, "feet"),
  15746. default: true
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6 + 2 / 12, "feet"),
  15755. weight: math.unit(138, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/mei-li/front.svg",
  15759. extra: 237 / 229,
  15760. bottom: 0.03
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6 + 2 / 12, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(2 + 4 / 12, "feet"),
  15777. weight: math.unit(62, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/puru/front.svg",
  15781. extra: 206 / 149,
  15782. bottom: 0.06
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(2 + 4 / 12, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15796. {
  15797. anthro: {
  15798. height: math.unit(5 + 8/12, "feet"),
  15799. weight: math.unit(200, "lb"),
  15800. energyNeed: math.unit(2000, "kcal"),
  15801. name: "Anthro",
  15802. image: {
  15803. source: "./media/characters/kee/anthro.svg",
  15804. extra: 3251/3184,
  15805. bottom: 250/3501
  15806. }
  15807. },
  15808. taur: {
  15809. height: math.unit(11, "feet"),
  15810. weight: math.unit(500, "lb"),
  15811. energyNeed: math.unit(5000, "kcal"),
  15812. name: "Taur",
  15813. image: {
  15814. source: "./media/characters/kee/taur.svg",
  15815. extra: 1362/1320,
  15816. bottom: 83/1445
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 8/12, "feet"),
  15824. default: true
  15825. },
  15826. {
  15827. name: "Macro",
  15828. height: math.unit(35, "feet")
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15834. {
  15835. anthro: {
  15836. height: math.unit(7, "feet"),
  15837. weight: math.unit(190, "lb"),
  15838. name: "Anthro",
  15839. image: {
  15840. source: "./media/characters/cobalt-dracha/anthro.svg",
  15841. extra: 231 / 225,
  15842. bottom: 0.04
  15843. }
  15844. },
  15845. feral: {
  15846. height: math.unit(9 + 7 / 12, "feet"),
  15847. weight: math.unit(294, "lb"),
  15848. name: "Feral",
  15849. image: {
  15850. source: "./media/characters/cobalt-dracha/feral.svg",
  15851. extra: 692 / 633,
  15852. bottom: 0.05
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(7, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15866. {
  15867. fallen: {
  15868. height: math.unit(11 + 8 / 12, "feet"),
  15869. weight: math.unit(485, "lb"),
  15870. name: "Java (Fallen)",
  15871. rename: true,
  15872. image: {
  15873. source: "./media/characters/java/fallen.svg",
  15874. extra: 226 / 208,
  15875. bottom: 0.005
  15876. }
  15877. },
  15878. godkin: {
  15879. height: math.unit(10 + 6 / 12, "feet"),
  15880. weight: math.unit(328, "lb"),
  15881. name: "Java (Godkin)",
  15882. rename: true,
  15883. image: {
  15884. source: "./media/characters/java/godkin.svg",
  15885. extra: 1104/1068,
  15886. bottom: 36/1140
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(11 + 8 / 12, "feet"),
  15894. default: true
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(5 + 9 / 12, "feet"),
  15903. weight: math.unit(170, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/purna/front.svg",
  15907. extra: 239 / 229,
  15908. bottom: 0.01
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(5 + 9 / 12, "feet"),
  15916. default: true
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(5 + 9 / 12, "feet"),
  15925. weight: math.unit(142, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/kuva/front.svg",
  15929. extra: 281 / 271,
  15930. bottom: 0.006
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Normal",
  15937. height: math.unit(5 + 9 / 12, "feet"),
  15938. default: true
  15939. },
  15940. ]
  15941. ))
  15942. characterMakers.push(() => makeCharacter(
  15943. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15944. {
  15945. anthro: {
  15946. height: math.unit(9 + 2 / 12, "feet"),
  15947. weight: math.unit(270, "lb"),
  15948. name: "Anthro",
  15949. image: {
  15950. source: "./media/characters/embra/anthro.svg",
  15951. extra: 200 / 187,
  15952. bottom: 0.02
  15953. }
  15954. },
  15955. feral: {
  15956. height: math.unit(18 + 8 / 12, "feet"),
  15957. weight: math.unit(576, "lb"),
  15958. name: "Feral",
  15959. image: {
  15960. source: "./media/characters/embra/feral.svg",
  15961. extra: 152 / 137,
  15962. bottom: 0.037
  15963. }
  15964. },
  15965. },
  15966. [
  15967. {
  15968. name: "Normal",
  15969. height: math.unit(9 + 2 / 12, "feet"),
  15970. default: true
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15976. {
  15977. anthro: {
  15978. height: math.unit(10 + 9 / 12, "feet"),
  15979. weight: math.unit(224, "lb"),
  15980. name: "Anthro",
  15981. image: {
  15982. source: "./media/characters/grottos/anthro.svg",
  15983. extra: 350 / 332,
  15984. bottom: 0.045
  15985. }
  15986. },
  15987. feral: {
  15988. height: math.unit(20 + 7 / 12, "feet"),
  15989. weight: math.unit(629, "lb"),
  15990. name: "Feral",
  15991. image: {
  15992. source: "./media/characters/grottos/feral.svg",
  15993. extra: 207 / 190,
  15994. bottom: 0.05
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(10 + 9 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16008. {
  16009. anthro: {
  16010. height: math.unit(9 + 6 / 12, "feet"),
  16011. weight: math.unit(298, "lb"),
  16012. name: "Anthro",
  16013. image: {
  16014. source: "./media/characters/frifna/anthro.svg",
  16015. extra: 282 / 269,
  16016. bottom: 0.015
  16017. }
  16018. },
  16019. feral: {
  16020. height: math.unit(16 + 2 / 12, "feet"),
  16021. weight: math.unit(624, "lb"),
  16022. name: "Feral",
  16023. image: {
  16024. source: "./media/characters/frifna/feral.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(9 + 6 / 12, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6 + 2 / 12, "feet"),
  16041. weight: math.unit(168, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/elise/front.svg",
  16045. extra: 276 / 271
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(6 + 2 / 12, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(5 + 10 / 12, "feet"),
  16062. weight: math.unit(210, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/glade/front.svg",
  16066. extra: 258 / 247,
  16067. bottom: 0.008
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(5 + 10 / 12, "feet"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(5 + 10 / 12, "feet"),
  16084. weight: math.unit(129, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/rina/front.svg",
  16088. extra: 266 / 255,
  16089. bottom: 0.005
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Normal",
  16096. height: math.unit(5 + 10 / 12, "feet"),
  16097. default: true
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16103. {
  16104. front: {
  16105. height: math.unit(6 + 1 / 12, "feet"),
  16106. weight: math.unit(192, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/veronica/front.svg",
  16110. extra: 319 / 309,
  16111. bottom: 0.005
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(6 + 1 / 12, "feet"),
  16119. default: true
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(9 + 3 / 12, "feet"),
  16128. weight: math.unit(1100, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/braxton/front.svg",
  16132. extra: 1057 / 984,
  16133. bottom: 0.05
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(9 + 3 / 12, "feet")
  16141. },
  16142. {
  16143. name: "Giant",
  16144. height: math.unit(300, "feet"),
  16145. default: true
  16146. },
  16147. {
  16148. name: "Macro",
  16149. height: math.unit(700, "feet")
  16150. },
  16151. {
  16152. name: "Megamacro",
  16153. height: math.unit(6000, "feet")
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(6 + 7 / 12, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/blue-feyonics/front.svg",
  16166. extra: 1403 / 1306,
  16167. bottom: 0.047
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(6 + 7 / 12, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(1.8, "meters"),
  16184. weight: math.unit(60, "kg"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/maxwell/front.svg",
  16188. extra: 2060 / 1873
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Micro",
  16195. height: math.unit(1, "mm")
  16196. },
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(1.8, "meter"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(30, "meters")
  16205. },
  16206. {
  16207. name: "Megamacro",
  16208. height: math.unit(10, "km")
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(150, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/jack/front.svg",
  16221. extra: 1754 / 1640,
  16222. bottom: 0.01
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(80000, "feet"),
  16230. default: true
  16231. },
  16232. {
  16233. name: "Max size",
  16234. height: math.unit(10, "lightyears")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16240. {
  16241. urban: {
  16242. height: math.unit(5, "feet"),
  16243. weight: math.unit(240, "lb"),
  16244. name: "Urban",
  16245. image: {
  16246. source: "./media/characters/cafat/urban.svg",
  16247. extra: 1223/1126,
  16248. bottom: 205/1428
  16249. }
  16250. },
  16251. summer: {
  16252. height: math.unit(5, "feet"),
  16253. weight: math.unit(240, "lb"),
  16254. name: "Summer",
  16255. image: {
  16256. source: "./media/characters/cafat/summer.svg",
  16257. extra: 1223/1126,
  16258. bottom: 205/1428
  16259. }
  16260. },
  16261. winter: {
  16262. height: math.unit(5, "feet"),
  16263. weight: math.unit(240, "lb"),
  16264. name: "Winter",
  16265. image: {
  16266. source: "./media/characters/cafat/winter.svg",
  16267. extra: 1223/1126,
  16268. bottom: 205/1428
  16269. }
  16270. },
  16271. lingerie: {
  16272. height: math.unit(5, "feet"),
  16273. weight: math.unit(240, "lb"),
  16274. name: "Lingerie",
  16275. image: {
  16276. source: "./media/characters/cafat/lingerie.svg",
  16277. extra: 1223/1126,
  16278. bottom: 205/1428
  16279. }
  16280. },
  16281. upright: {
  16282. height: math.unit(6.3, "feet"),
  16283. weight: math.unit(240, "lb"),
  16284. name: "Upright",
  16285. image: {
  16286. source: "./media/characters/cafat/upright.svg",
  16287. bottom: 0.01
  16288. }
  16289. },
  16290. uprightFull: {
  16291. height: math.unit(6.3, "feet"),
  16292. weight: math.unit(240, "lb"),
  16293. name: "Upright (Full)",
  16294. image: {
  16295. source: "./media/characters/cafat/upright-full.svg",
  16296. bottom: 0.01
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Small",
  16303. height: math.unit(5, "feet"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Large",
  16308. height: math.unit(13, "feet")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/verin-raharra/front.svg",
  16321. extra: 5019 / 4835,
  16322. bottom: 0.023
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(7 + 5 / 12, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Upsized",
  16334. height: math.unit(20, "feet")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(7, "feet"),
  16343. weight: math.unit(230, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/nakata/front.svg",
  16347. extra: 1.005,
  16348. bottom: 0.01
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(7, "feet"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Big",
  16360. height: math.unit(14, "feet")
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(400, "feet")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(4.91, "feet"),
  16373. weight: math.unit(100, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/lily/front.svg",
  16377. extra: 1585 / 1415,
  16378. bottom: 0.02
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(4.91, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16392. {
  16393. laying: {
  16394. height: math.unit(4 + 4 / 12, "feet"),
  16395. weight: math.unit(600, "lb"),
  16396. name: "Laying",
  16397. image: {
  16398. source: "./media/characters/sheila/laying.svg",
  16399. extra: 1333 / 1265,
  16400. bottom: 0.16
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(4 + 4 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(6, "feet"),
  16417. weight: math.unit(190, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/sax/front.svg",
  16421. extra: 1187 / 973,
  16422. bottom: 0.042
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Micro",
  16429. height: math.unit(4, "inches"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(6, "feet"),
  16439. weight: math.unit(150, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/pandora/front.svg",
  16443. extra: 2720 / 2556,
  16444. bottom: 0.015
  16445. }
  16446. },
  16447. back: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Back",
  16451. image: {
  16452. source: "./media/characters/pandora/back.svg",
  16453. extra: 2720 / 2556,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. beans: {
  16458. height: math.unit(6 / 8, "feet"),
  16459. name: "Beans",
  16460. image: {
  16461. source: "./media/characters/pandora/beans.svg"
  16462. }
  16463. },
  16464. collar: {
  16465. height: math.unit(0.31, "feet"),
  16466. name: "Collar",
  16467. image: {
  16468. source: "./media/characters/pandora/collar.svg"
  16469. }
  16470. },
  16471. skirt: {
  16472. height: math.unit(6, "feet"),
  16473. weight: math.unit(150, "lb"),
  16474. name: "Skirt",
  16475. image: {
  16476. source: "./media/characters/pandora/skirt.svg",
  16477. extra: 1622 / 1525,
  16478. bottom: 0.015
  16479. }
  16480. },
  16481. hoodie: {
  16482. height: math.unit(6, "feet"),
  16483. weight: math.unit(150, "lb"),
  16484. name: "Hoodie",
  16485. image: {
  16486. source: "./media/characters/pandora/hoodie.svg",
  16487. extra: 1622 / 1525,
  16488. bottom: 0.015
  16489. }
  16490. },
  16491. casual: {
  16492. height: math.unit(6, "feet"),
  16493. weight: math.unit(150, "lb"),
  16494. name: "Casual",
  16495. image: {
  16496. source: "./media/characters/pandora/casual.svg",
  16497. extra: 1622 / 1525,
  16498. bottom: 0.015
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(6, "feet")
  16506. },
  16507. {
  16508. name: "Big Steppy",
  16509. height: math.unit(1, "km"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Galactic Steppy",
  16514. height: math.unit(2, "gigameters")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16520. {
  16521. side: {
  16522. height: math.unit(10, "feet"),
  16523. weight: math.unit(800, "kg"),
  16524. name: "Side",
  16525. image: {
  16526. source: "./media/characters/venio-darcony/side.svg",
  16527. extra: 1373 / 1003,
  16528. bottom: 0.037
  16529. }
  16530. },
  16531. front: {
  16532. height: math.unit(19, "feet"),
  16533. weight: math.unit(800, "kg"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/venio-darcony/front.svg"
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(19, "feet"),
  16541. weight: math.unit(800, "kg"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/venio-darcony/back.svg"
  16545. }
  16546. },
  16547. sideNsfw: {
  16548. height: math.unit(10, "feet"),
  16549. weight: math.unit(800, "kg"),
  16550. name: "Side (NSFW)",
  16551. image: {
  16552. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16553. extra: 1373 / 1003,
  16554. bottom: 0.037
  16555. }
  16556. },
  16557. frontNsfw: {
  16558. height: math.unit(19, "feet"),
  16559. weight: math.unit(800, "kg"),
  16560. name: "Front (NSFW)",
  16561. image: {
  16562. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16563. }
  16564. },
  16565. backNsfw: {
  16566. height: math.unit(19, "feet"),
  16567. weight: math.unit(800, "kg"),
  16568. name: "Back (NSFW)",
  16569. image: {
  16570. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16571. }
  16572. },
  16573. sideArmored: {
  16574. height: math.unit(10, "feet"),
  16575. weight: math.unit(800, "kg"),
  16576. name: "Side (Armored)",
  16577. image: {
  16578. source: "./media/characters/venio-darcony/side-armored.svg",
  16579. extra: 1373 / 1003,
  16580. bottom: 0.037
  16581. }
  16582. },
  16583. frontArmored: {
  16584. height: math.unit(19, "feet"),
  16585. weight: math.unit(900, "kg"),
  16586. name: "Front (Armored)",
  16587. image: {
  16588. source: "./media/characters/venio-darcony/front-armored.svg"
  16589. }
  16590. },
  16591. backArmored: {
  16592. height: math.unit(19, "feet"),
  16593. weight: math.unit(900, "kg"),
  16594. name: "Back (Armored)",
  16595. image: {
  16596. source: "./media/characters/venio-darcony/back-armored.svg"
  16597. }
  16598. },
  16599. sword: {
  16600. height: math.unit(10, "feet"),
  16601. weight: math.unit(50, "lb"),
  16602. name: "Sword",
  16603. image: {
  16604. source: "./media/characters/venio-darcony/sword.svg"
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(10, "feet")
  16612. },
  16613. {
  16614. name: "Macro",
  16615. height: math.unit(130, "feet"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Macro+",
  16620. height: math.unit(240, "feet")
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(6, "feet"),
  16629. weight: math.unit(150, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/veski/front.svg",
  16633. extra: 1299 / 1225,
  16634. bottom: 0.04
  16635. }
  16636. },
  16637. back: {
  16638. height: math.unit(6, "feet"),
  16639. weight: math.unit(150, "lb"),
  16640. name: "Back",
  16641. image: {
  16642. source: "./media/characters/veski/back.svg",
  16643. extra: 1299 / 1225,
  16644. bottom: 0.008
  16645. }
  16646. },
  16647. maw: {
  16648. height: math.unit(1.5 * 1.21, "feet"),
  16649. name: "Maw",
  16650. image: {
  16651. source: "./media/characters/veski/maw.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(2, "km"),
  16659. default: true
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(5 + 7 / 12, "feet"),
  16668. name: "Front",
  16669. image: {
  16670. source: "./media/characters/isabelle/front.svg",
  16671. extra: 2130 / 1976,
  16672. bottom: 0.05
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Supermicro",
  16679. height: math.unit(10, "micrometers")
  16680. },
  16681. {
  16682. name: "Micro",
  16683. height: math.unit(1, "inch")
  16684. },
  16685. {
  16686. name: "Tiny",
  16687. height: math.unit(5, "inches")
  16688. },
  16689. {
  16690. name: "Standard",
  16691. height: math.unit(5 + 7 / 12, "inches")
  16692. },
  16693. {
  16694. name: "Macro",
  16695. height: math.unit(80, "meters"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Megamacro",
  16700. height: math.unit(250, "meters")
  16701. },
  16702. {
  16703. name: "Gigamacro",
  16704. height: math.unit(5, "km")
  16705. },
  16706. {
  16707. name: "Cosmic",
  16708. height: math.unit(2.5e6, "miles")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/hanzo/front.svg",
  16721. extra: 374 / 344,
  16722. bottom: 0.02
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(8, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(7, "feet"),
  16739. weight: math.unit(130, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/anna/front.svg",
  16743. extra: 169 / 145,
  16744. bottom: 0.06
  16745. }
  16746. },
  16747. full: {
  16748. height: math.unit(4.96, "feet"),
  16749. weight: math.unit(220, "lb"),
  16750. name: "Full",
  16751. image: {
  16752. source: "./media/characters/anna/full.svg",
  16753. extra: 138 / 114,
  16754. bottom: 0.15
  16755. }
  16756. },
  16757. tongue: {
  16758. height: math.unit(2.53, "feet"),
  16759. name: "Tongue",
  16760. image: {
  16761. source: "./media/characters/anna/tongue.svg"
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(7, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(7, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/ian-corvid/front.svg",
  16782. extra: 150 / 142,
  16783. bottom: 0.02
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(7, "feet"),
  16788. weight: math.unit(150, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/ian-corvid/back.svg",
  16792. extra: 150 / 143,
  16793. bottom: 0.01
  16794. }
  16795. },
  16796. stomping: {
  16797. height: math.unit(7, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Stomping",
  16800. image: {
  16801. source: "./media/characters/ian-corvid/stomping.svg",
  16802. extra: 76 / 72
  16803. }
  16804. },
  16805. sitting: {
  16806. height: math.unit(7 / 1.8, "feet"),
  16807. weight: math.unit(150, "lb"),
  16808. name: "Sitting",
  16809. image: {
  16810. source: "./media/characters/ian-corvid/sitting.svg",
  16811. extra: 1400 / 1269,
  16812. bottom: 0.15
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Tiny Microw",
  16819. height: math.unit(1, "inch")
  16820. },
  16821. {
  16822. name: "Microw",
  16823. height: math.unit(6, "inches")
  16824. },
  16825. {
  16826. name: "Crow",
  16827. height: math.unit(7 + 1 / 12, "feet"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macrow",
  16832. height: math.unit(176, "feet")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(5 + 7 / 12, "feet"),
  16841. weight: math.unit(147, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/natalie-kellon/front.svg",
  16845. extra: 1214 / 1141,
  16846. bottom: 0.02
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(1 / 16, "inch")
  16854. },
  16855. {
  16856. name: "Tiny",
  16857. height: math.unit(4, "inches")
  16858. },
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(5 + 7 / 12, "feet"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Amazon",
  16866. height: math.unit(12, "feet")
  16867. },
  16868. {
  16869. name: "Giantess",
  16870. height: math.unit(160, "meters")
  16871. },
  16872. {
  16873. name: "Titaness",
  16874. height: math.unit(800, "meters")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(150, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/alluria/front.svg",
  16887. extra: 806 / 738,
  16888. bottom: 0.01
  16889. }
  16890. },
  16891. side: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(150, "lb"),
  16894. name: "Side",
  16895. image: {
  16896. source: "./media/characters/alluria/side.svg",
  16897. extra: 800 / 750,
  16898. }
  16899. },
  16900. back: {
  16901. height: math.unit(6, "feet"),
  16902. weight: math.unit(150, "lb"),
  16903. name: "Back",
  16904. image: {
  16905. source: "./media/characters/alluria/back.svg",
  16906. extra: 806 / 738,
  16907. }
  16908. },
  16909. frontMaid: {
  16910. height: math.unit(6, "feet"),
  16911. weight: math.unit(150, "lb"),
  16912. name: "Front (Maid)",
  16913. image: {
  16914. source: "./media/characters/alluria/front-maid.svg",
  16915. extra: 806 / 738,
  16916. bottom: 0.01
  16917. }
  16918. },
  16919. sideMaid: {
  16920. height: math.unit(6, "feet"),
  16921. weight: math.unit(150, "lb"),
  16922. name: "Side (Maid)",
  16923. image: {
  16924. source: "./media/characters/alluria/side-maid.svg",
  16925. extra: 800 / 750,
  16926. bottom: 0.005
  16927. }
  16928. },
  16929. backMaid: {
  16930. height: math.unit(6, "feet"),
  16931. weight: math.unit(150, "lb"),
  16932. name: "Back (Maid)",
  16933. image: {
  16934. source: "./media/characters/alluria/back-maid.svg",
  16935. extra: 806 / 738,
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Micro",
  16942. height: math.unit(6, "inches"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(150, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/kyle/front.svg",
  16956. extra: 1069 / 962,
  16957. bottom: 77.228 / 1727.45
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Macro",
  16964. height: math.unit(150, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(6, "feet"),
  16974. weight: math.unit(300, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/duncan/front.svg",
  16978. extra: 1650 / 1482,
  16979. bottom: 0.05
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Macro",
  16986. height: math.unit(100, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(5 + 4 / 12, "feet"),
  16996. weight: math.unit(220, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/memory/front.svg",
  17000. extra: 3641 / 3545,
  17001. bottom: 0.03
  17002. }
  17003. },
  17004. back: {
  17005. height: math.unit(5 + 4 / 12, "feet"),
  17006. weight: math.unit(220, "lb"),
  17007. name: "Back",
  17008. image: {
  17009. source: "./media/characters/memory/back.svg",
  17010. extra: 3641 / 3545,
  17011. bottom: 0.025
  17012. }
  17013. },
  17014. frontSkirt: {
  17015. height: math.unit(5 + 4 / 12, "feet"),
  17016. weight: math.unit(220, "lb"),
  17017. name: "Front (Skirt)",
  17018. image: {
  17019. source: "./media/characters/memory/front-skirt.svg",
  17020. extra: 3641 / 3545,
  17021. bottom: 0.03
  17022. }
  17023. },
  17024. frontDress: {
  17025. height: math.unit(5 + 4 / 12, "feet"),
  17026. weight: math.unit(220, "lb"),
  17027. name: "Front (Dress)",
  17028. image: {
  17029. source: "./media/characters/memory/front-dress.svg",
  17030. extra: 3641 / 3545,
  17031. bottom: 0.03
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Micro",
  17038. height: math.unit(6, "inches"),
  17039. default: true
  17040. },
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 4 / 12, "feet")
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(4 + 11 / 12, "feet"),
  17052. weight: math.unit(100, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/luno/front.svg",
  17056. extra: 1535 / 1487,
  17057. bottom: 0.03
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Micro",
  17064. height: math.unit(3, "inches")
  17065. },
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(4 + 11 / 12, "feet"),
  17069. default: true
  17070. },
  17071. {
  17072. name: "Macro",
  17073. height: math.unit(300, "feet")
  17074. },
  17075. {
  17076. name: "Megamacro",
  17077. height: math.unit(700, "miles")
  17078. },
  17079. ]
  17080. ))
  17081. characterMakers.push(() => makeCharacter(
  17082. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17083. {
  17084. front: {
  17085. height: math.unit(6 + 2 / 12, "feet"),
  17086. weight: math.unit(170, "lb"),
  17087. name: "Front",
  17088. image: {
  17089. source: "./media/characters/jamesy/front.svg",
  17090. extra: 440 / 382,
  17091. bottom: 0.005
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Micro",
  17098. height: math.unit(3, "inches")
  17099. },
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(6 + 2 / 12, "feet"),
  17103. default: true
  17104. },
  17105. {
  17106. name: "Macro",
  17107. height: math.unit(300, "feet")
  17108. },
  17109. {
  17110. name: "Megamacro",
  17111. height: math.unit(700, "miles")
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17117. {
  17118. front: {
  17119. height: math.unit(6, "feet"),
  17120. weight: math.unit(160, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/mark/front.svg",
  17124. extra: 3300 / 3100,
  17125. bottom: 136.42 / 3440.47
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Macro",
  17132. height: math.unit(120, "meters")
  17133. },
  17134. {
  17135. name: "Bigger Macro",
  17136. height: math.unit(350, "meters")
  17137. },
  17138. {
  17139. name: "Megamacro",
  17140. height: math.unit(8, "km"),
  17141. default: true
  17142. },
  17143. {
  17144. name: "Continental",
  17145. height: math.unit(4550, "km")
  17146. },
  17147. {
  17148. name: "Planetary",
  17149. height: math.unit(65000, "km")
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(400, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/mac/front.svg",
  17162. extra: 1048 / 987.7,
  17163. bottom: 60 / 1107.6,
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Macro",
  17170. height: math.unit(500, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(5 + 2 / 12, "feet"),
  17180. weight: math.unit(190, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/bari/front.svg",
  17184. extra: 3156 / 2880,
  17185. bottom: 0.03
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(5 + 2 / 12, "feet"),
  17190. weight: math.unit(190, "lb"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/bari/back.svg",
  17194. extra: 3260 / 2834,
  17195. bottom: 0.025
  17196. }
  17197. },
  17198. frontPlush: {
  17199. height: math.unit(5 + 2 / 12, "feet"),
  17200. weight: math.unit(190, "lb"),
  17201. name: "Front (Plush)",
  17202. image: {
  17203. source: "./media/characters/bari/front-plush.svg",
  17204. extra: 1112 / 1061,
  17205. bottom: 0.002
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Micro",
  17212. height: math.unit(3, "inches")
  17213. },
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(5 + 2 / 12, "feet"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(20, "feet")
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(6 + 1 / 12, "feet"),
  17230. weight: math.unit(275, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/hunter-misha-raven/front.svg"
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Mortal",
  17240. height: math.unit(6 + 1 / 12, "feet")
  17241. },
  17242. {
  17243. name: "Divine",
  17244. height: math.unit(1.12134e34, "parsecs"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(6 + 3 / 12, "feet"),
  17254. weight: math.unit(220, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/max-calore/front.svg",
  17258. extra: 1700 / 1648,
  17259. bottom: 0.01
  17260. }
  17261. },
  17262. back: {
  17263. height: math.unit(6 + 3 / 12, "feet"),
  17264. weight: math.unit(220, "lb"),
  17265. name: "Back",
  17266. image: {
  17267. source: "./media/characters/max-calore/back.svg",
  17268. extra: 1700 / 1648,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(6 + 3 / 12, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17283. {
  17284. side: {
  17285. height: math.unit(2 + 8 / 12, "feet"),
  17286. weight: math.unit(99, "lb"),
  17287. name: "Side",
  17288. image: {
  17289. source: "./media/characters/aspen/side.svg",
  17290. extra: 152 / 138,
  17291. bottom: 0.032
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(2 + 8 / 12, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17305. {
  17306. side: {
  17307. height: math.unit(3 + 2 / 12, "feet"),
  17308. weight: math.unit(224, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/sheila-feral-wolf/side.svg",
  17312. extra: 179 / 166,
  17313. bottom: 0.03
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(3 + 2 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17327. {
  17328. side: {
  17329. height: math.unit(1 + 9 / 12, "feet"),
  17330. weight: math.unit(38, "lb"),
  17331. name: "Side",
  17332. image: {
  17333. source: "./media/characters/michelle/side.svg",
  17334. extra: 147 / 136.7,
  17335. bottom: 0.03
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(1 + 9 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(1.54, "feet"),
  17352. weight: math.unit(50, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/nino/front.svg"
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(1.54, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(1.49, "feet"),
  17372. weight: math.unit(45, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/viola/front.svg"
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Normal",
  17382. height: math.unit(1.49, "feet"),
  17383. default: true
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(6 + 5 / 12, "feet"),
  17392. weight: math.unit(580, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/atlas/front.svg",
  17396. extra: 298.5 / 290,
  17397. bottom: 0.015
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(6 + 5 / 12, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17411. {
  17412. side: {
  17413. height: math.unit(15.6, "inches"),
  17414. weight: math.unit(10, "lb"),
  17415. name: "Side",
  17416. image: {
  17417. source: "./media/characters/davy/side.svg",
  17418. extra: 200 / 170,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(15.6, "inches"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17433. {
  17434. side: {
  17435. height: math.unit(4 + 8 / 12, "feet"),
  17436. weight: math.unit(166, "lb"),
  17437. name: "Side",
  17438. image: {
  17439. source: "./media/characters/fiona/side.svg",
  17440. extra: 232 / 220,
  17441. bottom: 0.03
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(4 + 8 / 12, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17455. {
  17456. front: {
  17457. height: math.unit(26, "inches"),
  17458. weight: math.unit(35, "lb"),
  17459. name: "Front",
  17460. image: {
  17461. source: "./media/characters/lyla/front.svg",
  17462. bottom: 0.1
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(3, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17476. {
  17477. side: {
  17478. height: math.unit(1.8, "feet"),
  17479. weight: math.unit(44, "lb"),
  17480. name: "Side",
  17481. image: {
  17482. source: "./media/characters/perseus/side.svg",
  17483. bottom: 0.21
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(1.8, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17497. {
  17498. side: {
  17499. height: math.unit(4 + 2 / 12, "feet"),
  17500. weight: math.unit(20, "lb"),
  17501. name: "Side",
  17502. image: {
  17503. source: "./media/characters/remus/side.svg"
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(4 + 2 / 12, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(4 + 11 / 12, "feet"),
  17520. weight: math.unit(114, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/raf/front.svg",
  17524. extra: 1504/1339,
  17525. bottom: 26/1530
  17526. }
  17527. },
  17528. side: {
  17529. height: math.unit(4 + 11 / 12, "feet"),
  17530. weight: math.unit(114, "lb"),
  17531. name: "Side",
  17532. image: {
  17533. source: "./media/characters/raf/side.svg",
  17534. extra: 1466/1316,
  17535. bottom: 29/1495
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Micro",
  17542. height: math.unit(2, "inches")
  17543. },
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(4 + 11 / 12, "feet"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Macro",
  17551. height: math.unit(70, "feet")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(1.5, "meters"),
  17560. weight: math.unit(68, "kg"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/liam-einarr/front.svg",
  17564. extra: 2822 / 2666
  17565. }
  17566. },
  17567. back: {
  17568. height: math.unit(1.5, "meters"),
  17569. weight: math.unit(68, "kg"),
  17570. name: "Back",
  17571. image: {
  17572. source: "./media/characters/liam-einarr/back.svg",
  17573. extra: 2822 / 2666,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(1.5, "meters"),
  17582. default: true
  17583. },
  17584. {
  17585. name: "Macro",
  17586. height: math.unit(150, "meters")
  17587. },
  17588. {
  17589. name: "Megamacro",
  17590. height: math.unit(35, "km")
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(6, "feet"),
  17599. weight: math.unit(75, "kg"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/linda/front.svg",
  17603. extra: 930 / 874,
  17604. bottom: 0.004
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(6, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(6 + 8 / 12, "feet"),
  17621. weight: math.unit(220, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/caylex/front.svg",
  17625. extra: 821 / 772,
  17626. bottom: 0.07
  17627. }
  17628. },
  17629. back: {
  17630. height: math.unit(6 + 8 / 12, "feet"),
  17631. weight: math.unit(220, "lb"),
  17632. name: "Back",
  17633. image: {
  17634. source: "./media/characters/caylex/back.svg",
  17635. extra: 821 / 772,
  17636. bottom: 0.022
  17637. }
  17638. },
  17639. hand: {
  17640. height: math.unit(1.25, "feet"),
  17641. name: "Hand",
  17642. image: {
  17643. source: "./media/characters/caylex/hand.svg"
  17644. }
  17645. },
  17646. foot: {
  17647. height: math.unit(1.6, "feet"),
  17648. name: "Foot",
  17649. image: {
  17650. source: "./media/characters/caylex/foot.svg"
  17651. }
  17652. },
  17653. armored: {
  17654. height: math.unit(6 + 8 / 12, "feet"),
  17655. weight: math.unit(250, "lb"),
  17656. name: "Armored",
  17657. image: {
  17658. source: "./media/characters/caylex/armored.svg",
  17659. extra: 1420 / 1310,
  17660. bottom: 0.045
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(6 + 8 / 12, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Normal+",
  17672. height: math.unit(12, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(7 + 6 / 12, "feet"),
  17681. weight: math.unit(288, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/alana/front.svg",
  17685. extra: 679 / 653,
  17686. bottom: 22.5 / 701
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7 + 6 / 12, "feet")
  17694. },
  17695. {
  17696. name: "Large",
  17697. height: math.unit(50, "feet")
  17698. },
  17699. {
  17700. name: "Macro",
  17701. height: math.unit(100, "feet"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Macro+",
  17706. height: math.unit(200, "feet")
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(6 + 1 / 12, "feet"),
  17715. weight: math.unit(210, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/hasani/front.svg",
  17719. extra: 244 / 232,
  17720. bottom: 0.01
  17721. }
  17722. },
  17723. back: {
  17724. height: math.unit(6 + 1 / 12, "feet"),
  17725. weight: math.unit(210, "lb"),
  17726. name: "Back",
  17727. image: {
  17728. source: "./media/characters/hasani/back.svg",
  17729. extra: 244 / 232,
  17730. bottom: 0.01
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(6 + 1 / 12, "feet")
  17738. },
  17739. {
  17740. name: "Macro",
  17741. height: math.unit(175, "feet"),
  17742. default: true
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(1.82, "meters"),
  17751. weight: math.unit(140, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/nita/front.svg",
  17755. extra: 2473 / 2363,
  17756. bottom: 0.01
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(1.82, "m")
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(300, "m")
  17768. },
  17769. {
  17770. name: "Mistake Canon",
  17771. height: math.unit(0.5, "miles"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Big Mistake",
  17776. height: math.unit(13, "miles")
  17777. },
  17778. {
  17779. name: "Playing God",
  17780. height: math.unit(2450, "miles")
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17786. {
  17787. front: {
  17788. height: math.unit(4, "feet"),
  17789. weight: math.unit(120, "lb"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/shiriko/front.svg",
  17793. extra: 970/934,
  17794. bottom: 5/975
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(4, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(6, "feet"),
  17811. name: "front",
  17812. image: {
  17813. source: "./media/characters/deja/front.svg",
  17814. extra: 926 / 840,
  17815. bottom: 0.07
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Planck Length",
  17822. height: math.unit(1.6e-35, "meters")
  17823. },
  17824. {
  17825. name: "Normal",
  17826. height: math.unit(30.48, "meters"),
  17827. default: true
  17828. },
  17829. {
  17830. name: "Universal",
  17831. height: math.unit(8.8e26, "meters")
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17837. {
  17838. side: {
  17839. height: math.unit(8, "feet"),
  17840. weight: math.unit(6300, "lb"),
  17841. name: "Side",
  17842. image: {
  17843. source: "./media/characters/anima/side.svg",
  17844. bottom: 0.035
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(8, "feet"),
  17852. default: true
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(8, "feet"),
  17861. weight: math.unit(350, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/bianca/front.svg",
  17865. extra: 234 / 225,
  17866. bottom: 0.03
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(8, "feet"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17880. {
  17881. front: {
  17882. height: math.unit(6, "feet"),
  17883. weight: math.unit(150, "lb"),
  17884. name: "Front",
  17885. image: {
  17886. source: "./media/characters/adinia/front.svg",
  17887. extra: 1845 / 1672,
  17888. bottom: 0.02
  17889. }
  17890. },
  17891. back: {
  17892. height: math.unit(6, "feet"),
  17893. weight: math.unit(150, "lb"),
  17894. name: "Back",
  17895. image: {
  17896. source: "./media/characters/adinia/back.svg",
  17897. extra: 1845 / 1672,
  17898. bottom: 0.002
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(11 + 5 / 12, "feet"),
  17906. default: true
  17907. },
  17908. ]
  17909. ))
  17910. characterMakers.push(() => makeCharacter(
  17911. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17912. {
  17913. front: {
  17914. height: math.unit(3, "meters"),
  17915. weight: math.unit(200, "kg"),
  17916. name: "Front",
  17917. image: {
  17918. source: "./media/characters/lykasa/front.svg",
  17919. extra: 1076 / 976,
  17920. bottom: 0.06
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(3, "meters")
  17928. },
  17929. {
  17930. name: "Kaiju",
  17931. height: math.unit(120, "meters"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Mega Kaiju",
  17936. height: math.unit(240, "km")
  17937. },
  17938. {
  17939. name: "Giga Kaiju",
  17940. height: math.unit(400, "megameters")
  17941. },
  17942. {
  17943. name: "Tera Kaiju",
  17944. height: math.unit(800, "gigameters")
  17945. },
  17946. {
  17947. name: "Kaiju Dragon Goddess",
  17948. height: math.unit(26, "zettaparsecs")
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17954. {
  17955. side: {
  17956. height: math.unit(283 / 124 * 6, "feet"),
  17957. weight: math.unit(35000, "lb"),
  17958. name: "Side",
  17959. image: {
  17960. source: "./media/characters/malfaren/side.svg",
  17961. extra: 1310/529,
  17962. bottom: 24/1334
  17963. }
  17964. },
  17965. front: {
  17966. height: math.unit(22.36, "feet"),
  17967. weight: math.unit(35000, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/malfaren/front.svg",
  17971. extra: 1237/1115,
  17972. bottom: 32/1269
  17973. }
  17974. },
  17975. maw: {
  17976. height: math.unit(6.9, "feet"),
  17977. name: "Maw",
  17978. image: {
  17979. source: "./media/characters/malfaren/maw.svg"
  17980. }
  17981. },
  17982. dick: {
  17983. height: math.unit(6.19, "feet"),
  17984. name: "Dick",
  17985. image: {
  17986. source: "./media/characters/malfaren/dick.svg"
  17987. }
  17988. },
  17989. eye: {
  17990. height: math.unit(0.69, "feet"),
  17991. name: "Eye",
  17992. image: {
  17993. source: "./media/characters/malfaren/eye.svg"
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Big",
  18000. height: math.unit(283 / 162 * 6, "feet"),
  18001. },
  18002. {
  18003. name: "Bigger",
  18004. height: math.unit(283 / 124 * 6, "feet")
  18005. },
  18006. {
  18007. name: "Massive",
  18008. height: math.unit(283 / 92 * 6, "feet"),
  18009. default: true
  18010. },
  18011. {
  18012. name: "👀💦",
  18013. height: math.unit(283 / 73 * 6, "feet"),
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18019. {
  18020. front: {
  18021. height: math.unit(1.7, "m"),
  18022. weight: math.unit(70, "kg"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/kernel/front.svg",
  18026. extra: 222 / 210,
  18027. bottom: 0.007
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Nano",
  18034. height: math.unit(17, "micrometers")
  18035. },
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(1.7, "mm")
  18039. },
  18040. {
  18041. name: "Small",
  18042. height: math.unit(1.7, "cm")
  18043. },
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(1.7, "m"),
  18047. default: true
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(1.75, "meters"),
  18056. weight: math.unit(65, "kg"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/jayne-folest/front.svg",
  18060. extra: 2115 / 2007,
  18061. bottom: 0.02
  18062. }
  18063. },
  18064. back: {
  18065. height: math.unit(1.75, "meters"),
  18066. weight: math.unit(65, "kg"),
  18067. name: "Back",
  18068. image: {
  18069. source: "./media/characters/jayne-folest/back.svg",
  18070. extra: 2115 / 2007,
  18071. bottom: 0.005
  18072. }
  18073. },
  18074. frontClothed: {
  18075. height: math.unit(1.75, "meters"),
  18076. weight: math.unit(65, "kg"),
  18077. name: "Front (Clothed)",
  18078. image: {
  18079. source: "./media/characters/jayne-folest/front-clothed.svg",
  18080. extra: 2115 / 2007,
  18081. bottom: 0.035
  18082. }
  18083. },
  18084. hand: {
  18085. height: math.unit(1 / 1.260, "feet"),
  18086. name: "Hand",
  18087. image: {
  18088. source: "./media/characters/jayne-folest/hand.svg"
  18089. }
  18090. },
  18091. foot: {
  18092. height: math.unit(1 / 0.918, "feet"),
  18093. name: "Foot",
  18094. image: {
  18095. source: "./media/characters/jayne-folest/foot.svg"
  18096. }
  18097. },
  18098. },
  18099. [
  18100. {
  18101. name: "Micro",
  18102. height: math.unit(4, "cm")
  18103. },
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(1.75, "meters")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(47.5, "meters"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(180, "cm"),
  18120. weight: math.unit(70, "kg"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/algier/front.svg",
  18124. extra: 596 / 572,
  18125. bottom: 0.04
  18126. }
  18127. },
  18128. back: {
  18129. height: math.unit(180, "cm"),
  18130. weight: math.unit(70, "kg"),
  18131. name: "Back",
  18132. image: {
  18133. source: "./media/characters/algier/back.svg",
  18134. extra: 596 / 572,
  18135. bottom: 0.025
  18136. }
  18137. },
  18138. frontdressed: {
  18139. height: math.unit(180, "cm"),
  18140. weight: math.unit(150, "kg"),
  18141. name: "Front-dressed",
  18142. image: {
  18143. source: "./media/characters/algier/front-dressed.svg",
  18144. extra: 596 / 572,
  18145. bottom: 0.038
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Micro",
  18152. height: math.unit(5, "cm")
  18153. },
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(180, "cm"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Macro",
  18161. height: math.unit(64, "m")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18167. {
  18168. upright: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(300, "lb"),
  18171. name: "Upright",
  18172. image: {
  18173. source: "./media/characters/pretzel/upright.svg",
  18174. extra: 534 / 522,
  18175. bottom: 0.065
  18176. }
  18177. },
  18178. sprawling: {
  18179. height: math.unit(3.75, "feet"),
  18180. weight: math.unit(300, "lb"),
  18181. name: "Sprawling",
  18182. image: {
  18183. source: "./media/characters/pretzel/sprawling.svg",
  18184. extra: 314 / 281,
  18185. bottom: 0.1
  18186. }
  18187. },
  18188. tongue: {
  18189. height: math.unit(2, "feet"),
  18190. name: "Tongue",
  18191. image: {
  18192. source: "./media/characters/pretzel/tongue.svg"
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(7, "feet"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Oversized",
  18204. height: math.unit(15, "feet")
  18205. },
  18206. {
  18207. name: "Huge",
  18208. height: math.unit(30, "feet")
  18209. },
  18210. {
  18211. name: "Macro",
  18212. height: math.unit(250, "feet")
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18218. {
  18219. sideFront: {
  18220. height: math.unit(5 + 2 / 12, "feet"),
  18221. weight: math.unit(120, "lb"),
  18222. name: "Front Side",
  18223. image: {
  18224. source: "./media/characters/roxi/side-front.svg",
  18225. extra: 2924 / 2717,
  18226. bottom: 0.08
  18227. }
  18228. },
  18229. sideBack: {
  18230. height: math.unit(5 + 2 / 12, "feet"),
  18231. weight: math.unit(120, "lb"),
  18232. name: "Back Side",
  18233. image: {
  18234. source: "./media/characters/roxi/side-back.svg",
  18235. extra: 2904 / 2693,
  18236. bottom: 0.06
  18237. }
  18238. },
  18239. front: {
  18240. height: math.unit(5 + 2 / 12, "feet"),
  18241. weight: math.unit(120, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/roxi/front.svg",
  18245. extra: 2028 / 1907,
  18246. bottom: 0.01
  18247. }
  18248. },
  18249. frontAlt: {
  18250. height: math.unit(5 + 2 / 12, "feet"),
  18251. weight: math.unit(120, "lb"),
  18252. name: "Front (Alt)",
  18253. image: {
  18254. source: "./media/characters/roxi/front-alt.svg",
  18255. extra: 1828 / 1798,
  18256. bottom: 0.01
  18257. }
  18258. },
  18259. sitting: {
  18260. height: math.unit(2.8, "feet"),
  18261. weight: math.unit(120, "lb"),
  18262. name: "Sitting",
  18263. image: {
  18264. source: "./media/characters/roxi/sitting.svg",
  18265. extra: 2660 / 2462,
  18266. bottom: 0.1
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(5 + 2 / 12, "feet"),
  18274. default: true
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18280. {
  18281. side: {
  18282. height: math.unit(55, "feet"),
  18283. weight: math.unit(153, "tons"),
  18284. name: "Side",
  18285. image: {
  18286. source: "./media/characters/shadow/side.svg",
  18287. extra: 701 / 628,
  18288. bottom: 0.02
  18289. }
  18290. },
  18291. flying: {
  18292. height: math.unit(145, "feet"),
  18293. weight: math.unit(153, "tons"),
  18294. name: "Flying",
  18295. image: {
  18296. source: "./media/characters/shadow/flying.svg"
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(55, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(200, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/marcie/front.svg",
  18317. extra: 960 / 876,
  18318. bottom: 58 / 1017.87
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Macro",
  18325. height: math.unit(1, "mile"),
  18326. default: true
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(7, "feet"),
  18335. weight: math.unit(200, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/kachina/front.svg",
  18339. extra: 1290.68 / 1119,
  18340. bottom: 36.5 / 1327.18
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(7, "feet"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18354. {
  18355. looking: {
  18356. height: math.unit(2, "meters"),
  18357. weight: math.unit(300, "kg"),
  18358. name: "Looking",
  18359. image: {
  18360. source: "./media/characters/kash/looking.svg",
  18361. extra: 474 / 344,
  18362. bottom: 0.03
  18363. }
  18364. },
  18365. side: {
  18366. height: math.unit(2, "meters"),
  18367. weight: math.unit(300, "kg"),
  18368. name: "Side",
  18369. image: {
  18370. source: "./media/characters/kash/side.svg",
  18371. extra: 302 / 251,
  18372. bottom: 0.03
  18373. }
  18374. },
  18375. front: {
  18376. height: math.unit(2, "meters"),
  18377. weight: math.unit(300, "kg"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/kash/front.svg",
  18381. extra: 495 / 360,
  18382. bottom: 0.015
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(2, "meters"),
  18390. default: true
  18391. },
  18392. {
  18393. name: "Big",
  18394. height: math.unit(3, "meters")
  18395. },
  18396. {
  18397. name: "Large",
  18398. height: math.unit(5, "meters")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18404. {
  18405. feeding: {
  18406. height: math.unit(6.7, "feet"),
  18407. weight: math.unit(350, "lb"),
  18408. name: "Feeding",
  18409. image: {
  18410. source: "./media/characters/lalim/feeding.svg",
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(6.7, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(9.5, "feet"),
  18427. weight: math.unit(600, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/de'vout/front.svg",
  18431. extra: 1443 / 1328,
  18432. bottom: 0.025
  18433. }
  18434. },
  18435. back: {
  18436. height: math.unit(9.5, "feet"),
  18437. weight: math.unit(600, "lb"),
  18438. name: "Back",
  18439. image: {
  18440. source: "./media/characters/de'vout/back.svg",
  18441. extra: 1443 / 1328
  18442. }
  18443. },
  18444. frontDressed: {
  18445. height: math.unit(9.5, "feet"),
  18446. weight: math.unit(600, "lb"),
  18447. name: "Front (Dressed",
  18448. image: {
  18449. source: "./media/characters/de'vout/front-dressed.svg",
  18450. extra: 1443 / 1328,
  18451. bottom: 0.025
  18452. }
  18453. },
  18454. backDressed: {
  18455. height: math.unit(9.5, "feet"),
  18456. weight: math.unit(600, "lb"),
  18457. name: "Back (Dressed",
  18458. image: {
  18459. source: "./media/characters/de'vout/back-dressed.svg",
  18460. extra: 1443 / 1328
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(9.5, "feet"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18474. {
  18475. front: {
  18476. height: math.unit(8, "feet"),
  18477. weight: math.unit(225, "lb"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/talana/front.svg",
  18481. extra: 1410 / 1300,
  18482. bottom: 0.015
  18483. }
  18484. },
  18485. frontDressed: {
  18486. height: math.unit(8, "feet"),
  18487. weight: math.unit(225, "lb"),
  18488. name: "Front (Dressed",
  18489. image: {
  18490. source: "./media/characters/talana/front-dressed.svg",
  18491. extra: 1410 / 1300,
  18492. bottom: 0.015
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(8, "feet"),
  18500. default: true
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18506. {
  18507. side: {
  18508. height: math.unit(7.2, "feet"),
  18509. weight: math.unit(150, "lb"),
  18510. name: "Side",
  18511. image: {
  18512. source: "./media/characters/xeauvok/side.svg",
  18513. extra: 1975 / 1523,
  18514. bottom: 0.07
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(7.2, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18528. {
  18529. side: {
  18530. height: math.unit(10, "feet"),
  18531. weight: math.unit(900, "kg"),
  18532. name: "Side",
  18533. image: {
  18534. source: "./media/characters/zara/side.svg",
  18535. extra: 504 / 498
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(10, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18549. {
  18550. side: {
  18551. height: math.unit(6, "feet"),
  18552. weight: math.unit(150, "lb"),
  18553. name: "Side",
  18554. image: {
  18555. source: "./media/characters/richard-dragon/side.svg",
  18556. extra: 845 / 340,
  18557. bottom: 0.017
  18558. }
  18559. },
  18560. maw: {
  18561. height: math.unit(2.97, "feet"),
  18562. name: "Maw",
  18563. image: {
  18564. source: "./media/characters/richard-dragon/maw.svg"
  18565. }
  18566. },
  18567. },
  18568. [
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18573. {
  18574. front: {
  18575. height: math.unit(4, "feet"),
  18576. weight: math.unit(100, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/richard-smeargle/front.svg",
  18580. extra: 2952 / 2820,
  18581. bottom: 0.028
  18582. }
  18583. },
  18584. },
  18585. [
  18586. {
  18587. name: "Normal",
  18588. height: math.unit(4, "feet"),
  18589. default: true
  18590. },
  18591. {
  18592. name: "Dynamax",
  18593. height: math.unit(20, "meters")
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(6, "feet"),
  18602. weight: math.unit(110, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/klay/front.svg",
  18606. extra: 962 / 883,
  18607. bottom: 0.04
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(6, "feet"),
  18612. weight: math.unit(110, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/klay/back.svg",
  18616. extra: 962 / 883
  18617. }
  18618. },
  18619. beans: {
  18620. height: math.unit(1.15, "feet"),
  18621. name: "Beans",
  18622. image: {
  18623. source: "./media/characters/klay/beans.svg"
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(6, "inches")
  18631. },
  18632. {
  18633. name: "Mini",
  18634. height: math.unit(3, "feet")
  18635. },
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(6, "feet"),
  18639. default: true
  18640. },
  18641. {
  18642. name: "Big",
  18643. height: math.unit(25, "feet")
  18644. },
  18645. {
  18646. name: "Macro",
  18647. height: math.unit(100, "feet")
  18648. },
  18649. {
  18650. name: "Megamacro",
  18651. height: math.unit(400, "feet")
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(6, "feet"),
  18660. weight: math.unit(160, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/marcus/front.svg",
  18664. extra: 734 / 676,
  18665. bottom: 0.03
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Little",
  18672. height: math.unit(6, "feet")
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(110, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(250, "feet")
  18682. },
  18683. {
  18684. name: "Megamacro",
  18685. height: math.unit(1000, "feet")
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(7, "feet"),
  18694. weight: math.unit(275, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/claude-delroute/front.svg",
  18698. extra: 902/827,
  18699. bottom: 26/928
  18700. }
  18701. },
  18702. side: {
  18703. height: math.unit(7, "feet"),
  18704. weight: math.unit(275, "lb"),
  18705. name: "Side",
  18706. image: {
  18707. source: "./media/characters/claude-delroute/side.svg",
  18708. extra: 908/853,
  18709. bottom: 16/924
  18710. }
  18711. },
  18712. back: {
  18713. height: math.unit(7, "feet"),
  18714. weight: math.unit(275, "lb"),
  18715. name: "Back",
  18716. image: {
  18717. source: "./media/characters/claude-delroute/back.svg",
  18718. extra: 911/829,
  18719. bottom: 18/929
  18720. }
  18721. },
  18722. maw: {
  18723. height: math.unit(0.6407, "meters"),
  18724. name: "Maw",
  18725. image: {
  18726. source: "./media/characters/claude-delroute/maw.svg"
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(7, "feet"),
  18734. default: true
  18735. },
  18736. {
  18737. name: "Lorge",
  18738. height: math.unit(20, "feet")
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(8 + 4 / 12, "feet"),
  18747. weight: math.unit(600, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/dragonien/front.svg",
  18751. extra: 100 / 94,
  18752. bottom: 3.3 / 103.3445
  18753. }
  18754. },
  18755. back: {
  18756. height: math.unit(8 + 4 / 12, "feet"),
  18757. weight: math.unit(600, "lb"),
  18758. name: "Back",
  18759. image: {
  18760. source: "./media/characters/dragonien/back.svg",
  18761. extra: 776 / 746,
  18762. bottom: 6.4 / 782.0616
  18763. }
  18764. },
  18765. foot: {
  18766. height: math.unit(1.54, "feet"),
  18767. name: "Foot",
  18768. image: {
  18769. source: "./media/characters/dragonien/foot.svg",
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(8 + 4 / 12, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Macro",
  18781. height: math.unit(200, "feet")
  18782. },
  18783. {
  18784. name: "Megamacro",
  18785. height: math.unit(1, "mile")
  18786. },
  18787. {
  18788. name: "Gigamacro",
  18789. height: math.unit(1000, "miles")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(5 + 2 / 12, "feet"),
  18798. weight: math.unit(110, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/desta/front.svg",
  18802. extra: 767 / 726,
  18803. bottom: 11.7 / 779
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(5 + 2 / 12, "feet"),
  18808. weight: math.unit(110, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/desta/back.svg",
  18812. extra: 777 / 728,
  18813. bottom: 6 / 784
  18814. }
  18815. },
  18816. frontAlt: {
  18817. height: math.unit(5 + 2 / 12, "feet"),
  18818. weight: math.unit(110, "lb"),
  18819. name: "Front",
  18820. image: {
  18821. source: "./media/characters/desta/front-alt.svg",
  18822. extra: 1482 / 1417
  18823. }
  18824. },
  18825. side: {
  18826. height: math.unit(5 + 2 / 12, "feet"),
  18827. weight: math.unit(110, "lb"),
  18828. name: "Side",
  18829. image: {
  18830. source: "./media/characters/desta/side.svg",
  18831. extra: 2579 / 2491,
  18832. bottom: 0.053
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Micro",
  18839. height: math.unit(6, "inches")
  18840. },
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(5 + 2 / 12, "feet"),
  18844. default: true
  18845. },
  18846. {
  18847. name: "Macro",
  18848. height: math.unit(62, "feet")
  18849. },
  18850. {
  18851. name: "Megamacro",
  18852. height: math.unit(1800, "feet")
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(10, "feet"),
  18861. weight: math.unit(700, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/storm-alystar/front.svg",
  18865. extra: 2112 / 1898,
  18866. bottom: 0.034
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Micro",
  18873. height: math.unit(3.5, "inches")
  18874. },
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(10, "feet"),
  18878. default: true
  18879. },
  18880. {
  18881. name: "Macro",
  18882. height: math.unit(400, "feet")
  18883. },
  18884. {
  18885. name: "Deific",
  18886. height: math.unit(60, "miles")
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18892. {
  18893. front: {
  18894. height: math.unit(2.35, "meters"),
  18895. weight: math.unit(119, "kg"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/ilia/front.svg",
  18899. extra: 1285 / 1255,
  18900. bottom: 0.06
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(2.35, "meters")
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(140, "meters"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Megamacro",
  18916. height: math.unit(100, "miles")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(6 + 5 / 12, "feet"),
  18925. weight: math.unit(190, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/kingdead/front.svg",
  18929. extra: 1228 / 1177
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(7, "inches")
  18937. },
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(6 + 5 / 12, "feet")
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(150, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Megamacro",
  18949. height: math.unit(200, "miles")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(8, "feet"),
  18958. weight: math.unit(600, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/kyrehx/front.svg",
  18962. extra: 1195 / 1095,
  18963. bottom: 0.034
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Micro",
  18970. height: math.unit(2, "inches")
  18971. },
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(8, "feet"),
  18975. default: true
  18976. },
  18977. {
  18978. name: "Macro",
  18979. height: math.unit(255, "feet")
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18985. {
  18986. front: {
  18987. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18988. weight: math.unit(184, "lb"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/xang/front.svg",
  18992. extra: 845 / 755
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(0.935 * 146, "feet")
  19005. },
  19006. {
  19007. name: "Megamacro",
  19008. height: math.unit(0.935 * 3, "miles")
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19014. {
  19015. frontDressed: {
  19016. height: math.unit(5 + 7 / 12, "feet"),
  19017. weight: math.unit(140, "lb"),
  19018. name: "Front (Dressed)",
  19019. image: {
  19020. source: "./media/characters/doc-weardno/front-dressed.svg",
  19021. extra: 263 / 234
  19022. }
  19023. },
  19024. backDressed: {
  19025. height: math.unit(5 + 7 / 12, "feet"),
  19026. weight: math.unit(140, "lb"),
  19027. name: "Back (Dressed)",
  19028. image: {
  19029. source: "./media/characters/doc-weardno/back-dressed.svg",
  19030. extra: 266 / 238
  19031. }
  19032. },
  19033. front: {
  19034. height: math.unit(5 + 7 / 12, "feet"),
  19035. weight: math.unit(140, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/doc-weardno/front.svg",
  19039. extra: 254 / 233
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Micro",
  19046. height: math.unit(3, "inches")
  19047. },
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(5 + 7 / 12, "feet"),
  19051. default: true
  19052. },
  19053. {
  19054. name: "Macro",
  19055. height: math.unit(25, "feet")
  19056. },
  19057. {
  19058. name: "Megamacro",
  19059. height: math.unit(2, "miles")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(6 + 2 / 12, "feet"),
  19068. weight: math.unit(153, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/seth-whilst/front.svg",
  19072. bottom: 0.07
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Micro",
  19079. height: math.unit(5, "inches")
  19080. },
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(6 + 2 / 12, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(3, "inches"),
  19093. weight: math.unit(8, "grams"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/pocket-jabari/front.svg",
  19097. extra: 1024 / 974,
  19098. bottom: 0.039
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Minimicro",
  19105. height: math.unit(8, "mm")
  19106. },
  19107. {
  19108. name: "Micro",
  19109. height: math.unit(3, "inches"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(3, "feet")
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(15, "feet"),
  19123. weight: math.unit(3280, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/sapphy/front.svg",
  19127. extra: 671 / 577,
  19128. bottom: 0.085
  19129. }
  19130. },
  19131. back: {
  19132. height: math.unit(15, "feet"),
  19133. weight: math.unit(3280, "lb"),
  19134. name: "Back",
  19135. image: {
  19136. source: "./media/characters/sapphy/back.svg",
  19137. extra: 631 / 607,
  19138. bottom: 0.045
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(15, "feet")
  19146. },
  19147. {
  19148. name: "Casual Macro",
  19149. height: math.unit(120, "feet")
  19150. },
  19151. {
  19152. name: "Macro",
  19153. height: math.unit(2150, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Megamacro",
  19158. height: math.unit(8, "miles")
  19159. },
  19160. {
  19161. name: "Galaxy Mom",
  19162. height: math.unit(6, "megalightyears")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(6, "feet"),
  19171. weight: math.unit(170, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/kiro/front.svg",
  19175. extra: 1064 / 1012,
  19176. bottom: 0.052
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Micro",
  19183. height: math.unit(6, "inches")
  19184. },
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(6, "feet"),
  19188. default: true
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(72, "feet")
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(5 + 9 / 12, "feet"),
  19201. weight: math.unit(175, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/irishfox/front.svg",
  19205. extra: 1912 / 1680,
  19206. bottom: 0.02
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Nano",
  19213. height: math.unit(1, "mm")
  19214. },
  19215. {
  19216. name: "Micro",
  19217. height: math.unit(2, "inches")
  19218. },
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(5 + 9 / 12, "feet"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(45, "feet")
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6 + 1 / 12, "feet"),
  19235. weight: math.unit(75, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/aronai-sieyes/front.svg",
  19239. extra: 1532/1450,
  19240. bottom: 42/1574
  19241. }
  19242. },
  19243. side: {
  19244. height: math.unit(6 + 1 / 12, "feet"),
  19245. weight: math.unit(75, "lb"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/aronai-sieyes/side.svg",
  19249. extra: 1422/1365,
  19250. bottom: 148/1570
  19251. }
  19252. },
  19253. back: {
  19254. height: math.unit(6 + 1 / 12, "feet"),
  19255. weight: math.unit(75, "lb"),
  19256. name: "Back",
  19257. image: {
  19258. source: "./media/characters/aronai-sieyes/back.svg",
  19259. extra: 1526/1464,
  19260. bottom: 51/1577
  19261. }
  19262. },
  19263. dressed: {
  19264. height: math.unit(6 + 1 / 12, "feet"),
  19265. weight: math.unit(75, "lb"),
  19266. name: "Dressed",
  19267. image: {
  19268. source: "./media/characters/aronai-sieyes/dressed.svg",
  19269. extra: 1559/1483,
  19270. bottom: 39/1598
  19271. }
  19272. },
  19273. slit: {
  19274. height: math.unit(1.3, "feet"),
  19275. name: "Slit",
  19276. image: {
  19277. source: "./media/characters/aronai-sieyes/slit.svg"
  19278. }
  19279. },
  19280. slitSpread: {
  19281. height: math.unit(0.9, "feet"),
  19282. name: "Slit (Spread)",
  19283. image: {
  19284. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19285. }
  19286. },
  19287. rump: {
  19288. height: math.unit(1.3, "feet"),
  19289. name: "Rump",
  19290. image: {
  19291. source: "./media/characters/aronai-sieyes/rump.svg"
  19292. }
  19293. },
  19294. maw: {
  19295. height: math.unit(1.25, "feet"),
  19296. name: "Maw",
  19297. image: {
  19298. source: "./media/characters/aronai-sieyes/maw.svg"
  19299. }
  19300. },
  19301. feral: {
  19302. height: math.unit(18, "feet"),
  19303. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19304. name: "Feral",
  19305. image: {
  19306. source: "./media/characters/aronai-sieyes/feral.svg",
  19307. extra: 1530 / 1240,
  19308. bottom: 0.035
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Micro",
  19315. height: math.unit(2, "inches")
  19316. },
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(6 + 1 / 12, "feet"),
  19320. default: true
  19321. }
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(12, "feet"),
  19329. weight: math.unit(410, "kg"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/xuna/front.svg",
  19333. extra: 2184 / 1980
  19334. }
  19335. },
  19336. side: {
  19337. height: math.unit(12, "feet"),
  19338. weight: math.unit(410, "kg"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/xuna/side.svg",
  19342. extra: 2184 / 1980
  19343. }
  19344. },
  19345. back: {
  19346. height: math.unit(12, "feet"),
  19347. weight: math.unit(410, "kg"),
  19348. name: "Back",
  19349. image: {
  19350. source: "./media/characters/xuna/back.svg",
  19351. extra: 2184 / 1980
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Nano glow",
  19358. height: math.unit(10, "nm")
  19359. },
  19360. {
  19361. name: "Micro floof",
  19362. height: math.unit(0.3, "m")
  19363. },
  19364. {
  19365. name: "Huggable softy boi",
  19366. height: math.unit(3.6576, "m"),
  19367. default: true
  19368. },
  19369. {
  19370. name: "Admirable floof",
  19371. height: math.unit(80, "meters")
  19372. },
  19373. {
  19374. name: "Gentle macro",
  19375. height: math.unit(300, "meters")
  19376. },
  19377. {
  19378. name: "Very careful floof",
  19379. height: math.unit(3200, "meters")
  19380. },
  19381. {
  19382. name: "The mega floof",
  19383. height: math.unit(36000, "meters")
  19384. },
  19385. {
  19386. name: "Giga-fur-Wicker",
  19387. height: math.unit(4800000, "meters")
  19388. },
  19389. {
  19390. name: "Licky world",
  19391. height: math.unit(20000000, "meters")
  19392. },
  19393. {
  19394. name: "Floofy cyan sun",
  19395. height: math.unit(1500000000, "meters")
  19396. },
  19397. {
  19398. name: "Milky Wicker",
  19399. height: math.unit(1000000000000000000000, "meters")
  19400. },
  19401. {
  19402. name: "The observing Wicker",
  19403. height: math.unit(999999999999999999999999999, "meters")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(5 + 9 / 12, "feet"),
  19412. weight: math.unit(150, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/arokha-sieyes/front.svg",
  19416. extra: 1425 / 1284,
  19417. bottom: 0.05
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(5 + 9 / 12, "feet")
  19425. },
  19426. {
  19427. name: "Macro",
  19428. height: math.unit(30, "meters"),
  19429. default: true
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(6, "feet"),
  19438. weight: math.unit(180, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/arokh-sieyes/front.svg",
  19442. extra: 1830 / 1769,
  19443. bottom: 0.01
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(6, "feet")
  19451. },
  19452. {
  19453. name: "Macro",
  19454. height: math.unit(30, "meters"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19461. {
  19462. side: {
  19463. height: math.unit(13 + 1 / 12, "feet"),
  19464. weight: math.unit(8.5, "tonnes"),
  19465. name: "Side",
  19466. image: {
  19467. source: "./media/characters/goldeneye/side.svg",
  19468. extra: 1182 / 778,
  19469. bottom: 0.067
  19470. }
  19471. },
  19472. paw: {
  19473. height: math.unit(3.4, "feet"),
  19474. name: "Paw",
  19475. image: {
  19476. source: "./media/characters/goldeneye/paw.svg"
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(13 + 1 / 12, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19490. {
  19491. front: {
  19492. height: math.unit(6 + 1 / 12, "feet"),
  19493. weight: math.unit(210, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/leonardo-lycheborne/front.svg",
  19497. extra: 776/723,
  19498. bottom: 34/810
  19499. }
  19500. },
  19501. side: {
  19502. height: math.unit(6 + 1 / 12, "feet"),
  19503. weight: math.unit(210, "lb"),
  19504. name: "Side",
  19505. image: {
  19506. source: "./media/characters/leonardo-lycheborne/side.svg",
  19507. extra: 780/728,
  19508. bottom: 12/792
  19509. }
  19510. },
  19511. back: {
  19512. height: math.unit(6 + 1 / 12, "feet"),
  19513. weight: math.unit(210, "lb"),
  19514. name: "Back",
  19515. image: {
  19516. source: "./media/characters/leonardo-lycheborne/back.svg",
  19517. extra: 775/721,
  19518. bottom: 17/792
  19519. }
  19520. },
  19521. hand: {
  19522. height: math.unit(1.08, "feet"),
  19523. name: "Hand",
  19524. image: {
  19525. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19526. }
  19527. },
  19528. foot: {
  19529. height: math.unit(1.32, "feet"),
  19530. name: "Foot",
  19531. image: {
  19532. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19533. }
  19534. },
  19535. maw: {
  19536. height: math.unit(1, "feet"),
  19537. name: "Maw",
  19538. image: {
  19539. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19540. }
  19541. },
  19542. were: {
  19543. height: math.unit(20, "feet"),
  19544. weight: math.unit(7800, "lb"),
  19545. name: "Were",
  19546. image: {
  19547. source: "./media/characters/leonardo-lycheborne/were.svg",
  19548. extra: 1224/1165,
  19549. bottom: 72/1296
  19550. }
  19551. },
  19552. feral: {
  19553. height: math.unit(7.5, "feet"),
  19554. weight: math.unit(600, "lb"),
  19555. name: "Feral",
  19556. image: {
  19557. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19558. extra: 797/702,
  19559. bottom: 139/936
  19560. }
  19561. },
  19562. taur: {
  19563. height: math.unit(11, "feet"),
  19564. weight: math.unit(3300, "lb"),
  19565. name: "Taur",
  19566. image: {
  19567. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19568. extra: 1271/1197,
  19569. bottom: 47/1318
  19570. }
  19571. },
  19572. barghest: {
  19573. height: math.unit(11, "feet"),
  19574. weight: math.unit(1300, "lb"),
  19575. name: "Barghest",
  19576. image: {
  19577. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19578. extra: 1291/1204,
  19579. bottom: 37/1328
  19580. }
  19581. },
  19582. dick: {
  19583. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19584. name: "Dick",
  19585. image: {
  19586. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19587. }
  19588. },
  19589. dickWere: {
  19590. height: math.unit((20) / 3.8, "feet"),
  19591. name: "Dick (Were)",
  19592. image: {
  19593. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6 + 1 / 12, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(10, "feet"),
  19610. weight: math.unit(350, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/jet/front.svg",
  19614. extra: 2050 / 1980,
  19615. bottom: 0.013
  19616. }
  19617. },
  19618. back: {
  19619. height: math.unit(10, "feet"),
  19620. weight: math.unit(350, "lb"),
  19621. name: "Back",
  19622. image: {
  19623. source: "./media/characters/jet/back.svg",
  19624. extra: 2050 / 1980,
  19625. bottom: 0.013
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Micro",
  19632. height: math.unit(6, "inches")
  19633. },
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(10, "feet"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Macro",
  19641. height: math.unit(100, "feet")
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(15, "feet"),
  19650. weight: math.unit(2800, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/tanarath/front.svg",
  19654. extra: 2392 / 2220,
  19655. bottom: 0.03
  19656. }
  19657. },
  19658. back: {
  19659. height: math.unit(15, "feet"),
  19660. weight: math.unit(2800, "lb"),
  19661. name: "Back",
  19662. image: {
  19663. source: "./media/characters/tanarath/back.svg",
  19664. extra: 2392 / 2220,
  19665. bottom: 0.03
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(15, "feet"),
  19673. default: true
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(7 + 1 / 12, "feet"),
  19682. weight: math.unit(175, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/patty-cattybatty/front.svg",
  19686. extra: 908 / 874,
  19687. bottom: 0.025
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Micro",
  19694. height: math.unit(1, "inch")
  19695. },
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(7 + 1 / 12, "feet")
  19699. },
  19700. {
  19701. name: "Mini Macro",
  19702. height: math.unit(155, "feet")
  19703. },
  19704. {
  19705. name: "Macro",
  19706. height: math.unit(1077, "feet")
  19707. },
  19708. {
  19709. name: "Mega Macro",
  19710. height: math.unit(47650, "feet"),
  19711. default: true
  19712. },
  19713. {
  19714. name: "Giga Macro",
  19715. height: math.unit(440, "miles")
  19716. },
  19717. {
  19718. name: "Tera Macro",
  19719. height: math.unit(8700, "miles")
  19720. },
  19721. {
  19722. name: "Planetary Macro",
  19723. height: math.unit(32700, "miles")
  19724. },
  19725. {
  19726. name: "Solar Macro",
  19727. height: math.unit(550000, "miles")
  19728. },
  19729. {
  19730. name: "Celestial Macro",
  19731. height: math.unit(2.5, "AU")
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(4 + 5 / 12, "feet"),
  19740. weight: math.unit(90, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/cappu/front.svg",
  19744. extra: 1247 / 1152,
  19745. bottom: 0.012
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(4 + 5 / 12, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19759. {
  19760. frontDressed: {
  19761. height: math.unit(70, "cm"),
  19762. weight: math.unit(6, "kg"),
  19763. name: "Front (Dressed)",
  19764. image: {
  19765. source: "./media/characters/sebi/front-dressed.svg",
  19766. extra: 713.5 / 686.5,
  19767. bottom: 0.003
  19768. }
  19769. },
  19770. front: {
  19771. height: math.unit(70, "cm"),
  19772. weight: math.unit(5, "kg"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/sebi/front.svg",
  19776. extra: 713.5 / 686.5,
  19777. bottom: 0.003
  19778. }
  19779. }
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(70, "cm"),
  19785. default: true
  19786. },
  19787. {
  19788. name: "Macro",
  19789. height: math.unit(8, "meters")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19795. {
  19796. front: {
  19797. height: math.unit(6, "feet"),
  19798. weight: math.unit(150, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/typhek/front.svg",
  19802. extra: 1948 / 1929,
  19803. bottom: 0.025
  19804. }
  19805. },
  19806. side: {
  19807. height: math.unit(6, "feet"),
  19808. weight: math.unit(150, "lb"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/typhek/side.svg",
  19812. extra: 2034 / 2010,
  19813. bottom: 0.003
  19814. }
  19815. },
  19816. back: {
  19817. height: math.unit(6, "feet"),
  19818. weight: math.unit(150, "lb"),
  19819. name: "Back",
  19820. image: {
  19821. source: "./media/characters/typhek/back.svg",
  19822. extra: 2005 / 1978,
  19823. bottom: 0.004
  19824. }
  19825. },
  19826. palm: {
  19827. height: math.unit(1.2, "feet"),
  19828. name: "Palm",
  19829. image: {
  19830. source: "./media/characters/typhek/palm.svg"
  19831. }
  19832. },
  19833. fist: {
  19834. height: math.unit(1.1, "feet"),
  19835. name: "Fist",
  19836. image: {
  19837. source: "./media/characters/typhek/fist.svg"
  19838. }
  19839. },
  19840. foot: {
  19841. height: math.unit(1.57, "feet"),
  19842. name: "Foot",
  19843. image: {
  19844. source: "./media/characters/typhek/foot.svg"
  19845. }
  19846. },
  19847. sole: {
  19848. height: math.unit(2.05, "feet"),
  19849. name: "Sole",
  19850. image: {
  19851. source: "./media/characters/typhek/sole.svg"
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Macro",
  19858. height: math.unit(40, "stories"),
  19859. default: true
  19860. },
  19861. {
  19862. name: "Megamacro",
  19863. height: math.unit(1, "mile")
  19864. },
  19865. {
  19866. name: "Gigamacro",
  19867. height: math.unit(4000, "solarradii")
  19868. },
  19869. {
  19870. name: "Universal",
  19871. height: math.unit(1.1, "universes")
  19872. }
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19877. {
  19878. side: {
  19879. height: math.unit(5 + 7 / 12, "feet"),
  19880. weight: math.unit(150, "lb"),
  19881. name: "Side",
  19882. image: {
  19883. source: "./media/characters/kassy/side.svg",
  19884. extra: 1280 / 1225,
  19885. bottom: 0.002
  19886. }
  19887. },
  19888. front: {
  19889. height: math.unit(5 + 7 / 12, "feet"),
  19890. weight: math.unit(150, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/kassy/front.svg",
  19894. extra: 1280 / 1225,
  19895. bottom: 0.025
  19896. }
  19897. },
  19898. back: {
  19899. height: math.unit(5 + 7 / 12, "feet"),
  19900. weight: math.unit(150, "lb"),
  19901. name: "Back",
  19902. image: {
  19903. source: "./media/characters/kassy/back.svg",
  19904. extra: 1280 / 1225,
  19905. bottom: 0.002
  19906. }
  19907. },
  19908. foot: {
  19909. height: math.unit(1.266, "feet"),
  19910. name: "Foot",
  19911. image: {
  19912. source: "./media/characters/kassy/foot.svg"
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(5 + 7 / 12, "feet")
  19920. },
  19921. {
  19922. name: "Macro",
  19923. height: math.unit(137, "feet"),
  19924. default: true
  19925. },
  19926. {
  19927. name: "Megamacro",
  19928. height: math.unit(1, "mile")
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19934. {
  19935. front: {
  19936. height: math.unit(6 + 1 / 12, "feet"),
  19937. weight: math.unit(200, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/neil/front.svg",
  19941. extra: 1326 / 1250,
  19942. bottom: 0.023
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(6 + 1 / 12, "feet"),
  19950. default: true
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(200, "feet")
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(5 + 9 / 12, "feet"),
  19963. weight: math.unit(190, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/atticus/front.svg",
  19967. extra: 2934 / 2785,
  19968. bottom: 0.025
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(5 + 9 / 12, "feet"),
  19976. default: true
  19977. },
  19978. {
  19979. name: "Macro",
  19980. height: math.unit(180, "feet")
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19986. {
  19987. side: {
  19988. height: math.unit(9, "feet"),
  19989. weight: math.unit(650, "lb"),
  19990. name: "Side",
  19991. image: {
  19992. source: "./media/characters/milo/side.svg",
  19993. extra: 2644 / 2310,
  19994. bottom: 0.032
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(9, "feet"),
  20002. default: true
  20003. },
  20004. {
  20005. name: "Macro",
  20006. height: math.unit(300, "feet")
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20012. {
  20013. side: {
  20014. height: math.unit(8, "meters"),
  20015. weight: math.unit(90000, "kg"),
  20016. name: "Side",
  20017. image: {
  20018. source: "./media/characters/ijzer/side.svg",
  20019. extra: 2756 / 1600,
  20020. bottom: 0.01
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Small",
  20027. height: math.unit(3, "meters")
  20028. },
  20029. {
  20030. name: "Normal",
  20031. height: math.unit(8, "meters"),
  20032. default: true
  20033. },
  20034. {
  20035. name: "Normal+",
  20036. height: math.unit(10, "meters")
  20037. },
  20038. {
  20039. name: "Bigger",
  20040. height: math.unit(24, "meters")
  20041. },
  20042. {
  20043. name: "Huge",
  20044. height: math.unit(80, "meters")
  20045. },
  20046. ]
  20047. ))
  20048. characterMakers.push(() => makeCharacter(
  20049. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20050. {
  20051. front: {
  20052. height: math.unit(6 + 2 / 12, "feet"),
  20053. weight: math.unit(153, "lb"),
  20054. name: "Front",
  20055. image: {
  20056. source: "./media/characters/luca-cervicum/front.svg",
  20057. extra: 370 / 327,
  20058. bottom: 0.015
  20059. }
  20060. },
  20061. back: {
  20062. height: math.unit(6 + 2 / 12, "feet"),
  20063. weight: math.unit(153, "lb"),
  20064. name: "Back",
  20065. image: {
  20066. source: "./media/characters/luca-cervicum/back.svg",
  20067. extra: 367 / 333,
  20068. bottom: 0.005
  20069. }
  20070. },
  20071. frontGear: {
  20072. height: math.unit(6 + 2 / 12, "feet"),
  20073. weight: math.unit(173, "lb"),
  20074. name: "Front (Gear)",
  20075. image: {
  20076. source: "./media/characters/luca-cervicum/front-gear.svg",
  20077. extra: 377 / 333,
  20078. bottom: 0.006
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(6 + 2 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20092. {
  20093. front: {
  20094. height: math.unit(6 + 1 / 12, "feet"),
  20095. weight: math.unit(304, "lb"),
  20096. name: "Front",
  20097. image: {
  20098. source: "./media/characters/oliver/front.svg",
  20099. extra: 157 / 143,
  20100. bottom: 0.08
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(6 + 1 / 12, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(5 + 7 / 12, "feet"),
  20117. weight: math.unit(140, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/shane/front.svg",
  20121. extra: 304 / 289,
  20122. bottom: 0.005
  20123. }
  20124. },
  20125. },
  20126. [
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(5 + 7 / 12, "feet"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(5 + 9 / 12, "feet"),
  20139. weight: math.unit(178, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/shin/front.svg",
  20143. extra: 159 / 151,
  20144. bottom: 0.015
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Normal",
  20151. height: math.unit(5 + 9 / 12, "feet"),
  20152. default: true
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(5 + 10 / 12, "feet"),
  20161. weight: math.unit(168, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/xerxes/front.svg",
  20165. extra: 282 / 260,
  20166. bottom: 0.045
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(5 + 10 / 12, "feet"),
  20174. default: true
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(6 + 7 / 12, "feet"),
  20183. weight: math.unit(208, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/chaska/front.svg",
  20187. extra: 332 / 319,
  20188. bottom: 0.015
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(6 + 7 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(5 + 8 / 12, "feet"),
  20205. weight: math.unit(208, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/enuk/front.svg",
  20209. extra: 437 / 406,
  20210. bottom: 0.02
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(5 + 8 / 12, "feet"),
  20218. default: true
  20219. },
  20220. ]
  20221. ))
  20222. characterMakers.push(() => makeCharacter(
  20223. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20224. {
  20225. front: {
  20226. height: math.unit(5 + 10 / 12, "feet"),
  20227. weight: math.unit(252, "lb"),
  20228. name: "Front",
  20229. image: {
  20230. source: "./media/characters/bruun/front.svg",
  20231. extra: 197 / 187,
  20232. bottom: 0.012
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(5 + 10 / 12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(6 + 10 / 12, "feet"),
  20249. weight: math.unit(255, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/alexeev/front.svg",
  20253. extra: 213 / 200,
  20254. bottom: 0.05
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(6 + 10 / 12, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(2 + 8 / 12, "feet"),
  20271. weight: math.unit(22, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/evelyn/front.svg",
  20275. extra: 208 / 180
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(2 + 8 / 12, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 9 / 12, "feet"),
  20292. weight: math.unit(139, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/inca/front.svg",
  20296. extra: 294 / 291,
  20297. bottom: 0.03
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(5 + 9 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(6 + 3 / 12, "feet"),
  20314. weight: math.unit(185, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/mera/front.svg",
  20318. extra: 291 / 277,
  20319. bottom: 0.03
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(6 + 3 / 12, "feet"),
  20327. default: true
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(6 + 7 / 12, "feet"),
  20336. weight: math.unit(160, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/ceres/front.svg",
  20340. extra: 1023 / 950,
  20341. bottom: 0.027
  20342. }
  20343. },
  20344. back: {
  20345. height: math.unit(6 + 7 / 12, "feet"),
  20346. weight: math.unit(160, "lb"),
  20347. name: "Back",
  20348. image: {
  20349. source: "./media/characters/ceres/back.svg",
  20350. extra: 1023 / 950
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(6 + 7 / 12, "feet"),
  20358. default: true
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(5 + 10 / 12, "feet"),
  20367. weight: math.unit(150, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/kris/front.svg",
  20371. extra: 885 / 803,
  20372. bottom: 0.03
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(5 + 10 / 12, "feet"),
  20380. default: true
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(7, "feet"),
  20389. weight: math.unit(120, "kg"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/taluthus/front.svg",
  20393. extra: 903 / 833,
  20394. bottom: 0.015
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(7, "feet"),
  20402. default: true
  20403. },
  20404. {
  20405. name: "Macro",
  20406. height: math.unit(300, "feet")
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(5 + 9 / 12, "feet"),
  20415. weight: math.unit(145, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/dawn/front.svg",
  20419. extra: 2094 / 2016,
  20420. bottom: 0.025
  20421. }
  20422. },
  20423. back: {
  20424. height: math.unit(5 + 9 / 12, "feet"),
  20425. weight: math.unit(160, "lb"),
  20426. name: "Back",
  20427. image: {
  20428. source: "./media/characters/dawn/back.svg",
  20429. extra: 2112 / 2080,
  20430. bottom: 0.005
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(6 + 7 / 12, "feet"),
  20438. default: true
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20444. {
  20445. anthro: {
  20446. height: math.unit(8 + 3 / 12, "feet"),
  20447. weight: math.unit(450, "lb"),
  20448. name: "Anthro",
  20449. image: {
  20450. source: "./media/characters/arador/anthro.svg",
  20451. extra: 1835 / 1718,
  20452. bottom: 0.025
  20453. }
  20454. },
  20455. feral: {
  20456. height: math.unit(4, "feet"),
  20457. weight: math.unit(200, "lb"),
  20458. name: "Feral",
  20459. image: {
  20460. source: "./media/characters/arador/feral.svg",
  20461. extra: 1683 / 1514,
  20462. bottom: 0.07
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(8 + 3 / 12, "feet")
  20470. },
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(82.5, "feet"),
  20474. default: true
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(5 + 10 / 12, "feet"),
  20483. weight: math.unit(125, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/dharsi/front.svg",
  20487. extra: 716 / 630,
  20488. bottom: 0.035
  20489. }
  20490. },
  20491. },
  20492. [
  20493. {
  20494. name: "Nano",
  20495. height: math.unit(100, "nm")
  20496. },
  20497. {
  20498. name: "Micro",
  20499. height: math.unit(2, "inches")
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(5 + 10 / 12, "feet"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Macro",
  20508. height: math.unit(1000, "feet")
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(10, "miles")
  20513. },
  20514. {
  20515. name: "Gigamacro",
  20516. height: math.unit(3000, "miles")
  20517. },
  20518. {
  20519. name: "Teramacro",
  20520. height: math.unit(500000, "miles")
  20521. },
  20522. {
  20523. name: "Teramacro+",
  20524. height: math.unit(30, "galaxies")
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20530. {
  20531. front: {
  20532. height: math.unit(6, "feet"),
  20533. weight: math.unit(150, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/deathy/front.svg",
  20537. extra: 1552 / 1463,
  20538. bottom: 0.025
  20539. }
  20540. },
  20541. side: {
  20542. height: math.unit(6, "feet"),
  20543. weight: math.unit(150, "lb"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/deathy/side.svg",
  20547. extra: 1604 / 1455,
  20548. bottom: 0.025
  20549. }
  20550. },
  20551. back: {
  20552. height: math.unit(6, "feet"),
  20553. weight: math.unit(150, "lb"),
  20554. name: "Back",
  20555. image: {
  20556. source: "./media/characters/deathy/back.svg",
  20557. extra: 1580 / 1463,
  20558. bottom: 0.005
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Micro",
  20565. height: math.unit(5, "millimeters")
  20566. },
  20567. {
  20568. name: "Normal",
  20569. height: math.unit(6 + 5 / 12, "feet"),
  20570. default: true
  20571. },
  20572. ]
  20573. ))
  20574. characterMakers.push(() => makeCharacter(
  20575. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20576. {
  20577. front: {
  20578. height: math.unit(16, "feet"),
  20579. weight: math.unit(4000, "lb"),
  20580. name: "Front",
  20581. image: {
  20582. source: "./media/characters/juniper/front.svg",
  20583. bottom: 0.04
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(16, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(6, "feet"),
  20600. weight: math.unit(150, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/hipster/front.svg",
  20604. extra: 1312 / 1209,
  20605. bottom: 0.025
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(6, "feet"),
  20610. weight: math.unit(150, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/hipster/back.svg",
  20614. extra: 1281 / 1196,
  20615. bottom: 0.01
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Micro",
  20622. height: math.unit(1, "mm")
  20623. },
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(4, "inches"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(500, "feet")
  20632. },
  20633. {
  20634. name: "Megamacro",
  20635. height: math.unit(1000, "miles")
  20636. },
  20637. ]
  20638. ))
  20639. characterMakers.push(() => makeCharacter(
  20640. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20641. {
  20642. front: {
  20643. height: math.unit(6, "feet"),
  20644. weight: math.unit(150, "lb"),
  20645. name: "Front",
  20646. image: {
  20647. source: "./media/characters/tendirmuldr/front.svg",
  20648. extra: 1878 / 1772,
  20649. bottom: 0.015
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Megamacro",
  20656. height: math.unit(1500, "miles"),
  20657. default: true
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20663. {
  20664. front: {
  20665. height: math.unit(14, "feet"),
  20666. weight: math.unit(12000, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/mort/front.svg",
  20670. extra: 365 / 318,
  20671. bottom: 0.01
  20672. }
  20673. },
  20674. side: {
  20675. height: math.unit(14, "feet"),
  20676. weight: math.unit(12000, "lb"),
  20677. name: "Side",
  20678. image: {
  20679. source: "./media/characters/mort/side.svg",
  20680. extra: 365 / 318,
  20681. bottom: 0.052
  20682. },
  20683. default: true
  20684. },
  20685. back: {
  20686. height: math.unit(14, "feet"),
  20687. weight: math.unit(12000, "lb"),
  20688. name: "Back",
  20689. image: {
  20690. source: "./media/characters/mort/back.svg",
  20691. extra: 371 / 332,
  20692. bottom: 0.18
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(14, "feet"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20706. {
  20707. front: {
  20708. height: math.unit(8, "feet"),
  20709. weight: math.unit(1, "ton"),
  20710. name: "Front",
  20711. image: {
  20712. source: "./media/characters/lycoa/front.svg",
  20713. extra: 1836/1728,
  20714. bottom: 81/1917
  20715. }
  20716. },
  20717. back: {
  20718. height: math.unit(8, "feet"),
  20719. weight: math.unit(1, "ton"),
  20720. name: "Back",
  20721. image: {
  20722. source: "./media/characters/lycoa/back.svg",
  20723. extra: 1785/1720,
  20724. bottom: 91/1876
  20725. }
  20726. },
  20727. head: {
  20728. height: math.unit(1.6243, "feet"),
  20729. name: "Head",
  20730. image: {
  20731. source: "./media/characters/lycoa/head.svg",
  20732. extra: 1011/782,
  20733. bottom: 0/1011
  20734. }
  20735. },
  20736. tailmaw: {
  20737. height: math.unit(1.9, "feet"),
  20738. name: "Tailmaw",
  20739. image: {
  20740. source: "./media/characters/lycoa/tailmaw.svg"
  20741. }
  20742. },
  20743. tentacles: {
  20744. height: math.unit(2.1, "feet"),
  20745. name: "Tentacles",
  20746. image: {
  20747. source: "./media/characters/lycoa/tentacles.svg"
  20748. }
  20749. },
  20750. dick: {
  20751. height: math.unit(1.73, "feet"),
  20752. name: "Dick",
  20753. image: {
  20754. source: "./media/characters/lycoa/dick.svg"
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(8, "feet"),
  20762. default: true
  20763. },
  20764. {
  20765. name: "Macro",
  20766. height: math.unit(30, "feet")
  20767. },
  20768. ]
  20769. ))
  20770. characterMakers.push(() => makeCharacter(
  20771. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20772. {
  20773. front: {
  20774. height: math.unit(4 + 2 / 12, "feet"),
  20775. weight: math.unit(70, "lb"),
  20776. name: "Front",
  20777. image: {
  20778. source: "./media/characters/naldara/front.svg",
  20779. extra: 1664/1387,
  20780. bottom: 81/1745
  20781. },
  20782. form: "anthro",
  20783. default: true
  20784. },
  20785. naga: {
  20786. height: math.unit(20, "feet"),
  20787. weight: math.unit(15000, "kg"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/naldara/naga.svg",
  20791. extra: 1590/1396,
  20792. bottom: 285/1875
  20793. },
  20794. form: "naga",
  20795. default: true
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(4 + 2 / 12, "feet"),
  20802. form: "anthro",
  20803. default: true
  20804. },
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(20, "feet"),
  20808. form: "naga",
  20809. default: true
  20810. },
  20811. ],
  20812. {
  20813. "anthro": {
  20814. name: "Anthro",
  20815. default: true
  20816. },
  20817. "naga": {
  20818. name: "Naga"
  20819. }
  20820. }
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(13 + 7 / 12, "feet"),
  20827. weight: math.unit(1500, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/briar/front.svg",
  20831. extra: 1223/1157,
  20832. bottom: 123/1346
  20833. }
  20834. },
  20835. },
  20836. [
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(13 + 7 / 12, "feet"),
  20840. default: true
  20841. },
  20842. ]
  20843. ))
  20844. characterMakers.push(() => makeCharacter(
  20845. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20846. {
  20847. side: {
  20848. height: math.unit(16, "feet"),
  20849. weight: math.unit(500, "lb"),
  20850. name: "Side",
  20851. image: {
  20852. source: "./media/characters/vanguard/side.svg",
  20853. extra: 1022/914,
  20854. bottom: 30/1052
  20855. }
  20856. },
  20857. sideAlt: {
  20858. height: math.unit(10, "feet"),
  20859. weight: math.unit(500, "lb"),
  20860. name: "Side (Alt)",
  20861. image: {
  20862. source: "./media/characters/vanguard/side-alt.svg",
  20863. extra: 502 / 425,
  20864. bottom: 0.087
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(17.71, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(7.5, "feet"),
  20881. weight: math.unit(2, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/artemis/work-safe-front.svg",
  20885. extra: 1192 / 1075,
  20886. bottom: 0.07
  20887. },
  20888. form: "work-safe",
  20889. default: true
  20890. },
  20891. frontNsfw: {
  20892. height: math.unit(7.5, "feet"),
  20893. weight: math.unit(2, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/artemis/calibrating-front.svg",
  20897. extra: 1192 / 1075,
  20898. bottom: 0.07
  20899. },
  20900. form: "calibrating",
  20901. default: true
  20902. },
  20903. frontNsfwer: {
  20904. height: math.unit(7.5, "feet"),
  20905. weight: math.unit(2, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/artemis/oversize-load-front.svg",
  20909. extra: 1192 / 1075,
  20910. bottom: 0.07
  20911. },
  20912. form: "oversize-load",
  20913. default: true
  20914. },
  20915. side: {
  20916. height: math.unit(7.5, "feet"),
  20917. weight: math.unit(2, "lb"),
  20918. name: "Side",
  20919. image: {
  20920. source: "./media/characters/artemis/work-safe-side.svg",
  20921. extra: 1192 / 1075,
  20922. bottom: 0.07
  20923. },
  20924. form: "work-safe"
  20925. },
  20926. sideNsfw: {
  20927. height: math.unit(7.5, "feet"),
  20928. weight: math.unit(2, "lb"),
  20929. name: "Side",
  20930. image: {
  20931. source: "./media/characters/artemis/calibrating-side.svg",
  20932. extra: 1192 / 1075,
  20933. bottom: 0.07
  20934. },
  20935. form: "calibrating"
  20936. },
  20937. sideNsfwer: {
  20938. height: math.unit(7.5, "feet"),
  20939. weight: math.unit(2, "lb"),
  20940. name: "Side",
  20941. image: {
  20942. source: "./media/characters/artemis/oversize-load-side.svg",
  20943. extra: 1192 / 1075,
  20944. bottom: 0.07
  20945. },
  20946. form: "oversize-load"
  20947. },
  20948. maw: {
  20949. height: math.unit(1.1, "feet"),
  20950. name: "Maw",
  20951. image: {
  20952. source: "./media/characters/artemis/maw.svg"
  20953. },
  20954. form: "work-safe"
  20955. },
  20956. stomach: {
  20957. height: math.unit(0.95, "feet"),
  20958. name: "Stomach",
  20959. image: {
  20960. source: "./media/characters/artemis/stomach.svg"
  20961. },
  20962. form: "work-safe"
  20963. },
  20964. dickCanine: {
  20965. height: math.unit(1, "feet"),
  20966. name: "Dick (Canine)",
  20967. image: {
  20968. source: "./media/characters/artemis/dick-canine.svg"
  20969. },
  20970. form: "calibrating"
  20971. },
  20972. dickEquine: {
  20973. height: math.unit(0.85, "feet"),
  20974. name: "Dick (Equine)",
  20975. image: {
  20976. source: "./media/characters/artemis/dick-equine.svg"
  20977. },
  20978. form: "calibrating"
  20979. },
  20980. dickExotic: {
  20981. height: math.unit(0.85, "feet"),
  20982. name: "Dick (Exotic)",
  20983. image: {
  20984. source: "./media/characters/artemis/dick-exotic.svg"
  20985. },
  20986. form: "calibrating"
  20987. },
  20988. dickCanineBigger: {
  20989. height: math.unit(1 * 1.33, "feet"),
  20990. name: "Dick (Canine)",
  20991. image: {
  20992. source: "./media/characters/artemis/dick-canine.svg"
  20993. },
  20994. form: "oversize-load"
  20995. },
  20996. dickEquineBigger: {
  20997. height: math.unit(0.85 * 1.33, "feet"),
  20998. name: "Dick (Equine)",
  20999. image: {
  21000. source: "./media/characters/artemis/dick-equine.svg"
  21001. },
  21002. form: "oversize-load"
  21003. },
  21004. dickExoticBigger: {
  21005. height: math.unit(0.85 * 1.33, "feet"),
  21006. name: "Dick (Exotic)",
  21007. image: {
  21008. source: "./media/characters/artemis/dick-exotic.svg"
  21009. },
  21010. form: "oversize-load"
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(7.5, "feet"),
  21017. form: "work-safe",
  21018. default: true
  21019. },
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(7.5, "feet"),
  21023. form: "calibrating",
  21024. default: true
  21025. },
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(7.5, "feet"),
  21029. form: "oversize-load",
  21030. default: true
  21031. },
  21032. {
  21033. name: "Enlarged",
  21034. height: math.unit(12, "feet"),
  21035. form: "work-safe",
  21036. },
  21037. {
  21038. name: "Enlarged",
  21039. height: math.unit(12, "feet"),
  21040. form: "calibrating",
  21041. },
  21042. {
  21043. name: "Enlarged",
  21044. height: math.unit(12, "feet"),
  21045. form: "oversize-load",
  21046. },
  21047. ],
  21048. {
  21049. "work-safe": {
  21050. name: "Work-Safe",
  21051. default: true
  21052. },
  21053. "calibrating": {
  21054. name: "Calibrating"
  21055. },
  21056. "oversize-load": {
  21057. name: "Oversize Load"
  21058. }
  21059. }
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(5 + 3 / 12, "feet"),
  21066. weight: math.unit(160, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/kira/front.svg",
  21070. extra: 906 / 786,
  21071. bottom: 0.01
  21072. }
  21073. },
  21074. back: {
  21075. height: math.unit(5 + 3 / 12, "feet"),
  21076. weight: math.unit(160, "lb"),
  21077. name: "Back",
  21078. image: {
  21079. source: "./media/characters/kira/back.svg",
  21080. extra: 882 / 757,
  21081. bottom: 0.005
  21082. }
  21083. },
  21084. frontDressed: {
  21085. height: math.unit(5 + 3 / 12, "feet"),
  21086. weight: math.unit(160, "lb"),
  21087. name: "Front (Dressed)",
  21088. image: {
  21089. source: "./media/characters/kira/front-dressed.svg",
  21090. extra: 906 / 786,
  21091. bottom: 0.01
  21092. }
  21093. },
  21094. beans: {
  21095. height: math.unit(0.92, "feet"),
  21096. name: "Beans",
  21097. image: {
  21098. source: "./media/characters/kira/beans.svg"
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(5 + 3 / 12, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21112. {
  21113. front: {
  21114. height: math.unit(5 + 4 / 12, "feet"),
  21115. weight: math.unit(145, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/scramble/front.svg",
  21119. extra: 763 / 727,
  21120. bottom: 0.05
  21121. }
  21122. },
  21123. back: {
  21124. height: math.unit(5 + 4 / 12, "feet"),
  21125. weight: math.unit(145, "lb"),
  21126. name: "Back",
  21127. image: {
  21128. source: "./media/characters/scramble/back.svg",
  21129. extra: 826 / 737,
  21130. bottom: 0.002
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(5 + 4 / 12, "feet"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21144. {
  21145. side: {
  21146. height: math.unit(6 + 2 / 12, "feet"),
  21147. weight: math.unit(190, "lb"),
  21148. name: "Side",
  21149. image: {
  21150. source: "./media/characters/biscuit/side.svg",
  21151. extra: 858 / 791,
  21152. bottom: 0.044
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(6 + 2 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(5 + 2 / 12, "feet"),
  21169. weight: math.unit(120, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/poffin/front.svg",
  21173. extra: 786 / 680,
  21174. bottom: 0.005
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(5 + 2 / 12, "feet"),
  21182. default: true
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21188. {
  21189. front: {
  21190. height: math.unit(6 + 3 / 12, "feet"),
  21191. weight: math.unit(519, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/dhari/front.svg",
  21195. extra: 1048 / 946,
  21196. bottom: 0.015
  21197. }
  21198. },
  21199. back: {
  21200. height: math.unit(6 + 3 / 12, "feet"),
  21201. weight: math.unit(519, "lb"),
  21202. name: "Back",
  21203. image: {
  21204. source: "./media/characters/dhari/back.svg",
  21205. extra: 1048 / 931,
  21206. bottom: 0.005
  21207. }
  21208. },
  21209. frontDressed: {
  21210. height: math.unit(6 + 3 / 12, "feet"),
  21211. weight: math.unit(519, "lb"),
  21212. name: "Front (Dressed)",
  21213. image: {
  21214. source: "./media/characters/dhari/front-dressed.svg",
  21215. extra: 1713 / 1546,
  21216. bottom: 0.02
  21217. }
  21218. },
  21219. backDressed: {
  21220. height: math.unit(6 + 3 / 12, "feet"),
  21221. weight: math.unit(519, "lb"),
  21222. name: "Back (Dressed)",
  21223. image: {
  21224. source: "./media/characters/dhari/back-dressed.svg",
  21225. extra: 1699 / 1537,
  21226. bottom: 0.01
  21227. }
  21228. },
  21229. maw: {
  21230. height: math.unit(0.95, "feet"),
  21231. name: "Maw",
  21232. image: {
  21233. source: "./media/characters/dhari/maw.svg"
  21234. }
  21235. },
  21236. wereFront: {
  21237. height: math.unit(12 + 8 / 12, "feet"),
  21238. weight: math.unit(4000, "lb"),
  21239. name: "Front (Were)",
  21240. image: {
  21241. source: "./media/characters/dhari/were-front.svg",
  21242. extra: 1065 / 969,
  21243. bottom: 0.015
  21244. }
  21245. },
  21246. wereBack: {
  21247. height: math.unit(12 + 8 / 12, "feet"),
  21248. weight: math.unit(4000, "lb"),
  21249. name: "Back (Were)",
  21250. image: {
  21251. source: "./media/characters/dhari/were-back.svg",
  21252. extra: 1065 / 969,
  21253. bottom: 0.012
  21254. }
  21255. },
  21256. wereMaw: {
  21257. height: math.unit(0.625, "meters"),
  21258. name: "Maw (Were)",
  21259. image: {
  21260. source: "./media/characters/dhari/were-maw.svg"
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(6 + 3 / 12, "feet"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21274. {
  21275. anthro: {
  21276. height: math.unit(5 + 7 / 12, "feet"),
  21277. weight: math.unit(175, "lb"),
  21278. name: "Anthro",
  21279. image: {
  21280. source: "./media/characters/rena-dyne/anthro.svg",
  21281. extra: 1849 / 1785,
  21282. bottom: 0.005
  21283. }
  21284. },
  21285. taur: {
  21286. height: math.unit(15 + 6 / 12, "feet"),
  21287. weight: math.unit(8000, "lb"),
  21288. name: "Taur",
  21289. image: {
  21290. source: "./media/characters/rena-dyne/taur.svg",
  21291. extra: 2315 / 2234,
  21292. bottom: 0.033
  21293. }
  21294. },
  21295. },
  21296. [
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(5 + 7 / 12, "feet"),
  21300. default: true
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(8, "feet"),
  21309. weight: math.unit(600, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/weremeep/front.svg",
  21313. extra: 967 / 862,
  21314. bottom: 0.01
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(8, "feet"),
  21322. default: true
  21323. },
  21324. {
  21325. name: "Lorg",
  21326. height: math.unit(12, "feet")
  21327. },
  21328. {
  21329. name: "Oh Lawd She Comin'",
  21330. height: math.unit(20, "feet")
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21336. {
  21337. front: {
  21338. height: math.unit(4, "feet"),
  21339. weight: math.unit(90, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/reza/front.svg",
  21343. extra: 1183 / 1111,
  21344. bottom: 0.017
  21345. }
  21346. },
  21347. back: {
  21348. height: math.unit(4, "feet"),
  21349. weight: math.unit(90, "lb"),
  21350. name: "Back",
  21351. image: {
  21352. source: "./media/characters/reza/back.svg",
  21353. extra: 1183 / 1111,
  21354. bottom: 0.01
  21355. }
  21356. },
  21357. drake: {
  21358. height: math.unit(30, "feet"),
  21359. weight: math.unit(246960, "lb"),
  21360. name: "Drake",
  21361. image: {
  21362. source: "./media/characters/reza/drake.svg",
  21363. extra: 2350 / 2024,
  21364. bottom: 60.7 / 2403
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(4, "feet"),
  21372. default: true
  21373. },
  21374. ]
  21375. ))
  21376. characterMakers.push(() => makeCharacter(
  21377. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21378. {
  21379. side: {
  21380. height: math.unit(15, "feet"),
  21381. weight: math.unit(14, "tons"),
  21382. name: "Side",
  21383. image: {
  21384. source: "./media/characters/athea/side.svg",
  21385. extra: 960 / 540,
  21386. bottom: 0.003
  21387. }
  21388. },
  21389. sitting: {
  21390. height: math.unit(6 * 2.85, "feet"),
  21391. weight: math.unit(14, "tons"),
  21392. name: "Sitting",
  21393. image: {
  21394. source: "./media/characters/athea/sitting.svg",
  21395. extra: 621 / 581,
  21396. bottom: 0.075
  21397. }
  21398. },
  21399. maw: {
  21400. height: math.unit(7.59498031496063, "feet"),
  21401. name: "Maw",
  21402. image: {
  21403. source: "./media/characters/athea/maw.svg"
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Lap Cat",
  21410. height: math.unit(2.5, "feet")
  21411. },
  21412. {
  21413. name: "Minimacro",
  21414. height: math.unit(15, "feet"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(120, "feet")
  21420. },
  21421. {
  21422. name: "Macro+",
  21423. height: math.unit(640, "feet")
  21424. },
  21425. {
  21426. name: "Colossus",
  21427. height: math.unit(2.2, "miles")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(8 + 8 / 12, "feet"),
  21436. weight: math.unit(130, "kg"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/seroko/front.svg",
  21440. extra: 1385 / 1280,
  21441. bottom: 0.025
  21442. }
  21443. },
  21444. back: {
  21445. height: math.unit(8 + 8 / 12, "feet"),
  21446. weight: math.unit(130, "kg"),
  21447. name: "Back",
  21448. image: {
  21449. source: "./media/characters/seroko/back.svg",
  21450. extra: 1369 / 1238,
  21451. bottom: 0.018
  21452. }
  21453. },
  21454. frontDressed: {
  21455. height: math.unit(8 + 8 / 12, "feet"),
  21456. weight: math.unit(130, "kg"),
  21457. name: "Front (Dressed)",
  21458. image: {
  21459. source: "./media/characters/seroko/front-dressed.svg",
  21460. extra: 1366 / 1275,
  21461. bottom: 0.03
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(8 + 8 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(5.5, "feet"),
  21478. weight: math.unit(160, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/quatzi/front.svg",
  21482. extra: 2346 / 2242,
  21483. bottom: 0.015
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(5.5, "feet"),
  21491. default: true
  21492. },
  21493. {
  21494. name: "Big",
  21495. height: math.unit(7.7, "feet")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21501. {
  21502. front: {
  21503. height: math.unit(5 + 11 / 12, "feet"),
  21504. weight: math.unit(180, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/sen/front.svg",
  21508. extra: 1321 / 1254,
  21509. bottom: 0.015
  21510. }
  21511. },
  21512. side: {
  21513. height: math.unit(5 + 11 / 12, "feet"),
  21514. weight: math.unit(180, "lb"),
  21515. name: "Side",
  21516. image: {
  21517. source: "./media/characters/sen/side.svg",
  21518. extra: 1321 / 1254,
  21519. bottom: 0.007
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(5 + 11 / 12, "feet"),
  21524. weight: math.unit(180, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/sen/back.svg",
  21528. extra: 1321 / 1254
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(5 + 11 / 12, "feet"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(166.6, "cm"),
  21545. weight: math.unit(66.6, "kg"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/fruity/front.svg",
  21549. extra: 1510 / 1386,
  21550. bottom: 0.04
  21551. }
  21552. },
  21553. back: {
  21554. height: math.unit(166.6, "cm"),
  21555. weight: math.unit(66.6, "lb"),
  21556. name: "Back",
  21557. image: {
  21558. source: "./media/characters/fruity/back.svg",
  21559. extra: 1563 / 1435,
  21560. bottom: 0.005
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(166.6, "cm"),
  21568. default: true
  21569. },
  21570. {
  21571. name: "Demonic",
  21572. height: math.unit(166.6, "feet")
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21578. {
  21579. side: {
  21580. height: math.unit(10, "feet"),
  21581. weight: math.unit(500, "lb"),
  21582. name: "Side",
  21583. image: {
  21584. source: "./media/characters/zost/side.svg",
  21585. extra: 2870/2533,
  21586. bottom: 252/3122
  21587. }
  21588. },
  21589. mawFront: {
  21590. height: math.unit(1.08, "meters"),
  21591. name: "Maw (Front)",
  21592. image: {
  21593. source: "./media/characters/zost/maw-front.svg"
  21594. }
  21595. },
  21596. mawSide: {
  21597. height: math.unit(2.66, "feet"),
  21598. name: "Maw (Side)",
  21599. image: {
  21600. source: "./media/characters/zost/maw-side.svg"
  21601. }
  21602. },
  21603. wingspan: {
  21604. height: math.unit(7.4, "feet"),
  21605. name: "Wingspan",
  21606. image: {
  21607. source: "./media/characters/zost/wingspan.svg"
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(10, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. weight: math.unit(120, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/luci/front.svg",
  21628. extra: 1985 / 1884,
  21629. bottom: 0.04
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(5 + 4 / 12, "feet"),
  21634. weight: math.unit(120, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/luci/back.svg",
  21638. extra: 1892 / 1791,
  21639. bottom: 0.002
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "Normal",
  21646. height: math.unit(5 + 4 / 12, "feet"),
  21647. default: true
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(1500, "feet"),
  21656. weight: math.unit(3.8e6, "tons"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/2th/front.svg",
  21660. extra: 3489 / 3350,
  21661. bottom: 0.1
  21662. }
  21663. },
  21664. foot: {
  21665. height: math.unit(461, "feet"),
  21666. name: "Foot",
  21667. image: {
  21668. source: "./media/characters/2th/foot.svg"
  21669. }
  21670. },
  21671. },
  21672. [
  21673. {
  21674. name: "\"Micro\"",
  21675. height: math.unit(15 + 7 / 12, "feet")
  21676. },
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(1500, "feet"),
  21680. default: true
  21681. },
  21682. {
  21683. name: "Macro",
  21684. height: math.unit(5000, "feet")
  21685. },
  21686. {
  21687. name: "Megamacro",
  21688. height: math.unit(15, "miles")
  21689. },
  21690. {
  21691. name: "Gigamacro",
  21692. height: math.unit(4000, "miles")
  21693. },
  21694. {
  21695. name: "Galactic",
  21696. height: math.unit(50, "AU")
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(5 + 6 / 12, "feet"),
  21705. weight: math.unit(220, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/amethyst/front.svg",
  21709. extra: 2078 / 2040,
  21710. bottom: 0.045
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(5 + 6 / 12, "feet"),
  21715. weight: math.unit(220, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/amethyst/back.svg",
  21719. extra: 2021 / 1989,
  21720. bottom: 0.02
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(5 + 6 / 12, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(4 + 11 / 12, "feet"),
  21737. weight: math.unit(120, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/yumi-akiyama/front.svg",
  21741. extra: 1327 / 1235,
  21742. bottom: 0.02
  21743. }
  21744. },
  21745. back: {
  21746. height: math.unit(4 + 11 / 12, "feet"),
  21747. weight: math.unit(120, "lb"),
  21748. name: "Back",
  21749. image: {
  21750. source: "./media/characters/yumi-akiyama/back.svg",
  21751. extra: 1287 / 1245,
  21752. bottom: 0.002
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Galactic",
  21759. height: math.unit(50, "galaxies"),
  21760. default: true
  21761. },
  21762. {
  21763. name: "Universal",
  21764. height: math.unit(100, "universes")
  21765. },
  21766. ]
  21767. ))
  21768. characterMakers.push(() => makeCharacter(
  21769. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21770. {
  21771. front: {
  21772. height: math.unit(8, "feet"),
  21773. weight: math.unit(500, "lb"),
  21774. name: "Front",
  21775. image: {
  21776. source: "./media/characters/rifter-yrmori/front.svg",
  21777. extra: 1180 / 1125,
  21778. bottom: 0.02
  21779. }
  21780. },
  21781. back: {
  21782. height: math.unit(8, "feet"),
  21783. weight: math.unit(500, "lb"),
  21784. name: "Back",
  21785. image: {
  21786. source: "./media/characters/rifter-yrmori/back.svg",
  21787. extra: 1190 / 1145,
  21788. bottom: 0.001
  21789. }
  21790. },
  21791. wings: {
  21792. height: math.unit(7.75, "feet"),
  21793. weight: math.unit(500, "lb"),
  21794. name: "Wings",
  21795. image: {
  21796. source: "./media/characters/rifter-yrmori/wings.svg",
  21797. extra: 1357 / 1285
  21798. }
  21799. },
  21800. maw: {
  21801. height: math.unit(0.8, "feet"),
  21802. name: "Maw",
  21803. image: {
  21804. source: "./media/characters/rifter-yrmori/maw.svg"
  21805. }
  21806. },
  21807. mawfront: {
  21808. height: math.unit(1.45, "feet"),
  21809. name: "Maw (Front)",
  21810. image: {
  21811. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(8, "feet"),
  21819. default: true
  21820. },
  21821. {
  21822. name: "Macro",
  21823. height: math.unit(42, "meters")
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21829. {
  21830. were: {
  21831. height: math.unit(25 + 6 / 12, "feet"),
  21832. weight: math.unit(10000, "lb"),
  21833. name: "Were",
  21834. image: {
  21835. source: "./media/characters/tahajin/were.svg",
  21836. extra: 801 / 770,
  21837. bottom: 0.042
  21838. }
  21839. },
  21840. aquatic: {
  21841. height: math.unit(6 + 4 / 12, "feet"),
  21842. weight: math.unit(160, "lb"),
  21843. name: "Aquatic",
  21844. image: {
  21845. source: "./media/characters/tahajin/aquatic.svg",
  21846. extra: 572 / 542,
  21847. bottom: 0.04
  21848. }
  21849. },
  21850. chow: {
  21851. height: math.unit(8 + 11 / 12, "feet"),
  21852. weight: math.unit(450, "lb"),
  21853. name: "Chow",
  21854. image: {
  21855. source: "./media/characters/tahajin/chow.svg",
  21856. extra: 660 / 640,
  21857. bottom: 0.015
  21858. }
  21859. },
  21860. demiNaga: {
  21861. height: math.unit(6 + 8 / 12, "feet"),
  21862. weight: math.unit(300, "lb"),
  21863. name: "Demi Naga",
  21864. image: {
  21865. source: "./media/characters/tahajin/demi-naga.svg",
  21866. extra: 643 / 615,
  21867. bottom: 0.1
  21868. }
  21869. },
  21870. data: {
  21871. height: math.unit(5, "inches"),
  21872. weight: math.unit(0.1, "lb"),
  21873. name: "Data",
  21874. image: {
  21875. source: "./media/characters/tahajin/data.svg"
  21876. }
  21877. },
  21878. fluu: {
  21879. height: math.unit(5 + 7 / 12, "feet"),
  21880. weight: math.unit(140, "lb"),
  21881. name: "Fluu",
  21882. image: {
  21883. source: "./media/characters/tahajin/fluu.svg",
  21884. extra: 628 / 592,
  21885. bottom: 0.02
  21886. }
  21887. },
  21888. starWarrior: {
  21889. height: math.unit(4 + 5 / 12, "feet"),
  21890. weight: math.unit(50, "lb"),
  21891. name: "Star Warrior",
  21892. image: {
  21893. source: "./media/characters/tahajin/star-warrior.svg"
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(25 + 6 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(8, "feet"),
  21910. weight: math.unit(350, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/gabira/front.svg",
  21914. extra: 608 / 580,
  21915. bottom: 0.03
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(8, "feet"),
  21920. weight: math.unit(350, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/gabira/back.svg",
  21924. extra: 608 / 580,
  21925. bottom: 0.03
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(8, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5 + 3 / 12, "feet"),
  21942. weight: math.unit(137, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/sasha-katraine/front.svg",
  21946. extra: 1745/1694,
  21947. bottom: 37/1782
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(5 + 3 / 12, "feet"),
  21952. weight: math.unit(137, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/sasha-katraine/back.svg",
  21956. extra: 1776/1699,
  21957. bottom: 26/1802
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Micro",
  21964. height: math.unit(5, "inches")
  21965. },
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(5 + 3 / 12, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21975. {
  21976. side: {
  21977. height: math.unit(4, "inches"),
  21978. weight: math.unit(200, "grams"),
  21979. name: "Side",
  21980. image: {
  21981. source: "./media/characters/der/side.svg",
  21982. extra: 719 / 400,
  21983. bottom: 30.6 / 749.9187
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Micro",
  21990. height: math.unit(4, "inches"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21997. {
  21998. side: {
  21999. height: math.unit(30, "meters"),
  22000. weight: math.unit(700, "tonnes"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/fixerdragon/side.svg",
  22004. extra: (1293.0514 - 116.03) / 1106.86,
  22005. bottom: 116.03 / 1293.0514
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Planck",
  22012. height: math.unit(1.6e-35, "meters")
  22013. },
  22014. {
  22015. name: "Micro",
  22016. height: math.unit(0.4, "meters")
  22017. },
  22018. {
  22019. name: "Normal",
  22020. height: math.unit(30, "meters"),
  22021. default: true
  22022. },
  22023. {
  22024. name: "Megamacro",
  22025. height: math.unit(1.2, "megameters")
  22026. },
  22027. {
  22028. name: "Teramacro",
  22029. height: math.unit(130, "terameters")
  22030. },
  22031. {
  22032. name: "Yottamacro",
  22033. height: math.unit(6200, "yottameters")
  22034. },
  22035. ]
  22036. ));
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(8, "feet"),
  22042. weight: math.unit(250, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/kite/front.svg",
  22046. extra: 2796 / 2659,
  22047. bottom: 0.002
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(8, "feet"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(360, "feet")
  22060. },
  22061. {
  22062. name: "Megamacro",
  22063. height: math.unit(1500, "feet")
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(5 + 11/12, "feet"),
  22072. weight: math.unit(170, "lb"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/poojawa-vynar/front.svg",
  22076. extra: 1735/1585,
  22077. bottom: 96/1831
  22078. }
  22079. },
  22080. back: {
  22081. height: math.unit(5 + 11/12, "feet"),
  22082. weight: math.unit(170, "lb"),
  22083. name: "Back",
  22084. image: {
  22085. source: "./media/characters/poojawa-vynar/back.svg",
  22086. extra: 1749/1607,
  22087. bottom: 28/1777
  22088. }
  22089. },
  22090. male: {
  22091. height: math.unit(5 + 11/12, "feet"),
  22092. weight: math.unit(170, "lb"),
  22093. name: "Male",
  22094. image: {
  22095. source: "./media/characters/poojawa-vynar/male.svg",
  22096. extra: 1855/1713,
  22097. bottom: 63/1918
  22098. }
  22099. },
  22100. taur: {
  22101. height: math.unit(5 + 11/12, "feet"),
  22102. weight: math.unit(170, "lb"),
  22103. name: "Taur",
  22104. image: {
  22105. source: "./media/characters/poojawa-vynar/taur.svg",
  22106. extra: 1151/1059,
  22107. bottom: 356/1507
  22108. }
  22109. },
  22110. frontDressed: {
  22111. height: math.unit(5 + 11/12, "feet"),
  22112. weight: math.unit(170, "lb"),
  22113. name: "Front (Dressed)",
  22114. image: {
  22115. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22116. extra: 1735/1585,
  22117. bottom: 96/1831
  22118. }
  22119. },
  22120. backDressed: {
  22121. height: math.unit(5 + 11/12, "feet"),
  22122. weight: math.unit(170, "lb"),
  22123. name: "Back (Dressed)",
  22124. image: {
  22125. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22126. extra: 1749/1607,
  22127. bottom: 28/1777
  22128. }
  22129. },
  22130. maleDressed: {
  22131. height: math.unit(5 + 11/12, "feet"),
  22132. weight: math.unit(170, "lb"),
  22133. name: "Male (Dressed)",
  22134. image: {
  22135. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22136. extra: 1855/1713,
  22137. bottom: 63/1918
  22138. }
  22139. },
  22140. taurDressed: {
  22141. height: math.unit(5 + 11/12, "feet"),
  22142. weight: math.unit(170, "lb"),
  22143. name: "Taur (Dressed)",
  22144. image: {
  22145. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22146. extra: 1151/1059,
  22147. bottom: 356/1507
  22148. }
  22149. },
  22150. maw: {
  22151. height: math.unit(1.46, "feet"),
  22152. name: "Maw",
  22153. image: {
  22154. source: "./media/characters/poojawa-vynar/maw.svg"
  22155. }
  22156. },
  22157. head: {
  22158. height: math.unit(2.34, "feet"),
  22159. name: "Head",
  22160. image: {
  22161. source: "./media/characters/poojawa-vynar/head.svg"
  22162. }
  22163. },
  22164. paw: {
  22165. height: math.unit(1.61, "feet"),
  22166. name: "Paw",
  22167. image: {
  22168. source: "./media/characters/poojawa-vynar/paw.svg"
  22169. }
  22170. },
  22171. pawToering: {
  22172. height: math.unit(1.72, "feet"),
  22173. name: "Paw (Toering)",
  22174. image: {
  22175. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22176. }
  22177. },
  22178. toering: {
  22179. height: math.unit(2.9, "inches"),
  22180. name: "Toering",
  22181. image: {
  22182. source: "./media/characters/poojawa-vynar/toering.svg"
  22183. }
  22184. },
  22185. shaft: {
  22186. height: math.unit(0.625, "feet"),
  22187. name: "Shaft",
  22188. image: {
  22189. source: "./media/characters/poojawa-vynar/shaft.svg"
  22190. }
  22191. },
  22192. spade: {
  22193. height: math.unit(0.42, "feet"),
  22194. name: "Spade",
  22195. image: {
  22196. source: "./media/characters/poojawa-vynar/spade.svg"
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Shortstack",
  22203. height: math.unit(4, "feet")
  22204. },
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(5 + 11 / 12, "feet"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Tauric",
  22212. height: math.unit(4, "meters")
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(293, "meters"),
  22221. weight: math.unit(70400, "tons"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/violette/front.svg",
  22225. extra: 1227 / 1180,
  22226. bottom: 0.005
  22227. }
  22228. },
  22229. back: {
  22230. height: math.unit(293, "meters"),
  22231. weight: math.unit(70400, "tons"),
  22232. name: "Back",
  22233. image: {
  22234. source: "./media/characters/violette/back.svg",
  22235. extra: 1227 / 1180,
  22236. bottom: 0.005
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(293, "meters"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(1050, "feet"),
  22253. weight: math.unit(200000, "tons"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/alessandra/front.svg",
  22257. extra: 960 / 912,
  22258. bottom: 0.06
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Macro",
  22265. height: math.unit(1050, "feet")
  22266. },
  22267. {
  22268. name: "Macro+",
  22269. height: math.unit(900, "meters"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(5, "feet"),
  22279. weight: math.unit(187, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/person/front.svg",
  22283. extra: 3087 / 2945,
  22284. bottom: 91 / 3181
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Micro",
  22291. height: math.unit(3, "inches")
  22292. },
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(5, "feet"),
  22296. default: true
  22297. },
  22298. {
  22299. name: "Macro",
  22300. height: math.unit(90, "feet")
  22301. },
  22302. {
  22303. name: "Max Size",
  22304. height: math.unit(280, "feet")
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(4.5, "meters"),
  22313. weight: math.unit(3200, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/ty/front.svg",
  22317. extra: 1038 / 960,
  22318. bottom: 31.156 / 1068
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(4.5, "meters"),
  22323. weight: math.unit(3200, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/ty/back.svg",
  22327. extra: 1044 / 966,
  22328. bottom: 7.48 / 1049
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(4.5, "meters"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(5 + 4 / 12, "feet"),
  22345. weight: math.unit(115, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/rocky/front.svg",
  22349. extra: 1012 / 975,
  22350. bottom: 54 / 1066
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(5 + 4 / 12, "feet"),
  22358. default: true
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22364. {
  22365. upright: {
  22366. height: math.unit(6, "meters"),
  22367. weight: math.unit(4000, "kg"),
  22368. name: "Upright",
  22369. image: {
  22370. source: "./media/characters/ruin/upright.svg",
  22371. extra: 668 / 661,
  22372. bottom: 42 / 799.8396
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(6, "meters"),
  22380. default: true
  22381. },
  22382. ]
  22383. ))
  22384. characterMakers.push(() => makeCharacter(
  22385. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22386. {
  22387. front: {
  22388. height: math.unit(5, "feet"),
  22389. weight: math.unit(106, "lb"),
  22390. name: "Front",
  22391. image: {
  22392. source: "./media/characters/robin/front.svg",
  22393. extra: 862 / 799,
  22394. bottom: 42.4 / 914.8856
  22395. }
  22396. },
  22397. },
  22398. [
  22399. {
  22400. name: "Normal",
  22401. height: math.unit(5, "feet"),
  22402. default: true
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22408. {
  22409. side: {
  22410. height: math.unit(3, "feet"),
  22411. weight: math.unit(225, "lb"),
  22412. name: "Side",
  22413. image: {
  22414. source: "./media/characters/saian/side.svg",
  22415. extra: 566 / 356,
  22416. bottom: 79.7 / 643
  22417. }
  22418. },
  22419. maw: {
  22420. height: math.unit(2.85, "feet"),
  22421. name: "Maw",
  22422. image: {
  22423. source: "./media/characters/saian/maw.svg"
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(3, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22437. {
  22438. side: {
  22439. height: math.unit(8, "feet"),
  22440. weight: math.unit(300, "lb"),
  22441. name: "Side",
  22442. image: {
  22443. source: "./media/characters/equus-silvermane/side.svg",
  22444. extra: 2176 / 2050,
  22445. bottom: 65.7 / 2245
  22446. }
  22447. },
  22448. front: {
  22449. height: math.unit(8, "feet"),
  22450. weight: math.unit(300, "lb"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/equus-silvermane/front.svg",
  22454. extra: 4633 / 4400,
  22455. bottom: 71.3 / 4706.915
  22456. }
  22457. },
  22458. sideStepping: {
  22459. height: math.unit(8, "feet"),
  22460. weight: math.unit(300, "lb"),
  22461. name: "Side (Stepping)",
  22462. image: {
  22463. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22464. extra: 1968 / 1860,
  22465. bottom: 16.4 / 1989
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(8, "feet")
  22473. },
  22474. {
  22475. name: "Minimacro",
  22476. height: math.unit(75, "feet"),
  22477. default: true
  22478. },
  22479. {
  22480. name: "Macro",
  22481. height: math.unit(150, "feet")
  22482. },
  22483. {
  22484. name: "Macro+",
  22485. height: math.unit(1000, "feet")
  22486. },
  22487. {
  22488. name: "Megamacro",
  22489. height: math.unit(1, "mile")
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22495. {
  22496. side: {
  22497. height: math.unit(20, "feet"),
  22498. weight: math.unit(30000, "kg"),
  22499. name: "Side",
  22500. image: {
  22501. source: "./media/characters/windar/side.svg",
  22502. extra: 1491 / 1248,
  22503. bottom: 82.56 / 1568
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(20, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22517. {
  22518. side: {
  22519. height: math.unit(15.66, "feet"),
  22520. weight: math.unit(150, "lb"),
  22521. name: "Side",
  22522. image: {
  22523. source: "./media/characters/melody/side.svg",
  22524. extra: 1097 / 944,
  22525. bottom: 11.8 / 1109
  22526. }
  22527. },
  22528. sideOutfit: {
  22529. height: math.unit(15.66, "feet"),
  22530. weight: math.unit(150, "lb"),
  22531. name: "Side (Outfit)",
  22532. image: {
  22533. source: "./media/characters/melody/side-outfit.svg",
  22534. extra: 1097 / 944,
  22535. bottom: 11.8 / 1109
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(15.66, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(8, "feet"),
  22552. weight: math.unit(325, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/windera/front.svg",
  22556. extra: 3180 / 2845,
  22557. bottom: 178 / 3365
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(8, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22571. {
  22572. front: {
  22573. height: math.unit(28.75, "feet"),
  22574. weight: math.unit(2000, "kg"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/sonear/front.svg",
  22578. extra: 1041.1 / 964.9,
  22579. bottom: 53.7 / 1096.6
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(28.75, "feet"),
  22587. default: true
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22593. {
  22594. side: {
  22595. height: math.unit(25.5, "feet"),
  22596. weight: math.unit(23000, "kg"),
  22597. name: "Side",
  22598. image: {
  22599. source: "./media/characters/kanara/side.svg"
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(25.5, "feet"),
  22607. default: true
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22613. {
  22614. side: {
  22615. height: math.unit(10, "feet"),
  22616. weight: math.unit(1000, "kg"),
  22617. name: "Side",
  22618. image: {
  22619. source: "./media/characters/ereus/side.svg",
  22620. extra: 1157 / 959,
  22621. bottom: 153 / 1312.5
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(10, "feet"),
  22629. default: true
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22635. {
  22636. side: {
  22637. height: math.unit(4.5, "feet"),
  22638. weight: math.unit(500, "lb"),
  22639. name: "Side",
  22640. image: {
  22641. source: "./media/characters/e-ter/side.svg",
  22642. extra: 1550 / 1248,
  22643. bottom: 146 / 1694
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(4.5, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22657. {
  22658. side: {
  22659. height: math.unit(9.7, "feet"),
  22660. weight: math.unit(4000, "kg"),
  22661. name: "Side",
  22662. image: {
  22663. source: "./media/characters/yamie/side.svg"
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(9.7, "feet"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(50, "feet"),
  22680. weight: math.unit(50000, "kg"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/anders/front.svg",
  22684. extra: 570 / 539,
  22685. bottom: 14.7 / 586.7
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Large",
  22692. height: math.unit(50, "feet")
  22693. },
  22694. {
  22695. name: "Macro",
  22696. height: math.unit(2000, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Megamacro",
  22701. height: math.unit(12, "miles")
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(7 + 2 / 12, "feet"),
  22710. weight: math.unit(300, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/reban/front.svg",
  22714. extra: 1287/1212,
  22715. bottom: 148/1435
  22716. }
  22717. },
  22718. head: {
  22719. height: math.unit(1.95, "feet"),
  22720. name: "Head",
  22721. image: {
  22722. source: "./media/characters/reban/head.svg"
  22723. }
  22724. },
  22725. maw: {
  22726. height: math.unit(0.95, "feet"),
  22727. name: "Maw",
  22728. image: {
  22729. source: "./media/characters/reban/maw.svg"
  22730. }
  22731. },
  22732. foot: {
  22733. height: math.unit(1.65, "feet"),
  22734. name: "Foot",
  22735. image: {
  22736. source: "./media/characters/reban/foot.svg"
  22737. }
  22738. },
  22739. dick: {
  22740. height: math.unit(7 / 5, "feet"),
  22741. name: "Dick",
  22742. image: {
  22743. source: "./media/characters/reban/dick.svg"
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Natural Height",
  22750. height: math.unit(7 + 2 / 12, "feet")
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(500, "feet"),
  22755. default: true
  22756. },
  22757. {
  22758. name: "Canon Height",
  22759. height: math.unit(50, "AU")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(6, "feet"),
  22768. weight: math.unit(150, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/terrance-keayes/front.svg",
  22772. extra: 1.005,
  22773. bottom: 151 / 1615
  22774. }
  22775. },
  22776. side: {
  22777. height: math.unit(6, "feet"),
  22778. weight: math.unit(150, "lb"),
  22779. name: "Side",
  22780. image: {
  22781. source: "./media/characters/terrance-keayes/side.svg",
  22782. extra: 1.005,
  22783. bottom: 129.4 / 1544
  22784. }
  22785. },
  22786. back: {
  22787. height: math.unit(6, "feet"),
  22788. weight: math.unit(150, "lb"),
  22789. name: "Back",
  22790. image: {
  22791. source: "./media/characters/terrance-keayes/back.svg",
  22792. extra: 1.005,
  22793. bottom: 58.4 / 1557.3
  22794. }
  22795. },
  22796. dick: {
  22797. height: math.unit(6 * 0.208, "feet"),
  22798. name: "Dick",
  22799. image: {
  22800. source: "./media/characters/terrance-keayes/dick.svg"
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Canon Height",
  22807. height: math.unit(35, "miles"),
  22808. default: true
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(6, "feet"),
  22817. weight: math.unit(150, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/ofelia/front.svg",
  22821. extra: 1130/1117,
  22822. bottom: 91/1221
  22823. }
  22824. },
  22825. back: {
  22826. height: math.unit(6, "feet"),
  22827. weight: math.unit(150, "lb"),
  22828. name: "Back",
  22829. image: {
  22830. source: "./media/characters/ofelia/back.svg",
  22831. extra: 1172/1159,
  22832. bottom: 28/1200
  22833. }
  22834. },
  22835. maw: {
  22836. height: math.unit(1, "feet"),
  22837. name: "Maw",
  22838. image: {
  22839. source: "./media/characters/ofelia/maw.svg"
  22840. }
  22841. },
  22842. foot: {
  22843. height: math.unit(1.949, "feet"),
  22844. name: "Foot",
  22845. image: {
  22846. source: "./media/characters/ofelia/foot.svg"
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Canon Height",
  22853. height: math.unit(2000, "miles"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(6, "feet"),
  22863. weight: math.unit(150, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/samuel/front.svg",
  22867. extra: 265 / 258,
  22868. bottom: 2 / 266.1566
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Macro",
  22875. height: math.unit(100, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Full Size",
  22880. height: math.unit(1000, "miles")
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(6, "feet"),
  22889. weight: math.unit(300, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/beishir-kiel/front.svg",
  22893. extra: 569 / 547,
  22894. bottom: 41.9 / 609
  22895. }
  22896. },
  22897. maw: {
  22898. height: math.unit(6 * 0.202, "feet"),
  22899. name: "Maw",
  22900. image: {
  22901. source: "./media/characters/beishir-kiel/maw.svg"
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Macro",
  22908. height: math.unit(300, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22915. {
  22916. front: {
  22917. height: math.unit(5 + 7/12, "feet"),
  22918. weight: math.unit(120, "lb"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/logan-grey/front.svg",
  22922. extra: 1836/1738,
  22923. bottom: 108/1944
  22924. }
  22925. },
  22926. back: {
  22927. height: math.unit(5 + 7/12, "feet"),
  22928. weight: math.unit(120, "lb"),
  22929. name: "Back",
  22930. image: {
  22931. source: "./media/characters/logan-grey/back.svg",
  22932. extra: 1880/1794,
  22933. bottom: 24/1904
  22934. }
  22935. },
  22936. frontSfw: {
  22937. height: math.unit(5 + 7/12, "feet"),
  22938. weight: math.unit(120, "lb"),
  22939. name: "Front (SFW)",
  22940. image: {
  22941. source: "./media/characters/logan-grey/front-sfw.svg",
  22942. extra: 1836/1738,
  22943. bottom: 108/1944
  22944. }
  22945. },
  22946. backSfw: {
  22947. height: math.unit(5 + 7/12, "feet"),
  22948. weight: math.unit(120, "lb"),
  22949. name: "Back (SFW)",
  22950. image: {
  22951. source: "./media/characters/logan-grey/back-sfw.svg",
  22952. extra: 1880/1794,
  22953. bottom: 24/1904
  22954. }
  22955. },
  22956. hands: {
  22957. height: math.unit(0.84, "feet"),
  22958. name: "Hands",
  22959. image: {
  22960. source: "./media/characters/logan-grey/hands.svg"
  22961. }
  22962. },
  22963. paws: {
  22964. height: math.unit(0.72, "feet"),
  22965. name: "Paws",
  22966. image: {
  22967. source: "./media/characters/logan-grey/paws.svg"
  22968. }
  22969. },
  22970. cock: {
  22971. height: math.unit(1.45, "feet"),
  22972. name: "Cock",
  22973. image: {
  22974. source: "./media/characters/logan-grey/cock.svg"
  22975. }
  22976. },
  22977. cockAlt: {
  22978. height: math.unit(1.437, "feet"),
  22979. name: "Cock (alt)",
  22980. image: {
  22981. source: "./media/characters/logan-grey/cock-alt.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(5 + 8 / 12, "feet")
  22989. },
  22990. {
  22991. name: "The 500 Foot Femboy",
  22992. height: math.unit(500, "feet"),
  22993. default: true
  22994. },
  22995. {
  22996. name: "Megmacro",
  22997. height: math.unit(20, "miles")
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(8 + 2 / 12, "feet"),
  23006. weight: math.unit(275, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/draganta/front.svg",
  23010. extra: 1177 / 1135,
  23011. bottom: 33.46 / 1212.1
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(8 + 6 / 12, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(150, "feet")
  23024. },
  23025. {
  23026. name: "Megamacro",
  23027. height: math.unit(1000, "miles")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(1.72, "m"),
  23036. weight: math.unit(80, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/voski/front.svg",
  23040. extra: 2076.22 / 2022.4,
  23041. bottom: 102.7 / 2177.3866
  23042. }
  23043. },
  23044. frontNsfw: {
  23045. height: math.unit(1.72, "m"),
  23046. weight: math.unit(80, "lb"),
  23047. name: "Front (NSFW)",
  23048. image: {
  23049. source: "./media/characters/voski/front-nsfw.svg",
  23050. extra: 2076.22 / 2022.4,
  23051. bottom: 102.7 / 2177.3866
  23052. }
  23053. },
  23054. back: {
  23055. height: math.unit(1.72, "m"),
  23056. weight: math.unit(80, "lb"),
  23057. name: "Back",
  23058. image: {
  23059. source: "./media/characters/voski/back.svg",
  23060. extra: 2104 / 2051,
  23061. bottom: 10.45 / 2113.63
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Normal",
  23068. height: math.unit(1.72, "m")
  23069. },
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(55, "m"),
  23073. default: true
  23074. },
  23075. {
  23076. name: "Macro+",
  23077. height: math.unit(300, "m")
  23078. },
  23079. {
  23080. name: "Macro++",
  23081. height: math.unit(700, "m")
  23082. },
  23083. {
  23084. name: "Macro+++",
  23085. height: math.unit(4500, "m")
  23086. },
  23087. {
  23088. name: "Macro++++",
  23089. height: math.unit(45, "km")
  23090. },
  23091. {
  23092. name: "Macro+++++",
  23093. height: math.unit(1220, "km")
  23094. },
  23095. ]
  23096. ))
  23097. characterMakers.push(() => makeCharacter(
  23098. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23099. {
  23100. front: {
  23101. height: math.unit(2.3, "m"),
  23102. weight: math.unit(304, "kg"),
  23103. name: "Front",
  23104. image: {
  23105. source: "./media/characters/icowom-lee/front.svg",
  23106. extra: 985 / 955,
  23107. bottom: 25.4 / 1012
  23108. }
  23109. },
  23110. fronttentacles: {
  23111. height: math.unit(2.3, "m"),
  23112. weight: math.unit(304, "kg"),
  23113. name: "Front-tentacles",
  23114. image: {
  23115. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23116. extra: 985 / 955,
  23117. bottom: 25.4 / 1012
  23118. }
  23119. },
  23120. back: {
  23121. height: math.unit(2.3, "m"),
  23122. weight: math.unit(304, "kg"),
  23123. name: "Back",
  23124. image: {
  23125. source: "./media/characters/icowom-lee/back.svg",
  23126. extra: 975 / 954,
  23127. bottom: 9.5 / 985
  23128. }
  23129. },
  23130. backtentacles: {
  23131. height: math.unit(2.3, "m"),
  23132. weight: math.unit(304, "kg"),
  23133. name: "Back-tentacles",
  23134. image: {
  23135. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23136. extra: 975 / 954,
  23137. bottom: 9.5 / 985
  23138. }
  23139. },
  23140. frontDressed: {
  23141. height: math.unit(2.3, "m"),
  23142. weight: math.unit(304, "kg"),
  23143. name: "Front (Dressed)",
  23144. image: {
  23145. source: "./media/characters/icowom-lee/front-dressed.svg",
  23146. extra: 3076 / 2933,
  23147. bottom: 51.4 / 3125.1889
  23148. }
  23149. },
  23150. rump: {
  23151. height: math.unit(0.776, "meters"),
  23152. name: "Rump",
  23153. image: {
  23154. source: "./media/characters/icowom-lee/rump.svg"
  23155. }
  23156. },
  23157. genitals: {
  23158. height: math.unit(0.78, "meters"),
  23159. name: "Genitals",
  23160. image: {
  23161. source: "./media/characters/icowom-lee/genitals.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(2.3, "meters"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(94, "meters"),
  23174. default: true
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(22, "meters"),
  23183. weight: math.unit(21000, "kg"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/shock-diamond/front.svg",
  23187. extra: 2204 / 2053,
  23188. bottom: 65 / 2239.47
  23189. }
  23190. },
  23191. frontNude: {
  23192. height: math.unit(22, "meters"),
  23193. weight: math.unit(21000, "kg"),
  23194. name: "Front (Nude)",
  23195. image: {
  23196. source: "./media/characters/shock-diamond/front-nude.svg",
  23197. extra: 2514 / 2285,
  23198. bottom: 13 / 2527.56
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(3, "meters")
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(22, "meters"),
  23210. default: true
  23211. },
  23212. ]
  23213. ))
  23214. characterMakers.push(() => makeCharacter(
  23215. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23216. {
  23217. front: {
  23218. height: math.unit(5 + 4 / 12, "feet"),
  23219. weight: math.unit(120, "lb"),
  23220. name: "Front",
  23221. image: {
  23222. source: "./media/characters/rory/front.svg",
  23223. extra: 1318/1241,
  23224. bottom: 42/1360
  23225. }
  23226. },
  23227. back: {
  23228. height: math.unit(5 + 4 / 12, "feet"),
  23229. weight: math.unit(120, "lb"),
  23230. name: "Back",
  23231. image: {
  23232. source: "./media/characters/rory/back.svg",
  23233. extra: 1318/1241,
  23234. bottom: 42/1360
  23235. }
  23236. },
  23237. butt: {
  23238. height: math.unit(1.74, "feet"),
  23239. name: "Butt",
  23240. image: {
  23241. source: "./media/characters/rory/butt.svg"
  23242. }
  23243. },
  23244. dick: {
  23245. height: math.unit(1.02, "feet"),
  23246. name: "Dick",
  23247. image: {
  23248. source: "./media/characters/rory/dick.svg"
  23249. }
  23250. },
  23251. paws: {
  23252. height: math.unit(1, "feet"),
  23253. name: "Paws",
  23254. image: {
  23255. source: "./media/characters/rory/paws.svg"
  23256. }
  23257. },
  23258. frontAlt: {
  23259. height: math.unit(5 + 4 / 12, "feet"),
  23260. weight: math.unit(120, "lb"),
  23261. name: "Front (Alt)",
  23262. image: {
  23263. source: "./media/characters/rory/front-alt.svg",
  23264. extra: 589 / 556,
  23265. bottom: 45.7 / 635.76
  23266. }
  23267. },
  23268. frontAltNude: {
  23269. height: math.unit(5 + 4 / 12, "feet"),
  23270. weight: math.unit(120, "lb"),
  23271. name: "Front (Alt, Nude)",
  23272. image: {
  23273. source: "./media/characters/rory/front-alt-nude.svg",
  23274. extra: 589 / 556,
  23275. bottom: 45.7 / 635.76
  23276. }
  23277. },
  23278. side: {
  23279. height: math.unit(5 + 4 / 12, "feet"),
  23280. weight: math.unit(120, "lb"),
  23281. name: "Side",
  23282. image: {
  23283. source: "./media/characters/rory/side.svg",
  23284. extra: 597 / 564,
  23285. bottom: 55 / 653
  23286. }
  23287. },
  23288. backAlt: {
  23289. height: math.unit(5 + 4 / 12, "feet"),
  23290. weight: math.unit(120, "lb"),
  23291. name: "Back (Alt)",
  23292. image: {
  23293. source: "./media/characters/rory/back-alt.svg",
  23294. extra: 620 / 585,
  23295. bottom: 8.86 / 630.43
  23296. }
  23297. },
  23298. dickAlt: {
  23299. height: math.unit(0.86, "feet"),
  23300. name: "Dick (Alt)",
  23301. image: {
  23302. source: "./media/characters/rory/dick-alt.svg"
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(5 + 4 / 12, "feet"),
  23310. default: true
  23311. },
  23312. {
  23313. name: "Macro",
  23314. height: math.unit(100, "feet")
  23315. },
  23316. {
  23317. name: "Macro+",
  23318. height: math.unit(140, "feet")
  23319. },
  23320. {
  23321. name: "Macro++",
  23322. height: math.unit(300, "feet")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(5 + 9 / 12, "feet"),
  23331. weight: math.unit(190, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/sprisk/front.svg",
  23335. extra: 1225 / 1180,
  23336. bottom: 42.7 / 1266.4
  23337. }
  23338. },
  23339. frontNsfw: {
  23340. height: math.unit(5 + 9 / 12, "feet"),
  23341. weight: math.unit(190, "lb"),
  23342. name: "Front (NSFW)",
  23343. image: {
  23344. source: "./media/characters/sprisk/front-nsfw.svg",
  23345. extra: 1225 / 1180,
  23346. bottom: 42.7 / 1266.4
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(5 + 9 / 12, "feet"),
  23351. weight: math.unit(190, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/sprisk/back.svg",
  23355. extra: 1247 / 1200,
  23356. bottom: 5.6 / 1253.04
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Tiny",
  23363. height: math.unit(2, "inches")
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(5 + 9 / 12, "feet"),
  23368. default: true
  23369. },
  23370. {
  23371. name: "Mini Macro",
  23372. height: math.unit(18, "feet")
  23373. },
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(100, "feet")
  23377. },
  23378. {
  23379. name: "MACRO",
  23380. height: math.unit(50, "miles")
  23381. },
  23382. {
  23383. name: "M A C R O",
  23384. height: math.unit(300, "miles")
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23390. {
  23391. side: {
  23392. height: math.unit(15.6, "meters"),
  23393. weight: math.unit(700000, "kg"),
  23394. name: "Side",
  23395. image: {
  23396. source: "./media/characters/bunsen/side.svg",
  23397. extra: 1644 / 358
  23398. }
  23399. },
  23400. foot: {
  23401. height: math.unit(1.611 * 1644 / 358, "meter"),
  23402. name: "Foot",
  23403. image: {
  23404. source: "./media/characters/bunsen/foot.svg"
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Small",
  23411. height: math.unit(10, "feet")
  23412. },
  23413. {
  23414. name: "Normal",
  23415. height: math.unit(15.6, "meters"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(4 + 11 / 12, "feet"),
  23425. weight: math.unit(140, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/sesh/front.svg",
  23429. extra: 3420 / 3231,
  23430. bottom: 72 / 3949.5
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Normal",
  23437. height: math.unit(4 + 11 / 12, "feet")
  23438. },
  23439. {
  23440. name: "Grown",
  23441. height: math.unit(15, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(1500, "feet")
  23447. },
  23448. {
  23449. name: "Megamacro",
  23450. height: math.unit(30, "miles")
  23451. },
  23452. {
  23453. name: "Continental",
  23454. height: math.unit(3000, "miles")
  23455. },
  23456. {
  23457. name: "Gravity Mass",
  23458. height: math.unit(300000, "miles")
  23459. },
  23460. {
  23461. name: "Planet Buster",
  23462. height: math.unit(30000000, "miles")
  23463. },
  23464. {
  23465. name: "Big",
  23466. height: math.unit(3000000000, "miles")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(9, "feet"),
  23475. weight: math.unit(350, "lb"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/pepper/front.svg",
  23479. extra: 1448 / 1312,
  23480. bottom: 9.4 / 1457.88
  23481. }
  23482. },
  23483. back: {
  23484. height: math.unit(9, "feet"),
  23485. weight: math.unit(350, "lb"),
  23486. name: "Back",
  23487. image: {
  23488. source: "./media/characters/pepper/back.svg",
  23489. extra: 1423 / 1300,
  23490. bottom: 4.6 / 1429
  23491. }
  23492. },
  23493. maw: {
  23494. height: math.unit(0.932, "feet"),
  23495. name: "Maw",
  23496. image: {
  23497. source: "./media/characters/pepper/maw.svg"
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(9, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(6, "feet"),
  23514. weight: math.unit(150, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/maelstrom/front.svg",
  23518. extra: 2100 / 1883,
  23519. bottom: 94 / 2196.7
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Less Kaiju",
  23526. height: math.unit(200, "feet")
  23527. },
  23528. {
  23529. name: "Kaiju",
  23530. height: math.unit(400, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Kaiju-er",
  23535. height: math.unit(600, "feet")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23541. {
  23542. front: {
  23543. height: math.unit(6 + 5 / 12, "feet"),
  23544. weight: math.unit(180, "lb"),
  23545. name: "Front",
  23546. image: {
  23547. source: "./media/characters/lexir/front.svg",
  23548. extra: 180 / 172,
  23549. bottom: 12 / 192
  23550. }
  23551. },
  23552. back: {
  23553. height: math.unit(6 + 5 / 12, "feet"),
  23554. weight: math.unit(180, "lb"),
  23555. name: "Back",
  23556. image: {
  23557. source: "./media/characters/lexir/back.svg",
  23558. extra: 1273/1201,
  23559. bottom: 39/1312
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Very Smal",
  23566. height: math.unit(1, "nm")
  23567. },
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(6 + 5 / 12, "feet"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(1, "mile")
  23576. },
  23577. {
  23578. name: "Megamacro",
  23579. height: math.unit(50, "miles")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(1.5, "meters"),
  23588. weight: math.unit(100, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/maksio/front.svg",
  23592. extra: 1549 / 1531,
  23593. bottom: 123.7 / 1674.5429
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(1.5, "meters"),
  23598. weight: math.unit(100, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/maksio/back.svg",
  23602. extra: 1541 / 1509,
  23603. bottom: 97 / 1639
  23604. }
  23605. },
  23606. hand: {
  23607. height: math.unit(0.621, "feet"),
  23608. name: "Hand",
  23609. image: {
  23610. source: "./media/characters/maksio/hand.svg"
  23611. }
  23612. },
  23613. foot: {
  23614. height: math.unit(1.611, "feet"),
  23615. name: "Foot",
  23616. image: {
  23617. source: "./media/characters/maksio/foot.svg"
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Shrunken",
  23624. height: math.unit(10, "cm")
  23625. },
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(150, "cm"),
  23629. default: true
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(100, "feet"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/erza-bear/front.svg",
  23641. extra: 2449 / 2390,
  23642. bottom: 46 / 2494
  23643. }
  23644. },
  23645. back: {
  23646. height: math.unit(100, "feet"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/erza-bear/back.svg",
  23650. extra: 2489 / 2430,
  23651. bottom: 85.4 / 2480
  23652. }
  23653. },
  23654. tail: {
  23655. height: math.unit(42, "feet"),
  23656. name: "Tail",
  23657. image: {
  23658. source: "./media/characters/erza-bear/tail.svg"
  23659. }
  23660. },
  23661. tongue: {
  23662. height: math.unit(8, "feet"),
  23663. name: "Tongue",
  23664. image: {
  23665. source: "./media/characters/erza-bear/tongue.svg"
  23666. }
  23667. },
  23668. dick: {
  23669. height: math.unit(10.5, "feet"),
  23670. name: "Dick",
  23671. image: {
  23672. source: "./media/characters/erza-bear/dick.svg"
  23673. }
  23674. },
  23675. dickVertical: {
  23676. height: math.unit(16.9, "feet"),
  23677. name: "Dick (Vertical)",
  23678. image: {
  23679. source: "./media/characters/erza-bear/dick-vertical.svg"
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Macro",
  23686. height: math.unit(100, "feet"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(172, "cm"),
  23696. weight: math.unit(73, "kg"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/violet-flor/front.svg",
  23700. extra: 1530 / 1442,
  23701. bottom: 61.9 / 1588.8
  23702. }
  23703. },
  23704. back: {
  23705. height: math.unit(180, "cm"),
  23706. weight: math.unit(73, "kg"),
  23707. name: "Back",
  23708. image: {
  23709. source: "./media/characters/violet-flor/back.svg",
  23710. extra: 1692 / 1630,
  23711. bottom: 20 / 1712
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(172, "cm"),
  23719. default: true
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(6, "feet"),
  23728. weight: math.unit(220, "lb"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/lynn-rhea/front.svg",
  23732. extra: 310 / 273
  23733. }
  23734. },
  23735. back: {
  23736. height: math.unit(6, "feet"),
  23737. weight: math.unit(220, "lb"),
  23738. name: "Back",
  23739. image: {
  23740. source: "./media/characters/lynn-rhea/back.svg",
  23741. extra: 310 / 273
  23742. }
  23743. },
  23744. dicks: {
  23745. height: math.unit(0.9, "feet"),
  23746. name: "Dicks",
  23747. image: {
  23748. source: "./media/characters/lynn-rhea/dicks.svg"
  23749. }
  23750. },
  23751. slit: {
  23752. height: math.unit(0.4, "feet"),
  23753. name: "Slit",
  23754. image: {
  23755. source: "./media/characters/lynn-rhea/slit.svg"
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Micro",
  23762. height: math.unit(1, "inch")
  23763. },
  23764. {
  23765. name: "Macro",
  23766. height: math.unit(60, "feet"),
  23767. default: true
  23768. },
  23769. {
  23770. name: "Megamacro",
  23771. height: math.unit(2, "miles")
  23772. },
  23773. {
  23774. name: "Gigamacro",
  23775. height: math.unit(3, "earths")
  23776. },
  23777. {
  23778. name: "Galactic",
  23779. height: math.unit(0.8, "galaxies")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23785. {
  23786. front: {
  23787. height: math.unit(1600, "feet"),
  23788. weight: math.unit(85758785169, "kg"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/valathos/front.svg",
  23792. extra: 1451 / 1339
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(1600, "feet"),
  23800. default: true
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23806. {
  23807. front: {
  23808. height: math.unit(7 + 5 / 12, "feet"),
  23809. weight: math.unit(300, "lb"),
  23810. name: "Front",
  23811. image: {
  23812. source: "./media/characters/azula/front.svg",
  23813. extra: 3208 / 2880,
  23814. bottom: 80.2 / 3277
  23815. }
  23816. },
  23817. back: {
  23818. height: math.unit(7 + 5 / 12, "feet"),
  23819. weight: math.unit(300, "lb"),
  23820. name: "Back",
  23821. image: {
  23822. source: "./media/characters/azula/back.svg",
  23823. extra: 3169 / 2822,
  23824. bottom: 150.6 / 3321
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(7 + 5 / 12, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Big",
  23836. height: math.unit(20, "feet")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(5 + 1 / 12, "feet"),
  23845. weight: math.unit(110, "lb"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/rupert/front.svg",
  23849. extra: 1549 / 1495,
  23850. bottom: 54.2 / 1604.4
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Normal",
  23857. height: math.unit(5 + 1 / 12, "feet"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23864. {
  23865. front: {
  23866. height: math.unit(8 + 4 / 12, "feet"),
  23867. weight: math.unit(350, "lb"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/sheera-castellar/front.svg",
  23871. extra: 1957 / 1894,
  23872. bottom: 26.97 / 1975.017
  23873. }
  23874. },
  23875. side: {
  23876. height: math.unit(8 + 4 / 12, "feet"),
  23877. weight: math.unit(350, "lb"),
  23878. name: "Side",
  23879. image: {
  23880. source: "./media/characters/sheera-castellar/side.svg",
  23881. extra: 1957 / 1894
  23882. }
  23883. },
  23884. back: {
  23885. height: math.unit(8 + 4 / 12, "feet"),
  23886. weight: math.unit(350, "lb"),
  23887. name: "Back",
  23888. image: {
  23889. source: "./media/characters/sheera-castellar/back.svg",
  23890. extra: 1957 / 1894
  23891. }
  23892. },
  23893. angled: {
  23894. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23895. weight: math.unit(350, "lb"),
  23896. name: "Angled",
  23897. image: {
  23898. source: "./media/characters/sheera-castellar/angled.svg",
  23899. extra: 1807 / 1707,
  23900. bottom: 68 / 1875
  23901. }
  23902. },
  23903. genitals: {
  23904. height: math.unit(2.2, "feet"),
  23905. name: "Genitals",
  23906. image: {
  23907. source: "./media/characters/sheera-castellar/genitals.svg"
  23908. }
  23909. },
  23910. taur: {
  23911. height: math.unit(10 + 6/12, "feet"),
  23912. name: "Taur",
  23913. image: {
  23914. source: "./media/characters/sheera-castellar/taur.svg",
  23915. extra: 2017/1909,
  23916. bottom: 185/2202
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(8 + 4 / 12, "feet")
  23924. },
  23925. {
  23926. name: "Macro",
  23927. height: math.unit(150, "feet"),
  23928. default: true
  23929. },
  23930. {
  23931. name: "Macro+",
  23932. height: math.unit(800, "feet")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(6, "feet"),
  23941. weight: math.unit(150, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/jaipur/front.svg",
  23945. extra: 3860 / 3731,
  23946. bottom: 287 / 4140
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(6, "feet"),
  23951. weight: math.unit(150, "lb"),
  23952. name: "Back",
  23953. image: {
  23954. source: "./media/characters/jaipur/back.svg",
  23955. extra: 4060 / 3930,
  23956. bottom: 151 / 4200
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(1.85, "meters"),
  23964. default: true
  23965. },
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(150, "meters")
  23969. },
  23970. {
  23971. name: "Macro+",
  23972. height: math.unit(0.5, "miles")
  23973. },
  23974. {
  23975. name: "Macro++",
  23976. height: math.unit(2.5, "miles")
  23977. },
  23978. {
  23979. name: "Macro+++",
  23980. height: math.unit(12, "miles")
  23981. },
  23982. {
  23983. name: "Macro++++",
  23984. height: math.unit(120, "miles")
  23985. },
  23986. {
  23987. name: "Macro+++++",
  23988. height: math.unit(1200, "miles")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(6, "feet"),
  23997. weight: math.unit(150, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/sheila-wolf/front.svg",
  24001. extra: 1931 / 1808,
  24002. bottom: 29.5 / 1960
  24003. }
  24004. },
  24005. dick: {
  24006. height: math.unit(1.464, "feet"),
  24007. name: "Dick",
  24008. image: {
  24009. source: "./media/characters/sheila-wolf/dick.svg"
  24010. }
  24011. },
  24012. muzzle: {
  24013. height: math.unit(0.513, "feet"),
  24014. name: "Muzzle",
  24015. image: {
  24016. source: "./media/characters/sheila-wolf/muzzle.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(70, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24030. {
  24031. front: {
  24032. height: math.unit(32, "meters"),
  24033. weight: math.unit(300000, "kg"),
  24034. name: "Front",
  24035. image: {
  24036. source: "./media/characters/almor/front.svg",
  24037. extra: 1408 / 1322,
  24038. bottom: 94.6 / 1506.5
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Macro",
  24045. height: math.unit(32, "meters"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(7, "feet"),
  24055. weight: math.unit(200, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/silver/front.svg",
  24059. extra: 472.1 / 450.5,
  24060. bottom: 26.5 / 499.424
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(7, "feet"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Macro",
  24072. height: math.unit(800, "feet")
  24073. },
  24074. {
  24075. name: "Megamacro",
  24076. height: math.unit(250, "miles")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(6, "feet"),
  24085. weight: math.unit(150, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/pliskin/front.svg",
  24089. extra: 1469 / 1359,
  24090. bottom: 70 / 1540
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Micro",
  24097. height: math.unit(3, "inches")
  24098. },
  24099. {
  24100. name: "Normal",
  24101. height: math.unit(5 + 11 / 12, "feet"),
  24102. default: true
  24103. },
  24104. {
  24105. name: "Macro",
  24106. height: math.unit(120, "feet")
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24112. {
  24113. front: {
  24114. height: math.unit(6, "feet"),
  24115. weight: math.unit(150, "lb"),
  24116. name: "Front",
  24117. image: {
  24118. source: "./media/characters/sammy/front.svg",
  24119. extra: 1193 / 1089,
  24120. bottom: 30.5 / 1226
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Macro",
  24127. height: math.unit(1700, "feet"),
  24128. default: true
  24129. },
  24130. {
  24131. name: "Examacro",
  24132. height: math.unit(2.5e9, "lightyears")
  24133. },
  24134. ]
  24135. ))
  24136. characterMakers.push(() => makeCharacter(
  24137. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24138. {
  24139. front: {
  24140. height: math.unit(21, "meters"),
  24141. weight: math.unit(12, "tonnes"),
  24142. name: "Front",
  24143. image: {
  24144. source: "./media/characters/kuru/front.svg",
  24145. extra: 4301 / 3785,
  24146. bottom: 371.3 / 4691
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Macro",
  24153. height: math.unit(21, "meters"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(23, "meters"),
  24163. weight: math.unit(12.2, "tonnes"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/rakka/front.svg",
  24167. extra: 4670 / 4169,
  24168. bottom: 301 / 4968.7
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Macro",
  24175. height: math.unit(23, "meters"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(6, "feet"),
  24185. weight: math.unit(150, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/rhys-feline/front.svg",
  24189. extra: 2488 / 2308,
  24190. bottom: 35.67 / 2519.19
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Really Small",
  24197. height: math.unit(1, "nm")
  24198. },
  24199. {
  24200. name: "Micro",
  24201. height: math.unit(4, "inches")
  24202. },
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(4 + 10 / 12, "feet"),
  24206. default: true
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(100, "feet")
  24211. },
  24212. {
  24213. name: "Megamacto",
  24214. height: math.unit(50, "miles")
  24215. },
  24216. ]
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24220. {
  24221. side: {
  24222. height: math.unit(30, "feet"),
  24223. weight: math.unit(35000, "kg"),
  24224. name: "Side",
  24225. image: {
  24226. source: "./media/characters/alydar/side.svg",
  24227. extra: 234 / 222,
  24228. bottom: 6.5 / 241
  24229. }
  24230. },
  24231. front: {
  24232. height: math.unit(30, "feet"),
  24233. weight: math.unit(35000, "kg"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/alydar/front.svg",
  24237. extra: 223.37 / 210.2,
  24238. bottom: 22.3 / 246.76
  24239. }
  24240. },
  24241. top: {
  24242. height: math.unit(64.54, "feet"),
  24243. weight: math.unit(35000, "kg"),
  24244. name: "Top",
  24245. image: {
  24246. source: "./media/characters/alydar/top.svg"
  24247. }
  24248. },
  24249. anthro: {
  24250. height: math.unit(30, "feet"),
  24251. weight: math.unit(9000, "kg"),
  24252. name: "Anthro",
  24253. image: {
  24254. source: "./media/characters/alydar/anthro.svg",
  24255. extra: 432 / 421,
  24256. bottom: 7.18 / 440
  24257. }
  24258. },
  24259. maw: {
  24260. height: math.unit(11.693, "feet"),
  24261. name: "Maw",
  24262. image: {
  24263. source: "./media/characters/alydar/maw.svg"
  24264. }
  24265. },
  24266. head: {
  24267. height: math.unit(11.693, "feet"),
  24268. name: "Head",
  24269. image: {
  24270. source: "./media/characters/alydar/head.svg"
  24271. }
  24272. },
  24273. headAlt: {
  24274. height: math.unit(12.861, "feet"),
  24275. name: "Head (Alt)",
  24276. image: {
  24277. source: "./media/characters/alydar/head-alt.svg"
  24278. }
  24279. },
  24280. wing: {
  24281. height: math.unit(20.712, "feet"),
  24282. name: "Wing",
  24283. image: {
  24284. source: "./media/characters/alydar/wing.svg"
  24285. }
  24286. },
  24287. wingFeather: {
  24288. height: math.unit(9.662, "feet"),
  24289. name: "Wing Feather",
  24290. image: {
  24291. source: "./media/characters/alydar/wing-feather.svg"
  24292. }
  24293. },
  24294. countourFeather: {
  24295. height: math.unit(4.154, "feet"),
  24296. name: "Contour Feather",
  24297. image: {
  24298. source: "./media/characters/alydar/contour-feather.svg"
  24299. }
  24300. },
  24301. },
  24302. [
  24303. {
  24304. name: "Diplomatic",
  24305. height: math.unit(13, "feet"),
  24306. default: true
  24307. },
  24308. {
  24309. name: "Small",
  24310. height: math.unit(30, "feet")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(95, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Large",
  24319. height: math.unit(285, "feet")
  24320. },
  24321. {
  24322. name: "Incomprehensible",
  24323. height: math.unit(450, "megameters")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24329. {
  24330. side: {
  24331. height: math.unit(11, "feet"),
  24332. weight: math.unit(1750, "kg"),
  24333. name: "Side",
  24334. image: {
  24335. source: "./media/characters/selicia/side.svg",
  24336. extra: 440 / 396,
  24337. bottom: 24.8 / 465.979
  24338. }
  24339. },
  24340. maw: {
  24341. height: math.unit(4.665, "feet"),
  24342. name: "Maw",
  24343. image: {
  24344. source: "./media/characters/selicia/maw.svg"
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(11, "feet"),
  24352. default: true
  24353. },
  24354. ]
  24355. ))
  24356. characterMakers.push(() => makeCharacter(
  24357. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24358. {
  24359. side: {
  24360. height: math.unit(2 + 6 / 12, "feet"),
  24361. weight: math.unit(30, "lb"),
  24362. name: "Side",
  24363. image: {
  24364. source: "./media/characters/layla/side.svg",
  24365. extra: 244 / 188,
  24366. bottom: 18.2 / 262.1
  24367. }
  24368. },
  24369. back: {
  24370. height: math.unit(2 + 6 / 12, "feet"),
  24371. weight: math.unit(30, "lb"),
  24372. name: "Back",
  24373. image: {
  24374. source: "./media/characters/layla/back.svg",
  24375. extra: 308 / 241.5,
  24376. bottom: 8.9 / 316.8
  24377. }
  24378. },
  24379. cumming: {
  24380. height: math.unit(2 + 6 / 12, "feet"),
  24381. weight: math.unit(30, "lb"),
  24382. name: "Cumming",
  24383. image: {
  24384. source: "./media/characters/layla/cumming.svg",
  24385. extra: 342 / 279,
  24386. bottom: 595 / 938
  24387. }
  24388. },
  24389. dickFlaccid: {
  24390. height: math.unit(2.595, "feet"),
  24391. name: "Flaccid Genitals",
  24392. image: {
  24393. source: "./media/characters/layla/dick-flaccid.svg"
  24394. }
  24395. },
  24396. dickErect: {
  24397. height: math.unit(2.359, "feet"),
  24398. name: "Erect Genitals",
  24399. image: {
  24400. source: "./media/characters/layla/dick-erect.svg"
  24401. }
  24402. },
  24403. dragon: {
  24404. height: math.unit(40, "feet"),
  24405. name: "Dragon",
  24406. image: {
  24407. source: "./media/characters/layla/dragon.svg",
  24408. extra: 610/535,
  24409. bottom: 367/977
  24410. }
  24411. },
  24412. taur: {
  24413. height: math.unit(30, "feet"),
  24414. name: "Taur",
  24415. image: {
  24416. source: "./media/characters/layla/taur.svg",
  24417. extra: 1268/1199,
  24418. bottom: 112/1380
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Micro",
  24425. height: math.unit(1, "inch")
  24426. },
  24427. {
  24428. name: "Small",
  24429. height: math.unit(1, "foot")
  24430. },
  24431. {
  24432. name: "Normal",
  24433. height: math.unit(2 + 6 / 12, "feet"),
  24434. default: true
  24435. },
  24436. {
  24437. name: "Macro",
  24438. height: math.unit(200, "feet")
  24439. },
  24440. {
  24441. name: "Megamacro",
  24442. height: math.unit(1000, "miles")
  24443. },
  24444. {
  24445. name: "Planetary",
  24446. height: math.unit(8000, "miles")
  24447. },
  24448. {
  24449. name: "True Layla",
  24450. height: math.unit(200000 * 7, "multiverses")
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24456. {
  24457. back: {
  24458. height: math.unit(10.5, "feet"),
  24459. weight: math.unit(800, "lb"),
  24460. name: "Back",
  24461. image: {
  24462. source: "./media/characters/knox/back.svg",
  24463. extra: 1486 / 1089,
  24464. bottom: 107 / 1601.4
  24465. }
  24466. },
  24467. side: {
  24468. height: math.unit(10.5, "feet"),
  24469. weight: math.unit(800, "lb"),
  24470. name: "Side",
  24471. image: {
  24472. source: "./media/characters/knox/side.svg",
  24473. extra: 244 / 218,
  24474. bottom: 14 / 260
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Compact",
  24481. height: math.unit(10.5, "feet"),
  24482. default: true
  24483. },
  24484. {
  24485. name: "Dynamax",
  24486. height: math.unit(210, "feet")
  24487. },
  24488. {
  24489. name: "Full Macro",
  24490. height: math.unit(850, "feet")
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(28, "feet"),
  24499. weight: math.unit(10500, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/kayda/front.svg",
  24503. extra: 1536 / 1428,
  24504. bottom: 68.7 / 1603
  24505. }
  24506. },
  24507. back: {
  24508. height: math.unit(28, "feet"),
  24509. weight: math.unit(10500, "lb"),
  24510. name: "Back",
  24511. image: {
  24512. source: "./media/characters/kayda/back.svg",
  24513. extra: 1557 / 1464,
  24514. bottom: 39.5 / 1597.49
  24515. }
  24516. },
  24517. dick: {
  24518. height: math.unit(3.858, "feet"),
  24519. name: "Dick",
  24520. image: {
  24521. source: "./media/characters/kayda/dick.svg"
  24522. }
  24523. },
  24524. },
  24525. [
  24526. {
  24527. name: "Macro",
  24528. height: math.unit(28, "feet"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(10 + 11 / 12, "feet"),
  24538. weight: math.unit(1400, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/brian/front.svg",
  24542. extra: 737 / 692,
  24543. bottom: 55.4 / 785
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(10 + 11 / 12, "feet"),
  24551. default: true
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24557. {
  24558. front: {
  24559. height: math.unit(5 + 8 / 12, "feet"),
  24560. weight: math.unit(140, "lb"),
  24561. name: "Front",
  24562. image: {
  24563. source: "./media/characters/khemri/front.svg",
  24564. extra: 4780 / 4059,
  24565. bottom: 80.1 / 4859.25
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Micro",
  24572. height: math.unit(6, "inches")
  24573. },
  24574. {
  24575. name: "Normal",
  24576. height: math.unit(5 + 8 / 12, "feet"),
  24577. default: true
  24578. },
  24579. ]
  24580. ))
  24581. characterMakers.push(() => makeCharacter(
  24582. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24583. {
  24584. front: {
  24585. height: math.unit(13, "feet"),
  24586. weight: math.unit(1700, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/felix-braveheart/front.svg",
  24590. extra: 1222 / 1157,
  24591. bottom: 53.2 / 1280
  24592. }
  24593. },
  24594. back: {
  24595. height: math.unit(13, "feet"),
  24596. weight: math.unit(1700, "lb"),
  24597. name: "Back",
  24598. image: {
  24599. source: "./media/characters/felix-braveheart/back.svg",
  24600. extra: 1277 / 1203,
  24601. bottom: 50.2 / 1327
  24602. }
  24603. },
  24604. feral: {
  24605. height: math.unit(6, "feet"),
  24606. weight: math.unit(400, "lb"),
  24607. name: "Feral",
  24608. image: {
  24609. source: "./media/characters/felix-braveheart/feral.svg",
  24610. extra: 682 / 625,
  24611. bottom: 6.9 / 688
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Normal",
  24618. height: math.unit(13, "feet"),
  24619. default: true
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24625. {
  24626. side: {
  24627. height: math.unit(5 + 11 / 12, "feet"),
  24628. weight: math.unit(1400, "lb"),
  24629. name: "Side",
  24630. image: {
  24631. source: "./media/characters/shadow-blade/side.svg",
  24632. extra: 1726 / 1267,
  24633. bottom: 58.4 / 1785
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(5 + 11 / 12, "feet"),
  24641. default: true
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(1 + 6 / 12, "feet"),
  24650. weight: math.unit(25, "lb"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/karla-halldor/front.svg",
  24654. extra: 1459 / 1383,
  24655. bottom: 12 / 1472
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(1 + 6 / 12, "feet"),
  24663. default: true
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(6 + 2 / 12, "feet"),
  24672. weight: math.unit(160, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/ariam/front.svg",
  24676. extra: 1073/976,
  24677. bottom: 52/1125
  24678. }
  24679. },
  24680. back: {
  24681. height: math.unit(6 + 2/12, "feet"),
  24682. weight: math.unit(160, "lb"),
  24683. name: "Back",
  24684. image: {
  24685. source: "./media/characters/ariam/back.svg",
  24686. extra: 1103/1023,
  24687. bottom: 9/1112
  24688. }
  24689. },
  24690. dressed: {
  24691. height: math.unit(6 + 2/12, "feet"),
  24692. weight: math.unit(160, "lb"),
  24693. name: "Dressed",
  24694. image: {
  24695. source: "./media/characters/ariam/dressed.svg",
  24696. extra: 1099/1009,
  24697. bottom: 25/1124
  24698. }
  24699. },
  24700. squatting: {
  24701. height: math.unit(4.1, "feet"),
  24702. weight: math.unit(160, "lb"),
  24703. name: "Squatting",
  24704. image: {
  24705. source: "./media/characters/ariam/squatting.svg",
  24706. extra: 2617 / 2112,
  24707. bottom: 61.2 / 2681,
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(6 + 2 / 12, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Normal+",
  24719. height: math.unit(4, "meters")
  24720. },
  24721. {
  24722. name: "Macro",
  24723. height: math.unit(50, "meters")
  24724. },
  24725. {
  24726. name: "Macro+",
  24727. height: math.unit(100, "meters")
  24728. },
  24729. {
  24730. name: "Megamacro",
  24731. height: math.unit(20, "km")
  24732. },
  24733. {
  24734. name: "Caretaker",
  24735. height: math.unit(444, "megameters")
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24741. {
  24742. front: {
  24743. height: math.unit(1.67, "meters"),
  24744. weight: math.unit(140, "lb"),
  24745. name: "Front",
  24746. image: {
  24747. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24748. extra: 438 / 410,
  24749. bottom: 0.75 / 439
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Shrunken",
  24756. height: math.unit(7.6, "cm")
  24757. },
  24758. {
  24759. name: "Human Scale",
  24760. height: math.unit(1.67, "meters")
  24761. },
  24762. {
  24763. name: "Wolxi Scale",
  24764. height: math.unit(36.7, "meters"),
  24765. default: true
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(1.73, "meters"),
  24774. weight: math.unit(240, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/izue-two-mothers/front.svg",
  24778. extra: 469 / 437,
  24779. bottom: 1.24 / 470.6
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Shrunken",
  24786. height: math.unit(7.86, "cm")
  24787. },
  24788. {
  24789. name: "Human Scale",
  24790. height: math.unit(1.73, "meters")
  24791. },
  24792. {
  24793. name: "Wolxi Scale",
  24794. height: math.unit(38, "meters"),
  24795. default: true
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(1.55, "meters"),
  24804. weight: math.unit(120, "lb"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/teeku-love-shack/front.svg",
  24808. extra: 387 / 362,
  24809. bottom: 1.51 / 388
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Shrunken",
  24816. height: math.unit(7, "cm")
  24817. },
  24818. {
  24819. name: "Human Scale",
  24820. height: math.unit(1.55, "meters")
  24821. },
  24822. {
  24823. name: "Wolxi Scale",
  24824. height: math.unit(34.1, "meters"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(1.83, "meters"),
  24834. weight: math.unit(135, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/dejma-the-red/front.svg",
  24838. extra: 480 / 458,
  24839. bottom: 1.8 / 482
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Shrunken",
  24846. height: math.unit(8.3, "cm")
  24847. },
  24848. {
  24849. name: "Human Scale",
  24850. height: math.unit(1.83, "meters")
  24851. },
  24852. {
  24853. name: "Wolxi Scale",
  24854. height: math.unit(40, "meters"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(1.78, "meters"),
  24864. weight: math.unit(65, "kg"),
  24865. name: "Front",
  24866. image: {
  24867. source: "./media/characters/aki/front.svg",
  24868. extra: 452 / 415
  24869. }
  24870. },
  24871. frontNsfw: {
  24872. height: math.unit(1.78, "meters"),
  24873. weight: math.unit(65, "kg"),
  24874. name: "Front (NSFW)",
  24875. image: {
  24876. source: "./media/characters/aki/front-nsfw.svg",
  24877. extra: 452 / 415
  24878. }
  24879. },
  24880. back: {
  24881. height: math.unit(1.78, "meters"),
  24882. weight: math.unit(65, "kg"),
  24883. name: "Back",
  24884. image: {
  24885. source: "./media/characters/aki/back.svg",
  24886. extra: 452 / 415
  24887. }
  24888. },
  24889. rump: {
  24890. height: math.unit(2.05, "feet"),
  24891. name: "Rump",
  24892. image: {
  24893. source: "./media/characters/aki/rump.svg"
  24894. }
  24895. },
  24896. dick: {
  24897. height: math.unit(0.95, "feet"),
  24898. name: "Dick",
  24899. image: {
  24900. source: "./media/characters/aki/dick.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Micro",
  24907. height: math.unit(15, "cm")
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(178, "cm"),
  24912. default: true
  24913. },
  24914. {
  24915. name: "Macro",
  24916. height: math.unit(214, "m")
  24917. },
  24918. {
  24919. name: "Macro+",
  24920. height: math.unit(534, "m")
  24921. },
  24922. ]
  24923. ))
  24924. characterMakers.push(() => makeCharacter(
  24925. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24926. {
  24927. front: {
  24928. height: math.unit(5 + 5 / 12, "feet"),
  24929. weight: math.unit(120, "lb"),
  24930. name: "Front",
  24931. image: {
  24932. source: "./media/characters/ari/front.svg",
  24933. extra: 714.5 / 682,
  24934. bottom: 8 / 722.5
  24935. }
  24936. },
  24937. },
  24938. [
  24939. {
  24940. name: "Normal",
  24941. height: math.unit(5 + 5 / 12, "feet")
  24942. },
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(100, "feet"),
  24946. default: true
  24947. },
  24948. {
  24949. name: "Megamacro",
  24950. height: math.unit(100, "miles")
  24951. },
  24952. {
  24953. name: "Gigamacro",
  24954. height: math.unit(80000, "miles")
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24960. {
  24961. side: {
  24962. height: math.unit(9, "feet"),
  24963. weight: math.unit(400, "kg"),
  24964. name: "Side",
  24965. image: {
  24966. source: "./media/characters/bolt/side.svg",
  24967. extra: 1126 / 896,
  24968. bottom: 60 / 1187.3,
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Micro",
  24975. height: math.unit(5, "inches")
  24976. },
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(9, "feet"),
  24980. default: true
  24981. },
  24982. {
  24983. name: "Macro",
  24984. height: math.unit(700, "feet")
  24985. },
  24986. {
  24987. name: "Max Size",
  24988. height: math.unit(1.52e22, "yottameters")
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(4.3, "meters"),
  24997. weight: math.unit(3, "tons"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/draekon-sylviar/front.svg",
  25001. extra: 2072/1512,
  25002. bottom: 74/2146
  25003. }
  25004. },
  25005. back: {
  25006. height: math.unit(4.3, "meters"),
  25007. weight: math.unit(3, "tons"),
  25008. name: "Back",
  25009. image: {
  25010. source: "./media/characters/draekon-sylviar/back.svg",
  25011. extra: 1639/1483,
  25012. bottom: 41/1680
  25013. }
  25014. },
  25015. feral: {
  25016. height: math.unit(1.15, "meters"),
  25017. weight: math.unit(3, "tons"),
  25018. name: "Feral",
  25019. image: {
  25020. source: "./media/characters/draekon-sylviar/feral.svg",
  25021. extra: 1033/395,
  25022. bottom: 130/1163
  25023. }
  25024. },
  25025. maw: {
  25026. height: math.unit(1.3, "meters"),
  25027. name: "Maw",
  25028. image: {
  25029. source: "./media/characters/draekon-sylviar/maw.svg"
  25030. }
  25031. },
  25032. mawSeparated: {
  25033. height: math.unit(1.53, "meters"),
  25034. name: "Separated Maw",
  25035. image: {
  25036. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25037. }
  25038. },
  25039. tail: {
  25040. height: math.unit(1.15, "meters"),
  25041. name: "Tail",
  25042. image: {
  25043. source: "./media/characters/draekon-sylviar/tail.svg"
  25044. }
  25045. },
  25046. tailDick: {
  25047. height: math.unit(1.15, "meters"),
  25048. name: "Tail (Dick)",
  25049. image: {
  25050. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25051. }
  25052. },
  25053. tailDickSeparated: {
  25054. height: math.unit(1.19, "meters"),
  25055. name: "Tail (Separated Dick)",
  25056. image: {
  25057. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25058. }
  25059. },
  25060. slit: {
  25061. height: math.unit(1, "meters"),
  25062. name: "Slit",
  25063. image: {
  25064. source: "./media/characters/draekon-sylviar/slit.svg"
  25065. }
  25066. },
  25067. dick: {
  25068. height: math.unit(1.15, "meters"),
  25069. name: "Dick",
  25070. image: {
  25071. source: "./media/characters/draekon-sylviar/dick.svg"
  25072. }
  25073. },
  25074. dickSeparated: {
  25075. height: math.unit(1.1, "meters"),
  25076. name: "Separated Dick",
  25077. image: {
  25078. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25079. }
  25080. },
  25081. sheath: {
  25082. height: math.unit(1.15, "meters"),
  25083. name: "Sheath",
  25084. image: {
  25085. source: "./media/characters/draekon-sylviar/sheath.svg"
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Small",
  25092. height: math.unit(4.53 / 2, "meters"),
  25093. default: true
  25094. },
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(4.53, "meters"),
  25098. default: true
  25099. },
  25100. {
  25101. name: "Large",
  25102. height: math.unit(4.53 * 2, "meters"),
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(6 + 2 / 12, "feet"),
  25111. weight: math.unit(180, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/brawler/front.svg",
  25115. extra: 3301 / 3027,
  25116. bottom: 138 / 3439
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(6 + 2 / 12, "feet"),
  25124. default: true
  25125. },
  25126. ]
  25127. ))
  25128. characterMakers.push(() => makeCharacter(
  25129. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25130. {
  25131. front: {
  25132. height: math.unit(11, "feet"),
  25133. weight: math.unit(1000, "lb"),
  25134. name: "Front",
  25135. image: {
  25136. source: "./media/characters/alex/front.svg",
  25137. bottom: 44.5 / 620
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Micro",
  25144. height: math.unit(5, "inches")
  25145. },
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(11, "feet"),
  25149. default: true
  25150. },
  25151. {
  25152. name: "Macro",
  25153. height: math.unit(9.5e9, "feet")
  25154. },
  25155. {
  25156. name: "Max Size",
  25157. height: math.unit(1.4e283, "yottameters")
  25158. },
  25159. ]
  25160. ))
  25161. characterMakers.push(() => makeCharacter(
  25162. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25163. {
  25164. female: {
  25165. height: math.unit(29.9, "m"),
  25166. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25167. name: "Female",
  25168. image: {
  25169. source: "./media/characters/zenari/female.svg",
  25170. extra: 3281.6 / 3217,
  25171. bottom: 72.2 / 3353
  25172. }
  25173. },
  25174. male: {
  25175. height: math.unit(27.7, "m"),
  25176. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25177. name: "Male",
  25178. image: {
  25179. source: "./media/characters/zenari/male.svg",
  25180. extra: 3008 / 2991,
  25181. bottom: 54.6 / 3069
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(29.7, "meters"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25195. {
  25196. female: {
  25197. height: math.unit(23.8, "m"),
  25198. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25199. name: "Female",
  25200. image: {
  25201. source: "./media/characters/mactarian/female.svg",
  25202. extra: 2662 / 2569,
  25203. bottom: 73 / 2736
  25204. }
  25205. },
  25206. male: {
  25207. height: math.unit(23.8, "m"),
  25208. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25209. name: "Male",
  25210. image: {
  25211. source: "./media/characters/mactarian/male.svg",
  25212. extra: 2673 / 2600,
  25213. bottom: 76 / 2750
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Macro",
  25220. height: math.unit(23.8, "meters"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25227. {
  25228. female: {
  25229. height: math.unit(19.3, "m"),
  25230. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25231. name: "Female",
  25232. image: {
  25233. source: "./media/characters/umok/female.svg",
  25234. extra: 2186 / 2078,
  25235. bottom: 87 / 2277
  25236. }
  25237. },
  25238. male: {
  25239. height: math.unit(19.5, "m"),
  25240. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25241. name: "Male",
  25242. image: {
  25243. source: "./media/characters/umok/male.svg",
  25244. extra: 2233 / 2140,
  25245. bottom: 24.4 / 2258
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Macro",
  25252. height: math.unit(19.3, "meters"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25259. {
  25260. female: {
  25261. height: math.unit(26.15, "m"),
  25262. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25263. name: "Female",
  25264. image: {
  25265. source: "./media/characters/joraxian/female.svg",
  25266. extra: 2912 / 2824,
  25267. bottom: 36 / 2956
  25268. }
  25269. },
  25270. male: {
  25271. height: math.unit(25.4, "m"),
  25272. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25273. name: "Male",
  25274. image: {
  25275. source: "./media/characters/joraxian/male.svg",
  25276. extra: 2877 / 2721,
  25277. bottom: 82 / 2967
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Macro",
  25284. height: math.unit(26.15, "meters"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25291. {
  25292. female: {
  25293. height: math.unit(21.6, "m"),
  25294. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25295. name: "Female",
  25296. image: {
  25297. source: "./media/characters/sthara/female.svg",
  25298. extra: 2516 / 2347,
  25299. bottom: 21.5 / 2537
  25300. }
  25301. },
  25302. male: {
  25303. height: math.unit(24, "m"),
  25304. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25305. name: "Male",
  25306. image: {
  25307. source: "./media/characters/sthara/male.svg",
  25308. extra: 2732 / 2607,
  25309. bottom: 23 / 2732
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Macro",
  25316. height: math.unit(21.6, "meters"),
  25317. default: true
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(6 + 4 / 12, "feet"),
  25326. weight: math.unit(175, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/luka-bryzant/front.svg",
  25330. extra: 311 / 289,
  25331. bottom: 4 / 315
  25332. }
  25333. },
  25334. back: {
  25335. height: math.unit(6 + 4 / 12, "feet"),
  25336. weight: math.unit(175, "lb"),
  25337. name: "Back",
  25338. image: {
  25339. source: "./media/characters/luka-bryzant/back.svg",
  25340. extra: 311 / 289,
  25341. bottom: 3.8 / 313.7
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Micro",
  25348. height: math.unit(10, "inches")
  25349. },
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(6 + 4 / 12, "feet"),
  25353. default: true
  25354. },
  25355. {
  25356. name: "Large",
  25357. height: math.unit(12, "feet")
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(5 + 7 / 12, "feet"),
  25366. weight: math.unit(185, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/aman-aquila/front.svg",
  25370. extra: 1013 / 976,
  25371. bottom: 45.6 / 1057
  25372. }
  25373. },
  25374. side: {
  25375. height: math.unit(5 + 7 / 12, "feet"),
  25376. weight: math.unit(185, "lb"),
  25377. name: "Side",
  25378. image: {
  25379. source: "./media/characters/aman-aquila/side.svg",
  25380. extra: 1054 / 1011,
  25381. bottom: 15 / 1070
  25382. }
  25383. },
  25384. back: {
  25385. height: math.unit(5 + 7 / 12, "feet"),
  25386. weight: math.unit(185, "lb"),
  25387. name: "Back",
  25388. image: {
  25389. source: "./media/characters/aman-aquila/back.svg",
  25390. extra: 1026 / 970,
  25391. bottom: 12 / 1039
  25392. }
  25393. },
  25394. head: {
  25395. height: math.unit(1.211, "feet"),
  25396. name: "Head",
  25397. image: {
  25398. source: "./media/characters/aman-aquila/head.svg",
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Minimicro",
  25405. height: math.unit(0.057, "inches")
  25406. },
  25407. {
  25408. name: "Micro",
  25409. height: math.unit(7, "inches")
  25410. },
  25411. {
  25412. name: "Mini",
  25413. height: math.unit(3 + 7 / 12, "feet")
  25414. },
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(5 + 7 / 12, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(157 + 7 / 12, "feet")
  25423. },
  25424. {
  25425. name: "Megamacro",
  25426. height: math.unit(1557 + 7 / 12, "feet")
  25427. },
  25428. {
  25429. name: "Gigamacro",
  25430. height: math.unit(15557 + 7 / 12, "feet")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(3 + 2 / 12, "inches"),
  25439. weight: math.unit(0.3, "ounces"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/hiphae/front.svg",
  25443. extra: 1931 / 1683,
  25444. bottom: 24 / 1955
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(3 + 1 / 2, "inches"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(5 + 10 / 12, "feet"),
  25461. weight: math.unit(165, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/nicky/front.svg",
  25465. extra: 3144 / 2886,
  25466. bottom: 45.6 / 3192
  25467. }
  25468. },
  25469. back: {
  25470. height: math.unit(5 + 10 / 12, "feet"),
  25471. weight: math.unit(165, "lb"),
  25472. name: "Back",
  25473. image: {
  25474. source: "./media/characters/nicky/back.svg",
  25475. extra: 3055 / 2804,
  25476. bottom: 28.4 / 3087
  25477. }
  25478. },
  25479. frontclothed: {
  25480. height: math.unit(5 + 10 / 12, "feet"),
  25481. weight: math.unit(165, "lb"),
  25482. name: "Front-clothed",
  25483. image: {
  25484. source: "./media/characters/nicky/front-clothed.svg",
  25485. extra: 3184.9 / 2926.9,
  25486. bottom: 86.5 / 3239.9
  25487. }
  25488. },
  25489. foot: {
  25490. height: math.unit(1.16, "feet"),
  25491. name: "Foot",
  25492. image: {
  25493. source: "./media/characters/nicky/foot.svg"
  25494. }
  25495. },
  25496. feet: {
  25497. height: math.unit(1.34, "feet"),
  25498. name: "Feet",
  25499. image: {
  25500. source: "./media/characters/nicky/feet.svg"
  25501. }
  25502. },
  25503. maw: {
  25504. height: math.unit(0.9, "feet"),
  25505. name: "Maw",
  25506. image: {
  25507. source: "./media/characters/nicky/maw.svg"
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(5 + 10 / 12, "feet"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Macro",
  25519. height: math.unit(60, "feet")
  25520. },
  25521. {
  25522. name: "Megamacro",
  25523. height: math.unit(1, "mile")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25529. {
  25530. side: {
  25531. height: math.unit(10, "feet"),
  25532. weight: math.unit(600, "lb"),
  25533. name: "Side",
  25534. image: {
  25535. source: "./media/characters/blair/side.svg",
  25536. bottom: 16.6 / 475,
  25537. extra: 458 / 431
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Micro",
  25544. height: math.unit(8, "inches")
  25545. },
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(10, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(180, "feet")
  25554. },
  25555. ]
  25556. ))
  25557. characterMakers.push(() => makeCharacter(
  25558. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25559. {
  25560. front: {
  25561. height: math.unit(5 + 4 / 12, "feet"),
  25562. weight: math.unit(125, "lb"),
  25563. name: "Front",
  25564. image: {
  25565. source: "./media/characters/fisher/front.svg",
  25566. extra: 444 / 390,
  25567. bottom: 2 / 444.8
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Micro",
  25574. height: math.unit(4, "inches")
  25575. },
  25576. {
  25577. name: "Normal",
  25578. height: math.unit(5 + 4 / 12, "feet"),
  25579. default: true
  25580. },
  25581. {
  25582. name: "Macro",
  25583. height: math.unit(100, "feet")
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25589. {
  25590. front: {
  25591. height: math.unit(6.71, "feet"),
  25592. weight: math.unit(200, "lb"),
  25593. capacity: math.unit(1000000, "people"),
  25594. name: "Front",
  25595. image: {
  25596. source: "./media/characters/gliss/front.svg",
  25597. extra: 2347 / 2231,
  25598. bottom: 113 / 2462
  25599. }
  25600. },
  25601. hammerspaceSize: {
  25602. height: math.unit(6.71 * 717, "feet"),
  25603. weight: math.unit(200, "lb"),
  25604. capacity: math.unit(1000000, "people"),
  25605. name: "Hammerspace Size",
  25606. image: {
  25607. source: "./media/characters/gliss/front.svg",
  25608. extra: 2347 / 2231,
  25609. bottom: 113 / 2462
  25610. }
  25611. },
  25612. },
  25613. [
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(6.71, "feet"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25623. {
  25624. side: {
  25625. height: math.unit(1.44, "m"),
  25626. weight: math.unit(80, "kg"),
  25627. name: "Side",
  25628. image: {
  25629. source: "./media/characters/dune-anderson/side.svg",
  25630. bottom: 49 / 1426
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Wolf-sized",
  25637. height: math.unit(1.44, "meters")
  25638. },
  25639. {
  25640. name: "Normal",
  25641. height: math.unit(5.05, "meters"),
  25642. default: true
  25643. },
  25644. {
  25645. name: "Big",
  25646. height: math.unit(14.4, "meters")
  25647. },
  25648. {
  25649. name: "Huge",
  25650. height: math.unit(144, "meters")
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(7, "feet"),
  25659. weight: math.unit(425, "lb"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/hind/front.svg",
  25663. extra: 2091 / 1860,
  25664. bottom: 129 / 2220
  25665. }
  25666. },
  25667. back: {
  25668. height: math.unit(7, "feet"),
  25669. weight: math.unit(425, "lb"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/hind/back.svg",
  25673. extra: 2091 / 1860,
  25674. bottom: 24.6 / 2309
  25675. }
  25676. },
  25677. tail: {
  25678. height: math.unit(2.8, "feet"),
  25679. name: "Tail",
  25680. image: {
  25681. source: "./media/characters/hind/tail.svg"
  25682. }
  25683. },
  25684. head: {
  25685. height: math.unit(2.55, "feet"),
  25686. name: "Head",
  25687. image: {
  25688. source: "./media/characters/hind/head.svg"
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "XS",
  25695. height: math.unit(0.7, "feet")
  25696. },
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(7, "feet"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "XL",
  25704. height: math.unit(70, "feet")
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(2.1, "meters"),
  25713. weight: math.unit(150, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/tharquench-sizestealer/front.svg",
  25717. extra: 1605/1470,
  25718. bottom: 36/1641
  25719. }
  25720. },
  25721. frontAlt: {
  25722. height: math.unit(2.1, "meters"),
  25723. weight: math.unit(150, "lb"),
  25724. name: "Front (Alt)",
  25725. image: {
  25726. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25727. extra: 2318 / 2063,
  25728. bottom: 93.4 / 2410
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Nano",
  25735. height: math.unit(1, "mm")
  25736. },
  25737. {
  25738. name: "Micro",
  25739. height: math.unit(1, "cm")
  25740. },
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(2.1, "meters"),
  25744. default: true
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(7 + 5 / 12, "feet"),
  25753. weight: math.unit(357, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/solex-draconov/front.svg",
  25757. extra: 1993 / 1865,
  25758. bottom: 117 / 2111
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Natural Height",
  25765. height: math.unit(7 + 5 / 12, "feet"),
  25766. default: true
  25767. },
  25768. {
  25769. name: "Macro",
  25770. height: math.unit(350, "feet")
  25771. },
  25772. {
  25773. name: "Macro+",
  25774. height: math.unit(1000, "feet")
  25775. },
  25776. {
  25777. name: "Megamacro",
  25778. height: math.unit(20, "km")
  25779. },
  25780. {
  25781. name: "Megamacro+",
  25782. height: math.unit(1000, "km")
  25783. },
  25784. {
  25785. name: "Gigamacro",
  25786. height: math.unit(2.5, "Gm")
  25787. },
  25788. {
  25789. name: "Teramacro",
  25790. height: math.unit(15, "Tm")
  25791. },
  25792. {
  25793. name: "Galactic",
  25794. height: math.unit(30, "Zm")
  25795. },
  25796. {
  25797. name: "Universal",
  25798. height: math.unit(21000, "Ym")
  25799. },
  25800. {
  25801. name: "Omniversal",
  25802. height: math.unit(9.861e50, "Ym")
  25803. },
  25804. {
  25805. name: "Existential",
  25806. height: math.unit(1e300, "meters")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25812. {
  25813. side: {
  25814. height: math.unit(25, "feet"),
  25815. weight: math.unit(90000, "lb"),
  25816. name: "Side",
  25817. image: {
  25818. source: "./media/characters/mandarax/side.svg",
  25819. extra: 614 / 332,
  25820. bottom: 55 / 630
  25821. }
  25822. },
  25823. head: {
  25824. height: math.unit(11.4, "feet"),
  25825. name: "Head",
  25826. image: {
  25827. source: "./media/characters/mandarax/head.svg"
  25828. }
  25829. },
  25830. belly: {
  25831. height: math.unit(33, "feet"),
  25832. name: "Belly",
  25833. capacity: math.unit(500, "people"),
  25834. image: {
  25835. source: "./media/characters/mandarax/belly.svg"
  25836. }
  25837. },
  25838. dick: {
  25839. height: math.unit(8.46, "feet"),
  25840. name: "Dick",
  25841. image: {
  25842. source: "./media/characters/mandarax/dick.svg"
  25843. }
  25844. },
  25845. top: {
  25846. height: math.unit(28, "meters"),
  25847. name: "Top",
  25848. image: {
  25849. source: "./media/characters/mandarax/top.svg"
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(25, "feet"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(5, "feet"),
  25866. weight: math.unit(90, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/pixil/front.svg",
  25870. extra: 2000 / 1618,
  25871. bottom: 12.3 / 2011
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(5, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Megamacro",
  25883. height: math.unit(10, "miles"),
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(7 + 2 / 12, "feet"),
  25892. weight: math.unit(200, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/angel/front.svg",
  25896. extra: 1830 / 1737,
  25897. bottom: 22.6 / 1854,
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(7 + 2 / 12, "feet"),
  25905. default: true
  25906. },
  25907. {
  25908. name: "Macro",
  25909. height: math.unit(1000, "feet")
  25910. },
  25911. {
  25912. name: "Megamacro",
  25913. height: math.unit(2, "miles")
  25914. },
  25915. {
  25916. name: "Gigamacro",
  25917. height: math.unit(20, "earths")
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25923. {
  25924. front: {
  25925. height: math.unit(5, "feet"),
  25926. weight: math.unit(180, "lb"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/mekana/front.svg",
  25930. extra: 1671 / 1605,
  25931. bottom: 3.5 / 1691
  25932. }
  25933. },
  25934. side: {
  25935. height: math.unit(5, "feet"),
  25936. weight: math.unit(180, "lb"),
  25937. name: "Side",
  25938. image: {
  25939. source: "./media/characters/mekana/side.svg",
  25940. extra: 1671 / 1605,
  25941. bottom: 3.5 / 1691
  25942. }
  25943. },
  25944. back: {
  25945. height: math.unit(5, "feet"),
  25946. weight: math.unit(180, "lb"),
  25947. name: "Back",
  25948. image: {
  25949. source: "./media/characters/mekana/back.svg",
  25950. extra: 1671 / 1605,
  25951. bottom: 3.5 / 1691
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(5, "feet"),
  25959. default: true
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(4 + 6 / 12, "feet"),
  25968. weight: math.unit(80, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/pixie/front.svg",
  25972. extra: 1924 / 1825,
  25973. bottom: 22.4 / 1946
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(4 + 6 / 12, "feet"),
  25981. default: true
  25982. },
  25983. {
  25984. name: "Macro",
  25985. height: math.unit(40, "feet")
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(2.1, "meters"),
  25994. weight: math.unit(200, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/the-lascivious/front.svg",
  25998. extra: 1 / 0.893,
  25999. bottom: 3.5 / 573.7
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Human Scale",
  26006. height: math.unit(2.1, "meters")
  26007. },
  26008. {
  26009. name: "Wolxi Scale",
  26010. height: math.unit(46.2, "m"),
  26011. default: true
  26012. },
  26013. {
  26014. name: "Boinker of Buildings",
  26015. height: math.unit(10, "km")
  26016. },
  26017. {
  26018. name: "Shagger of Skyscrapers",
  26019. height: math.unit(40, "km")
  26020. },
  26021. {
  26022. name: "Banger of Boroughs",
  26023. height: math.unit(4000, "km")
  26024. },
  26025. {
  26026. name: "Screwer of States",
  26027. height: math.unit(100000, "km")
  26028. },
  26029. {
  26030. name: "Pounder of Planets",
  26031. height: math.unit(2000000, "km")
  26032. },
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(6, "feet"),
  26040. weight: math.unit(150, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/aj/front.svg",
  26044. extra: 2039 / 1562,
  26045. bottom: 40 / 2079
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(11 + 6 / 12, "feet"),
  26053. default: true
  26054. },
  26055. {
  26056. name: "Megamacro",
  26057. height: math.unit(60, "megameters")
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26063. {
  26064. side: {
  26065. height: math.unit(31 + 8 / 12, "feet"),
  26066. weight: math.unit(75000, "kg"),
  26067. name: "Side",
  26068. image: {
  26069. source: "./media/characters/koros/side.svg",
  26070. extra: 1442 / 1297,
  26071. bottom: 122.7 / 1562
  26072. }
  26073. },
  26074. dicksKingsCrown: {
  26075. height: math.unit(6, "feet"),
  26076. name: "Dicks (King's Crown)",
  26077. image: {
  26078. source: "./media/characters/koros/dicks-kings-crown.svg"
  26079. }
  26080. },
  26081. dicksTailSet: {
  26082. height: math.unit(3, "feet"),
  26083. name: "Dicks (Tail Set)",
  26084. image: {
  26085. source: "./media/characters/koros/dicks-tail-set.svg"
  26086. }
  26087. },
  26088. dickCumming: {
  26089. height: math.unit(7.98, "feet"),
  26090. name: "Dick (Cumming)",
  26091. image: {
  26092. source: "./media/characters/koros/dick-cumming.svg"
  26093. }
  26094. },
  26095. dicksBack: {
  26096. height: math.unit(5.9, "feet"),
  26097. name: "Dicks (Back)",
  26098. image: {
  26099. source: "./media/characters/koros/dicks-back.svg"
  26100. }
  26101. },
  26102. dicksFront: {
  26103. height: math.unit(3.72, "feet"),
  26104. name: "Dicks (Front)",
  26105. image: {
  26106. source: "./media/characters/koros/dicks-front.svg"
  26107. }
  26108. },
  26109. dicksPeeking: {
  26110. height: math.unit(3.0, "feet"),
  26111. name: "Dicks (Peeking)",
  26112. image: {
  26113. source: "./media/characters/koros/dicks-peeking.svg"
  26114. }
  26115. },
  26116. eye: {
  26117. height: math.unit(1.7, "feet"),
  26118. name: "Eye",
  26119. image: {
  26120. source: "./media/characters/koros/eye.svg"
  26121. }
  26122. },
  26123. headFront: {
  26124. height: math.unit(11.69, "feet"),
  26125. name: "Head (Front)",
  26126. image: {
  26127. source: "./media/characters/koros/head-front.svg"
  26128. }
  26129. },
  26130. headSide: {
  26131. height: math.unit(14, "feet"),
  26132. name: "Head (Side)",
  26133. image: {
  26134. source: "./media/characters/koros/head-side.svg"
  26135. }
  26136. },
  26137. leg: {
  26138. height: math.unit(17, "feet"),
  26139. name: "Leg",
  26140. image: {
  26141. source: "./media/characters/koros/leg.svg"
  26142. }
  26143. },
  26144. mawSide: {
  26145. height: math.unit(12.8, "feet"),
  26146. name: "Maw (Side)",
  26147. image: {
  26148. source: "./media/characters/koros/maw-side.svg"
  26149. }
  26150. },
  26151. mawSpitting: {
  26152. height: math.unit(17, "feet"),
  26153. name: "Maw (Spitting)",
  26154. image: {
  26155. source: "./media/characters/koros/maw-spitting.svg"
  26156. }
  26157. },
  26158. slit: {
  26159. height: math.unit(2.8, "feet"),
  26160. name: "Slit",
  26161. image: {
  26162. source: "./media/characters/koros/slit.svg"
  26163. }
  26164. },
  26165. stomach: {
  26166. height: math.unit(6.8, "feet"),
  26167. capacity: math.unit(20, "people"),
  26168. name: "Stomach",
  26169. image: {
  26170. source: "./media/characters/koros/stomach.svg"
  26171. }
  26172. },
  26173. wingspanBottom: {
  26174. height: math.unit(114, "feet"),
  26175. name: "Wingspan (Bottom)",
  26176. image: {
  26177. source: "./media/characters/koros/wingspan-bottom.svg"
  26178. }
  26179. },
  26180. wingspanTop: {
  26181. height: math.unit(104, "feet"),
  26182. name: "Wingspan (Top)",
  26183. image: {
  26184. source: "./media/characters/koros/wingspan-top.svg"
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(31 + 8 / 12, "feet"),
  26192. default: true
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(18 + 5 / 12, "feet"),
  26201. weight: math.unit(3750, "kg"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/vexx/front.svg",
  26205. extra: 426 / 396,
  26206. bottom: 31.5 / 458
  26207. }
  26208. },
  26209. maw: {
  26210. height: math.unit(6, "feet"),
  26211. name: "Maw",
  26212. image: {
  26213. source: "./media/characters/vexx/maw.svg"
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(18 + 5 / 12, "feet"),
  26221. default: true
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(17 + 6 / 12, "feet"),
  26230. weight: math.unit(150, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/baadra/front.svg",
  26234. extra: 1694/1553,
  26235. bottom: 179/1873
  26236. }
  26237. },
  26238. frontAlt: {
  26239. height: math.unit(17 + 6 / 12, "feet"),
  26240. weight: math.unit(150, "lb"),
  26241. name: "Front (Alt)",
  26242. image: {
  26243. source: "./media/characters/baadra/front-alt.svg",
  26244. extra: 3137 / 2890,
  26245. bottom: 168.4 / 3305
  26246. }
  26247. },
  26248. back: {
  26249. height: math.unit(17 + 6 / 12, "feet"),
  26250. weight: math.unit(150, "lb"),
  26251. name: "Back",
  26252. image: {
  26253. source: "./media/characters/baadra/back.svg",
  26254. extra: 3142 / 2890,
  26255. bottom: 220 / 3371
  26256. }
  26257. },
  26258. head: {
  26259. height: math.unit(5.45, "feet"),
  26260. name: "Head",
  26261. image: {
  26262. source: "./media/characters/baadra/head.svg"
  26263. }
  26264. },
  26265. headAngry: {
  26266. height: math.unit(4.95, "feet"),
  26267. name: "Head (Angry)",
  26268. image: {
  26269. source: "./media/characters/baadra/head-angry.svg"
  26270. }
  26271. },
  26272. headOpen: {
  26273. height: math.unit(6, "feet"),
  26274. name: "Head (Open)",
  26275. image: {
  26276. source: "./media/characters/baadra/head-open.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(17 + 6 / 12, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(7 + 3 / 12, "feet"),
  26293. weight: math.unit(180, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/juri/front.svg",
  26297. extra: 1401 / 1237,
  26298. bottom: 18.5 / 1418
  26299. }
  26300. },
  26301. side: {
  26302. height: math.unit(7 + 3 / 12, "feet"),
  26303. weight: math.unit(180, "lb"),
  26304. name: "Side",
  26305. image: {
  26306. source: "./media/characters/juri/side.svg",
  26307. extra: 1424 / 1242,
  26308. bottom: 18.5 / 1447
  26309. }
  26310. },
  26311. sitting: {
  26312. height: math.unit(6, "feet"),
  26313. weight: math.unit(180, "lb"),
  26314. name: "Sitting",
  26315. image: {
  26316. source: "./media/characters/juri/sitting.svg",
  26317. extra: 1270 / 1143,
  26318. bottom: 100 / 1343
  26319. }
  26320. },
  26321. back: {
  26322. height: math.unit(7 + 3 / 12, "feet"),
  26323. weight: math.unit(180, "lb"),
  26324. name: "Back",
  26325. image: {
  26326. source: "./media/characters/juri/back.svg",
  26327. extra: 1377 / 1240,
  26328. bottom: 23.7 / 1405
  26329. }
  26330. },
  26331. maw: {
  26332. height: math.unit(2.8, "feet"),
  26333. name: "Maw",
  26334. image: {
  26335. source: "./media/characters/juri/maw.svg"
  26336. }
  26337. },
  26338. stomach: {
  26339. height: math.unit(0.89, "feet"),
  26340. capacity: math.unit(4, "liters"),
  26341. name: "Stomach",
  26342. image: {
  26343. source: "./media/characters/juri/stomach.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(7 + 3 / 12, "feet"),
  26351. default: true
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26357. {
  26358. fox: {
  26359. height: math.unit(5 + 6 / 12, "feet"),
  26360. weight: math.unit(140, "lb"),
  26361. name: "Fox",
  26362. image: {
  26363. source: "./media/characters/maxene-sita/fox.svg",
  26364. extra: 146 / 138,
  26365. bottom: 2.1 / 148.19
  26366. }
  26367. },
  26368. foxLaying: {
  26369. height: math.unit(1.70, "feet"),
  26370. weight: math.unit(140, "lb"),
  26371. name: "Fox (Laying)",
  26372. image: {
  26373. source: "./media/characters/maxene-sita/fox-laying.svg",
  26374. extra: 910 / 572,
  26375. bottom: 71 / 981
  26376. }
  26377. },
  26378. kitsune: {
  26379. height: math.unit(10, "feet"),
  26380. weight: math.unit(800, "lb"),
  26381. name: "Kitsune",
  26382. image: {
  26383. source: "./media/characters/maxene-sita/kitsune.svg",
  26384. extra: 185 / 176,
  26385. bottom: 4.7 / 189.9
  26386. }
  26387. },
  26388. hellhound: {
  26389. height: math.unit(10, "feet"),
  26390. weight: math.unit(700, "lb"),
  26391. name: "Hellhound",
  26392. image: {
  26393. source: "./media/characters/maxene-sita/hellhound.svg",
  26394. extra: 1600 / 1545,
  26395. bottom: 81 / 1681
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Normal",
  26402. height: math.unit(5 + 6 / 12, "feet"),
  26403. default: true
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26409. {
  26410. front: {
  26411. height: math.unit(3 + 4 / 12, "feet"),
  26412. weight: math.unit(70, "lb"),
  26413. name: "Front",
  26414. image: {
  26415. source: "./media/characters/maia/front.svg",
  26416. extra: 227 / 219.5,
  26417. bottom: 40 / 267
  26418. }
  26419. },
  26420. back: {
  26421. height: math.unit(3 + 4 / 12, "feet"),
  26422. weight: math.unit(70, "lb"),
  26423. name: "Back",
  26424. image: {
  26425. source: "./media/characters/maia/back.svg",
  26426. extra: 237 / 225
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(3 + 4 / 12, "feet"),
  26434. default: true
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(5 + 10 / 12, "feet"),
  26443. weight: math.unit(197, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/jabaro/front.svg",
  26447. extra: 225 / 216,
  26448. bottom: 5.06 / 230
  26449. }
  26450. },
  26451. back: {
  26452. height: math.unit(5 + 10 / 12, "feet"),
  26453. weight: math.unit(197, "lb"),
  26454. name: "Back",
  26455. image: {
  26456. source: "./media/characters/jabaro/back.svg",
  26457. extra: 225 / 219,
  26458. bottom: 1.9 / 227
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(5 + 10 / 12, "feet"),
  26466. default: true
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(5 + 8 / 12, "feet"),
  26475. weight: math.unit(139, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/risa/front.svg",
  26479. extra: 270 / 260,
  26480. bottom: 11.2 / 282
  26481. }
  26482. },
  26483. back: {
  26484. height: math.unit(5 + 8 / 12, "feet"),
  26485. weight: math.unit(139, "lb"),
  26486. name: "Back",
  26487. image: {
  26488. source: "./media/characters/risa/back.svg",
  26489. extra: 264 / 255,
  26490. bottom: 4 / 268
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Normal",
  26497. height: math.unit(5 + 8 / 12, "feet"),
  26498. default: true
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(2 + 11 / 12, "feet"),
  26507. weight: math.unit(30, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/weatley/front.svg",
  26511. bottom: 10.7 / 414,
  26512. extra: 403.5 / 362
  26513. }
  26514. },
  26515. back: {
  26516. height: math.unit(2 + 11 / 12, "feet"),
  26517. weight: math.unit(30, "lb"),
  26518. name: "Back",
  26519. image: {
  26520. source: "./media/characters/weatley/back.svg",
  26521. bottom: 10.7 / 414,
  26522. extra: 403.5 / 362
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(2 + 11 / 12, "feet"),
  26530. default: true
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(5 + 2 / 12, "feet"),
  26539. weight: math.unit(50, "kg"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/mercury-crescent/front.svg",
  26543. extra: 1088 / 1033,
  26544. bottom: 18.9 / 1109
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Normal",
  26551. height: math.unit(5 + 2 / 12, "feet"),
  26552. default: true
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26558. {
  26559. front: {
  26560. height: math.unit(2, "feet"),
  26561. weight: math.unit(15, "kg"),
  26562. name: "Front",
  26563. image: {
  26564. source: "./media/characters/diamond-jones/front.svg",
  26565. extra: 727/723,
  26566. bottom: 46/773
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(2, "feet"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(3, "feet"),
  26583. weight: math.unit(30, "kg"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/sweet-bit/front.svg",
  26587. extra: 675 / 567,
  26588. bottom: 27.7 / 703
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(3, "feet"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26602. {
  26603. side: {
  26604. height: math.unit(9.178, "feet"),
  26605. weight: math.unit(500, "lb"),
  26606. name: "Side",
  26607. image: {
  26608. source: "./media/characters/umbrazen/side.svg",
  26609. extra: 1730 / 1473,
  26610. bottom: 34.6 / 1765
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(9.178, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(10, "feet"),
  26627. weight: math.unit(750, "lb"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/arlist/front.svg",
  26631. extra: 961 / 778,
  26632. bottom: 6.2 / 986
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Normal",
  26639. height: math.unit(10, "feet"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(5 + 1 / 12, "feet"),
  26649. weight: math.unit(110, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/aradel/front.svg",
  26653. extra: 324 / 303,
  26654. bottom: 3.6 / 329.4
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(5 + 1 / 12, "feet"),
  26662. default: true
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26668. {
  26669. dressed: {
  26670. height: math.unit(3 + 8 / 12, "feet"),
  26671. weight: math.unit(50, "lb"),
  26672. name: "Dressed",
  26673. image: {
  26674. source: "./media/characters/serryn/dressed.svg",
  26675. extra: 1792 / 1656,
  26676. bottom: 43.5 / 1840
  26677. }
  26678. },
  26679. nude: {
  26680. height: math.unit(3 + 8 / 12, "feet"),
  26681. weight: math.unit(50, "lb"),
  26682. name: "Nude",
  26683. image: {
  26684. source: "./media/characters/serryn/nude.svg",
  26685. extra: 1792 / 1656,
  26686. bottom: 43.5 / 1840
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(3 + 8 / 12, "feet"),
  26694. default: true
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26700. {
  26701. front: {
  26702. height: math.unit(7 + 10 / 12, "feet"),
  26703. weight: math.unit(255, "lb"),
  26704. name: "Front",
  26705. image: {
  26706. source: "./media/characters/xavier-thyme/front.svg",
  26707. extra: 3733 / 3642,
  26708. bottom: 131 / 3869
  26709. }
  26710. },
  26711. frontRaven: {
  26712. height: math.unit(7 + 10 / 12, "feet"),
  26713. weight: math.unit(255, "lb"),
  26714. name: "Front (Raven)",
  26715. image: {
  26716. source: "./media/characters/xavier-thyme/front-raven.svg",
  26717. extra: 4385 / 3642,
  26718. bottom: 131 / 4517
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(7 + 10 / 12, "feet"),
  26726. default: true
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26732. {
  26733. front: {
  26734. height: math.unit(1.6, "m"),
  26735. weight: math.unit(50, "kg"),
  26736. name: "Front",
  26737. image: {
  26738. source: "./media/characters/kiki/front.svg",
  26739. extra: 4682 / 3610,
  26740. bottom: 115 / 4777
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(1.6, "meters"),
  26748. default: true
  26749. },
  26750. ]
  26751. ))
  26752. characterMakers.push(() => makeCharacter(
  26753. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26754. {
  26755. front: {
  26756. height: math.unit(50, "m"),
  26757. weight: math.unit(500, "tonnes"),
  26758. name: "Front",
  26759. image: {
  26760. source: "./media/characters/ryoko/front.svg",
  26761. extra: 4632 / 3926,
  26762. bottom: 193 / 4823
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(50, "meters"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(30, "m"),
  26779. weight: math.unit(22, "tonnes"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/elio/front.svg",
  26783. extra: 4582 / 3720,
  26784. bottom: 236 / 4828
  26785. }
  26786. },
  26787. },
  26788. [
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(30, "meters"),
  26792. default: true
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(6 + 3 / 12, "feet"),
  26801. weight: math.unit(120, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/azura/front.svg",
  26805. extra: 1149 / 1135,
  26806. bottom: 45 / 1194
  26807. }
  26808. },
  26809. frontClothed: {
  26810. height: math.unit(6 + 3 / 12, "feet"),
  26811. weight: math.unit(120, "lb"),
  26812. name: "Front (Clothed)",
  26813. image: {
  26814. source: "./media/characters/azura/front-clothed.svg",
  26815. extra: 1149 / 1135,
  26816. bottom: 45 / 1194
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(6 + 3 / 12, "feet"),
  26824. default: true
  26825. },
  26826. {
  26827. name: "Macro",
  26828. height: math.unit(20 + 6 / 12, "feet")
  26829. },
  26830. {
  26831. name: "Megamacro",
  26832. height: math.unit(12, "miles")
  26833. },
  26834. {
  26835. name: "Gigamacro",
  26836. height: math.unit(10000, "miles")
  26837. },
  26838. {
  26839. name: "Teramacro",
  26840. height: math.unit(900000, "miles")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(12, "feet"),
  26849. weight: math.unit(1, "ton"),
  26850. capacity: math.unit(660000, "gallons"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/zeus/front.svg",
  26854. extra: 5005 / 4717,
  26855. bottom: 363 / 5388
  26856. }
  26857. },
  26858. },
  26859. [
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(12, "feet")
  26863. },
  26864. {
  26865. name: "Preferred Size",
  26866. height: math.unit(0.5, "miles"),
  26867. default: true
  26868. },
  26869. {
  26870. name: "Giga Horse",
  26871. height: math.unit(300, "miles")
  26872. },
  26873. {
  26874. name: "Riding Planets",
  26875. height: math.unit(30, "megameters")
  26876. },
  26877. {
  26878. name: "Cosmic Giant",
  26879. height: math.unit(3, "zettameters")
  26880. },
  26881. {
  26882. name: "Breeding God",
  26883. height: math.unit(9.92e22, "yottameters")
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26889. {
  26890. side: {
  26891. height: math.unit(9, "feet"),
  26892. weight: math.unit(1500, "kg"),
  26893. name: "Side",
  26894. image: {
  26895. source: "./media/characters/fang/side.svg",
  26896. extra: 924 / 866,
  26897. bottom: 47.5 / 972.3
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(9, "feet"),
  26905. default: true
  26906. },
  26907. {
  26908. name: "Macro",
  26909. height: math.unit(75 + 6 / 12, "feet")
  26910. },
  26911. {
  26912. name: "Teramacro",
  26913. height: math.unit(50000, "miles")
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(10, "feet"),
  26922. weight: math.unit(2, "tons"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/rekhit/front.svg",
  26926. extra: 2796 / 2590,
  26927. bottom: 225 / 3022
  26928. }
  26929. },
  26930. },
  26931. [
  26932. {
  26933. name: "Normal",
  26934. height: math.unit(10, "feet"),
  26935. default: true
  26936. },
  26937. {
  26938. name: "Macro",
  26939. height: math.unit(500, "feet")
  26940. },
  26941. ]
  26942. ))
  26943. characterMakers.push(() => makeCharacter(
  26944. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26945. {
  26946. front: {
  26947. height: math.unit(7 + 6.451 / 12, "feet"),
  26948. weight: math.unit(310, "lb"),
  26949. name: "Front",
  26950. image: {
  26951. source: "./media/characters/dahlia-verrick/front.svg",
  26952. extra: 1488 / 1365,
  26953. bottom: 6.2 / 1495
  26954. }
  26955. },
  26956. back: {
  26957. height: math.unit(7 + 6.451 / 12, "feet"),
  26958. weight: math.unit(310, "lb"),
  26959. name: "Back",
  26960. image: {
  26961. source: "./media/characters/dahlia-verrick/back.svg",
  26962. extra: 1472 / 1351,
  26963. bottom: 5.28 / 1477
  26964. }
  26965. },
  26966. frontBusiness: {
  26967. height: math.unit(7 + 6.451 / 12, "feet"),
  26968. weight: math.unit(200, "lb"),
  26969. name: "Front (Business)",
  26970. image: {
  26971. source: "./media/characters/dahlia-verrick/front-business.svg",
  26972. extra: 1478 / 1381,
  26973. bottom: 5.5 / 1484
  26974. }
  26975. },
  26976. frontCasual: {
  26977. height: math.unit(7 + 6.451 / 12, "feet"),
  26978. weight: math.unit(200, "lb"),
  26979. name: "Front (Casual)",
  26980. image: {
  26981. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26982. extra: 1478 / 1381,
  26983. bottom: 5.5 / 1484
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Travel-Sized",
  26990. height: math.unit(7.45, "inches")
  26991. },
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(7 + 6.451 / 12, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Hitting the Town",
  26999. height: math.unit(37 + 8 / 12, "feet")
  27000. },
  27001. {
  27002. name: "Stomp in the Suburbs",
  27003. height: math.unit(964 + 9.728 / 12, "feet")
  27004. },
  27005. {
  27006. name: "Sit on the City",
  27007. height: math.unit(61747 + 10.592 / 12, "feet")
  27008. },
  27009. {
  27010. name: "Glomp the Globe",
  27011. height: math.unit(252919327 + 4.832 / 12, "feet")
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(6 + 4 / 12, "feet"),
  27020. weight: math.unit(320, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/balina-mahigan/front.svg",
  27024. extra: 447 / 428,
  27025. bottom: 18 / 466
  27026. }
  27027. },
  27028. back: {
  27029. height: math.unit(6 + 4 / 12, "feet"),
  27030. weight: math.unit(320, "lb"),
  27031. name: "Back",
  27032. image: {
  27033. source: "./media/characters/balina-mahigan/back.svg",
  27034. extra: 445 / 428,
  27035. bottom: 4.07 / 448
  27036. }
  27037. },
  27038. arm: {
  27039. height: math.unit(1.88, "feet"),
  27040. name: "Arm",
  27041. image: {
  27042. source: "./media/characters/balina-mahigan/arm.svg"
  27043. }
  27044. },
  27045. backPort: {
  27046. height: math.unit(0.685, "feet"),
  27047. name: "Back Port",
  27048. image: {
  27049. source: "./media/characters/balina-mahigan/back-port.svg"
  27050. }
  27051. },
  27052. hoofpaw: {
  27053. height: math.unit(1.41, "feet"),
  27054. name: "Hoofpaw",
  27055. image: {
  27056. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27057. }
  27058. },
  27059. leftHandBack: {
  27060. height: math.unit(0.938, "feet"),
  27061. name: "Left Hand (Back)",
  27062. image: {
  27063. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27064. }
  27065. },
  27066. leftHandFront: {
  27067. height: math.unit(0.938, "feet"),
  27068. name: "Left Hand (Front)",
  27069. image: {
  27070. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27071. }
  27072. },
  27073. rightHandBack: {
  27074. height: math.unit(0.95, "feet"),
  27075. name: "Right Hand (Back)",
  27076. image: {
  27077. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27078. }
  27079. },
  27080. rightHandFront: {
  27081. height: math.unit(0.95, "feet"),
  27082. name: "Right Hand (Front)",
  27083. image: {
  27084. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(6 + 4 / 12, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(6, "feet"),
  27101. weight: math.unit(320, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/balina-mejeri/front.svg",
  27105. extra: 517 / 488,
  27106. bottom: 44.2 / 561
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(6 + 4 / 12, "feet")
  27114. },
  27115. {
  27116. name: "Business",
  27117. height: math.unit(155, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27124. {
  27125. kneeling: {
  27126. height: math.unit(6 + 4 / 12, "feet"),
  27127. weight: math.unit(300 * 20, "lb"),
  27128. name: "Kneeling",
  27129. image: {
  27130. source: "./media/characters/balbarian/kneeling.svg",
  27131. extra: 922 / 862,
  27132. bottom: 42.4 / 965
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(6 + 4 / 12, "feet")
  27140. },
  27141. {
  27142. name: "Treasured",
  27143. height: math.unit(18 + 9 / 12, "feet"),
  27144. default: true
  27145. },
  27146. {
  27147. name: "Macro",
  27148. height: math.unit(900, "feet")
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(6 + 4 / 12, "feet"),
  27157. weight: math.unit(325, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/balina-amarini/front.svg",
  27161. extra: 415 / 403,
  27162. bottom: 19 / 433.4
  27163. }
  27164. },
  27165. back: {
  27166. height: math.unit(6 + 4 / 12, "feet"),
  27167. weight: math.unit(325, "lb"),
  27168. name: "Back",
  27169. image: {
  27170. source: "./media/characters/balina-amarini/back.svg",
  27171. extra: 415 / 403,
  27172. bottom: 13.5 / 432
  27173. }
  27174. },
  27175. overdrive: {
  27176. height: math.unit(6 + 4 / 12, "feet"),
  27177. weight: math.unit(400, "lb"),
  27178. name: "Overdrive",
  27179. image: {
  27180. source: "./media/characters/balina-amarini/overdrive.svg",
  27181. extra: 269 / 259,
  27182. bottom: 12 / 282
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Boom",
  27189. height: math.unit(9 + 10 / 12, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Macro",
  27194. height: math.unit(280, "feet")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27200. {
  27201. goddess: {
  27202. height: math.unit(600, "feet"),
  27203. weight: math.unit(2000000, "tons"),
  27204. name: "Goddess",
  27205. image: {
  27206. source: "./media/characters/lady-kubwa/goddess.svg",
  27207. extra: 1240.5 / 1223,
  27208. bottom: 22 / 1263
  27209. }
  27210. },
  27211. goddesser: {
  27212. height: math.unit(900, "feet"),
  27213. weight: math.unit(20000000, "lb"),
  27214. name: "Goddess-er",
  27215. image: {
  27216. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27217. extra: 899 / 888,
  27218. bottom: 12.6 / 912
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Macro",
  27225. height: math.unit(600, "feet"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Megamacro",
  27230. height: math.unit(250, "miles")
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(7 + 7 / 12, "feet"),
  27239. weight: math.unit(250, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/tala-grovehorn/front.svg",
  27243. extra: 2636 / 2525,
  27244. bottom: 147 / 2781
  27245. }
  27246. },
  27247. back: {
  27248. height: math.unit(7 + 7 / 12, "feet"),
  27249. weight: math.unit(250, "lb"),
  27250. name: "Back",
  27251. image: {
  27252. source: "./media/characters/tala-grovehorn/back.svg",
  27253. extra: 2635 / 2539,
  27254. bottom: 100 / 2732.8
  27255. }
  27256. },
  27257. mouth: {
  27258. height: math.unit(1.15, "feet"),
  27259. name: "Mouth",
  27260. image: {
  27261. source: "./media/characters/tala-grovehorn/mouth.svg"
  27262. }
  27263. },
  27264. dick: {
  27265. height: math.unit(2.36, "feet"),
  27266. name: "Dick",
  27267. image: {
  27268. source: "./media/characters/tala-grovehorn/dick.svg"
  27269. }
  27270. },
  27271. slit: {
  27272. height: math.unit(0.61, "feet"),
  27273. name: "Slit",
  27274. image: {
  27275. source: "./media/characters/tala-grovehorn/slit.svg"
  27276. }
  27277. },
  27278. },
  27279. [
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27284. {
  27285. front: {
  27286. height: math.unit(7 + 7 / 12, "feet"),
  27287. weight: math.unit(225, "lb"),
  27288. name: "Front",
  27289. image: {
  27290. source: "./media/characters/epona/front.svg",
  27291. extra: 2445 / 2290,
  27292. bottom: 251 / 2696
  27293. }
  27294. },
  27295. back: {
  27296. height: math.unit(7 + 7 / 12, "feet"),
  27297. weight: math.unit(225, "lb"),
  27298. name: "Back",
  27299. image: {
  27300. source: "./media/characters/epona/back.svg",
  27301. extra: 2546 / 2408,
  27302. bottom: 44 / 2589
  27303. }
  27304. },
  27305. genitals: {
  27306. height: math.unit(1.5, "feet"),
  27307. name: "Genitals",
  27308. image: {
  27309. source: "./media/characters/epona/genitals.svg"
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(7 + 7 / 12, "feet"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(7, "feet"),
  27326. weight: math.unit(518, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/avia-bloodbourn/front.svg",
  27330. extra: 1466 / 1350,
  27331. bottom: 65 / 1527
  27332. }
  27333. },
  27334. },
  27335. [
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(9.35, "feet"),
  27343. weight: math.unit(600, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/amera/front.svg",
  27347. extra: 891 / 818,
  27348. bottom: 30 / 922.7
  27349. }
  27350. },
  27351. back: {
  27352. height: math.unit(9.35, "feet"),
  27353. weight: math.unit(600, "lb"),
  27354. name: "Back",
  27355. image: {
  27356. source: "./media/characters/amera/back.svg",
  27357. extra: 876 / 824,
  27358. bottom: 6.8 / 884
  27359. }
  27360. },
  27361. dick: {
  27362. height: math.unit(2.14, "feet"),
  27363. name: "Dick",
  27364. image: {
  27365. source: "./media/characters/amera/dick.svg"
  27366. }
  27367. },
  27368. },
  27369. [
  27370. {
  27371. name: "Normal",
  27372. height: math.unit(9.35, "feet"),
  27373. default: true
  27374. },
  27375. ]
  27376. ))
  27377. characterMakers.push(() => makeCharacter(
  27378. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27379. {
  27380. kneeling: {
  27381. height: math.unit(3 + 4 / 12, "feet"),
  27382. weight: math.unit(90, "lb"),
  27383. name: "Kneeling",
  27384. image: {
  27385. source: "./media/characters/rosewen/kneeling.svg",
  27386. extra: 1835 / 1571,
  27387. bottom: 27.7 / 1862
  27388. }
  27389. },
  27390. },
  27391. [
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(3 + 4 / 12, "feet"),
  27395. default: true
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(5 + 10 / 12, "feet"),
  27404. weight: math.unit(200, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/sabah/front.svg",
  27408. extra: 849 / 763,
  27409. bottom: 33.9 / 881
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(5 + 10 / 12, "feet"),
  27417. default: true
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27423. {
  27424. front: {
  27425. height: math.unit(3 + 5 / 12, "feet"),
  27426. weight: math.unit(40, "kg"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/purple-flame/front.svg",
  27430. extra: 1577 / 1412,
  27431. bottom: 97 / 1694
  27432. }
  27433. },
  27434. frontDressed: {
  27435. height: math.unit(3 + 5 / 12, "feet"),
  27436. weight: math.unit(40, "kg"),
  27437. name: "Front (Dressed)",
  27438. image: {
  27439. source: "./media/characters/purple-flame/front-dressed.svg",
  27440. extra: 1577 / 1412,
  27441. bottom: 97 / 1694
  27442. }
  27443. },
  27444. headphones: {
  27445. height: math.unit(0.85, "feet"),
  27446. name: "Headphones",
  27447. image: {
  27448. source: "./media/characters/purple-flame/headphones.svg"
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Really Small",
  27455. height: math.unit(5, "cm")
  27456. },
  27457. {
  27458. name: "Micro",
  27459. height: math.unit(1 + 5 / 12, "feet")
  27460. },
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(3 + 5 / 12, "feet"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Minimacro",
  27468. height: math.unit(125, "feet")
  27469. },
  27470. {
  27471. name: "Macro",
  27472. height: math.unit(0.5, "miles")
  27473. },
  27474. {
  27475. name: "Megamacro",
  27476. height: math.unit(50, "miles")
  27477. },
  27478. {
  27479. name: "Gigantic",
  27480. height: math.unit(750, "miles")
  27481. },
  27482. {
  27483. name: "Planetary",
  27484. height: math.unit(15000, "miles")
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27490. {
  27491. front: {
  27492. height: math.unit(14, "feet"),
  27493. weight: math.unit(959, "lb"),
  27494. name: "Front",
  27495. image: {
  27496. source: "./media/characters/arsenal/front.svg",
  27497. extra: 2357 / 2157,
  27498. bottom: 93 / 2458
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(14, "feet"),
  27506. default: true
  27507. },
  27508. ]
  27509. ))
  27510. characterMakers.push(() => makeCharacter(
  27511. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27512. {
  27513. front: {
  27514. height: math.unit(6, "feet"),
  27515. weight: math.unit(150, "lb"),
  27516. name: "Front",
  27517. image: {
  27518. source: "./media/characters/adira/front.svg",
  27519. extra: 1078 / 1029,
  27520. bottom: 87 / 1166
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Micro",
  27527. height: math.unit(4, "inches"),
  27528. default: true
  27529. },
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(50, "feet")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27538. {
  27539. front: {
  27540. height: math.unit(16, "feet"),
  27541. weight: math.unit(1000, "lb"),
  27542. name: "Front",
  27543. image: {
  27544. source: "./media/characters/grim/front.svg",
  27545. extra: 622 / 614,
  27546. bottom: 18.1 / 642
  27547. }
  27548. },
  27549. back: {
  27550. height: math.unit(16, "feet"),
  27551. weight: math.unit(1000, "lb"),
  27552. name: "Back",
  27553. image: {
  27554. source: "./media/characters/grim/back.svg",
  27555. extra: 610.6 / 602,
  27556. bottom: 40.8 / 652
  27557. }
  27558. },
  27559. hunched: {
  27560. height: math.unit(9.75, "feet"),
  27561. weight: math.unit(1000, "lb"),
  27562. name: "Hunched",
  27563. image: {
  27564. source: "./media/characters/grim/hunched.svg",
  27565. extra: 304 / 297,
  27566. bottom: 35.4 / 394
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(16, "feet"),
  27574. default: true
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(2.3, "meters"),
  27583. weight: math.unit(300, "lb"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/sinja/front-sfw.svg",
  27587. extra: 1393 / 1294,
  27588. bottom: 70 / 1463
  27589. }
  27590. },
  27591. frontNsfw: {
  27592. height: math.unit(2.3, "meters"),
  27593. weight: math.unit(300, "lb"),
  27594. name: "Front (NSFW)",
  27595. image: {
  27596. source: "./media/characters/sinja/front-nsfw.svg",
  27597. extra: 1393 / 1294,
  27598. bottom: 70 / 1463
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(2.3, "meters"),
  27603. weight: math.unit(300, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/sinja/back.svg",
  27607. extra: 1393 / 1294,
  27608. bottom: 70 / 1463
  27609. }
  27610. },
  27611. head: {
  27612. height: math.unit(1.771, "feet"),
  27613. name: "Head",
  27614. image: {
  27615. source: "./media/characters/sinja/head.svg"
  27616. }
  27617. },
  27618. slit: {
  27619. height: math.unit(0.8, "feet"),
  27620. name: "Slit",
  27621. image: {
  27622. source: "./media/characters/sinja/slit.svg"
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(2.3, "meters")
  27630. },
  27631. {
  27632. name: "Macro",
  27633. height: math.unit(91, "meters"),
  27634. default: true
  27635. },
  27636. {
  27637. name: "Megamacro",
  27638. height: math.unit(91440, "meters")
  27639. },
  27640. {
  27641. name: "Gigamacro",
  27642. height: math.unit(60960000, "meters")
  27643. },
  27644. {
  27645. name: "Teramacro",
  27646. height: math.unit(9144000000, "meters")
  27647. },
  27648. ]
  27649. ))
  27650. characterMakers.push(() => makeCharacter(
  27651. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27652. {
  27653. front: {
  27654. height: math.unit(1.7, "meters"),
  27655. weight: math.unit(130, "lb"),
  27656. name: "Front",
  27657. image: {
  27658. source: "./media/characters/kyu/front.svg",
  27659. extra: 415 / 395,
  27660. bottom: 5 / 420
  27661. }
  27662. },
  27663. head: {
  27664. height: math.unit(1.75, "feet"),
  27665. name: "Head",
  27666. image: {
  27667. source: "./media/characters/kyu/head.svg"
  27668. }
  27669. },
  27670. foot: {
  27671. height: math.unit(0.81, "feet"),
  27672. name: "Foot",
  27673. image: {
  27674. source: "./media/characters/kyu/foot.svg"
  27675. }
  27676. },
  27677. },
  27678. [
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(1.7, "meters")
  27682. },
  27683. {
  27684. name: "Macro",
  27685. height: math.unit(131, "feet"),
  27686. default: true
  27687. },
  27688. {
  27689. name: "Megamacro",
  27690. height: math.unit(91440, "meters")
  27691. },
  27692. {
  27693. name: "Gigamacro",
  27694. height: math.unit(60960000, "meters")
  27695. },
  27696. {
  27697. name: "Teramacro",
  27698. height: math.unit(9144000000, "meters")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(7 + 1 / 12, "feet"),
  27707. weight: math.unit(250, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/joey/front.svg",
  27711. extra: 1791 / 1537,
  27712. bottom: 28 / 1816
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Micro",
  27719. height: math.unit(3, "inches")
  27720. },
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(7 + 1 / 12, "feet"),
  27724. default: true
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(165, "cm"),
  27733. weight: math.unit(140, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/sam-evans/front.svg",
  27737. extra: 3417 / 3230,
  27738. bottom: 41.3 / 3417
  27739. }
  27740. },
  27741. frontSixTails: {
  27742. height: math.unit(165, "cm"),
  27743. weight: math.unit(140, "lb"),
  27744. name: "Front-six-tails",
  27745. image: {
  27746. source: "./media/characters/sam-evans/front-six-tails.svg",
  27747. extra: 3417 / 3230,
  27748. bottom: 41.3 / 3417
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(165, "cm"),
  27753. weight: math.unit(140, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/sam-evans/back.svg",
  27757. extra: 3227 / 3032,
  27758. bottom: 6.8 / 3234
  27759. }
  27760. },
  27761. face: {
  27762. height: math.unit(0.68, "feet"),
  27763. name: "Face",
  27764. image: {
  27765. source: "./media/characters/sam-evans/face.svg"
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Normal",
  27772. height: math.unit(165, "cm"),
  27773. default: true
  27774. },
  27775. {
  27776. name: "Macro",
  27777. height: math.unit(100, "meters")
  27778. },
  27779. {
  27780. name: "Macro+",
  27781. height: math.unit(800, "meters")
  27782. },
  27783. {
  27784. name: "Macro++",
  27785. height: math.unit(3, "km")
  27786. },
  27787. {
  27788. name: "Macro+++",
  27789. height: math.unit(30, "km")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27795. {
  27796. front: {
  27797. height: math.unit(10, "feet"),
  27798. weight: math.unit(750, "lb"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/juliet-a/front.svg",
  27802. extra: 1766 / 1720,
  27803. bottom: 43 / 1809
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(10, "feet"),
  27808. weight: math.unit(750, "lb"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/juliet-a/back.svg",
  27812. extra: 1781 / 1734,
  27813. bottom: 35 / 1810,
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Normal",
  27820. height: math.unit(10, "feet"),
  27821. default: true
  27822. },
  27823. {
  27824. name: "Dragon Form",
  27825. height: math.unit(250, "feet")
  27826. },
  27827. {
  27828. name: "Macro",
  27829. height: math.unit(1000, "feet")
  27830. },
  27831. {
  27832. name: "Megamacro",
  27833. height: math.unit(10000, "feet")
  27834. }
  27835. ]
  27836. ))
  27837. characterMakers.push(() => makeCharacter(
  27838. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27839. {
  27840. regular: {
  27841. height: math.unit(7 + 3 / 12, "feet"),
  27842. weight: math.unit(260, "lb"),
  27843. name: "Regular",
  27844. image: {
  27845. source: "./media/characters/wild/regular.svg",
  27846. extra: 97.45 / 92,
  27847. bottom: 6.8 / 104.3
  27848. }
  27849. },
  27850. biggums: {
  27851. height: math.unit(8 + 6 / 12, "feet"),
  27852. weight: math.unit(425, "lb"),
  27853. name: "Biggums",
  27854. image: {
  27855. source: "./media/characters/wild/biggums.svg",
  27856. extra: 97.45 / 92,
  27857. bottom: 7.5 / 132.34
  27858. }
  27859. },
  27860. mawRegular: {
  27861. height: math.unit(1.24, "feet"),
  27862. name: "Maw (Regular)",
  27863. image: {
  27864. source: "./media/characters/wild/maw.svg"
  27865. }
  27866. },
  27867. mawBiggums: {
  27868. height: math.unit(1.47, "feet"),
  27869. name: "Maw (Biggums)",
  27870. image: {
  27871. source: "./media/characters/wild/maw.svg"
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Normal",
  27878. height: math.unit(7 + 3 / 12, "feet"),
  27879. default: true
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27885. {
  27886. front: {
  27887. height: math.unit(2.5, "meters"),
  27888. weight: math.unit(200, "kg"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/vidar/front.svg",
  27892. extra: 2994 / 2795,
  27893. bottom: 56 / 3061
  27894. }
  27895. },
  27896. back: {
  27897. height: math.unit(2.5, "meters"),
  27898. weight: math.unit(200, "kg"),
  27899. name: "Back",
  27900. image: {
  27901. source: "./media/characters/vidar/back.svg",
  27902. extra: 3131 / 2928,
  27903. bottom: 13.5 / 3141.5
  27904. }
  27905. },
  27906. feral: {
  27907. height: math.unit(2.5, "meters"),
  27908. weight: math.unit(2000, "kg"),
  27909. name: "Feral",
  27910. image: {
  27911. source: "./media/characters/vidar/feral.svg",
  27912. extra: 2790 / 1765,
  27913. bottom: 6 / 2796
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(2.5, "meters"),
  27921. default: true
  27922. },
  27923. {
  27924. name: "Macro",
  27925. height: math.unit(100, "meters")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(5 + 9 / 12, "feet"),
  27934. weight: math.unit(120, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/ash/front.svg",
  27938. extra: 2189 / 1961,
  27939. bottom: 5.2 / 2194
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(5 + 9 / 12, "feet"),
  27947. default: true
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(9, "feet"),
  27956. weight: math.unit(10000, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/gygabite/front.svg",
  27960. bottom: 31.7 / 537.8,
  27961. extra: 505 / 370
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(9, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(12, "feet"),
  27978. weight: math.unit(35000, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/p0tat0/front.svg",
  27982. extra: 1065 / 921,
  27983. bottom: 55.7 / 1121.25
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(12, "feet"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27997. {
  27998. side: {
  27999. height: math.unit(6.5, "feet"),
  28000. weight: math.unit(800, "lb"),
  28001. name: "Side",
  28002. image: {
  28003. source: "./media/characters/dusk/side.svg",
  28004. extra: 615 / 373,
  28005. bottom: 53 / 664
  28006. }
  28007. },
  28008. sitting: {
  28009. height: math.unit(7, "feet"),
  28010. weight: math.unit(800, "lb"),
  28011. name: "Sitting",
  28012. image: {
  28013. source: "./media/characters/dusk/sitting.svg",
  28014. extra: 753 / 425,
  28015. bottom: 33 / 774
  28016. }
  28017. },
  28018. head: {
  28019. height: math.unit(6.1, "feet"),
  28020. name: "Head",
  28021. image: {
  28022. source: "./media/characters/dusk/head.svg"
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Normal",
  28029. height: math.unit(7, "feet"),
  28030. default: true
  28031. },
  28032. ]
  28033. ))
  28034. characterMakers.push(() => makeCharacter(
  28035. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28036. {
  28037. front: {
  28038. height: math.unit(15, "feet"),
  28039. weight: math.unit(7000, "lb"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/jay-direwolf/front.svg",
  28043. extra: 1810 / 1732,
  28044. bottom: 66 / 1892
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(15, "feet"),
  28052. default: true
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28058. {
  28059. front: {
  28060. height: math.unit(4 + 9 / 12, "feet"),
  28061. weight: math.unit(130, "lb"),
  28062. name: "Front",
  28063. image: {
  28064. source: "./media/characters/anchovie/front.svg",
  28065. extra: 382 / 350,
  28066. bottom: 25 / 409
  28067. }
  28068. },
  28069. back: {
  28070. height: math.unit(4 + 9 / 12, "feet"),
  28071. weight: math.unit(130, "lb"),
  28072. name: "Back",
  28073. image: {
  28074. source: "./media/characters/anchovie/back.svg",
  28075. extra: 385 / 352,
  28076. bottom: 16.6 / 402
  28077. }
  28078. },
  28079. frontDressed: {
  28080. height: math.unit(4 + 9 / 12, "feet"),
  28081. weight: math.unit(130, "lb"),
  28082. name: "Front (Dressed)",
  28083. image: {
  28084. source: "./media/characters/anchovie/front-dressed.svg",
  28085. extra: 382 / 350,
  28086. bottom: 25 / 409
  28087. }
  28088. },
  28089. backDressed: {
  28090. height: math.unit(4 + 9 / 12, "feet"),
  28091. weight: math.unit(130, "lb"),
  28092. name: "Back (Dressed)",
  28093. image: {
  28094. source: "./media/characters/anchovie/back-dressed.svg",
  28095. extra: 385 / 352,
  28096. bottom: 16.6 / 402
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Micro",
  28103. height: math.unit(6.4, "inches")
  28104. },
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(4 + 9 / 12, "feet"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(2, "meters"),
  28117. weight: math.unit(180, "lb"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/acidrenamon/front.svg",
  28121. extra: 987 / 890,
  28122. bottom: 22.8 / 1009
  28123. }
  28124. },
  28125. back: {
  28126. height: math.unit(2, "meters"),
  28127. weight: math.unit(180, "lb"),
  28128. name: "Back",
  28129. image: {
  28130. source: "./media/characters/acidrenamon/back.svg",
  28131. extra: 983 / 891,
  28132. bottom: 8.4 / 992
  28133. }
  28134. },
  28135. head: {
  28136. height: math.unit(1.92, "feet"),
  28137. name: "Head",
  28138. image: {
  28139. source: "./media/characters/acidrenamon/head.svg"
  28140. }
  28141. },
  28142. rump: {
  28143. height: math.unit(1.72, "feet"),
  28144. name: "Rump",
  28145. image: {
  28146. source: "./media/characters/acidrenamon/rump.svg"
  28147. }
  28148. },
  28149. tail: {
  28150. height: math.unit(4.2, "feet"),
  28151. name: "Tail",
  28152. image: {
  28153. source: "./media/characters/acidrenamon/tail.svg"
  28154. }
  28155. },
  28156. },
  28157. [
  28158. {
  28159. name: "Normal",
  28160. height: math.unit(2, "meters"),
  28161. default: true
  28162. },
  28163. {
  28164. name: "Minimacro",
  28165. height: math.unit(7, "meters")
  28166. },
  28167. {
  28168. name: "Macro",
  28169. height: math.unit(200, "meters")
  28170. },
  28171. {
  28172. name: "Gigamacro",
  28173. height: math.unit(0.2, "earths")
  28174. },
  28175. ]
  28176. ))
  28177. characterMakers.push(() => makeCharacter(
  28178. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28179. {
  28180. front: {
  28181. height: math.unit(152, "feet"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/kenzie-lee/front.svg",
  28185. extra: 1869/1774,
  28186. bottom: 128/1997
  28187. }
  28188. },
  28189. side: {
  28190. height: math.unit(86, "feet"),
  28191. name: "Side",
  28192. image: {
  28193. source: "./media/characters/kenzie-lee/side.svg",
  28194. extra: 930/815,
  28195. bottom: 177/1107
  28196. }
  28197. },
  28198. paw: {
  28199. height: math.unit(15, "feet"),
  28200. name: "Paw",
  28201. image: {
  28202. source: "./media/characters/kenzie-lee/paw.svg"
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Micro",
  28209. height: math.unit(1.5, "inches")
  28210. },
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(152, "feet"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Megamacro",
  28218. height: math.unit(7, "miles")
  28219. },
  28220. {
  28221. name: "Gigamacro",
  28222. height: math.unit(8000, "miles")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28228. {
  28229. side: {
  28230. height: math.unit(6, "feet"),
  28231. weight: math.unit(150, "lb"),
  28232. name: "Side",
  28233. image: {
  28234. source: "./media/characters/withers/side.svg",
  28235. extra: 1830 / 1728,
  28236. bottom: 96 / 1927
  28237. }
  28238. },
  28239. front: {
  28240. height: math.unit(6, "feet"),
  28241. weight: math.unit(150, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/withers/front.svg",
  28245. extra: 1514 / 1438,
  28246. bottom: 118 / 1632
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Macro",
  28253. height: math.unit(168, "feet"),
  28254. default: true
  28255. },
  28256. {
  28257. name: "Megamacro",
  28258. height: math.unit(15, "miles")
  28259. }
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(6 + 7 / 12, "feet"),
  28267. weight: math.unit(250, "lb"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/nemoskii/front.svg",
  28271. extra: 2270 / 1734,
  28272. bottom: 86 / 2354
  28273. }
  28274. },
  28275. back: {
  28276. height: math.unit(6 + 7 / 12, "feet"),
  28277. weight: math.unit(250, "lb"),
  28278. name: "Back",
  28279. image: {
  28280. source: "./media/characters/nemoskii/back.svg",
  28281. extra: 1845 / 1788,
  28282. bottom: 10.5 / 1852
  28283. }
  28284. },
  28285. head: {
  28286. height: math.unit(1.31, "feet"),
  28287. name: "Head",
  28288. image: {
  28289. source: "./media/characters/nemoskii/head.svg"
  28290. }
  28291. },
  28292. },
  28293. [
  28294. {
  28295. name: "Micro",
  28296. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28297. },
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(6 + 7 / 12, "feet"),
  28301. default: true
  28302. },
  28303. {
  28304. name: "Macro",
  28305. height: math.unit((6 + 7 / 12) * 150, "feet")
  28306. },
  28307. {
  28308. name: "Macro+",
  28309. height: math.unit((6 + 7 / 12) * 500, "feet")
  28310. },
  28311. {
  28312. name: "Megamacro",
  28313. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(1, "mile"),
  28322. weight: math.unit(265261.9, "lb"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/shui/front.svg",
  28326. extra: 1633 / 1564,
  28327. bottom: 91.5 / 1726
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Macro",
  28334. height: math.unit(1, "mile"),
  28335. default: true
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(12 + 6 / 12, "feet"),
  28344. weight: math.unit(1342, "lb"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/arokh-takakura/front.svg",
  28348. extra: 1089 / 1043,
  28349. bottom: 77.4 / 1176.7
  28350. }
  28351. },
  28352. back: {
  28353. height: math.unit(12 + 6 / 12, "feet"),
  28354. weight: math.unit(1342, "lb"),
  28355. name: "Back",
  28356. image: {
  28357. source: "./media/characters/arokh-takakura/back.svg",
  28358. extra: 1046 / 1019,
  28359. bottom: 102 / 1150
  28360. }
  28361. },
  28362. },
  28363. [
  28364. {
  28365. name: "Big",
  28366. height: math.unit(12 + 6 / 12, "feet"),
  28367. default: true
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28373. {
  28374. front: {
  28375. height: math.unit(5 + 6 / 12, "feet"),
  28376. weight: math.unit(150, "lb"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/theo/front.svg",
  28380. extra: 1184 / 1131,
  28381. bottom: 7.4 / 1191
  28382. }
  28383. },
  28384. },
  28385. [
  28386. {
  28387. name: "Micro",
  28388. height: math.unit(5, "inches")
  28389. },
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(5 + 6 / 12, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(5 + 9 / 12, "feet"),
  28402. weight: math.unit(130, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/cecelia-swift/front.svg",
  28406. extra: 502 / 484,
  28407. bottom: 23 / 523
  28408. }
  28409. },
  28410. back: {
  28411. height: math.unit(5 + 9 / 12, "feet"),
  28412. weight: math.unit(130, "lb"),
  28413. name: "Back",
  28414. image: {
  28415. source: "./media/characters/cecelia-swift/back.svg",
  28416. extra: 499 / 485,
  28417. bottom: 12 / 511
  28418. }
  28419. },
  28420. head: {
  28421. height: math.unit(0.90, "feet"),
  28422. name: "Head",
  28423. image: {
  28424. source: "./media/characters/cecelia-swift/head.svg"
  28425. }
  28426. },
  28427. rump: {
  28428. height: math.unit(1.75, "feet"),
  28429. name: "Rump",
  28430. image: {
  28431. source: "./media/characters/cecelia-swift/rump.svg"
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Normal",
  28438. height: math.unit(5 + 9 / 12, "feet"),
  28439. default: true
  28440. },
  28441. {
  28442. name: "Big",
  28443. height: math.unit(50, "feet")
  28444. },
  28445. {
  28446. name: "Macro",
  28447. height: math.unit(100, "feet")
  28448. },
  28449. {
  28450. name: "Macro+",
  28451. height: math.unit(500, "feet")
  28452. },
  28453. {
  28454. name: "Macro++",
  28455. height: math.unit(1000, "feet")
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(6, "feet"),
  28464. weight: math.unit(150, "lb"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/kaunan/front.svg",
  28468. extra: 2890 / 2523,
  28469. bottom: 49 / 2939
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(150, "feet"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(175, "cm"),
  28486. weight: math.unit(60, "kg"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/fei/front.svg",
  28490. extra: 1873/1723,
  28491. bottom: 53/1926
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Mortal",
  28498. height: math.unit(175, "cm")
  28499. },
  28500. {
  28501. name: "Normal",
  28502. height: math.unit(3500, "m"),
  28503. default: true
  28504. },
  28505. {
  28506. name: "Stroll",
  28507. height: math.unit(17.5, "km")
  28508. },
  28509. {
  28510. name: "Showoff",
  28511. height: math.unit(175, "km")
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(7, "feet"),
  28520. weight: math.unit(1000, "kg"),
  28521. name: "Front",
  28522. image: {
  28523. source: "./media/characters/edrax/front.svg",
  28524. extra: 2838 / 2550,
  28525. bottom: 130 / 2968
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Small",
  28532. height: math.unit(7, "feet")
  28533. },
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(1500, "meters")
  28537. },
  28538. {
  28539. name: "Mega",
  28540. height: math.unit(12000000, "km"),
  28541. default: true
  28542. },
  28543. {
  28544. name: "Megamacro",
  28545. height: math.unit(10600000, "lightyears")
  28546. },
  28547. {
  28548. name: "Hypermacro",
  28549. height: math.unit(256, "yottameters")
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(10, "feet"),
  28558. weight: math.unit(750, "lb"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/clove/front.svg",
  28562. extra: 1918/1751,
  28563. bottom: 52/1970
  28564. }
  28565. },
  28566. back: {
  28567. height: math.unit(10, "feet"),
  28568. weight: math.unit(750, "lb"),
  28569. name: "Back",
  28570. image: {
  28571. source: "./media/characters/clove/back.svg",
  28572. extra: 1912/1747,
  28573. bottom: 50/1962
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(10, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(4, "feet"),
  28590. weight: math.unit(50, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/alex-rabbit/front.svg",
  28594. extra: 507 / 458,
  28595. bottom: 18.5 / 527
  28596. }
  28597. },
  28598. back: {
  28599. height: math.unit(4, "feet"),
  28600. weight: math.unit(50, "lb"),
  28601. name: "Back",
  28602. image: {
  28603. source: "./media/characters/alex-rabbit/back.svg",
  28604. extra: 502 / 460,
  28605. bottom: 18.9 / 521
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(4, "feet"),
  28613. default: true
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(1 + 3 / 12, "feet"),
  28622. weight: math.unit(80, "lb"),
  28623. name: "Front",
  28624. image: {
  28625. source: "./media/characters/zander-rose/front.svg",
  28626. extra: 916 / 797,
  28627. bottom: 17 / 933
  28628. }
  28629. },
  28630. back: {
  28631. height: math.unit(1 + 3 / 12, "feet"),
  28632. weight: math.unit(80, "lb"),
  28633. name: "Back",
  28634. image: {
  28635. source: "./media/characters/zander-rose/back.svg",
  28636. extra: 903 / 779,
  28637. bottom: 31 / 934
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(1 + 3 / 12, "feet"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28651. {
  28652. anthro: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(150, "lb"),
  28655. name: "Anthro",
  28656. image: {
  28657. source: "./media/characters/razz/anthro.svg",
  28658. extra: 1437 / 1343,
  28659. bottom: 48 / 1485
  28660. }
  28661. },
  28662. feral: {
  28663. height: math.unit(6, "feet"),
  28664. weight: math.unit(150, "lb"),
  28665. name: "Feral",
  28666. image: {
  28667. source: "./media/characters/razz/feral.svg",
  28668. extra: 2569 / 1385,
  28669. bottom: 95 / 2664
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(6, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(9 + 4 / 12, "feet"),
  28686. weight: math.unit(500, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/morrigan/front.svg",
  28690. extra: 2707 / 2579,
  28691. bottom: 156 / 2863
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(9 + 4 / 12, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(5, "stories"),
  28708. weight: math.unit(4000, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/jenene/front.svg",
  28712. extra: 1780 / 1710,
  28713. bottom: 57 / 1837
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Normal",
  28720. height: math.unit(5, "stories"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28727. {
  28728. taurSfw: {
  28729. height: math.unit(10, "meters"),
  28730. weight: math.unit(17500, "kg"),
  28731. name: "Taur",
  28732. image: {
  28733. source: "./media/characters/faey/taur-sfw.svg",
  28734. extra: 1200 / 968,
  28735. bottom: 41 / 1241
  28736. }
  28737. },
  28738. chestmaw: {
  28739. height: math.unit(2.01, "meters"),
  28740. name: "Chestmaw",
  28741. image: {
  28742. source: "./media/characters/faey/chestmaw.svg"
  28743. }
  28744. },
  28745. foot: {
  28746. height: math.unit(2.43, "meters"),
  28747. name: "Foot",
  28748. image: {
  28749. source: "./media/characters/faey/foot.svg"
  28750. }
  28751. },
  28752. jaws: {
  28753. height: math.unit(1.66, "meters"),
  28754. name: "Jaws",
  28755. image: {
  28756. source: "./media/characters/faey/jaws.svg"
  28757. }
  28758. },
  28759. tongues: {
  28760. height: math.unit(2.01, "meters"),
  28761. name: "Tongues",
  28762. image: {
  28763. source: "./media/characters/faey/tongues.svg"
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Small",
  28770. height: math.unit(10, "meters"),
  28771. default: true
  28772. },
  28773. {
  28774. name: "Big",
  28775. height: math.unit(500000, "km")
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(7, "feet"),
  28784. weight: math.unit(275, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/roku/front.svg",
  28788. extra: 903 / 878,
  28789. bottom: 37 / 940
  28790. }
  28791. },
  28792. },
  28793. [
  28794. {
  28795. name: "Normal",
  28796. height: math.unit(7, "feet"),
  28797. default: true
  28798. },
  28799. {
  28800. name: "Macro",
  28801. height: math.unit(500, "feet")
  28802. },
  28803. {
  28804. name: "Megamacro",
  28805. height: math.unit(200, "miles")
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(6 + 2 / 12, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/lira/front.svg",
  28818. extra: 1727 / 1605,
  28819. bottom: 26 / 1753
  28820. }
  28821. },
  28822. back: {
  28823. height: math.unit(6 + 2 / 12, "feet"),
  28824. weight: math.unit(150, "lb"),
  28825. name: "Back",
  28826. image: {
  28827. source: "./media/characters/lira/back.svg",
  28828. extra: 1713/1621,
  28829. bottom: 20/1733
  28830. }
  28831. },
  28832. hand: {
  28833. height: math.unit(0.75, "feet"),
  28834. name: "Hand",
  28835. image: {
  28836. source: "./media/characters/lira/hand.svg"
  28837. }
  28838. },
  28839. maw: {
  28840. height: math.unit(0.65, "feet"),
  28841. name: "Maw",
  28842. image: {
  28843. source: "./media/characters/lira/maw.svg"
  28844. }
  28845. },
  28846. pawDigi: {
  28847. height: math.unit(1.6, "feet"),
  28848. name: "Paw Digi",
  28849. image: {
  28850. source: "./media/characters/lira/paw-digi.svg"
  28851. }
  28852. },
  28853. pawPlanti: {
  28854. height: math.unit(1.4, "feet"),
  28855. name: "Paw Planti",
  28856. image: {
  28857. source: "./media/characters/lira/paw-planti.svg"
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(6 + 2 / 12, "feet"),
  28865. default: true
  28866. },
  28867. {
  28868. name: "Macro",
  28869. height: math.unit(100, "feet")
  28870. },
  28871. {
  28872. name: "Macro²",
  28873. height: math.unit(1600, "feet")
  28874. },
  28875. {
  28876. name: "Planetary",
  28877. height: math.unit(20, "earths")
  28878. },
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28883. {
  28884. front: {
  28885. height: math.unit(6, "feet"),
  28886. weight: math.unit(150, "lb"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/hadjet/front.svg",
  28890. extra: 1480 / 1346,
  28891. bottom: 26 / 1506
  28892. }
  28893. },
  28894. frontNsfw: {
  28895. height: math.unit(6, "feet"),
  28896. weight: math.unit(150, "lb"),
  28897. name: "Front (NSFW)",
  28898. image: {
  28899. source: "./media/characters/hadjet/front-nsfw.svg",
  28900. extra: 1440 / 1358,
  28901. bottom: 52 / 1492
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(10, "stories"),
  28909. default: true
  28910. },
  28911. {
  28912. name: "Megamacro",
  28913. height: math.unit(1.5, "miles")
  28914. },
  28915. {
  28916. name: "Megamacro+",
  28917. height: math.unit(5, "miles")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28923. {
  28924. side: {
  28925. height: math.unit(106, "feet"),
  28926. weight: math.unit(500, "tonnes"),
  28927. name: "Side",
  28928. image: {
  28929. source: "./media/characters/kodran/side.svg",
  28930. extra: 553 / 480,
  28931. bottom: 33 / 586
  28932. }
  28933. },
  28934. front: {
  28935. height: math.unit(132, "feet"),
  28936. weight: math.unit(500, "tonnes"),
  28937. name: "Front",
  28938. image: {
  28939. source: "./media/characters/kodran/front.svg",
  28940. extra: 667 / 643,
  28941. bottom: 42 / 709
  28942. }
  28943. },
  28944. flying: {
  28945. height: math.unit(350, "feet"),
  28946. weight: math.unit(500, "tonnes"),
  28947. name: "Flying",
  28948. image: {
  28949. source: "./media/characters/kodran/flying.svg"
  28950. }
  28951. },
  28952. foot: {
  28953. height: math.unit(33, "feet"),
  28954. name: "Foot",
  28955. image: {
  28956. source: "./media/characters/kodran/foot.svg"
  28957. }
  28958. },
  28959. footFront: {
  28960. height: math.unit(19, "feet"),
  28961. name: "Foot (Front)",
  28962. image: {
  28963. source: "./media/characters/kodran/foot-front.svg",
  28964. extra: 261 / 261,
  28965. bottom: 91 / 352
  28966. }
  28967. },
  28968. headFront: {
  28969. height: math.unit(53, "feet"),
  28970. name: "Head (Front)",
  28971. image: {
  28972. source: "./media/characters/kodran/head-front.svg"
  28973. }
  28974. },
  28975. headSide: {
  28976. height: math.unit(65, "feet"),
  28977. name: "Head (Side)",
  28978. image: {
  28979. source: "./media/characters/kodran/head-side.svg"
  28980. }
  28981. },
  28982. throat: {
  28983. height: math.unit(79, "feet"),
  28984. name: "Throat",
  28985. image: {
  28986. source: "./media/characters/kodran/throat.svg"
  28987. }
  28988. },
  28989. },
  28990. [
  28991. {
  28992. name: "Large",
  28993. height: math.unit(106, "feet"),
  28994. default: true
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29000. {
  29001. side: {
  29002. height: math.unit(11, "feet"),
  29003. weight: math.unit(150, "lb"),
  29004. name: "Side",
  29005. image: {
  29006. source: "./media/characters/pyxaron/side.svg",
  29007. extra: 305 / 195,
  29008. bottom: 17 / 322
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(11, "feet"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(6, "feet"),
  29025. weight: math.unit(150, "lb"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/meep/front.svg",
  29029. extra: 88 / 80,
  29030. bottom: 6 / 94
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Fun Sized",
  29037. height: math.unit(2, "inches"),
  29038. default: true
  29039. },
  29040. {
  29041. name: "Friend Sized",
  29042. height: math.unit(8, "inches")
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(15, "feet"),
  29051. weight: math.unit(2500, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/holly-rabbit/front.svg",
  29055. extra: 1433 / 1233,
  29056. bottom: 125 / 1558
  29057. }
  29058. },
  29059. dick: {
  29060. height: math.unit(4.6, "feet"),
  29061. name: "Dick",
  29062. image: {
  29063. source: "./media/characters/holly-rabbit/dick.svg"
  29064. }
  29065. },
  29066. },
  29067. [
  29068. {
  29069. name: "Normal",
  29070. height: math.unit(15, "feet"),
  29071. default: true
  29072. },
  29073. {
  29074. name: "Macro",
  29075. height: math.unit(250, "feet")
  29076. },
  29077. {
  29078. name: "Macro+",
  29079. height: math.unit(2500, "feet")
  29080. },
  29081. ]
  29082. ))
  29083. characterMakers.push(() => makeCharacter(
  29084. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29085. {
  29086. front: {
  29087. height: math.unit(3.02, "meters"),
  29088. weight: math.unit(500, "kg"),
  29089. name: "Front",
  29090. image: {
  29091. source: "./media/characters/drena/front.svg",
  29092. extra: 282 / 243,
  29093. bottom: 8 / 290
  29094. }
  29095. },
  29096. side: {
  29097. height: math.unit(3.02, "meters"),
  29098. weight: math.unit(500, "kg"),
  29099. name: "Side",
  29100. image: {
  29101. source: "./media/characters/drena/side.svg",
  29102. extra: 280 / 245,
  29103. bottom: 10 / 290
  29104. }
  29105. },
  29106. back: {
  29107. height: math.unit(3.02, "meters"),
  29108. weight: math.unit(500, "kg"),
  29109. name: "Back",
  29110. image: {
  29111. source: "./media/characters/drena/back.svg",
  29112. extra: 278 / 243,
  29113. bottom: 2 / 280
  29114. }
  29115. },
  29116. foot: {
  29117. height: math.unit(0.75, "meters"),
  29118. name: "Foot",
  29119. image: {
  29120. source: "./media/characters/drena/foot.svg"
  29121. }
  29122. },
  29123. maw: {
  29124. height: math.unit(0.82, "meters"),
  29125. name: "Maw",
  29126. image: {
  29127. source: "./media/characters/drena/maw.svg"
  29128. }
  29129. },
  29130. rump: {
  29131. height: math.unit(0.93, "meters"),
  29132. name: "Rump",
  29133. image: {
  29134. source: "./media/characters/drena/rump.svg"
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(3.02, "meters"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(6 + 4 / 12, "feet"),
  29151. weight: math.unit(250, "lb"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/remmyzilla/front.svg",
  29155. extra: 4033 / 3588,
  29156. bottom: 123 / 4156
  29157. }
  29158. },
  29159. back: {
  29160. height: math.unit(6 + 4 / 12, "feet"),
  29161. weight: math.unit(250, "lb"),
  29162. name: "Back",
  29163. image: {
  29164. source: "./media/characters/remmyzilla/back.svg",
  29165. extra: 2687 / 2555,
  29166. bottom: 48 / 2735
  29167. }
  29168. },
  29169. paw: {
  29170. height: math.unit(1.73, "feet"),
  29171. name: "Paw",
  29172. image: {
  29173. source: "./media/characters/remmyzilla/paw.svg"
  29174. }
  29175. },
  29176. maw: {
  29177. height: math.unit(1.73, "feet"),
  29178. name: "Maw",
  29179. image: {
  29180. source: "./media/characters/remmyzilla/maw.svg"
  29181. }
  29182. },
  29183. },
  29184. [
  29185. {
  29186. name: "Normal",
  29187. height: math.unit(6 + 4 / 12, "feet")
  29188. },
  29189. {
  29190. name: "Minimacro",
  29191. height: math.unit(12 + 8 / 12, "feet")
  29192. },
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(640, "feet"),
  29196. default: true
  29197. },
  29198. {
  29199. name: "Megamacro",
  29200. height: math.unit(6400, "feet")
  29201. },
  29202. {
  29203. name: "Gigamacro",
  29204. height: math.unit(64000, "miles")
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(2.5, "meters"),
  29213. weight: math.unit(300, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/lawrence/front.svg",
  29217. extra: 357 / 335,
  29218. bottom: 30 / 387
  29219. }
  29220. },
  29221. back: {
  29222. height: math.unit(2.5, "meters"),
  29223. weight: math.unit(300, "lb"),
  29224. name: "Back",
  29225. image: {
  29226. source: "./media/characters/lawrence/back.svg",
  29227. extra: 357 / 338,
  29228. bottom: 16 / 373
  29229. }
  29230. },
  29231. head: {
  29232. height: math.unit(0.9, "meter"),
  29233. name: "Head",
  29234. image: {
  29235. source: "./media/characters/lawrence/head.svg"
  29236. }
  29237. },
  29238. maw: {
  29239. height: math.unit(0.7, "meter"),
  29240. name: "Maw",
  29241. image: {
  29242. source: "./media/characters/lawrence/maw.svg"
  29243. }
  29244. },
  29245. footBottom: {
  29246. height: math.unit(0.5, "meter"),
  29247. name: "Foot (Bottom)",
  29248. image: {
  29249. source: "./media/characters/lawrence/foot-bottom.svg"
  29250. }
  29251. },
  29252. footTop: {
  29253. height: math.unit(0.5, "meter"),
  29254. name: "Foot (Top)",
  29255. image: {
  29256. source: "./media/characters/lawrence/foot-top.svg"
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(2.5, "meters"),
  29264. default: true
  29265. },
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(95, "meters")
  29269. },
  29270. {
  29271. name: "Megamacro",
  29272. height: math.unit(150, "km")
  29273. },
  29274. ]
  29275. ))
  29276. characterMakers.push(() => makeCharacter(
  29277. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29278. {
  29279. front: {
  29280. height: math.unit(4.2, "meters"),
  29281. name: "Front",
  29282. image: {
  29283. source: "./media/characters/sydney/front.svg",
  29284. extra: 1323 / 1277,
  29285. bottom: 111 / 1434
  29286. }
  29287. },
  29288. },
  29289. [
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(4.2, "meters"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29299. {
  29300. back: {
  29301. height: math.unit(201, "feet"),
  29302. name: "Back",
  29303. image: {
  29304. source: "./media/characters/jessica/back.svg",
  29305. extra: 273 / 259,
  29306. bottom: 7 / 280
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(201, "feet"),
  29314. default: true
  29315. },
  29316. {
  29317. name: "Megamacro",
  29318. height: math.unit(8, "miles")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29324. {
  29325. side: {
  29326. height: math.unit(5.6, "m"),
  29327. weight: math.unit(8000, "kg"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/victoria/side.svg",
  29331. extra: 1542/1229,
  29332. bottom: 124/1666
  29333. }
  29334. },
  29335. maw: {
  29336. height: math.unit(7.14, "feet"),
  29337. name: "Maw",
  29338. image: {
  29339. source: "./media/characters/victoria/maw.svg"
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(5.6, "m"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29353. {
  29354. front: {
  29355. height: math.unit(5 + 6 / 12, "feet"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/cat/front.svg",
  29359. extra: 1449/1295,
  29360. bottom: 34/1483
  29361. },
  29362. form: "cat",
  29363. default: true
  29364. },
  29365. back: {
  29366. height: math.unit(5 + 6 / 12, "feet"),
  29367. name: "Back",
  29368. image: {
  29369. source: "./media/characters/cat/back.svg",
  29370. extra: 1466/1301,
  29371. bottom: 19/1485
  29372. },
  29373. form: "cat"
  29374. },
  29375. taur: {
  29376. height: math.unit(7, "feet"),
  29377. name: "Taur",
  29378. image: {
  29379. source: "./media/characters/cat/taur.svg",
  29380. extra: 1389/1233,
  29381. bottom: 83/1472
  29382. },
  29383. form: "taur",
  29384. default: true
  29385. },
  29386. lucarioFront: {
  29387. height: math.unit(4, "feet"),
  29388. name: "Lucario (Front)",
  29389. image: {
  29390. source: "./media/characters/cat/lucario-front.svg",
  29391. extra: 1149/1019,
  29392. bottom: 84/1233
  29393. },
  29394. form: "lucario",
  29395. default: true
  29396. },
  29397. lucarioBack: {
  29398. height: math.unit(4, "feet"),
  29399. name: "Lucario (Back)",
  29400. image: {
  29401. source: "./media/characters/cat/lucario-back.svg",
  29402. extra: 1190/1059,
  29403. bottom: 33/1223
  29404. },
  29405. form: "lucario"
  29406. },
  29407. megaLucario: {
  29408. height: math.unit(4, "feet"),
  29409. name: "Mega Lucario",
  29410. image: {
  29411. source: "./media/characters/cat/mega-lucario.svg",
  29412. extra: 1515 / 1319,
  29413. bottom: 63 / 1578
  29414. },
  29415. form: "lucario"
  29416. },
  29417. nickit: {
  29418. height: math.unit(2, "feet"),
  29419. name: "Nickit",
  29420. image: {
  29421. source: "./media/characters/cat/nickit.svg",
  29422. extra: 1980 / 1585,
  29423. bottom: 102 / 2082
  29424. },
  29425. form: "nickit",
  29426. default: true
  29427. },
  29428. lopunnyFront: {
  29429. height: math.unit(5, "feet"),
  29430. name: "Lopunny (Front)",
  29431. image: {
  29432. source: "./media/characters/cat/lopunny-front.svg",
  29433. extra: 1782 / 1469,
  29434. bottom: 38 / 1820
  29435. },
  29436. form: "lopunny",
  29437. default: true
  29438. },
  29439. lopunnyBack: {
  29440. height: math.unit(5, "feet"),
  29441. name: "Lopunny (Back)",
  29442. image: {
  29443. source: "./media/characters/cat/lopunny-back.svg",
  29444. extra: 1660 / 1490,
  29445. bottom: 25 / 1685
  29446. },
  29447. form: "lopunny"
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Really small",
  29453. height: math.unit(1, "nm")
  29454. },
  29455. {
  29456. name: "Micro",
  29457. height: math.unit(5, "inches")
  29458. },
  29459. {
  29460. name: "Normal",
  29461. height: math.unit(5 + 6 / 12, "feet"),
  29462. default: true
  29463. },
  29464. {
  29465. name: "Macro",
  29466. height: math.unit(50, "feet")
  29467. },
  29468. {
  29469. name: "Macro+",
  29470. height: math.unit(150, "feet")
  29471. },
  29472. {
  29473. name: "Megamacro",
  29474. height: math.unit(100, "miles")
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29480. {
  29481. front: {
  29482. height: math.unit(63.4, "meters"),
  29483. weight: math.unit(3.28349e+6, "kilograms"),
  29484. name: "Front",
  29485. image: {
  29486. source: "./media/characters/kirina-violet/front.svg",
  29487. extra: 2812 / 2725,
  29488. bottom: 0 / 2812
  29489. }
  29490. },
  29491. back: {
  29492. height: math.unit(63.4, "meters"),
  29493. weight: math.unit(3.28349e+6, "kilograms"),
  29494. name: "Back",
  29495. image: {
  29496. source: "./media/characters/kirina-violet/back.svg",
  29497. extra: 2812 / 2725,
  29498. bottom: 0 / 2812
  29499. }
  29500. },
  29501. mouth: {
  29502. height: math.unit(4.35, "meters"),
  29503. name: "Mouth",
  29504. image: {
  29505. source: "./media/characters/kirina-violet/mouth.svg"
  29506. }
  29507. },
  29508. paw: {
  29509. height: math.unit(5.6, "meters"),
  29510. name: "Paw",
  29511. image: {
  29512. source: "./media/characters/kirina-violet/paw.svg"
  29513. }
  29514. },
  29515. tail: {
  29516. height: math.unit(18, "meters"),
  29517. name: "Tail",
  29518. image: {
  29519. source: "./media/characters/kirina-violet/tail.svg"
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Macro",
  29526. height: math.unit(63.4, "meters"),
  29527. default: true
  29528. },
  29529. ]
  29530. ))
  29531. characterMakers.push(() => makeCharacter(
  29532. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29533. {
  29534. front: {
  29535. height: math.unit(75, "feet"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/cat-gigachu/front.svg",
  29539. extra: 1239/1027,
  29540. bottom: 32/1271
  29541. }
  29542. },
  29543. back: {
  29544. height: math.unit(75, "feet"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/cat-gigachu/back.svg",
  29548. extra: 1229/1030,
  29549. bottom: 9/1238
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Dynamax",
  29556. height: math.unit(75, "feet"),
  29557. default: true
  29558. },
  29559. ]
  29560. ))
  29561. characterMakers.push(() => makeCharacter(
  29562. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29563. {
  29564. front: {
  29565. height: math.unit(6, "feet"),
  29566. weight: math.unit(150, "lb"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/sfaiyan/front.svg",
  29570. extra: 999 / 978,
  29571. bottom: 5 / 1004
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(1.82, "meters")
  29579. },
  29580. {
  29581. name: "Giant",
  29582. height: math.unit(2.27, "km"),
  29583. default: true
  29584. },
  29585. ]
  29586. ))
  29587. characterMakers.push(() => makeCharacter(
  29588. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29589. {
  29590. front: {
  29591. height: math.unit(179, "cm"),
  29592. weight: math.unit(100, "kg"),
  29593. name: "Front",
  29594. image: {
  29595. source: "./media/characters/raunehkeli/front.svg",
  29596. extra: 1934 / 1926,
  29597. bottom: 0 / 1934
  29598. }
  29599. },
  29600. },
  29601. [
  29602. {
  29603. name: "Normal",
  29604. height: math.unit(179, "cm")
  29605. },
  29606. {
  29607. name: "Maximum",
  29608. height: math.unit(575, "meters"),
  29609. default: true
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(6, "feet"),
  29618. weight: math.unit(150, "lb"),
  29619. name: "Front",
  29620. image: {
  29621. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29622. extra: 2625 / 2518,
  29623. bottom: 60 / 2685
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(6 + 2 / 12, "feet")
  29631. },
  29632. {
  29633. name: "Macro",
  29634. height: math.unit(1180, "feet"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(5 + 6 / 12, "feet"),
  29644. weight: math.unit(108, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/lilith-zott/front.svg",
  29648. extra: 2510 / 2238,
  29649. bottom: 100 / 2610
  29650. }
  29651. },
  29652. frontDressed: {
  29653. height: math.unit(5 + 6 / 12, "feet"),
  29654. weight: math.unit(108, "lb"),
  29655. name: "Front (Dressed)",
  29656. image: {
  29657. source: "./media/characters/lilith-zott/front-dressed.svg",
  29658. extra: 2510 / 2238,
  29659. bottom: 100 / 2610
  29660. }
  29661. },
  29662. },
  29663. [
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(5 + 6 / 12, "feet")
  29667. },
  29668. {
  29669. name: "Macro",
  29670. height: math.unit(1030, "feet"),
  29671. default: true
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(6, "feet"),
  29680. weight: math.unit(150, "lb"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29684. extra: 2567 / 2435,
  29685. bottom: 39 / 2606
  29686. }
  29687. },
  29688. frontSuper: {
  29689. height: math.unit(6, "feet"),
  29690. name: "Front (Super)",
  29691. image: {
  29692. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29693. extra: 2567 / 2435,
  29694. bottom: 39 / 2606
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(5 + 10 / 12, "feet")
  29702. },
  29703. {
  29704. name: "Macro",
  29705. height: math.unit(1100, "feet"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29712. {
  29713. front: {
  29714. height: math.unit(100, "miles"),
  29715. name: "Front",
  29716. image: {
  29717. source: "./media/characters/sona/front.svg",
  29718. extra: 2433 / 2201,
  29719. bottom: 53 / 2486
  29720. }
  29721. },
  29722. foot: {
  29723. height: math.unit(16.1, "miles"),
  29724. name: "Foot",
  29725. image: {
  29726. source: "./media/characters/sona/foot.svg"
  29727. }
  29728. },
  29729. },
  29730. [
  29731. {
  29732. name: "Macro",
  29733. height: math.unit(100, "miles"),
  29734. default: true
  29735. },
  29736. ]
  29737. ))
  29738. characterMakers.push(() => makeCharacter(
  29739. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29740. {
  29741. front: {
  29742. height: math.unit(6, "feet"),
  29743. weight: math.unit(150, "lb"),
  29744. name: "Front",
  29745. image: {
  29746. source: "./media/characters/bailey/front.svg",
  29747. extra: 1778 / 1724,
  29748. bottom: 30 / 1808
  29749. }
  29750. },
  29751. },
  29752. [
  29753. {
  29754. name: "Micro",
  29755. height: math.unit(4, "inches")
  29756. },
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(5 + 5 / 12, "feet"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(250, "feet")
  29765. },
  29766. {
  29767. name: "Megamacro",
  29768. height: math.unit(100, "miles")
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(5 + 2 / 12, "feet"),
  29777. weight: math.unit(120, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/snaps/front.svg",
  29781. extra: 2370 / 2177,
  29782. bottom: 48 / 2418
  29783. }
  29784. },
  29785. back: {
  29786. height: math.unit(5 + 2 / 12, "feet"),
  29787. weight: math.unit(120, "lb"),
  29788. name: "Back",
  29789. image: {
  29790. source: "./media/characters/snaps/back.svg",
  29791. extra: 2408 / 2258,
  29792. bottom: 15 / 2423
  29793. }
  29794. },
  29795. },
  29796. [
  29797. {
  29798. name: "Micro",
  29799. height: math.unit(9, "inches")
  29800. },
  29801. {
  29802. name: "Normal",
  29803. height: math.unit(5 + 2 / 12, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Mini Macro",
  29808. height: math.unit(10, "feet")
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(1.8, "meters"),
  29817. weight: math.unit(85, "kg"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/azteck/front.svg",
  29821. extra: 2815 / 2625,
  29822. bottom: 89 / 2904
  29823. }
  29824. },
  29825. back: {
  29826. height: math.unit(1.8, "meters"),
  29827. weight: math.unit(85, "kg"),
  29828. name: "Back",
  29829. image: {
  29830. source: "./media/characters/azteck/back.svg",
  29831. extra: 2856 / 2648,
  29832. bottom: 85 / 2941
  29833. }
  29834. },
  29835. frontDressed: {
  29836. height: math.unit(1.8, "meters"),
  29837. weight: math.unit(85, "kg"),
  29838. name: "Front (Dressed)",
  29839. image: {
  29840. source: "./media/characters/azteck/front-dressed.svg",
  29841. extra: 2147 / 2003,
  29842. bottom: 68 / 2215
  29843. }
  29844. },
  29845. head: {
  29846. height: math.unit(0.47, "meters"),
  29847. weight: math.unit(85, "kg"),
  29848. name: "Head",
  29849. image: {
  29850. source: "./media/characters/azteck/head.svg"
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Bite sized",
  29857. height: math.unit(16, "cm")
  29858. },
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(1.8, "meters"),
  29862. default: true
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(6, "feet"),
  29871. weight: math.unit(150, "lb"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/pidge/front.svg",
  29875. extra: 620 / 588,
  29876. bottom: 9 / 629
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(6, "feet"),
  29881. weight: math.unit(150, "lb"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/pidge/back.svg",
  29885. extra: 620 / 588,
  29886. bottom: 9 / 629
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Macro",
  29893. height: math.unit(1, "mile"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(6, "feet"),
  29903. weight: math.unit(150, "lb"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/en/front.svg",
  29907. extra: 1697 / 1563,
  29908. bottom: 103 / 1800
  29909. }
  29910. },
  29911. back: {
  29912. height: math.unit(6, "feet"),
  29913. weight: math.unit(150, "lb"),
  29914. name: "Back",
  29915. image: {
  29916. source: "./media/characters/en/back.svg",
  29917. extra: 1700 / 1570,
  29918. bottom: 51 / 1751
  29919. }
  29920. },
  29921. frontDressed: {
  29922. height: math.unit(6, "feet"),
  29923. weight: math.unit(150, "lb"),
  29924. name: "Front (Dressed)",
  29925. image: {
  29926. source: "./media/characters/en/front-dressed.svg",
  29927. extra: 1697 / 1563,
  29928. bottom: 103 / 1800
  29929. }
  29930. },
  29931. backDressed: {
  29932. height: math.unit(6, "feet"),
  29933. weight: math.unit(150, "lb"),
  29934. name: "Back (Dressed)",
  29935. image: {
  29936. source: "./media/characters/en/back-dressed.svg",
  29937. extra: 1700 / 1570,
  29938. bottom: 51 / 1751
  29939. }
  29940. },
  29941. },
  29942. [
  29943. {
  29944. name: "Macro",
  29945. height: math.unit(210, "feet"),
  29946. default: true
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(6, "feet"),
  29955. weight: math.unit(150, "lb"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/haze-orris/front.svg",
  29959. extra: 3975 / 3525,
  29960. bottom: 137 / 4112
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Micro",
  29967. height: math.unit(150, "mm"),
  29968. default: true
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(6, "feet"),
  29977. weight: math.unit(150, "lb"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/casselene-yaro/front.svg",
  29981. extra: 4721 / 4541,
  29982. bottom: 82 / 4803
  29983. }
  29984. },
  29985. back: {
  29986. height: math.unit(6, "feet"),
  29987. weight: math.unit(150, "lb"),
  29988. name: "Back",
  29989. image: {
  29990. source: "./media/characters/casselene-yaro/back.svg",
  29991. extra: 4569 / 4377,
  29992. bottom: 69 / 4638
  29993. }
  29994. },
  29995. frontDressed: {
  29996. height: math.unit(6, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Front-dressed",
  29999. image: {
  30000. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30001. extra: 4721 / 4541,
  30002. bottom: 82 / 4803
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Macro",
  30009. height: math.unit(190, "feet"),
  30010. default: true
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30016. {
  30017. front: {
  30018. height: math.unit(6, "feet"),
  30019. weight: math.unit(150, "lb"),
  30020. name: "Front",
  30021. image: {
  30022. source: "./media/characters/myra-rue-delore/front.svg",
  30023. extra: 1340 / 1308,
  30024. bottom: 67 / 1407
  30025. }
  30026. },
  30027. back: {
  30028. height: math.unit(6, "feet"),
  30029. weight: math.unit(150, "lb"),
  30030. name: "Back",
  30031. image: {
  30032. source: "./media/characters/myra-rue-delore/back.svg",
  30033. extra: 1341 / 1310,
  30034. bottom: 40 / 1381
  30035. }
  30036. },
  30037. frontDressed: {
  30038. height: math.unit(6, "feet"),
  30039. weight: math.unit(150, "lb"),
  30040. name: "Front (Dressed)",
  30041. image: {
  30042. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30043. extra: 1340 / 1308,
  30044. bottom: 67 / 1407
  30045. }
  30046. },
  30047. },
  30048. [
  30049. {
  30050. name: "Macro",
  30051. height: math.unit(150, "feet"),
  30052. default: true
  30053. },
  30054. ]
  30055. ))
  30056. characterMakers.push(() => makeCharacter(
  30057. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30058. {
  30059. front: {
  30060. height: math.unit(10, "feet"),
  30061. weight: math.unit(15015, "lb"),
  30062. name: "Front",
  30063. image: {
  30064. source: "./media/characters/fem!plat/front.svg",
  30065. extra: 2799 / 2604,
  30066. bottom: 149 / 2948
  30067. }
  30068. },
  30069. },
  30070. [
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(10, "feet"),
  30074. default: true
  30075. },
  30076. {
  30077. name: "Macro",
  30078. height: math.unit(100, "feet")
  30079. },
  30080. {
  30081. name: "Megamacro",
  30082. height: math.unit(1000, "feet")
  30083. },
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30088. {
  30089. front: {
  30090. height: math.unit(15 + 5 / 12, "feet"),
  30091. weight: math.unit(4600, "lb"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/neapolitan-ananassa/front.svg",
  30095. extra: 2903 / 2736,
  30096. bottom: 0 / 2903
  30097. }
  30098. },
  30099. side: {
  30100. height: math.unit(15 + 5 / 12, "feet"),
  30101. weight: math.unit(4600, "lb"),
  30102. name: "Side",
  30103. image: {
  30104. source: "./media/characters/neapolitan-ananassa/side.svg",
  30105. extra: 2925 / 2719,
  30106. bottom: 0 / 2925
  30107. }
  30108. },
  30109. back: {
  30110. height: math.unit(15 + 5 / 12, "feet"),
  30111. weight: math.unit(4600, "lb"),
  30112. name: "Back",
  30113. image: {
  30114. source: "./media/characters/neapolitan-ananassa/back.svg",
  30115. extra: 2903 / 2736,
  30116. bottom: 0 / 2903
  30117. }
  30118. },
  30119. },
  30120. [
  30121. {
  30122. name: "Normal",
  30123. height: math.unit(15 + 5 / 12, "feet"),
  30124. default: true
  30125. },
  30126. {
  30127. name: "Post-Millenium",
  30128. height: math.unit(35 + 5 / 12, "feet")
  30129. },
  30130. {
  30131. name: "Post-Era",
  30132. height: math.unit(450 + 5 / 12, "feet")
  30133. },
  30134. ]
  30135. ))
  30136. characterMakers.push(() => makeCharacter(
  30137. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30138. {
  30139. front: {
  30140. height: math.unit(300, "meters"),
  30141. weight: math.unit(125000, "tonnes"),
  30142. name: "Front",
  30143. image: {
  30144. source: "./media/characters/pazuzu/front.svg",
  30145. extra: 877 / 794,
  30146. bottom: 47 / 924
  30147. }
  30148. },
  30149. },
  30150. [
  30151. {
  30152. name: "Macro",
  30153. height: math.unit(300, "meters"),
  30154. default: true
  30155. },
  30156. ]
  30157. ))
  30158. characterMakers.push(() => makeCharacter(
  30159. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30160. {
  30161. side: {
  30162. height: math.unit(10 + 7 / 12, "feet"),
  30163. weight: math.unit(2.5, "tons"),
  30164. name: "Side",
  30165. image: {
  30166. source: "./media/characters/aasha/side.svg",
  30167. extra: 1345 / 1245,
  30168. bottom: 111 / 1456
  30169. }
  30170. },
  30171. back: {
  30172. height: math.unit(10 + 7 / 12, "feet"),
  30173. weight: math.unit(2.5, "tons"),
  30174. name: "Back",
  30175. image: {
  30176. source: "./media/characters/aasha/back.svg",
  30177. extra: 1133 / 1057,
  30178. bottom: 257 / 1390
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(10 + 7 / 12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30192. {
  30193. front: {
  30194. height: math.unit(6 + 3 / 12, "feet"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/nevan/front.svg",
  30198. extra: 704 / 704,
  30199. bottom: 28 / 732
  30200. }
  30201. },
  30202. back: {
  30203. height: math.unit(6 + 3 / 12, "feet"),
  30204. name: "Back",
  30205. image: {
  30206. source: "./media/characters/nevan/back.svg",
  30207. extra: 714 / 714,
  30208. bottom: 21 / 735
  30209. }
  30210. },
  30211. frontFlaccid: {
  30212. height: math.unit(6 + 3 / 12, "feet"),
  30213. name: "Front (Flaccid)",
  30214. image: {
  30215. source: "./media/characters/nevan/front-flaccid.svg",
  30216. extra: 704 / 704,
  30217. bottom: 28 / 732
  30218. }
  30219. },
  30220. frontErect: {
  30221. height: math.unit(6 + 3 / 12, "feet"),
  30222. name: "Front (Erect)",
  30223. image: {
  30224. source: "./media/characters/nevan/front-erect.svg",
  30225. extra: 704 / 704,
  30226. bottom: 28 / 732
  30227. }
  30228. },
  30229. backFlaccid: {
  30230. height: math.unit(6 + 3 / 12, "feet"),
  30231. name: "Back (Flaccid)",
  30232. image: {
  30233. source: "./media/characters/nevan/back-flaccid.svg",
  30234. extra: 714 / 714,
  30235. bottom: 21 / 735
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(6 + 3 / 12, "feet"),
  30243. default: true
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(4, "feet"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/arhan/front.svg",
  30255. extra: 3368 / 3133,
  30256. bottom: 0 / 3368
  30257. }
  30258. },
  30259. side: {
  30260. height: math.unit(4, "feet"),
  30261. name: "Side",
  30262. image: {
  30263. source: "./media/characters/arhan/side.svg",
  30264. extra: 3347 / 3105,
  30265. bottom: 0 / 3347
  30266. }
  30267. },
  30268. tongue: {
  30269. height: math.unit(1.42, "feet"),
  30270. name: "Tongue",
  30271. image: {
  30272. source: "./media/characters/arhan/tongue.svg"
  30273. }
  30274. },
  30275. head: {
  30276. height: math.unit(0.85, "feet"),
  30277. name: "Head",
  30278. image: {
  30279. source: "./media/characters/arhan/head.svg"
  30280. }
  30281. },
  30282. },
  30283. [
  30284. {
  30285. name: "Normal",
  30286. height: math.unit(4, "feet"),
  30287. default: true
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(5 + 7.5 / 12, "feet"),
  30296. weight: math.unit(120, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/digi-duncan/front.svg",
  30300. extra: 330 / 326,
  30301. bottom: 16 / 346
  30302. }
  30303. },
  30304. side: {
  30305. height: math.unit(5 + 7.5 / 12, "feet"),
  30306. weight: math.unit(120, "lb"),
  30307. name: "Side",
  30308. image: {
  30309. source: "./media/characters/digi-duncan/side.svg",
  30310. extra: 341 / 337,
  30311. bottom: 1 / 342
  30312. }
  30313. },
  30314. back: {
  30315. height: math.unit(5 + 7.5 / 12, "feet"),
  30316. weight: math.unit(120, "lb"),
  30317. name: "Back",
  30318. image: {
  30319. source: "./media/characters/digi-duncan/back.svg",
  30320. extra: 330 / 326,
  30321. bottom: 12 / 342
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Speck",
  30328. height: math.unit(0.25, "mm")
  30329. },
  30330. {
  30331. name: "Micro",
  30332. height: math.unit(5, "mm")
  30333. },
  30334. {
  30335. name: "Tiny",
  30336. height: math.unit(0.5, "inches"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Human",
  30341. height: math.unit(5 + 7.5 / 12, "feet")
  30342. },
  30343. {
  30344. name: "Minigiant",
  30345. height: math.unit(8 + 5.25, "feet")
  30346. },
  30347. {
  30348. name: "Giant",
  30349. height: math.unit(2000, "feet")
  30350. },
  30351. {
  30352. name: "Mega",
  30353. height: math.unit(371.1, "miles")
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30359. {
  30360. front: {
  30361. height: math.unit(2, "meters"),
  30362. weight: math.unit(350, "kg"),
  30363. name: "Front",
  30364. image: {
  30365. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30366. extra: 898 / 838,
  30367. bottom: 9 / 907
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Micro",
  30374. height: math.unit(8, "meters")
  30375. },
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(50, "meters"),
  30379. default: true
  30380. },
  30381. {
  30382. name: "Macro",
  30383. height: math.unit(500, "meters")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(6 + 6 / 12, "feet"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/khardesh/front.svg",
  30395. extra: 1788/1596,
  30396. bottom: 66/1854
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(6 + 6 / 12, "feet"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/khardesh/back.svg",
  30404. extra: 1781/1584,
  30405. bottom: 68/1849
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Normal",
  30412. height: math.unit(6 + 6 / 12, "feet"),
  30413. default: true
  30414. },
  30415. {
  30416. name: "Normal+",
  30417. height: math.unit(4, "meters")
  30418. },
  30419. {
  30420. name: "Macro",
  30421. height: math.unit(50, "meters")
  30422. },
  30423. {
  30424. name: "Macro+",
  30425. height: math.unit(100, "meters")
  30426. },
  30427. {
  30428. name: "Megamacro",
  30429. height: math.unit(20, "km")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30435. {
  30436. front: {
  30437. height: math.unit(6, "feet"),
  30438. weight: math.unit(150, "lb"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/kosho/front.svg",
  30442. extra: 1847 / 1847,
  30443. bottom: 86 / 1933
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Second-stage micro",
  30450. height: math.unit(0.5, "inches")
  30451. },
  30452. {
  30453. name: "First-stage micro",
  30454. height: math.unit(6, "inches")
  30455. },
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(6, "feet"),
  30459. default: true
  30460. },
  30461. {
  30462. name: "First-stage macro",
  30463. height: math.unit(72, "feet")
  30464. },
  30465. {
  30466. name: "Second-stage macro",
  30467. height: math.unit(864, "feet")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30473. {
  30474. normal: {
  30475. height: math.unit(4 + 6 / 12, "feet"),
  30476. name: "Normal",
  30477. image: {
  30478. source: "./media/characters/hydra/normal.svg",
  30479. extra: 2833 / 2634,
  30480. bottom: 68 / 2901
  30481. }
  30482. },
  30483. smol: {
  30484. height: math.unit(0.705, "inches"),
  30485. name: "Smol",
  30486. image: {
  30487. source: "./media/characters/hydra/smol.svg",
  30488. extra: 2715 / 2540,
  30489. bottom: 0 / 2715
  30490. }
  30491. },
  30492. },
  30493. [
  30494. {
  30495. name: "Normal",
  30496. height: math.unit(4 + 6 / 12, "feet"),
  30497. default: true
  30498. }
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(0.6, "cm"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/daz/front.svg",
  30509. extra: 1682 / 1164,
  30510. bottom: 42 / 1724
  30511. }
  30512. },
  30513. },
  30514. [
  30515. {
  30516. name: "Normal",
  30517. height: math.unit(0.6, "cm"),
  30518. default: true
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30524. {
  30525. front: {
  30526. height: math.unit(6, "feet"),
  30527. weight: math.unit(235, "lb"),
  30528. name: "Front",
  30529. image: {
  30530. source: "./media/characters/theo-pangolin/front.svg",
  30531. extra: 1996 / 1969,
  30532. bottom: 115 / 2111
  30533. }
  30534. },
  30535. back: {
  30536. height: math.unit(6, "feet"),
  30537. weight: math.unit(235, "lb"),
  30538. name: "Back",
  30539. image: {
  30540. source: "./media/characters/theo-pangolin/back.svg",
  30541. extra: 1979 / 1979,
  30542. bottom: 40 / 2019
  30543. }
  30544. },
  30545. feral: {
  30546. height: math.unit(2, "feet"),
  30547. weight: math.unit(30, "lb"),
  30548. name: "Feral",
  30549. image: {
  30550. source: "./media/characters/theo-pangolin/feral.svg",
  30551. extra: 803 / 791,
  30552. bottom: 181 / 984
  30553. }
  30554. },
  30555. footFive: {
  30556. height: math.unit(1.43, "feet"),
  30557. name: "Foot (Five Toes)",
  30558. image: {
  30559. source: "./media/characters/theo-pangolin/foot-five.svg"
  30560. }
  30561. },
  30562. footFour: {
  30563. height: math.unit(1.43, "feet"),
  30564. name: "Foot (Four Toes)",
  30565. image: {
  30566. source: "./media/characters/theo-pangolin/foot-four.svg"
  30567. }
  30568. },
  30569. handFour: {
  30570. height: math.unit(0.81, "feet"),
  30571. name: "Hand (Four Fingers)",
  30572. image: {
  30573. source: "./media/characters/theo-pangolin/hand-four.svg"
  30574. }
  30575. },
  30576. handThree: {
  30577. height: math.unit(0.81, "feet"),
  30578. name: "Hand (Three Fingers)",
  30579. image: {
  30580. source: "./media/characters/theo-pangolin/hand-three.svg"
  30581. }
  30582. },
  30583. headFront: {
  30584. height: math.unit(1.37, "feet"),
  30585. name: "Head (Front)",
  30586. image: {
  30587. source: "./media/characters/theo-pangolin/head-front.svg"
  30588. }
  30589. },
  30590. headSide: {
  30591. height: math.unit(1.43, "feet"),
  30592. name: "Head (Side)",
  30593. image: {
  30594. source: "./media/characters/theo-pangolin/head-side.svg"
  30595. }
  30596. },
  30597. tongue: {
  30598. height: math.unit(2.29, "feet"),
  30599. name: "Tongue",
  30600. image: {
  30601. source: "./media/characters/theo-pangolin/tongue.svg"
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(6, "feet")
  30609. },
  30610. {
  30611. name: "Macro",
  30612. height: math.unit(400, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(6, "inches"),
  30622. weight: math.unit(0.036, "kg"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/renée/front.svg",
  30626. extra: 900 / 886,
  30627. bottom: 8 / 908
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Nano",
  30634. height: math.unit(1, "nm")
  30635. },
  30636. {
  30637. name: "Micro",
  30638. height: math.unit(1, "mm")
  30639. },
  30640. {
  30641. name: "Normal",
  30642. height: math.unit(6, "inches")
  30643. },
  30644. {
  30645. name: "Macro",
  30646. height: math.unit(2000, "feet"),
  30647. default: true
  30648. },
  30649. {
  30650. name: "Megamacro",
  30651. height: math.unit(2, "km")
  30652. },
  30653. {
  30654. name: "Gigamacro",
  30655. height: math.unit(2000, "km")
  30656. },
  30657. {
  30658. name: "Teramacro",
  30659. height: math.unit(250000, "km")
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(4, "meters"),
  30668. weight: math.unit(150, "kg"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/caledvwlch/front.svg",
  30672. extra: 1760 / 1551,
  30673. bottom: 28 / 1788
  30674. }
  30675. },
  30676. side: {
  30677. height: math.unit(4, "meters"),
  30678. weight: math.unit(150, "kg"),
  30679. name: "Side",
  30680. image: {
  30681. source: "./media/characters/caledvwlch/side.svg",
  30682. extra: 1605 / 1536,
  30683. bottom: 31 / 1636
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(4, "meters"),
  30688. weight: math.unit(150, "kg"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/caledvwlch/back.svg",
  30692. extra: 1635 / 1565,
  30693. bottom: 27 / 1662
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "\"Incognito\"",
  30700. height: math.unit(4, "meters")
  30701. },
  30702. {
  30703. name: "Small rampage",
  30704. height: math.unit(600, "meters")
  30705. },
  30706. {
  30707. name: "Mega",
  30708. height: math.unit(30, "km")
  30709. },
  30710. {
  30711. name: "Home-size",
  30712. height: math.unit(50, "km"),
  30713. default: true
  30714. },
  30715. {
  30716. name: "Giga",
  30717. height: math.unit(300, "km")
  30718. },
  30719. {
  30720. name: "Lounging",
  30721. height: math.unit(11000, "km")
  30722. },
  30723. {
  30724. name: "Planet snacking",
  30725. height: math.unit(2000000, "km")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(6, "feet"),
  30734. weight: math.unit(215, "lb"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/sapphire-svell/front.svg",
  30738. extra: 495 / 455,
  30739. bottom: 20 / 515
  30740. }
  30741. },
  30742. back: {
  30743. height: math.unit(6, "feet"),
  30744. weight: math.unit(216, "lb"),
  30745. name: "Back",
  30746. image: {
  30747. source: "./media/characters/sapphire-svell/back.svg",
  30748. extra: 497 / 477,
  30749. bottom: 7 / 504
  30750. }
  30751. },
  30752. maw: {
  30753. height: math.unit(1.57, "feet"),
  30754. name: "Maw",
  30755. image: {
  30756. source: "./media/characters/sapphire-svell/maw.svg"
  30757. }
  30758. },
  30759. foot: {
  30760. height: math.unit(1.07, "feet"),
  30761. name: "Foot",
  30762. image: {
  30763. source: "./media/characters/sapphire-svell/foot.svg"
  30764. }
  30765. },
  30766. toering: {
  30767. height: math.unit(1.7, "inch"),
  30768. name: "Toering",
  30769. image: {
  30770. source: "./media/characters/sapphire-svell/toering.svg"
  30771. }
  30772. },
  30773. },
  30774. [
  30775. {
  30776. name: "Normal",
  30777. height: math.unit(300, "feet"),
  30778. default: true
  30779. },
  30780. {
  30781. name: "Augmented",
  30782. height: math.unit(1250, "feet")
  30783. },
  30784. {
  30785. name: "Unleashed",
  30786. height: math.unit(3000, "feet")
  30787. },
  30788. ]
  30789. ))
  30790. characterMakers.push(() => makeCharacter(
  30791. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30792. {
  30793. side: {
  30794. height: math.unit(2 + 3 / 12, "feet"),
  30795. weight: math.unit(110, "lb"),
  30796. name: "Side",
  30797. image: {
  30798. source: "./media/characters/glitch-flux/side.svg",
  30799. extra: 997 / 805,
  30800. bottom: 20 / 1017
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Normal",
  30807. height: math.unit(2 + 3 / 12, "feet"),
  30808. default: true
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(4, "meters"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/mid/front.svg",
  30820. extra: 507 / 476,
  30821. bottom: 17 / 524
  30822. }
  30823. },
  30824. back: {
  30825. height: math.unit(4, "meters"),
  30826. name: "Back",
  30827. image: {
  30828. source: "./media/characters/mid/back.svg",
  30829. extra: 519 / 487,
  30830. bottom: 7 / 526
  30831. }
  30832. },
  30833. stuck: {
  30834. height: math.unit(2.2, "meters"),
  30835. name: "Stuck",
  30836. image: {
  30837. source: "./media/characters/mid/stuck.svg",
  30838. extra: 1951 / 1869,
  30839. bottom: 88 / 2039
  30840. }
  30841. }
  30842. },
  30843. [
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(4, "meters"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Big",
  30851. height: math.unit(10, "meters")
  30852. },
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(800, "meters")
  30856. },
  30857. {
  30858. name: "Megamacro",
  30859. height: math.unit(100, "km")
  30860. },
  30861. {
  30862. name: "Overgrown",
  30863. height: math.unit(1, "parsec")
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(2.5, "meters"),
  30872. weight: math.unit(225, "kg"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/iris/front.svg",
  30876. extra: 3348 / 3251,
  30877. bottom: 205 / 3553
  30878. }
  30879. },
  30880. maw: {
  30881. height: math.unit(0.56, "meter"),
  30882. name: "Maw",
  30883. image: {
  30884. source: "./media/characters/iris/maw.svg"
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Mewter cat",
  30891. height: math.unit(1.2, "meters")
  30892. },
  30893. {
  30894. name: "Minimacro",
  30895. height: math.unit(2.5, "meters"),
  30896. default: true
  30897. },
  30898. {
  30899. name: "Macro",
  30900. height: math.unit(180, "meters")
  30901. },
  30902. {
  30903. name: "Megamacro",
  30904. height: math.unit(2746, "meters")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(135, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/axel/front.svg",
  30917. extra: 908 / 908,
  30918. bottom: 58 / 966
  30919. }
  30920. },
  30921. side: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(135, "lb"),
  30924. name: "Side",
  30925. image: {
  30926. source: "./media/characters/axel/side.svg",
  30927. extra: 958 / 958,
  30928. bottom: 11 / 969
  30929. }
  30930. },
  30931. back: {
  30932. height: math.unit(6, "feet"),
  30933. weight: math.unit(135, "lb"),
  30934. name: "Back",
  30935. image: {
  30936. source: "./media/characters/axel/back.svg",
  30937. extra: 887 / 887,
  30938. bottom: 34 / 921
  30939. }
  30940. },
  30941. head: {
  30942. height: math.unit(1.07, "feet"),
  30943. name: "Head",
  30944. image: {
  30945. source: "./media/characters/axel/head.svg"
  30946. }
  30947. },
  30948. beak: {
  30949. height: math.unit(1.4, "feet"),
  30950. name: "Beak",
  30951. image: {
  30952. source: "./media/characters/axel/beak.svg"
  30953. }
  30954. },
  30955. beakSide: {
  30956. height: math.unit(1.4, "feet"),
  30957. name: "Beak Side",
  30958. image: {
  30959. source: "./media/characters/axel/beak-side.svg"
  30960. }
  30961. },
  30962. sheath: {
  30963. height: math.unit(0.5, "feet"),
  30964. name: "Sheath",
  30965. image: {
  30966. source: "./media/characters/axel/sheath.svg"
  30967. }
  30968. },
  30969. dick: {
  30970. height: math.unit(0.98, "feet"),
  30971. name: "Dick",
  30972. image: {
  30973. source: "./media/characters/axel/dick.svg"
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Macro",
  30980. height: math.unit(68, "meters"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30987. {
  30988. front: {
  30989. height: math.unit(3.5, "meters"),
  30990. weight: math.unit(1200, "kg"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/joanna/front.svg",
  30994. extra: 1596 / 1488,
  30995. bottom: 29 / 1625
  30996. }
  30997. },
  30998. back: {
  30999. height: math.unit(3.5, "meters"),
  31000. weight: math.unit(1200, "kg"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/joanna/back.svg",
  31004. extra: 1594 / 1495,
  31005. bottom: 26 / 1620
  31006. }
  31007. },
  31008. frontShorts: {
  31009. height: math.unit(3.5, "meters"),
  31010. weight: math.unit(1200, "kg"),
  31011. name: "Front (Shorts)",
  31012. image: {
  31013. source: "./media/characters/joanna/front-shorts.svg",
  31014. extra: 1596 / 1488,
  31015. bottom: 29 / 1625
  31016. }
  31017. },
  31018. frontBiker: {
  31019. height: math.unit(3.5, "meters"),
  31020. weight: math.unit(1200, "kg"),
  31021. name: "Front (Biker)",
  31022. image: {
  31023. source: "./media/characters/joanna/front-biker.svg",
  31024. extra: 1596 / 1488,
  31025. bottom: 29 / 1625
  31026. }
  31027. },
  31028. backBiker: {
  31029. height: math.unit(3.5, "meters"),
  31030. weight: math.unit(1200, "kg"),
  31031. name: "Back (Biker)",
  31032. image: {
  31033. source: "./media/characters/joanna/back-biker.svg",
  31034. extra: 1594 / 1495,
  31035. bottom: 88 / 1682
  31036. }
  31037. },
  31038. bikeLeft: {
  31039. height: math.unit(2.4, "meters"),
  31040. weight: math.unit(1600, "kg"),
  31041. name: "Bike (Left)",
  31042. image: {
  31043. source: "./media/characters/joanna/bike-left.svg",
  31044. extra: 720 / 720,
  31045. bottom: 8 / 728
  31046. }
  31047. },
  31048. bikeRight: {
  31049. height: math.unit(2.4, "meters"),
  31050. weight: math.unit(1600, "kg"),
  31051. name: "Bike (Right)",
  31052. image: {
  31053. source: "./media/characters/joanna/bike-right.svg",
  31054. extra: 720 / 720,
  31055. bottom: 8 / 728
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Incognito",
  31062. height: math.unit(3.5, "meters")
  31063. },
  31064. {
  31065. name: "Casual Big",
  31066. height: math.unit(200, "meters")
  31067. },
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(600, "meters")
  31071. },
  31072. {
  31073. name: "Original",
  31074. height: math.unit(20, "km"),
  31075. default: true
  31076. },
  31077. {
  31078. name: "Giga",
  31079. height: math.unit(400, "km")
  31080. },
  31081. {
  31082. name: "Lounging",
  31083. height: math.unit(1500, "km")
  31084. },
  31085. {
  31086. name: "Planetary",
  31087. height: math.unit(200000, "km")
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31093. {
  31094. front: {
  31095. height: math.unit(6, "feet"),
  31096. weight: math.unit(150, "lb"),
  31097. name: "Front",
  31098. image: {
  31099. source: "./media/characters/hugo-sigil/front.svg",
  31100. extra: 522 / 500,
  31101. bottom: 2 / 524
  31102. }
  31103. },
  31104. back: {
  31105. height: math.unit(6, "feet"),
  31106. weight: math.unit(150, "lb"),
  31107. name: "Back",
  31108. image: {
  31109. source: "./media/characters/hugo-sigil/back.svg",
  31110. extra: 519 / 495,
  31111. bottom: 5 / 524
  31112. }
  31113. },
  31114. maw: {
  31115. height: math.unit(1.4, "feet"),
  31116. weight: math.unit(150, "lb"),
  31117. name: "Maw",
  31118. image: {
  31119. source: "./media/characters/hugo-sigil/maw.svg"
  31120. }
  31121. },
  31122. feet: {
  31123. height: math.unit(1.56, "feet"),
  31124. weight: math.unit(150, "lb"),
  31125. name: "Feet",
  31126. image: {
  31127. source: "./media/characters/hugo-sigil/feet.svg",
  31128. extra: 177 / 177,
  31129. bottom: 12 / 189
  31130. }
  31131. },
  31132. },
  31133. [
  31134. {
  31135. name: "Normal",
  31136. height: math.unit(6, "feet")
  31137. },
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(200, "feet"),
  31141. default: true
  31142. },
  31143. ]
  31144. ))
  31145. characterMakers.push(() => makeCharacter(
  31146. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31147. {
  31148. front: {
  31149. height: math.unit(6, "feet"),
  31150. weight: math.unit(150, "lb"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/peri/front.svg",
  31154. extra: 2354 / 2233,
  31155. bottom: 49 / 2403
  31156. }
  31157. },
  31158. },
  31159. [
  31160. {
  31161. name: "Really Small",
  31162. height: math.unit(1, "nm")
  31163. },
  31164. {
  31165. name: "Micro",
  31166. height: math.unit(4, "inches")
  31167. },
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(7, "inches"),
  31171. default: true
  31172. },
  31173. {
  31174. name: "Macro",
  31175. height: math.unit(400, "feet")
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(100, "miles")
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31185. {
  31186. frontSlim: {
  31187. height: math.unit(7, "feet"),
  31188. name: "Front (Slim)",
  31189. image: {
  31190. source: "./media/characters/issilora/front-slim.svg",
  31191. extra: 529 / 449,
  31192. bottom: 53 / 582
  31193. }
  31194. },
  31195. sideSlim: {
  31196. height: math.unit(7, "feet"),
  31197. name: "Side (Slim)",
  31198. image: {
  31199. source: "./media/characters/issilora/side-slim.svg",
  31200. extra: 570 / 480,
  31201. bottom: 30 / 600
  31202. }
  31203. },
  31204. backSlim: {
  31205. height: math.unit(7, "feet"),
  31206. name: "Back (Slim)",
  31207. image: {
  31208. source: "./media/characters/issilora/back-slim.svg",
  31209. extra: 537 / 455,
  31210. bottom: 46 / 583
  31211. }
  31212. },
  31213. frontBuff: {
  31214. height: math.unit(7, "feet"),
  31215. name: "Front (Buff)",
  31216. image: {
  31217. source: "./media/characters/issilora/front-buff.svg",
  31218. extra: 2310 / 2035,
  31219. bottom: 335 / 2645
  31220. }
  31221. },
  31222. head: {
  31223. height: math.unit(1.94, "feet"),
  31224. name: "Head",
  31225. image: {
  31226. source: "./media/characters/issilora/head.svg"
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Minimum",
  31233. height: math.unit(7, "feet")
  31234. },
  31235. {
  31236. name: "Comfortable",
  31237. height: math.unit(17, "feet")
  31238. },
  31239. {
  31240. name: "Fun Size",
  31241. height: math.unit(47, "feet")
  31242. },
  31243. {
  31244. name: "Natural Macro",
  31245. height: math.unit(137, "feet"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Maximum Kaiju",
  31250. height: math.unit(397, "feet")
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31256. {
  31257. front: {
  31258. height: math.unit(50 + 9/12, "feet"),
  31259. weight: math.unit(32.8, "tons"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/irb'iiritaahn/front.svg",
  31263. extra: 1878/1826,
  31264. bottom: 326/2204
  31265. }
  31266. },
  31267. back: {
  31268. height: math.unit(50 + 9/12, "feet"),
  31269. weight: math.unit(32.8, "tons"),
  31270. name: "Back",
  31271. image: {
  31272. source: "./media/characters/irb'iiritaahn/back.svg",
  31273. extra: 2052/2018,
  31274. bottom: 152/2204
  31275. }
  31276. },
  31277. head: {
  31278. height: math.unit(12.86, "feet"),
  31279. name: "Head",
  31280. image: {
  31281. source: "./media/characters/irb'iiritaahn/head.svg"
  31282. }
  31283. },
  31284. maw: {
  31285. height: math.unit(9.66, "feet"),
  31286. name: "Maw",
  31287. image: {
  31288. source: "./media/characters/irb'iiritaahn/maw.svg"
  31289. }
  31290. },
  31291. frontDick: {
  31292. height: math.unit(8.78461, "feet"),
  31293. name: "Front Dick",
  31294. image: {
  31295. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31296. }
  31297. },
  31298. rearDick: {
  31299. height: math.unit(8.78461, "feet"),
  31300. name: "Rear Dick",
  31301. image: {
  31302. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31303. }
  31304. },
  31305. rearDickUnfolded: {
  31306. height: math.unit(8.78, "feet"),
  31307. name: "Rear Dick (Unfolded)",
  31308. image: {
  31309. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31310. }
  31311. },
  31312. wings: {
  31313. height: math.unit(43, "feet"),
  31314. name: "Wings",
  31315. image: {
  31316. source: "./media/characters/irb'iiritaahn/wings.svg"
  31317. }
  31318. },
  31319. },
  31320. [
  31321. {
  31322. name: "Macro",
  31323. height: math.unit(50 + 9/12, "feet"),
  31324. default: true
  31325. },
  31326. ]
  31327. ))
  31328. characterMakers.push(() => makeCharacter(
  31329. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31330. {
  31331. front: {
  31332. height: math.unit(205, "cm"),
  31333. weight: math.unit(102, "kg"),
  31334. name: "Front",
  31335. image: {
  31336. source: "./media/characters/irbisgreif/front.svg",
  31337. extra: 785/706,
  31338. bottom: 13/798
  31339. }
  31340. },
  31341. back: {
  31342. height: math.unit(205, "cm"),
  31343. weight: math.unit(102, "kg"),
  31344. name: "Back",
  31345. image: {
  31346. source: "./media/characters/irbisgreif/back.svg",
  31347. extra: 713/701,
  31348. bottom: 26/739
  31349. }
  31350. },
  31351. frontDressed: {
  31352. height: math.unit(216, "cm"),
  31353. weight: math.unit(102, "kg"),
  31354. name: "Front-dressed",
  31355. image: {
  31356. source: "./media/characters/irbisgreif/front-dressed.svg",
  31357. extra: 902/776,
  31358. bottom: 14/916
  31359. }
  31360. },
  31361. sideDressed: {
  31362. height: math.unit(195, "cm"),
  31363. weight: math.unit(102, "kg"),
  31364. name: "Side-dressed",
  31365. image: {
  31366. source: "./media/characters/irbisgreif/side-dressed.svg",
  31367. extra: 788/688,
  31368. bottom: 21/809
  31369. }
  31370. },
  31371. backDressed: {
  31372. height: math.unit(216, "cm"),
  31373. weight: math.unit(102, "kg"),
  31374. name: "Back-dressed",
  31375. image: {
  31376. source: "./media/characters/irbisgreif/back-dressed.svg",
  31377. extra: 901/783,
  31378. bottom: 10/911
  31379. }
  31380. },
  31381. dick: {
  31382. height: math.unit(0.49, "feet"),
  31383. name: "Dick",
  31384. image: {
  31385. source: "./media/characters/irbisgreif/dick.svg"
  31386. }
  31387. },
  31388. wingTop: {
  31389. height: math.unit(1.93 , "feet"),
  31390. name: "Wing-top",
  31391. image: {
  31392. source: "./media/characters/irbisgreif/wing-top.svg"
  31393. }
  31394. },
  31395. wingBottom: {
  31396. height: math.unit(1.93 , "feet"),
  31397. name: "Wing-bottom",
  31398. image: {
  31399. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(216, "cm"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31413. {
  31414. front: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(150, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/pride/front.svg",
  31420. extra: 1299/1230,
  31421. bottom: 18/1317
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(7, "feet")
  31429. },
  31430. {
  31431. name: "Mini-macro",
  31432. height: math.unit(11, "feet")
  31433. },
  31434. {
  31435. name: "Macro",
  31436. height: math.unit(15, "meters"),
  31437. default: true
  31438. },
  31439. {
  31440. name: "Macro+",
  31441. height: math.unit(40, "meters")
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31447. {
  31448. front: {
  31449. height: math.unit(4 + 2 / 12, "feet"),
  31450. weight: math.unit(95, "lb"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/vaelophis-nyx/front.svg",
  31454. extra: 2532/2330,
  31455. bottom: 0/2532
  31456. }
  31457. },
  31458. back: {
  31459. height: math.unit(4 + 2 / 12, "feet"),
  31460. weight: math.unit(95, "lb"),
  31461. name: "Back",
  31462. image: {
  31463. source: "./media/characters/vaelophis-nyx/back.svg",
  31464. extra: 2484/2361,
  31465. bottom: 0/2484
  31466. }
  31467. },
  31468. feralSide: {
  31469. height: math.unit(2 + 1/12, "feet"),
  31470. weight: math.unit(20, "lb"),
  31471. name: "Feral (Side)",
  31472. image: {
  31473. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31474. extra: 1721/1581,
  31475. bottom: 70/1791
  31476. }
  31477. },
  31478. feralLazing: {
  31479. height: math.unit(1.08, "feet"),
  31480. weight: math.unit(20, "lb"),
  31481. name: "Feral (Lazing)",
  31482. image: {
  31483. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31484. extra: 822/822,
  31485. bottom: 248/1070
  31486. }
  31487. },
  31488. ear: {
  31489. height: math.unit(0.416, "feet"),
  31490. name: "Ear",
  31491. image: {
  31492. source: "./media/characters/vaelophis-nyx/ear.svg"
  31493. }
  31494. },
  31495. eye: {
  31496. height: math.unit(0.0748, "feet"),
  31497. name: "Eye",
  31498. image: {
  31499. source: "./media/characters/vaelophis-nyx/eye.svg"
  31500. }
  31501. },
  31502. mouth: {
  31503. height: math.unit(0.378, "feet"),
  31504. name: "Mouth",
  31505. image: {
  31506. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31507. }
  31508. },
  31509. spade: {
  31510. height: math.unit(0.55, "feet"),
  31511. name: "Spade",
  31512. image: {
  31513. source: "./media/characters/vaelophis-nyx/spade.svg"
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Normal",
  31520. height: math.unit(4 + 2/12, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31527. {
  31528. front: {
  31529. height: math.unit(7, "feet"),
  31530. weight: math.unit(231, "lb"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/flux/front.svg",
  31534. extra: 919/871,
  31535. bottom: 0/919
  31536. }
  31537. },
  31538. back: {
  31539. height: math.unit(7, "feet"),
  31540. weight: math.unit(231, "lb"),
  31541. name: "Back",
  31542. image: {
  31543. source: "./media/characters/flux/back.svg",
  31544. extra: 1040/992,
  31545. bottom: 0/1040
  31546. }
  31547. },
  31548. frontDressed: {
  31549. height: math.unit(7, "feet"),
  31550. weight: math.unit(231, "lb"),
  31551. name: "Front (Dressed)",
  31552. image: {
  31553. source: "./media/characters/flux/front-dressed.svg",
  31554. extra: 919/871,
  31555. bottom: 0/919
  31556. }
  31557. },
  31558. feralSide: {
  31559. height: math.unit(5, "feet"),
  31560. weight: math.unit(150, "lb"),
  31561. name: "Feral (Side)",
  31562. image: {
  31563. source: "./media/characters/flux/feral-side.svg",
  31564. extra: 598/528,
  31565. bottom: 28/626
  31566. }
  31567. },
  31568. head: {
  31569. height: math.unit(1.585, "feet"),
  31570. name: "Head",
  31571. image: {
  31572. source: "./media/characters/flux/head.svg"
  31573. }
  31574. },
  31575. headSide: {
  31576. height: math.unit(1.74, "feet"),
  31577. name: "Head (Side)",
  31578. image: {
  31579. source: "./media/characters/flux/head-side.svg"
  31580. }
  31581. },
  31582. headSideFire: {
  31583. height: math.unit(1.76, "feet"),
  31584. name: "Head (Side, Fire)",
  31585. image: {
  31586. source: "./media/characters/flux/head-side-fire.svg"
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Normal",
  31593. height: math.unit(7, "feet"),
  31594. default: true
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(9, "feet"),
  31603. weight: math.unit(1012, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/ulfra-lupae/front.svg",
  31607. extra: 1083/1011,
  31608. bottom: 67/1150
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Micro",
  31615. height: math.unit(6, "inches")
  31616. },
  31617. {
  31618. name: "Socializing",
  31619. height: math.unit(6 + 5/12, "feet")
  31620. },
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(9, "feet"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(150, "feet")
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(5 + 2/12, "feet"),
  31637. weight: math.unit(120, "lb"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/timber/front.svg",
  31641. extra: 2814/2705,
  31642. bottom: 181/2995
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(5 + 2/12, "feet"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(5 + 7/12, "feet"),
  31659. weight: math.unit(220, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/nicki/front.svg",
  31663. extra: 453/419,
  31664. bottom: 7/460
  31665. }
  31666. },
  31667. frontAlt: {
  31668. height: math.unit(5 + 7/12, "feet"),
  31669. weight: math.unit(220, "lb"),
  31670. name: "Front-alt",
  31671. image: {
  31672. source: "./media/characters/nicki/front-alt.svg",
  31673. extra: 435/411,
  31674. bottom: 12/447
  31675. }
  31676. },
  31677. back: {
  31678. height: math.unit(5 + 7/12, "feet"),
  31679. weight: math.unit(220, "lb"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/nicki/back.svg",
  31683. extra: 440/413,
  31684. bottom: 19/459
  31685. }
  31686. },
  31687. taur: {
  31688. height: math.unit(7 + 6/12, "feet"),
  31689. weight: math.unit(700, "lb"),
  31690. name: "Taur",
  31691. image: {
  31692. source: "./media/characters/nicki/taur.svg",
  31693. extra: 975/773,
  31694. bottom: 0/975
  31695. }
  31696. },
  31697. frontNsfw: {
  31698. height: math.unit(5 + 7/12, "feet"),
  31699. weight: math.unit(220, "lb"),
  31700. name: "Front (NSFW)",
  31701. image: {
  31702. source: "./media/characters/nicki/front-nsfw.svg",
  31703. extra: 453/419,
  31704. bottom: 7/460
  31705. }
  31706. },
  31707. frontNsfwAlt: {
  31708. height: math.unit(5 + 7/12, "feet"),
  31709. weight: math.unit(220, "lb"),
  31710. name: "Front (Alt, NSFW)",
  31711. image: {
  31712. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31713. extra: 435/411,
  31714. bottom: 12/447
  31715. }
  31716. },
  31717. backNsfw: {
  31718. height: math.unit(5 + 7/12, "feet"),
  31719. weight: math.unit(220, "lb"),
  31720. name: "Back (NSFW)",
  31721. image: {
  31722. source: "./media/characters/nicki/back-nsfw.svg",
  31723. extra: 440/413,
  31724. bottom: 19/459
  31725. }
  31726. },
  31727. head: {
  31728. height: math.unit(2.1, "feet"),
  31729. name: "Head",
  31730. image: {
  31731. source: "./media/characters/nicki/head.svg"
  31732. }
  31733. },
  31734. paw: {
  31735. height: math.unit(1.88, "feet"),
  31736. name: "Paw",
  31737. image: {
  31738. source: "./media/characters/nicki/paw.svg"
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Normal",
  31745. height: math.unit(5 + 7/12, "feet"),
  31746. default: true
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(7 + 10/12, "feet"),
  31755. weight: math.unit(3.5, "tons"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/lee/front.svg",
  31759. extra: 1773/1615,
  31760. bottom: 86/1859
  31761. }
  31762. },
  31763. hand: {
  31764. height: math.unit(1.78, "feet"),
  31765. name: "Hand",
  31766. image: {
  31767. source: "./media/characters/lee/hand.svg"
  31768. }
  31769. },
  31770. maw: {
  31771. height: math.unit(1.18, "feet"),
  31772. name: "Maw",
  31773. image: {
  31774. source: "./media/characters/lee/maw.svg"
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(7 + 10/12, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31788. {
  31789. front: {
  31790. height: math.unit(9, "feet"),
  31791. name: "Front",
  31792. image: {
  31793. source: "./media/characters/guti/front.svg",
  31794. extra: 4551/4355,
  31795. bottom: 123/4674
  31796. }
  31797. },
  31798. tongue: {
  31799. height: math.unit(1, "feet"),
  31800. name: "Tongue",
  31801. image: {
  31802. source: "./media/characters/guti/tongue.svg"
  31803. }
  31804. },
  31805. paw: {
  31806. height: math.unit(1.18, "feet"),
  31807. name: "Paw",
  31808. image: {
  31809. source: "./media/characters/guti/paw.svg"
  31810. }
  31811. },
  31812. },
  31813. [
  31814. {
  31815. name: "Normal",
  31816. height: math.unit(9, "feet"),
  31817. default: true
  31818. },
  31819. ]
  31820. ))
  31821. characterMakers.push(() => makeCharacter(
  31822. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31823. {
  31824. side: {
  31825. height: math.unit(5, "meters"),
  31826. name: "Side",
  31827. image: {
  31828. source: "./media/characters/vesper/side.svg",
  31829. extra: 1605/1518,
  31830. bottom: 0/1605
  31831. }
  31832. },
  31833. },
  31834. [
  31835. {
  31836. name: "Small",
  31837. height: math.unit(5, "meters")
  31838. },
  31839. {
  31840. name: "Sage",
  31841. height: math.unit(100, "meters"),
  31842. default: true
  31843. },
  31844. {
  31845. name: "Fun Size",
  31846. height: math.unit(600, "meters")
  31847. },
  31848. {
  31849. name: "Goddess",
  31850. height: math.unit(20000, "km")
  31851. },
  31852. {
  31853. name: "Maximum",
  31854. height: math.unit(5, "galaxies")
  31855. },
  31856. ]
  31857. ))
  31858. characterMakers.push(() => makeCharacter(
  31859. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31860. {
  31861. front: {
  31862. height: math.unit(6 + 3/12, "feet"),
  31863. weight: math.unit(190, "lb"),
  31864. name: "Front",
  31865. image: {
  31866. source: "./media/characters/gawain/front.svg",
  31867. extra: 2222/2139,
  31868. bottom: 90/2312
  31869. }
  31870. },
  31871. back: {
  31872. height: math.unit(6 + 3/12, "feet"),
  31873. weight: math.unit(190, "lb"),
  31874. name: "Back",
  31875. image: {
  31876. source: "./media/characters/gawain/back.svg",
  31877. extra: 2199/2111,
  31878. bottom: 73/2272
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(6 + 3/12, "feet"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31892. {
  31893. side: {
  31894. height: math.unit(3.5, "meters"),
  31895. weight: math.unit(16000, "lb"),
  31896. name: "Side",
  31897. image: {
  31898. source: "./media/characters/dascalti/side.svg",
  31899. extra: 392/273,
  31900. bottom: 47/439
  31901. }
  31902. },
  31903. breath: {
  31904. height: math.unit(7.4, "feet"),
  31905. name: "Breath",
  31906. image: {
  31907. source: "./media/characters/dascalti/breath.svg"
  31908. }
  31909. },
  31910. fed: {
  31911. height: math.unit(3.6, "meters"),
  31912. weight: math.unit(16000, "lb"),
  31913. name: "Fed",
  31914. image: {
  31915. source: "./media/characters/dascalti/fed.svg",
  31916. extra: 1419/820,
  31917. bottom: 95/1514
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Normal",
  31924. height: math.unit(3.5, "meters"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(3 + 5/12, "feet"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/mauve/front.svg",
  31937. extra: 1126/1033,
  31938. bottom: 65/1191
  31939. }
  31940. },
  31941. side: {
  31942. height: math.unit(3 + 5/12, "feet"),
  31943. name: "Side",
  31944. image: {
  31945. source: "./media/characters/mauve/side.svg",
  31946. extra: 1089/1001,
  31947. bottom: 29/1118
  31948. }
  31949. },
  31950. back: {
  31951. height: math.unit(3 + 5/12, "feet"),
  31952. name: "Back",
  31953. image: {
  31954. source: "./media/characters/mauve/back.svg",
  31955. extra: 1173/1053,
  31956. bottom: 109/1282
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(3 + 5/12, "feet"),
  31964. default: true
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(6 + 3/12, "feet"),
  31973. weight: math.unit(430, "lb"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/carlos/front.svg",
  31977. extra: 1964/1913,
  31978. bottom: 70/2034
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(6 + 3/12, "feet"),
  31986. default: true
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31992. {
  31993. back: {
  31994. height: math.unit(5 + 10/12, "feet"),
  31995. weight: math.unit(200, "lb"),
  31996. name: "Back",
  31997. image: {
  31998. source: "./media/characters/jax/back.svg",
  31999. extra: 764/739,
  32000. bottom: 25/789
  32001. }
  32002. },
  32003. },
  32004. [
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(5 + 10/12, "feet"),
  32008. default: true
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(8, "feet"),
  32017. weight: math.unit(250, "lb"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/eikthynir/front.svg",
  32021. extra: 1332/1166,
  32022. bottom: 82/1414
  32023. }
  32024. },
  32025. back: {
  32026. height: math.unit(8, "feet"),
  32027. weight: math.unit(250, "lb"),
  32028. name: "Back",
  32029. image: {
  32030. source: "./media/characters/eikthynir/back.svg",
  32031. extra: 1342/1190,
  32032. bottom: 19/1361
  32033. }
  32034. },
  32035. dick: {
  32036. height: math.unit(2.35, "feet"),
  32037. name: "Dick",
  32038. image: {
  32039. source: "./media/characters/eikthynir/dick.svg"
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(8, "feet"),
  32047. default: true
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(99, "meters"),
  32056. weight: math.unit(13000, "tons"),
  32057. name: "Front",
  32058. image: {
  32059. source: "./media/characters/zlmos/front.svg",
  32060. extra: 2202/1992,
  32061. bottom: 315/2517
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(99, "meters"),
  32069. default: true
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32075. {
  32076. front: {
  32077. height: math.unit(6 + 5/12, "feet"),
  32078. name: "Front",
  32079. image: {
  32080. source: "./media/characters/purri/front.svg",
  32081. extra: 1698/1610,
  32082. bottom: 32/1730
  32083. }
  32084. },
  32085. frontAlt: {
  32086. height: math.unit(6 + 5/12, "feet"),
  32087. name: "Front (Alt)",
  32088. image: {
  32089. source: "./media/characters/purri/front-alt.svg",
  32090. extra: 450/420,
  32091. bottom: 26/476
  32092. }
  32093. },
  32094. boots: {
  32095. height: math.unit(5.5, "feet"),
  32096. name: "Boots",
  32097. image: {
  32098. source: "./media/characters/purri/boots.svg",
  32099. extra: 905/853,
  32100. bottom: 18/923
  32101. }
  32102. },
  32103. lying: {
  32104. height: math.unit(2, "feet"),
  32105. name: "Lying",
  32106. image: {
  32107. source: "./media/characters/purri/lying.svg",
  32108. extra: 940/843,
  32109. bottom: 146/1086
  32110. }
  32111. },
  32112. devious: {
  32113. height: math.unit(1.77, "feet"),
  32114. name: "Devious",
  32115. image: {
  32116. source: "./media/characters/purri/devious.svg",
  32117. extra: 1440/1155,
  32118. bottom: 147/1587
  32119. }
  32120. },
  32121. bean: {
  32122. height: math.unit(1.94, "feet"),
  32123. name: "Bean",
  32124. image: {
  32125. source: "./media/characters/purri/bean.svg"
  32126. }
  32127. },
  32128. },
  32129. [
  32130. {
  32131. name: "Micro",
  32132. height: math.unit(1, "mm")
  32133. },
  32134. {
  32135. name: "Normal",
  32136. height: math.unit(6 + 5/12, "feet"),
  32137. default: true
  32138. },
  32139. {
  32140. name: "Macro :3c",
  32141. height: math.unit(2, "miles")
  32142. },
  32143. ]
  32144. ))
  32145. characterMakers.push(() => makeCharacter(
  32146. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32147. {
  32148. front: {
  32149. height: math.unit(6 + 2/12, "feet"),
  32150. weight: math.unit(250, "lb"),
  32151. name: "Front",
  32152. image: {
  32153. source: "./media/characters/moonlight/front.svg",
  32154. extra: 1044/908,
  32155. bottom: 56/1100
  32156. }
  32157. },
  32158. feral: {
  32159. height: math.unit(3 + 1/12, "feet"),
  32160. weight: math.unit(50, "kg"),
  32161. name: "Feral",
  32162. image: {
  32163. source: "./media/characters/moonlight/feral.svg",
  32164. extra: 3705/2791,
  32165. bottom: 145/3850
  32166. }
  32167. },
  32168. paw: {
  32169. height: math.unit(1, "feet"),
  32170. name: "Paw",
  32171. image: {
  32172. source: "./media/characters/moonlight/paw.svg"
  32173. }
  32174. },
  32175. paws: {
  32176. height: math.unit(0.98, "feet"),
  32177. name: "Paws",
  32178. image: {
  32179. source: "./media/characters/moonlight/paws.svg",
  32180. extra: 939/939,
  32181. bottom: 50/989
  32182. }
  32183. },
  32184. mouth: {
  32185. height: math.unit(0.48, "feet"),
  32186. name: "Mouth",
  32187. image: {
  32188. source: "./media/characters/moonlight/mouth.svg"
  32189. }
  32190. },
  32191. dick: {
  32192. height: math.unit(1.46, "feet"),
  32193. name: "Dick",
  32194. image: {
  32195. source: "./media/characters/moonlight/dick.svg"
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Normal",
  32202. height: math.unit(6 + 2/12, "feet"),
  32203. default: true
  32204. },
  32205. {
  32206. name: "Macro",
  32207. height: math.unit(300, "feet")
  32208. },
  32209. {
  32210. name: "Macro+",
  32211. height: math.unit(1, "mile")
  32212. },
  32213. {
  32214. name: "Mt. Moon",
  32215. height: math.unit(5, "miles")
  32216. },
  32217. {
  32218. name: "Megamacro",
  32219. height: math.unit(15, "miles")
  32220. },
  32221. ]
  32222. ))
  32223. characterMakers.push(() => makeCharacter(
  32224. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32225. {
  32226. back: {
  32227. height: math.unit(6, "feet"),
  32228. weight: math.unit(150, "lb"),
  32229. name: "Back",
  32230. image: {
  32231. source: "./media/characters/sylen/back.svg",
  32232. extra: 1335/1273,
  32233. bottom: 107/1442
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(5 + 5/12, "feet")
  32241. },
  32242. {
  32243. name: "Megamacro",
  32244. height: math.unit(3, "miles"),
  32245. default: true
  32246. },
  32247. ]
  32248. ))
  32249. characterMakers.push(() => makeCharacter(
  32250. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32251. {
  32252. front: {
  32253. height: math.unit(6, "feet"),
  32254. weight: math.unit(190, "lb"),
  32255. name: "Front",
  32256. image: {
  32257. source: "./media/characters/huttser/front.svg",
  32258. extra: 1152/1058,
  32259. bottom: 23/1175
  32260. }
  32261. },
  32262. side: {
  32263. height: math.unit(6, "feet"),
  32264. weight: math.unit(190, "lb"),
  32265. name: "Side",
  32266. image: {
  32267. source: "./media/characters/huttser/side.svg",
  32268. extra: 1174/1065,
  32269. bottom: 18/1192
  32270. }
  32271. },
  32272. back: {
  32273. height: math.unit(6, "feet"),
  32274. weight: math.unit(190, "lb"),
  32275. name: "Back",
  32276. image: {
  32277. source: "./media/characters/huttser/back.svg",
  32278. extra: 1158/1056,
  32279. bottom: 12/1170
  32280. }
  32281. },
  32282. },
  32283. [
  32284. ]
  32285. ))
  32286. characterMakers.push(() => makeCharacter(
  32287. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32288. {
  32289. side: {
  32290. height: math.unit(12 + 9/12, "feet"),
  32291. weight: math.unit(15000, "lb"),
  32292. name: "Side",
  32293. image: {
  32294. source: "./media/characters/faan/side.svg",
  32295. extra: 2747/2697,
  32296. bottom: 0/2747
  32297. }
  32298. },
  32299. front: {
  32300. height: math.unit(12 + 9/12, "feet"),
  32301. weight: math.unit(15000, "lb"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/faan/front.svg",
  32305. extra: 607/571,
  32306. bottom: 24/631
  32307. }
  32308. },
  32309. head: {
  32310. height: math.unit(2.85, "feet"),
  32311. name: "Head",
  32312. image: {
  32313. source: "./media/characters/faan/head.svg"
  32314. }
  32315. },
  32316. headAlt: {
  32317. height: math.unit(3.13, "feet"),
  32318. name: "Head-alt",
  32319. image: {
  32320. source: "./media/characters/faan/head-alt.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(12 + 9/12, "feet"),
  32328. default: true
  32329. },
  32330. ]
  32331. ))
  32332. characterMakers.push(() => makeCharacter(
  32333. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32334. {
  32335. front: {
  32336. height: math.unit(6, "feet"),
  32337. weight: math.unit(300, "lb"),
  32338. name: "Front",
  32339. image: {
  32340. source: "./media/characters/tanio/front.svg",
  32341. extra: 711/673,
  32342. bottom: 25/736
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(6, "feet"),
  32350. default: true
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32356. {
  32357. front: {
  32358. height: math.unit(3, "inches"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/noboru/front.svg",
  32362. extra: 1039/932,
  32363. bottom: 18/1057
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Micro",
  32370. height: math.unit(3, "inches"),
  32371. default: true
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32377. {
  32378. front: {
  32379. height: math.unit(1.85, "meters"),
  32380. weight: math.unit(80, "kg"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/daniel-barrett/front.svg",
  32384. extra: 355/337,
  32385. bottom: 9/364
  32386. }
  32387. },
  32388. },
  32389. [
  32390. {
  32391. name: "Pico",
  32392. height: math.unit(0.0433, "mm")
  32393. },
  32394. {
  32395. name: "Nano",
  32396. height: math.unit(1.5, "mm")
  32397. },
  32398. {
  32399. name: "Micro",
  32400. height: math.unit(5.3, "cm"),
  32401. default: true
  32402. },
  32403. {
  32404. name: "Normal",
  32405. height: math.unit(1.85, "meters")
  32406. },
  32407. {
  32408. name: "Macro",
  32409. height: math.unit(64.7, "meters")
  32410. },
  32411. {
  32412. name: "Megamacro",
  32413. height: math.unit(2.26, "km")
  32414. },
  32415. {
  32416. name: "Gigamacro",
  32417. height: math.unit(79, "km")
  32418. },
  32419. {
  32420. name: "Teramacro",
  32421. height: math.unit(2765, "km")
  32422. },
  32423. {
  32424. name: "Petamacro",
  32425. height: math.unit(96678, "km")
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(30, "meters"),
  32434. weight: math.unit(400, "tons"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/zeel/front.svg",
  32438. extra: 2599/2599,
  32439. bottom: 226/2825
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Macro",
  32446. height: math.unit(30, "meters"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(6 + 7/12, "feet"),
  32456. weight: math.unit(210, "lb"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/tarn/front.svg",
  32460. extra: 3517/3220,
  32461. bottom: 91/3608
  32462. }
  32463. },
  32464. back: {
  32465. height: math.unit(6 + 7/12, "feet"),
  32466. weight: math.unit(210, "lb"),
  32467. name: "Back",
  32468. image: {
  32469. source: "./media/characters/tarn/back.svg",
  32470. extra: 3566/3241,
  32471. bottom: 34/3600
  32472. }
  32473. },
  32474. dick: {
  32475. height: math.unit(1.65, "feet"),
  32476. name: "Dick",
  32477. image: {
  32478. source: "./media/characters/tarn/dick.svg"
  32479. }
  32480. },
  32481. paw: {
  32482. height: math.unit(1.80, "feet"),
  32483. name: "Paw",
  32484. image: {
  32485. source: "./media/characters/tarn/paw.svg"
  32486. }
  32487. },
  32488. tongue: {
  32489. height: math.unit(0.97, "feet"),
  32490. name: "Tongue",
  32491. image: {
  32492. source: "./media/characters/tarn/tongue.svg"
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Micro",
  32499. height: math.unit(4, "inches")
  32500. },
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(6 + 7/12, "feet"),
  32504. default: true
  32505. },
  32506. {
  32507. name: "Macro",
  32508. height: math.unit(300, "feet")
  32509. },
  32510. ]
  32511. ))
  32512. characterMakers.push(() => makeCharacter(
  32513. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32514. {
  32515. front: {
  32516. height: math.unit(5 + 7/12, "feet"),
  32517. weight: math.unit(80, "kg"),
  32518. name: "Front",
  32519. image: {
  32520. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32521. extra: 3023/2865,
  32522. bottom: 33/3056
  32523. }
  32524. },
  32525. back: {
  32526. height: math.unit(5 + 7/12, "feet"),
  32527. weight: math.unit(80, "kg"),
  32528. name: "Back",
  32529. image: {
  32530. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32531. extra: 3020/2886,
  32532. bottom: 30/3050
  32533. }
  32534. },
  32535. dick: {
  32536. height: math.unit(0.98, "feet"),
  32537. name: "Dick",
  32538. image: {
  32539. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32540. }
  32541. },
  32542. anatomy: {
  32543. height: math.unit(2.86, "feet"),
  32544. name: "Anatomy",
  32545. image: {
  32546. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Really Small",
  32553. height: math.unit(2, "inches")
  32554. },
  32555. {
  32556. name: "Micro",
  32557. height: math.unit(5.583, "inches")
  32558. },
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(5 + 7/12, "feet"),
  32562. default: true
  32563. },
  32564. {
  32565. name: "Macro",
  32566. height: math.unit(67, "feet")
  32567. },
  32568. {
  32569. name: "Megamacro",
  32570. height: math.unit(134, "feet")
  32571. },
  32572. ]
  32573. ))
  32574. characterMakers.push(() => makeCharacter(
  32575. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32576. {
  32577. front: {
  32578. height: math.unit(9, "feet"),
  32579. weight: math.unit(120, "lb"),
  32580. name: "Front",
  32581. image: {
  32582. source: "./media/characters/sally/front.svg",
  32583. extra: 1506/1349,
  32584. bottom: 66/1572
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(9, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32598. {
  32599. front: {
  32600. height: math.unit(8, "feet"),
  32601. weight: math.unit(900, "lb"),
  32602. name: "Front",
  32603. image: {
  32604. source: "./media/characters/owen/front.svg",
  32605. extra: 1761/1657,
  32606. bottom: 74/1835
  32607. }
  32608. },
  32609. side: {
  32610. height: math.unit(8, "feet"),
  32611. weight: math.unit(900, "lb"),
  32612. name: "Side",
  32613. image: {
  32614. source: "./media/characters/owen/side.svg",
  32615. extra: 1797/1734,
  32616. bottom: 30/1827
  32617. }
  32618. },
  32619. back: {
  32620. height: math.unit(8, "feet"),
  32621. weight: math.unit(900, "lb"),
  32622. name: "Back",
  32623. image: {
  32624. source: "./media/characters/owen/back.svg",
  32625. extra: 1796/1706,
  32626. bottom: 59/1855
  32627. }
  32628. },
  32629. maw: {
  32630. height: math.unit(1.76, "feet"),
  32631. name: "Maw",
  32632. image: {
  32633. source: "./media/characters/owen/maw.svg"
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Normal",
  32640. height: math.unit(8, "feet"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32647. {
  32648. front: {
  32649. height: math.unit(4, "feet"),
  32650. weight: math.unit(400, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/ryth/front.svg",
  32654. extra: 1920/1748,
  32655. bottom: 42/1962
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(4, "feet"),
  32660. weight: math.unit(400, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/ryth/back.svg",
  32664. extra: 1897/1690,
  32665. bottom: 89/1986
  32666. }
  32667. },
  32668. mouth: {
  32669. height: math.unit(1.39, "feet"),
  32670. name: "Mouth",
  32671. image: {
  32672. source: "./media/characters/ryth/mouth.svg"
  32673. }
  32674. },
  32675. tailmaw: {
  32676. height: math.unit(1.23, "feet"),
  32677. name: "Tailmaw",
  32678. image: {
  32679. source: "./media/characters/ryth/tailmaw.svg"
  32680. }
  32681. },
  32682. goia: {
  32683. height: math.unit(4, "meters"),
  32684. weight: math.unit(10800, "lb"),
  32685. name: "Goia",
  32686. image: {
  32687. source: "./media/characters/ryth/goia.svg",
  32688. extra: 745/640,
  32689. bottom: 107/852
  32690. }
  32691. },
  32692. goiaFront: {
  32693. height: math.unit(4, "meters"),
  32694. weight: math.unit(10800, "lb"),
  32695. name: "Goia (Front)",
  32696. image: {
  32697. source: "./media/characters/ryth/goia-front.svg",
  32698. extra: 750/586,
  32699. bottom: 114/864
  32700. }
  32701. },
  32702. goiaMaw: {
  32703. height: math.unit(5.55, "feet"),
  32704. name: "Goia Maw",
  32705. image: {
  32706. source: "./media/characters/ryth/goia-maw.svg"
  32707. }
  32708. },
  32709. goiaForepaw: {
  32710. height: math.unit(3.5, "feet"),
  32711. name: "Goia Forepaw",
  32712. image: {
  32713. source: "./media/characters/ryth/goia-forepaw.svg"
  32714. }
  32715. },
  32716. goiaHindpaw: {
  32717. height: math.unit(5.55, "feet"),
  32718. name: "Goia Hindpaw",
  32719. image: {
  32720. source: "./media/characters/ryth/goia-hindpaw.svg"
  32721. }
  32722. },
  32723. },
  32724. [
  32725. {
  32726. name: "Normal",
  32727. height: math.unit(4, "feet"),
  32728. default: true
  32729. },
  32730. ]
  32731. ))
  32732. characterMakers.push(() => makeCharacter(
  32733. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32734. {
  32735. front: {
  32736. height: math.unit(7, "feet"),
  32737. weight: math.unit(180, "lb"),
  32738. name: "Front",
  32739. image: {
  32740. source: "./media/characters/necrolance/front.svg",
  32741. extra: 1062/947,
  32742. bottom: 41/1103
  32743. }
  32744. },
  32745. back: {
  32746. height: math.unit(7, "feet"),
  32747. weight: math.unit(180, "lb"),
  32748. name: "Back",
  32749. image: {
  32750. source: "./media/characters/necrolance/back.svg",
  32751. extra: 1045/984,
  32752. bottom: 14/1059
  32753. }
  32754. },
  32755. wing: {
  32756. height: math.unit(2.67, "feet"),
  32757. name: "Wing",
  32758. image: {
  32759. source: "./media/characters/necrolance/wing.svg"
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(7, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32773. {
  32774. front: {
  32775. height: math.unit(76, "meters"),
  32776. weight: math.unit(30000, "tons"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/tyler/front.svg",
  32780. extra: 1640/1640,
  32781. bottom: 114/1754
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Macro",
  32788. height: math.unit(76, "meters"),
  32789. default: true
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32795. {
  32796. front: {
  32797. height: math.unit(4 + 11/12, "feet"),
  32798. weight: math.unit(132, "lb"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/icey/front.svg",
  32802. extra: 2750/2550,
  32803. bottom: 33/2783
  32804. }
  32805. },
  32806. back: {
  32807. height: math.unit(4 + 11/12, "feet"),
  32808. weight: math.unit(132, "lb"),
  32809. name: "Back",
  32810. image: {
  32811. source: "./media/characters/icey/back.svg",
  32812. extra: 2624/2481,
  32813. bottom: 35/2659
  32814. }
  32815. },
  32816. },
  32817. [
  32818. {
  32819. name: "Normal",
  32820. height: math.unit(4 + 11/12, "feet"),
  32821. default: true
  32822. },
  32823. ]
  32824. ))
  32825. characterMakers.push(() => makeCharacter(
  32826. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32827. {
  32828. front: {
  32829. height: math.unit(100, "feet"),
  32830. weight: math.unit(0, "lb"),
  32831. name: "Front",
  32832. image: {
  32833. source: "./media/characters/smile/front.svg",
  32834. extra: 2983/2912,
  32835. bottom: 162/3145
  32836. }
  32837. },
  32838. back: {
  32839. height: math.unit(100, "feet"),
  32840. weight: math.unit(0, "lb"),
  32841. name: "Back",
  32842. image: {
  32843. source: "./media/characters/smile/back.svg",
  32844. extra: 3143/3031,
  32845. bottom: 91/3234
  32846. }
  32847. },
  32848. head: {
  32849. height: math.unit(26.3, "feet"),
  32850. weight: math.unit(0, "lb"),
  32851. name: "Head",
  32852. image: {
  32853. source: "./media/characters/smile/head.svg"
  32854. }
  32855. },
  32856. collar: {
  32857. height: math.unit(5.3, "feet"),
  32858. weight: math.unit(0, "lb"),
  32859. name: "Collar",
  32860. image: {
  32861. source: "./media/characters/smile/collar.svg"
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(100, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32875. {
  32876. dragon: {
  32877. height: math.unit(26, "feet"),
  32878. weight: math.unit(36, "tons"),
  32879. name: "Dragon",
  32880. image: {
  32881. source: "./media/characters/arimphae/dragon.svg",
  32882. extra: 1574/983,
  32883. bottom: 357/1931
  32884. }
  32885. },
  32886. drake: {
  32887. height: math.unit(9, "feet"),
  32888. weight: math.unit(1.5, "tons"),
  32889. name: "Drake",
  32890. image: {
  32891. source: "./media/characters/arimphae/drake.svg",
  32892. extra: 1120/925,
  32893. bottom: 435/1555
  32894. }
  32895. },
  32896. },
  32897. [
  32898. {
  32899. name: "Small",
  32900. height: math.unit(26*5/9, "feet")
  32901. },
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(26, "feet"),
  32905. default: true
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32911. {
  32912. front: {
  32913. height: math.unit(8 + 9/12, "feet"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/xander/front.svg",
  32917. extra: 1237/974,
  32918. bottom: 94/1331
  32919. }
  32920. },
  32921. },
  32922. [
  32923. {
  32924. name: "Normal",
  32925. height: math.unit(8 + 9/12, "feet"),
  32926. default: true
  32927. },
  32928. {
  32929. name: "Gaze Grabber",
  32930. height: math.unit(13 + 8/12, "feet")
  32931. },
  32932. {
  32933. name: "Jaw Dropper",
  32934. height: math.unit(27, "feet")
  32935. },
  32936. {
  32937. name: "Show Stopper",
  32938. height: math.unit(136, "feet")
  32939. },
  32940. {
  32941. name: "Superstar",
  32942. height: math.unit(1.9e6, "miles")
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32948. {
  32949. side: {
  32950. height: math.unit(2100, "feet"),
  32951. name: "Side",
  32952. image: {
  32953. source: "./media/characters/osiris/side.svg",
  32954. extra: 1105/939,
  32955. bottom: 167/1272
  32956. }
  32957. },
  32958. },
  32959. [
  32960. {
  32961. name: "Macro",
  32962. height: math.unit(2100, "feet"),
  32963. default: true
  32964. },
  32965. ]
  32966. ))
  32967. characterMakers.push(() => makeCharacter(
  32968. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32969. {
  32970. front: {
  32971. height: math.unit(6 + 8/12, "feet"),
  32972. weight: math.unit(225, "lb"),
  32973. name: "Front",
  32974. image: {
  32975. source: "./media/characters/rhys-londe/front.svg",
  32976. extra: 2258/2141,
  32977. bottom: 188/2446
  32978. }
  32979. },
  32980. back: {
  32981. height: math.unit(6 + 8/12, "feet"),
  32982. weight: math.unit(225, "lb"),
  32983. name: "Back",
  32984. image: {
  32985. source: "./media/characters/rhys-londe/back.svg",
  32986. extra: 2237/2137,
  32987. bottom: 63/2300
  32988. }
  32989. },
  32990. frontNsfw: {
  32991. height: math.unit(6 + 8/12, "feet"),
  32992. weight: math.unit(225, "lb"),
  32993. name: "Front (NSFW)",
  32994. image: {
  32995. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32996. extra: 2258/2141,
  32997. bottom: 188/2446
  32998. }
  32999. },
  33000. backNsfw: {
  33001. height: math.unit(6 + 8/12, "feet"),
  33002. weight: math.unit(225, "lb"),
  33003. name: "Back (NSFW)",
  33004. image: {
  33005. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33006. extra: 2237/2137,
  33007. bottom: 63/2300
  33008. }
  33009. },
  33010. dick: {
  33011. height: math.unit(30, "inches"),
  33012. name: "Dick",
  33013. image: {
  33014. source: "./media/characters/rhys-londe/dick.svg"
  33015. }
  33016. },
  33017. maw: {
  33018. height: math.unit(1.6, "feet"),
  33019. name: "Maw",
  33020. image: {
  33021. source: "./media/characters/rhys-londe/maw.svg"
  33022. }
  33023. },
  33024. },
  33025. [
  33026. {
  33027. name: "Normal",
  33028. height: math.unit(6 + 8/12, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(3 + 10/12, "feet"),
  33038. weight: math.unit(90, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/taivas-ensim/front.svg",
  33042. extra: 1327/1216,
  33043. bottom: 96/1423
  33044. }
  33045. },
  33046. back: {
  33047. height: math.unit(3 + 10/12, "feet"),
  33048. weight: math.unit(90, "lb"),
  33049. name: "Back",
  33050. image: {
  33051. source: "./media/characters/taivas-ensim/back.svg",
  33052. extra: 1355/1247,
  33053. bottom: 11/1366
  33054. }
  33055. },
  33056. frontNsfw: {
  33057. height: math.unit(3 + 10/12, "feet"),
  33058. weight: math.unit(90, "lb"),
  33059. name: "Front (NSFW)",
  33060. image: {
  33061. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33062. extra: 1327/1216,
  33063. bottom: 96/1423
  33064. }
  33065. },
  33066. backNsfw: {
  33067. height: math.unit(3 + 10/12, "feet"),
  33068. weight: math.unit(90, "lb"),
  33069. name: "Back (NSFW)",
  33070. image: {
  33071. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33072. extra: 1355/1247,
  33073. bottom: 11/1366
  33074. }
  33075. },
  33076. },
  33077. [
  33078. {
  33079. name: "Normal",
  33080. height: math.unit(3 + 10/12, "feet"),
  33081. default: true
  33082. },
  33083. ]
  33084. ))
  33085. characterMakers.push(() => makeCharacter(
  33086. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33087. {
  33088. front: {
  33089. height: math.unit(9 + 6/12, "feet"),
  33090. weight: math.unit(940, "lb"),
  33091. name: "Front",
  33092. image: {
  33093. source: "./media/characters/byliss/front.svg",
  33094. extra: 1327/1290,
  33095. bottom: 82/1409
  33096. }
  33097. },
  33098. back: {
  33099. height: math.unit(9 + 6/12, "feet"),
  33100. weight: math.unit(940, "lb"),
  33101. name: "Back",
  33102. image: {
  33103. source: "./media/characters/byliss/back.svg",
  33104. extra: 1376/1349,
  33105. bottom: 9/1385
  33106. }
  33107. },
  33108. frontNsfw: {
  33109. height: math.unit(9 + 6/12, "feet"),
  33110. weight: math.unit(940, "lb"),
  33111. name: "Front (NSFW)",
  33112. image: {
  33113. source: "./media/characters/byliss/front-nsfw.svg",
  33114. extra: 1327/1290,
  33115. bottom: 82/1409
  33116. }
  33117. },
  33118. backNsfw: {
  33119. height: math.unit(9 + 6/12, "feet"),
  33120. weight: math.unit(940, "lb"),
  33121. name: "Back (NSFW)",
  33122. image: {
  33123. source: "./media/characters/byliss/back-nsfw.svg",
  33124. extra: 1376/1349,
  33125. bottom: 9/1385
  33126. }
  33127. },
  33128. },
  33129. [
  33130. {
  33131. name: "Normal",
  33132. height: math.unit(9 + 6/12, "feet"),
  33133. default: true
  33134. },
  33135. ]
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33139. {
  33140. front: {
  33141. height: math.unit(5 + 2/12, "feet"),
  33142. weight: math.unit(200, "lb"),
  33143. name: "Front",
  33144. image: {
  33145. source: "./media/characters/noraly/front.svg",
  33146. extra: 4985/4773,
  33147. bottom: 150/5135
  33148. }
  33149. },
  33150. full: {
  33151. height: math.unit(5 + 2/12, "feet"),
  33152. weight: math.unit(164, "lb"),
  33153. name: "Full",
  33154. image: {
  33155. source: "./media/characters/noraly/full.svg",
  33156. extra: 1114/1059,
  33157. bottom: 35/1149
  33158. }
  33159. },
  33160. fuller: {
  33161. height: math.unit(5 + 2/12, "feet"),
  33162. weight: math.unit(230, "lb"),
  33163. name: "Fuller",
  33164. image: {
  33165. source: "./media/characters/noraly/fuller.svg",
  33166. extra: 1114/1059,
  33167. bottom: 35/1149
  33168. }
  33169. },
  33170. fullest: {
  33171. height: math.unit(5 + 2/12, "feet"),
  33172. weight: math.unit(300, "lb"),
  33173. name: "Fullest",
  33174. image: {
  33175. source: "./media/characters/noraly/fullest.svg",
  33176. extra: 1114/1059,
  33177. bottom: 35/1149
  33178. }
  33179. },
  33180. },
  33181. [
  33182. {
  33183. name: "Normal",
  33184. height: math.unit(5 + 2/12, "feet"),
  33185. default: true
  33186. },
  33187. ]
  33188. ))
  33189. characterMakers.push(() => makeCharacter(
  33190. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33191. {
  33192. front: {
  33193. height: math.unit(5 + 2/12, "feet"),
  33194. weight: math.unit(210, "lb"),
  33195. name: "Front",
  33196. image: {
  33197. source: "./media/characters/pera/front.svg",
  33198. extra: 1560/1531,
  33199. bottom: 165/1725
  33200. }
  33201. },
  33202. back: {
  33203. height: math.unit(5 + 2/12, "feet"),
  33204. weight: math.unit(210, "lb"),
  33205. name: "Back",
  33206. image: {
  33207. source: "./media/characters/pera/back.svg",
  33208. extra: 1523/1493,
  33209. bottom: 152/1675
  33210. }
  33211. },
  33212. dick: {
  33213. height: math.unit(2.4, "feet"),
  33214. name: "Dick",
  33215. image: {
  33216. source: "./media/characters/pera/dick.svg"
  33217. }
  33218. },
  33219. },
  33220. [
  33221. {
  33222. name: "Normal",
  33223. height: math.unit(5 + 2/12, "feet"),
  33224. default: true
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(12, "feet"),
  33233. weight: math.unit(3200, "lb"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/julian/front.svg",
  33237. extra: 2962/2701,
  33238. bottom: 184/3146
  33239. }
  33240. },
  33241. maw: {
  33242. height: math.unit(5.35, "feet"),
  33243. name: "Maw",
  33244. image: {
  33245. source: "./media/characters/julian/maw.svg"
  33246. }
  33247. },
  33248. paw: {
  33249. height: math.unit(3.07, "feet"),
  33250. name: "Paw",
  33251. image: {
  33252. source: "./media/characters/julian/paw.svg"
  33253. }
  33254. },
  33255. },
  33256. [
  33257. {
  33258. name: "Default",
  33259. height: math.unit(12, "feet"),
  33260. default: true
  33261. },
  33262. {
  33263. name: "Big",
  33264. height: math.unit(50, "feet")
  33265. },
  33266. {
  33267. name: "Really Big",
  33268. height: math.unit(1, "mile")
  33269. },
  33270. {
  33271. name: "Extremely Big",
  33272. height: math.unit(100, "miles")
  33273. },
  33274. {
  33275. name: "Planet Hugger",
  33276. height: math.unit(200, "megameters")
  33277. },
  33278. {
  33279. name: "Unreasonably Big",
  33280. height: math.unit(1e300, "meters")
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33286. {
  33287. solgooleo: {
  33288. height: math.unit(4, "meters"),
  33289. weight: math.unit(6000*1.5, "kg"),
  33290. volume: math.unit(6000, "liters"),
  33291. name: "Solgooleo",
  33292. image: {
  33293. source: "./media/characters/pi/solgooleo.svg",
  33294. extra: 388/331,
  33295. bottom: 29/417
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Normal",
  33302. height: math.unit(4, "meters"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(8, "feet"),
  33312. weight: math.unit(4, "tons"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/shaun/front.svg",
  33316. extra: 503/495,
  33317. bottom: 20/523
  33318. }
  33319. },
  33320. back: {
  33321. height: math.unit(8, "feet"),
  33322. weight: math.unit(4, "tons"),
  33323. name: "Back",
  33324. image: {
  33325. source: "./media/characters/shaun/back.svg",
  33326. extra: 487/480,
  33327. bottom: 20/507
  33328. }
  33329. },
  33330. },
  33331. [
  33332. {
  33333. name: "Lorg",
  33334. height: math.unit(8, "feet"),
  33335. default: true
  33336. },
  33337. ]
  33338. ))
  33339. characterMakers.push(() => makeCharacter(
  33340. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33341. {
  33342. frontAnthro: {
  33343. height: math.unit(7, "feet"),
  33344. name: "Front",
  33345. image: {
  33346. source: "./media/characters/sini/front-anthro.svg",
  33347. extra: 726/678,
  33348. bottom: 35/761
  33349. },
  33350. form: "anthro",
  33351. default: true
  33352. },
  33353. backAnthro: {
  33354. height: math.unit(7, "feet"),
  33355. name: "Back",
  33356. image: {
  33357. source: "./media/characters/sini/back-anthro.svg",
  33358. extra: 743/701,
  33359. bottom: 12/755
  33360. },
  33361. form: "anthro",
  33362. },
  33363. frontAnthroNsfw: {
  33364. height: math.unit(7, "feet"),
  33365. name: "Front (NSFW)",
  33366. image: {
  33367. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33368. extra: 726/678,
  33369. bottom: 35/761
  33370. },
  33371. form: "anthro"
  33372. },
  33373. backAnthroNsfw: {
  33374. height: math.unit(7, "feet"),
  33375. name: "Back (NSFW)",
  33376. image: {
  33377. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33378. extra: 743/701,
  33379. bottom: 12/755
  33380. },
  33381. form: "anthro",
  33382. },
  33383. mawAnthro: {
  33384. height: math.unit(2.14, "feet"),
  33385. name: "Maw",
  33386. image: {
  33387. source: "./media/characters/sini/maw-anthro.svg"
  33388. },
  33389. form: "anthro"
  33390. },
  33391. dick: {
  33392. height: math.unit(1.45, "feet"),
  33393. name: "Dick",
  33394. image: {
  33395. source: "./media/characters/sini/dick-anthro.svg"
  33396. },
  33397. form: "anthro"
  33398. },
  33399. feral: {
  33400. height: math.unit(16, "feet"),
  33401. name: "Feral",
  33402. image: {
  33403. source: "./media/characters/sini/feral.svg",
  33404. extra: 814/605,
  33405. bottom: 11/825
  33406. },
  33407. form: "feral",
  33408. default: true
  33409. },
  33410. feralNsfw: {
  33411. height: math.unit(16, "feet"),
  33412. name: "Feral (NSFW)",
  33413. image: {
  33414. source: "./media/characters/sini/feral-nsfw.svg",
  33415. extra: 814/605,
  33416. bottom: 11/825
  33417. },
  33418. form: "feral"
  33419. },
  33420. mawFeral: {
  33421. height: math.unit(5.66, "feet"),
  33422. name: "Maw",
  33423. image: {
  33424. source: "./media/characters/sini/maw-feral.svg"
  33425. },
  33426. form: "feral",
  33427. },
  33428. pawFeral: {
  33429. height: math.unit(5.17, "feet"),
  33430. name: "Paw",
  33431. image: {
  33432. source: "./media/characters/sini/paw-feral.svg"
  33433. },
  33434. form: "feral",
  33435. },
  33436. rumpFeral: {
  33437. height: math.unit(13.11, "feet"),
  33438. name: "Rump",
  33439. image: {
  33440. source: "./media/characters/sini/rump-feral.svg"
  33441. },
  33442. form: "feral",
  33443. },
  33444. dickFeral: {
  33445. height: math.unit(1, "feet"),
  33446. name: "Dick",
  33447. image: {
  33448. source: "./media/characters/sini/dick-feral.svg"
  33449. },
  33450. form: "feral",
  33451. },
  33452. eyeFeral: {
  33453. height: math.unit(1.23, "feet"),
  33454. name: "Eye",
  33455. image: {
  33456. source: "./media/characters/sini/eye-feral.svg"
  33457. },
  33458. form: "feral",
  33459. },
  33460. },
  33461. [
  33462. {
  33463. name: "Normal",
  33464. height: math.unit(7, "feet"),
  33465. default: true,
  33466. form: "anthro"
  33467. },
  33468. {
  33469. name: "Normal",
  33470. height: math.unit(16, "feet"),
  33471. default: true,
  33472. form: "feral"
  33473. },
  33474. ],
  33475. {
  33476. "anthro": {
  33477. name: "Anthro",
  33478. default: true
  33479. },
  33480. "feral": {
  33481. name: "Feral",
  33482. }
  33483. }
  33484. ))
  33485. characterMakers.push(() => makeCharacter(
  33486. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33487. {
  33488. side: {
  33489. height: math.unit(13, "meters"),
  33490. weight: math.unit(9072, "kg"),
  33491. name: "Side",
  33492. image: {
  33493. source: "./media/characters/raylldo/side.svg",
  33494. extra: 403/344,
  33495. bottom: 42/445
  33496. }
  33497. },
  33498. leaping: {
  33499. height: math.unit(12.3, "meters"),
  33500. weight: math.unit(9072, "kg"),
  33501. name: "Leaping",
  33502. image: {
  33503. source: "./media/characters/raylldo/leaping.svg",
  33504. extra: 470/249,
  33505. bottom: 13/483
  33506. }
  33507. },
  33508. flying: {
  33509. height: math.unit(18, "meters"),
  33510. weight: math.unit(9072, "kg"),
  33511. name: "Flying",
  33512. image: {
  33513. source: "./media/characters/raylldo/flying.svg"
  33514. }
  33515. },
  33516. head: {
  33517. height: math.unit(5.85, "meters"),
  33518. name: "Head",
  33519. image: {
  33520. source: "./media/characters/raylldo/head.svg"
  33521. }
  33522. },
  33523. maw: {
  33524. height: math.unit(5.32, "meters"),
  33525. name: "Maw",
  33526. image: {
  33527. source: "./media/characters/raylldo/maw.svg"
  33528. }
  33529. },
  33530. eye: {
  33531. height: math.unit(0.54, "meters"),
  33532. name: "Eye",
  33533. image: {
  33534. source: "./media/characters/raylldo/eye.svg"
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(13, "meters"),
  33542. default: true
  33543. },
  33544. ]
  33545. ))
  33546. characterMakers.push(() => makeCharacter(
  33547. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33548. {
  33549. anthroFront: {
  33550. height: math.unit(9, "feet"),
  33551. weight: math.unit(600, "lb"),
  33552. name: "Anthro (Front)",
  33553. image: {
  33554. source: "./media/characters/glint/anthro-front.svg",
  33555. extra: 1097/1018,
  33556. bottom: 28/1125
  33557. }
  33558. },
  33559. anthroBack: {
  33560. height: math.unit(9, "feet"),
  33561. weight: math.unit(600, "lb"),
  33562. name: "Anthro (Back)",
  33563. image: {
  33564. source: "./media/characters/glint/anthro-back.svg",
  33565. extra: 1154/997,
  33566. bottom: 36/1190
  33567. }
  33568. },
  33569. feral: {
  33570. height: math.unit(11, "feet"),
  33571. weight: math.unit(50000, "lb"),
  33572. name: "Feral",
  33573. image: {
  33574. source: "./media/characters/glint/feral.svg",
  33575. extra: 3035/1585,
  33576. bottom: 1169/4204
  33577. }
  33578. },
  33579. dickAnthro: {
  33580. height: math.unit(0.7, "meters"),
  33581. name: "Dick (Anthro)",
  33582. image: {
  33583. source: "./media/characters/glint/dick-anthro.svg"
  33584. }
  33585. },
  33586. dickFeral: {
  33587. height: math.unit(2.65, "meters"),
  33588. name: "Dick (Feral)",
  33589. image: {
  33590. source: "./media/characters/glint/dick-feral.svg"
  33591. }
  33592. },
  33593. slitHidden: {
  33594. height: math.unit(5.85, "meters"),
  33595. name: "Slit (Hidden)",
  33596. image: {
  33597. source: "./media/characters/glint/slit-hidden.svg"
  33598. }
  33599. },
  33600. slitErect: {
  33601. height: math.unit(5.85, "meters"),
  33602. name: "Slit (Erect)",
  33603. image: {
  33604. source: "./media/characters/glint/slit-erect.svg"
  33605. }
  33606. },
  33607. mawAnthro: {
  33608. height: math.unit(0.63, "meters"),
  33609. name: "Maw (Anthro)",
  33610. image: {
  33611. source: "./media/characters/glint/maw.svg"
  33612. }
  33613. },
  33614. mawFeral: {
  33615. height: math.unit(2.89, "meters"),
  33616. name: "Maw (Feral)",
  33617. image: {
  33618. source: "./media/characters/glint/maw.svg"
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(9, "feet"),
  33626. default: true
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33632. {
  33633. side: {
  33634. height: math.unit(15, "feet"),
  33635. weight: math.unit(5000, "kg"),
  33636. name: "Side",
  33637. image: {
  33638. source: "./media/characters/kairne/side.svg",
  33639. extra: 979/811,
  33640. bottom: 13/992
  33641. }
  33642. },
  33643. front: {
  33644. height: math.unit(15, "feet"),
  33645. weight: math.unit(5000, "kg"),
  33646. name: "Front",
  33647. image: {
  33648. source: "./media/characters/kairne/front.svg",
  33649. extra: 908/814,
  33650. bottom: 26/934
  33651. }
  33652. },
  33653. sideNsfw: {
  33654. height: math.unit(15, "feet"),
  33655. weight: math.unit(5000, "kg"),
  33656. name: "Side (NSFW)",
  33657. image: {
  33658. source: "./media/characters/kairne/side-nsfw.svg",
  33659. extra: 979/811,
  33660. bottom: 13/992
  33661. }
  33662. },
  33663. frontNsfw: {
  33664. height: math.unit(15, "feet"),
  33665. weight: math.unit(5000, "kg"),
  33666. name: "Front (NSFW)",
  33667. image: {
  33668. source: "./media/characters/kairne/front-nsfw.svg",
  33669. extra: 908/814,
  33670. bottom: 26/934
  33671. }
  33672. },
  33673. dickCaged: {
  33674. height: math.unit(0.65, "meters"),
  33675. name: "Dick-caged",
  33676. image: {
  33677. source: "./media/characters/kairne/dick-caged.svg"
  33678. }
  33679. },
  33680. dick: {
  33681. height: math.unit(0.79, "meters"),
  33682. name: "Dick",
  33683. image: {
  33684. source: "./media/characters/kairne/dick.svg"
  33685. }
  33686. },
  33687. genitals: {
  33688. height: math.unit(1.29, "meters"),
  33689. name: "Genitals",
  33690. image: {
  33691. source: "./media/characters/kairne/genitals.svg"
  33692. }
  33693. },
  33694. maw: {
  33695. height: math.unit(1.73, "meters"),
  33696. name: "Maw",
  33697. image: {
  33698. source: "./media/characters/kairne/maw.svg"
  33699. }
  33700. },
  33701. },
  33702. [
  33703. {
  33704. name: "Normal",
  33705. height: math.unit(15, "feet"),
  33706. default: true
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(5 + 8/12, "feet"),
  33715. weight: math.unit(139, "lb"),
  33716. name: "Front",
  33717. image: {
  33718. source: "./media/characters/biscuit-jackal/front.svg",
  33719. extra: 2106/1961,
  33720. bottom: 58/2164
  33721. }
  33722. },
  33723. back: {
  33724. height: math.unit(5 + 8/12, "feet"),
  33725. weight: math.unit(139, "lb"),
  33726. name: "Back",
  33727. image: {
  33728. source: "./media/characters/biscuit-jackal/back.svg",
  33729. extra: 2132/1976,
  33730. bottom: 57/2189
  33731. }
  33732. },
  33733. werejackal: {
  33734. height: math.unit(6 + 3/12, "feet"),
  33735. weight: math.unit(188, "lb"),
  33736. name: "Werejackal",
  33737. image: {
  33738. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33739. extra: 2373/2178,
  33740. bottom: 53/2426
  33741. }
  33742. },
  33743. },
  33744. [
  33745. {
  33746. name: "Normal",
  33747. height: math.unit(5 + 8/12, "feet"),
  33748. default: true
  33749. },
  33750. ]
  33751. ))
  33752. characterMakers.push(() => makeCharacter(
  33753. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33754. {
  33755. front: {
  33756. height: math.unit(140, "cm"),
  33757. weight: math.unit(45, "kg"),
  33758. name: "Front",
  33759. image: {
  33760. source: "./media/characters/tayra-white/front.svg",
  33761. extra: 2229/2192,
  33762. bottom: 75/2304
  33763. }
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(140, "cm"),
  33770. default: true
  33771. },
  33772. ]
  33773. ))
  33774. characterMakers.push(() => makeCharacter(
  33775. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33776. {
  33777. front: {
  33778. height: math.unit(4 + 5/12, "feet"),
  33779. name: "Front",
  33780. image: {
  33781. source: "./media/characters/scoop/front.svg",
  33782. extra: 1257/1136,
  33783. bottom: 69/1326
  33784. }
  33785. },
  33786. back: {
  33787. height: math.unit(4 + 5/12, "feet"),
  33788. name: "Back",
  33789. image: {
  33790. source: "./media/characters/scoop/back.svg",
  33791. extra: 1321/1152,
  33792. bottom: 32/1353
  33793. }
  33794. },
  33795. maw: {
  33796. height: math.unit(0.68, "feet"),
  33797. name: "Maw",
  33798. image: {
  33799. source: "./media/characters/scoop/maw.svg"
  33800. }
  33801. },
  33802. },
  33803. [
  33804. {
  33805. name: "Really Small",
  33806. height: math.unit(1, "mm")
  33807. },
  33808. {
  33809. name: "Micro",
  33810. height: math.unit(1, "inch")
  33811. },
  33812. {
  33813. name: "Normal",
  33814. height: math.unit(4 + 5/12, "feet"),
  33815. default: true
  33816. },
  33817. {
  33818. name: "Macro",
  33819. height: math.unit(200, "feet")
  33820. },
  33821. {
  33822. name: "Megamacro",
  33823. height: math.unit(3240, "feet")
  33824. },
  33825. {
  33826. name: "Teramacro",
  33827. height: math.unit(2500, "miles")
  33828. },
  33829. ]
  33830. ))
  33831. characterMakers.push(() => makeCharacter(
  33832. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33833. {
  33834. front: {
  33835. height: math.unit(15 + 7/12, "feet"),
  33836. weight: math.unit(1150, "tons"),
  33837. name: "Front",
  33838. image: {
  33839. source: "./media/characters/saphinara/front.svg",
  33840. extra: 1837/1643,
  33841. bottom: 84/1921
  33842. },
  33843. form: "normal",
  33844. default: true
  33845. },
  33846. side: {
  33847. height: math.unit(15 + 7/12, "feet"),
  33848. weight: math.unit(1150, "tons"),
  33849. name: "Side",
  33850. image: {
  33851. source: "./media/characters/saphinara/side.svg",
  33852. extra: 605/547,
  33853. bottom: 6/611
  33854. },
  33855. form: "normal"
  33856. },
  33857. back: {
  33858. height: math.unit(15 + 7/12, "feet"),
  33859. weight: math.unit(1150, "tons"),
  33860. name: "Back",
  33861. image: {
  33862. source: "./media/characters/saphinara/back.svg",
  33863. extra: 591/531,
  33864. bottom: 13/604
  33865. },
  33866. form: "normal"
  33867. },
  33868. frontTail: {
  33869. height: math.unit(15 + 7/12, "feet"),
  33870. weight: math.unit(1150, "tons"),
  33871. name: "Front (Full Tail)",
  33872. image: {
  33873. source: "./media/characters/saphinara/front-tail.svg",
  33874. extra: 2256/1630,
  33875. bottom: 261/2517
  33876. },
  33877. form: "normal"
  33878. },
  33879. insides: {
  33880. height: math.unit(11.92, "feet"),
  33881. name: "Insides",
  33882. image: {
  33883. source: "./media/characters/saphinara/insides.svg"
  33884. },
  33885. form: "normal"
  33886. },
  33887. head: {
  33888. height: math.unit(4.17, "feet"),
  33889. name: "Head",
  33890. image: {
  33891. source: "./media/characters/saphinara/head.svg"
  33892. },
  33893. form: "normal"
  33894. },
  33895. tongue: {
  33896. height: math.unit(4.60, "feet"),
  33897. name: "Tongue",
  33898. image: {
  33899. source: "./media/characters/saphinara/tongue.svg"
  33900. },
  33901. form: "normal"
  33902. },
  33903. headEnraged: {
  33904. height: math.unit(5.55, "feet"),
  33905. name: "Head (Enraged)",
  33906. image: {
  33907. source: "./media/characters/saphinara/head-enraged.svg"
  33908. },
  33909. form: "normal"
  33910. },
  33911. wings: {
  33912. height: math.unit(11.95, "feet"),
  33913. name: "Wings",
  33914. image: {
  33915. source: "./media/characters/saphinara/wings.svg"
  33916. },
  33917. form: "normal"
  33918. },
  33919. feathers: {
  33920. height: math.unit(8.92, "feet"),
  33921. name: "Feathers",
  33922. image: {
  33923. source: "./media/characters/saphinara/feathers.svg"
  33924. },
  33925. form: "normal"
  33926. },
  33927. shackles: {
  33928. height: math.unit(2, "feet"),
  33929. name: "Shackles",
  33930. image: {
  33931. source: "./media/characters/saphinara/shackles.svg"
  33932. },
  33933. form: "normal"
  33934. },
  33935. eyes: {
  33936. height: math.unit(1.331, "feet"),
  33937. name: "Eyes",
  33938. image: {
  33939. source: "./media/characters/saphinara/eyes.svg"
  33940. },
  33941. form: "normal"
  33942. },
  33943. eyesEnraged: {
  33944. height: math.unit(1.331, "feet"),
  33945. name: "Eyes (Enraged)",
  33946. image: {
  33947. source: "./media/characters/saphinara/eyes-enraged.svg"
  33948. },
  33949. form: "normal"
  33950. },
  33951. trueFormSide: {
  33952. height: math.unit(200, "feet"),
  33953. weight: math.unit(1e7, "tons"),
  33954. name: "Side",
  33955. image: {
  33956. source: "./media/characters/saphinara/true-form-side.svg",
  33957. extra: 1399/770,
  33958. bottom: 97/1496
  33959. },
  33960. form: "true-form",
  33961. default: true
  33962. },
  33963. trueFormMaw: {
  33964. height: math.unit(71.5, "feet"),
  33965. name: "Maw",
  33966. image: {
  33967. source: "./media/characters/saphinara/true-form-maw.svg",
  33968. extra: 2302/1453,
  33969. bottom: 0/2302
  33970. },
  33971. form: "true-form"
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Normal",
  33977. height: math.unit(15 + 7/12, "feet"),
  33978. default: true,
  33979. form: "normal"
  33980. },
  33981. {
  33982. name: "Angry",
  33983. height: math.unit(30 + 6/12, "feet"),
  33984. form: "normal"
  33985. },
  33986. {
  33987. name: "Enraged",
  33988. height: math.unit(102 + 1/12, "feet"),
  33989. form: "normal"
  33990. },
  33991. {
  33992. name: "True",
  33993. height: math.unit(200, "feet"),
  33994. default: true,
  33995. form: "true-form"
  33996. }
  33997. ],
  33998. {
  33999. "normal": {
  34000. name: "Normal",
  34001. default: true
  34002. },
  34003. "true-form": {
  34004. name: "True Form"
  34005. }
  34006. }
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(6 + 8/12, "feet"),
  34013. weight: math.unit(300, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/jrain/front.svg",
  34017. extra: 3039/2865,
  34018. bottom: 399/3438
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(6 + 8/12, "feet"),
  34023. weight: math.unit(300, "lb"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/jrain/back.svg",
  34027. extra: 3089/2938,
  34028. bottom: 172/3261
  34029. }
  34030. },
  34031. head: {
  34032. height: math.unit(2.14, "feet"),
  34033. name: "Head",
  34034. image: {
  34035. source: "./media/characters/jrain/head.svg"
  34036. }
  34037. },
  34038. maw: {
  34039. height: math.unit(1.77, "feet"),
  34040. name: "Maw",
  34041. image: {
  34042. source: "./media/characters/jrain/maw.svg"
  34043. }
  34044. },
  34045. leftHand: {
  34046. height: math.unit(1.1, "feet"),
  34047. name: "Left Hand",
  34048. image: {
  34049. source: "./media/characters/jrain/left-hand.svg"
  34050. }
  34051. },
  34052. rightHand: {
  34053. height: math.unit(1.1, "feet"),
  34054. name: "Right Hand",
  34055. image: {
  34056. source: "./media/characters/jrain/right-hand.svg"
  34057. }
  34058. },
  34059. eye: {
  34060. height: math.unit(0.35, "feet"),
  34061. name: "Eye",
  34062. image: {
  34063. source: "./media/characters/jrain/eye.svg"
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(6 + 8/12, "feet"),
  34071. default: true
  34072. },
  34073. {
  34074. name: "Casually Large",
  34075. height: math.unit(25, "feet")
  34076. },
  34077. {
  34078. name: "Giant",
  34079. height: math.unit(100, "feet")
  34080. },
  34081. {
  34082. name: "Kaiju",
  34083. height: math.unit(300, "feet")
  34084. },
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34089. {
  34090. dragon: {
  34091. height: math.unit(5, "meters"),
  34092. name: "Dragon",
  34093. image: {
  34094. source: "./media/characters/sabrina/dragon.svg",
  34095. extra: 3670 / 2365,
  34096. bottom: 333 / 4003
  34097. }
  34098. },
  34099. gryphon: {
  34100. height: math.unit(3, "meters"),
  34101. name: "Gryphon",
  34102. image: {
  34103. source: "./media/characters/sabrina/gryphon.svg",
  34104. extra: 1576 / 945,
  34105. bottom: 71 / 1647
  34106. }
  34107. },
  34108. snake: {
  34109. height: math.unit(12, "meters"),
  34110. name: "Snake",
  34111. image: {
  34112. source: "./media/characters/sabrina/snake.svg",
  34113. extra: 1758 / 1320,
  34114. bottom: 186 / 1944
  34115. }
  34116. },
  34117. collar: {
  34118. height: math.unit(1.86, "meters"),
  34119. name: "Collar",
  34120. image: {
  34121. source: "./media/characters/sabrina/collar.svg"
  34122. }
  34123. },
  34124. eye: {
  34125. height: math.unit(0.53, "meters"),
  34126. name: "Eye",
  34127. image: {
  34128. source: "./media/characters/sabrina/eye.svg"
  34129. }
  34130. },
  34131. foot: {
  34132. height: math.unit(1.86, "meters"),
  34133. name: "Foot",
  34134. image: {
  34135. source: "./media/characters/sabrina/foot.svg"
  34136. }
  34137. },
  34138. hand: {
  34139. height: math.unit(1.32, "meters"),
  34140. name: "Hand",
  34141. image: {
  34142. source: "./media/characters/sabrina/hand.svg"
  34143. }
  34144. },
  34145. head: {
  34146. height: math.unit(2.44, "meters"),
  34147. name: "Head",
  34148. image: {
  34149. source: "./media/characters/sabrina/head.svg"
  34150. }
  34151. },
  34152. headAngry: {
  34153. height: math.unit(2.44, "meters"),
  34154. name: "Head (Angry))",
  34155. image: {
  34156. source: "./media/characters/sabrina/head-angry.svg"
  34157. }
  34158. },
  34159. maw: {
  34160. height: math.unit(1.65, "meters"),
  34161. name: "Maw",
  34162. image: {
  34163. source: "./media/characters/sabrina/maw.svg"
  34164. }
  34165. },
  34166. spikes: {
  34167. height: math.unit(1.69, "meters"),
  34168. name: "Spikes",
  34169. image: {
  34170. source: "./media/characters/sabrina/spikes.svg"
  34171. }
  34172. },
  34173. stomach: {
  34174. height: math.unit(1.15, "meters"),
  34175. name: "Stomach",
  34176. image: {
  34177. source: "./media/characters/sabrina/stomach.svg"
  34178. }
  34179. },
  34180. tongue: {
  34181. height: math.unit(1.27, "meters"),
  34182. name: "Tongue",
  34183. image: {
  34184. source: "./media/characters/sabrina/tongue.svg"
  34185. }
  34186. },
  34187. wingDorsal: {
  34188. height: math.unit(4.85, "meters"),
  34189. name: "Wing (Dorsal)",
  34190. image: {
  34191. source: "./media/characters/sabrina/wing-dorsal.svg"
  34192. }
  34193. },
  34194. wingVentral: {
  34195. height: math.unit(4.85, "meters"),
  34196. name: "Wing (Ventral)",
  34197. image: {
  34198. source: "./media/characters/sabrina/wing-ventral.svg"
  34199. }
  34200. },
  34201. },
  34202. [
  34203. {
  34204. name: "Normal",
  34205. height: math.unit(5, "meters"),
  34206. default: true
  34207. },
  34208. ]
  34209. ))
  34210. characterMakers.push(() => makeCharacter(
  34211. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34212. {
  34213. frontMaid: {
  34214. height: math.unit(5 + 5/12, "feet"),
  34215. weight: math.unit(130, "lb"),
  34216. name: "Front (Maid)",
  34217. image: {
  34218. source: "./media/characters/midnight-tales/front-maid.svg",
  34219. extra: 489/454,
  34220. bottom: 61/550
  34221. }
  34222. },
  34223. frontFormal: {
  34224. height: math.unit(5 + 5/12, "feet"),
  34225. weight: math.unit(130, "lb"),
  34226. name: "Front (Formal)",
  34227. image: {
  34228. source: "./media/characters/midnight-tales/front-formal.svg",
  34229. extra: 489/454,
  34230. bottom: 61/550
  34231. }
  34232. },
  34233. back: {
  34234. height: math.unit(5 + 5/12, "feet"),
  34235. weight: math.unit(130, "lb"),
  34236. name: "Back",
  34237. image: {
  34238. source: "./media/characters/midnight-tales/back.svg",
  34239. extra: 498/456,
  34240. bottom: 33/531
  34241. }
  34242. },
  34243. frontBeast: {
  34244. height: math.unit(40, "feet"),
  34245. weight: math.unit(64000, "lb"),
  34246. name: "Front (Beast)",
  34247. image: {
  34248. source: "./media/characters/midnight-tales/front-beast.svg",
  34249. extra: 927/860,
  34250. bottom: 53/980
  34251. }
  34252. },
  34253. backBeast: {
  34254. height: math.unit(40, "feet"),
  34255. weight: math.unit(64000, "lb"),
  34256. name: "Back (Beast)",
  34257. image: {
  34258. source: "./media/characters/midnight-tales/back-beast.svg",
  34259. extra: 929/855,
  34260. bottom: 16/945
  34261. }
  34262. },
  34263. footBeast: {
  34264. height: math.unit(6.7, "feet"),
  34265. name: "Foot (Beast)",
  34266. image: {
  34267. source: "./media/characters/midnight-tales/foot-beast.svg"
  34268. }
  34269. },
  34270. headBeast: {
  34271. height: math.unit(8, "feet"),
  34272. name: "Head (Beast)",
  34273. image: {
  34274. source: "./media/characters/midnight-tales/head-beast.svg"
  34275. }
  34276. },
  34277. },
  34278. [
  34279. {
  34280. name: "Normal",
  34281. height: math.unit(5 + 5 / 12, "feet"),
  34282. default: true
  34283. },
  34284. {
  34285. name: "Macro",
  34286. height: math.unit(25, "feet")
  34287. },
  34288. ]
  34289. ))
  34290. characterMakers.push(() => makeCharacter(
  34291. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34292. {
  34293. front: {
  34294. height: math.unit(5 + 10/12, "feet"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/argon/front.svg",
  34298. extra: 2009/1935,
  34299. bottom: 118/2127
  34300. }
  34301. },
  34302. back: {
  34303. height: math.unit(5 + 10/12, "feet"),
  34304. name: "Back",
  34305. image: {
  34306. source: "./media/characters/argon/back.svg",
  34307. extra: 2047/1992,
  34308. bottom: 20/2067
  34309. }
  34310. },
  34311. frontDressed: {
  34312. height: math.unit(5 + 10/12, "feet"),
  34313. name: "Front (Dressed)",
  34314. image: {
  34315. source: "./media/characters/argon/front-dressed.svg",
  34316. extra: 2009/1935,
  34317. bottom: 118/2127
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Normal",
  34324. height: math.unit(5 + 10/12, "feet"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34331. {
  34332. front: {
  34333. height: math.unit(8 + 6/12, "feet"),
  34334. weight: math.unit(1150, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/kichi/front.svg",
  34338. extra: 1267/1164,
  34339. bottom: 61/1328
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(8 + 6/12, "feet"),
  34344. weight: math.unit(1150, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/kichi/back.svg",
  34348. extra: 1273/1166,
  34349. bottom: 33/1306
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(8 + 6/12, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(6, "feet"),
  34366. weight: math.unit(210, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/manetel-greyscale/front.svg",
  34370. extra: 350/312,
  34371. bottom: 8/358
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Micro",
  34378. height: math.unit(2, "inches")
  34379. },
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(6, "feet"),
  34383. default: true
  34384. },
  34385. {
  34386. name: "Minimacro",
  34387. height: math.unit(17, "feet")
  34388. },
  34389. {
  34390. name: "Macro",
  34391. height: math.unit(117, "feet")
  34392. },
  34393. ]
  34394. ))
  34395. characterMakers.push(() => makeCharacter(
  34396. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34397. {
  34398. side: {
  34399. height: math.unit(5 + 1/12, "feet"),
  34400. weight: math.unit(418, "lb"),
  34401. name: "Side",
  34402. image: {
  34403. source: "./media/characters/softpurr/side.svg",
  34404. extra: 1993/1945,
  34405. bottom: 134/2127
  34406. }
  34407. },
  34408. front: {
  34409. height: math.unit(5 + 1/12, "feet"),
  34410. weight: math.unit(418, "lb"),
  34411. name: "Front",
  34412. image: {
  34413. source: "./media/characters/softpurr/front.svg",
  34414. extra: 1950/1856,
  34415. bottom: 174/2124
  34416. }
  34417. },
  34418. paw: {
  34419. height: math.unit(1, "feet"),
  34420. name: "Paw",
  34421. image: {
  34422. source: "./media/characters/softpurr/paw.svg"
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(5 + 1/12, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(260, "meters"),
  34439. name: "Front",
  34440. image: {
  34441. source: "./media/characters/anahita/front.svg",
  34442. extra: 665/635,
  34443. bottom: 89/754
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Macro",
  34450. height: math.unit(260, "meters"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(4 + 10/12, "feet"),
  34460. weight: math.unit(160, "lb"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/chip-mouse/front.svg",
  34464. extra: 3528/3408,
  34465. bottom: 0/3528
  34466. }
  34467. },
  34468. frontNsfw: {
  34469. height: math.unit(4 + 10/12, "feet"),
  34470. weight: math.unit(160, "lb"),
  34471. name: "Front (NSFW)",
  34472. image: {
  34473. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34474. extra: 3528/3408,
  34475. bottom: 0/3528
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(4 + 10/12, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34489. {
  34490. side: {
  34491. height: math.unit(10, "feet"),
  34492. weight: math.unit(14000, "lb"),
  34493. name: "Side",
  34494. image: {
  34495. source: "./media/characters/kremm/side.svg",
  34496. extra: 1390/1053,
  34497. bottom: 90/1480
  34498. }
  34499. },
  34500. gut: {
  34501. height: math.unit(5.8, "feet"),
  34502. name: "Gut",
  34503. image: {
  34504. source: "./media/characters/kremm/gut.svg"
  34505. }
  34506. },
  34507. ass: {
  34508. height: math.unit(6.1, "feet"),
  34509. name: "Ass",
  34510. image: {
  34511. source: "./media/characters/kremm/ass.svg"
  34512. }
  34513. },
  34514. jaws: {
  34515. height: math.unit(2.2, "feet"),
  34516. name: "Jaws",
  34517. image: {
  34518. source: "./media/characters/kremm/jaws.svg"
  34519. }
  34520. },
  34521. dick: {
  34522. height: math.unit(4.26, "feet"),
  34523. name: "Dick",
  34524. image: {
  34525. source: "./media/characters/kremm/dick.svg"
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(10, "feet"),
  34533. default: true
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(30, "stories"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/kai/front.svg",
  34545. extra: 1892/1718,
  34546. bottom: 162/2054
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Macro",
  34553. height: math.unit(30, "stories"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(6 + 4/12, "feet"),
  34563. weight: math.unit(145, "lb"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/sykes/front.svg",
  34567. extra: 1321 / 1187,
  34568. bottom: 66 / 1387
  34569. }
  34570. },
  34571. back: {
  34572. height: math.unit(6 + 4/12, "feet"),
  34573. weight: math.unit(145, "lb"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/sykes/back.svg",
  34577. extra: 1326/1181,
  34578. bottom: 31/1357
  34579. }
  34580. },
  34581. traditionalOutfit: {
  34582. height: math.unit(6 + 4/12, "feet"),
  34583. weight: math.unit(145, "lb"),
  34584. name: "Traditional Outfit",
  34585. image: {
  34586. source: "./media/characters/sykes/traditional-outfit.svg",
  34587. extra: 1321 / 1187,
  34588. bottom: 66 / 1387
  34589. }
  34590. },
  34591. adventureOutfit: {
  34592. height: math.unit(6 + 4/12, "feet"),
  34593. weight: math.unit(145, "lb"),
  34594. name: "Adventure Outfit",
  34595. image: {
  34596. source: "./media/characters/sykes/adventure-outfit.svg",
  34597. extra: 1321 / 1187,
  34598. bottom: 66 / 1387
  34599. }
  34600. },
  34601. handLeft: {
  34602. height: math.unit(0.9, "feet"),
  34603. name: "Hand (Left)",
  34604. image: {
  34605. source: "./media/characters/sykes/hand-left.svg"
  34606. }
  34607. },
  34608. handRight: {
  34609. height: math.unit(0.839, "feet"),
  34610. name: "Hand (Right)",
  34611. image: {
  34612. source: "./media/characters/sykes/hand-right.svg"
  34613. }
  34614. },
  34615. leftFoot: {
  34616. height: math.unit(1.2, "feet"),
  34617. name: "Foot (Left)",
  34618. image: {
  34619. source: "./media/characters/sykes/foot-left.svg"
  34620. }
  34621. },
  34622. rightFoot: {
  34623. height: math.unit(1.2, "feet"),
  34624. name: "Foot (Right)",
  34625. image: {
  34626. source: "./media/characters/sykes/foot-right.svg"
  34627. }
  34628. },
  34629. maw: {
  34630. height: math.unit(1.93, "feet"),
  34631. name: "Maw",
  34632. image: {
  34633. source: "./media/characters/sykes/maw.svg"
  34634. }
  34635. },
  34636. teeth: {
  34637. height: math.unit(0.51, "feet"),
  34638. name: "Teeth",
  34639. image: {
  34640. source: "./media/characters/sykes/teeth.svg"
  34641. }
  34642. },
  34643. tongue: {
  34644. height: math.unit(2.13, "feet"),
  34645. name: "Tongue",
  34646. image: {
  34647. source: "./media/characters/sykes/tongue.svg"
  34648. }
  34649. },
  34650. uvula: {
  34651. height: math.unit(0.16, "feet"),
  34652. name: "Uvula",
  34653. image: {
  34654. source: "./media/characters/sykes/uvula.svg"
  34655. }
  34656. },
  34657. collar: {
  34658. height: math.unit(0.287, "feet"),
  34659. name: "Collar",
  34660. image: {
  34661. source: "./media/characters/sykes/collar.svg"
  34662. }
  34663. },
  34664. tail: {
  34665. height: math.unit(3.8, "feet"),
  34666. name: "Tail",
  34667. image: {
  34668. source: "./media/characters/sykes/tail.svg"
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Shrunken",
  34675. height: math.unit(5, "inches")
  34676. },
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(6 + 4 / 12, "feet"),
  34680. default: true
  34681. },
  34682. {
  34683. name: "Big",
  34684. height: math.unit(15, "feet")
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(5 + 8/12, "feet"),
  34693. weight: math.unit(190, "lb"),
  34694. name: "Front",
  34695. image: {
  34696. source: "./media/characters/oven-otter/front.svg",
  34697. extra: 1809/1740,
  34698. bottom: 181/1990
  34699. }
  34700. },
  34701. back: {
  34702. height: math.unit(5 + 8/12, "feet"),
  34703. weight: math.unit(190, "lb"),
  34704. name: "Back",
  34705. image: {
  34706. source: "./media/characters/oven-otter/back.svg",
  34707. extra: 1709/1635,
  34708. bottom: 118/1827
  34709. }
  34710. },
  34711. hand: {
  34712. height: math.unit(1.07, "feet"),
  34713. name: "Hand",
  34714. image: {
  34715. source: "./media/characters/oven-otter/hand.svg"
  34716. }
  34717. },
  34718. beans: {
  34719. height: math.unit(1.74, "feet"),
  34720. name: "Beans",
  34721. image: {
  34722. source: "./media/characters/oven-otter/beans.svg"
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Micro",
  34729. height: math.unit(0.5, "inches")
  34730. },
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(5 + 8/12, "feet"),
  34734. default: true
  34735. },
  34736. {
  34737. name: "Macro",
  34738. height: math.unit(250, "feet")
  34739. },
  34740. {
  34741. name: "Really High",
  34742. height: math.unit(420, "feet")
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(5, "meters"),
  34751. weight: math.unit(292000000000000, "kg"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/devourer/front.svg",
  34755. extra: 1800/1733,
  34756. bottom: 211/2011
  34757. }
  34758. },
  34759. maw: {
  34760. height: math.unit(1.1, "meter"),
  34761. name: "Maw",
  34762. image: {
  34763. source: "./media/characters/devourer/maw.svg"
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Small",
  34770. height: math.unit(3, "meters")
  34771. },
  34772. {
  34773. name: "Large",
  34774. height: math.unit(5, "meters"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34781. {
  34782. front: {
  34783. height: math.unit(6, "feet"),
  34784. weight: math.unit(400, "lb"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/ellarby/front.svg",
  34788. extra: 1909/1763,
  34789. bottom: 80/1989
  34790. }
  34791. },
  34792. back: {
  34793. height: math.unit(6, "feet"),
  34794. weight: math.unit(400, "lb"),
  34795. name: "Back",
  34796. image: {
  34797. source: "./media/characters/ellarby/back.svg",
  34798. extra: 1914/1784,
  34799. bottom: 172/2086
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Mischief",
  34806. height: math.unit(18, "inches")
  34807. },
  34808. {
  34809. name: "Trouble",
  34810. height: math.unit(12, "feet")
  34811. },
  34812. {
  34813. name: "Havoc",
  34814. height: math.unit(200, "feet"),
  34815. default: true
  34816. },
  34817. {
  34818. name: "Pandemonium",
  34819. height: math.unit(1, "mile")
  34820. },
  34821. {
  34822. name: "Catastrophe",
  34823. height: math.unit(100, "miles")
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34829. {
  34830. front: {
  34831. height: math.unit(4.7, "meters"),
  34832. weight: math.unit(6500, "kg"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/vex/front.svg",
  34836. extra: 1288/1140,
  34837. bottom: 100/1388
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(4.7, "meters"),
  34845. default: true
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34851. {
  34852. normal: {
  34853. height: math.unit(6, "feet"),
  34854. weight: math.unit(350, "lb"),
  34855. name: "Normal",
  34856. image: {
  34857. source: "./media/characters/teshy/normal.svg",
  34858. extra: 1795/1735,
  34859. bottom: 16/1811
  34860. }
  34861. },
  34862. monsterFront: {
  34863. height: math.unit(12, "feet"),
  34864. weight: math.unit(4700, "lb"),
  34865. name: "Monster (Front)",
  34866. image: {
  34867. source: "./media/characters/teshy/monster-front.svg",
  34868. extra: 2042/2034,
  34869. bottom: 128/2170
  34870. }
  34871. },
  34872. monsterSide: {
  34873. height: math.unit(12, "feet"),
  34874. weight: math.unit(4700, "lb"),
  34875. name: "Monster (Side)",
  34876. image: {
  34877. source: "./media/characters/teshy/monster-side.svg",
  34878. extra: 2067/2056,
  34879. bottom: 70/2137
  34880. }
  34881. },
  34882. monsterBack: {
  34883. height: math.unit(12, "feet"),
  34884. weight: math.unit(4700, "lb"),
  34885. name: "Monster (Back)",
  34886. image: {
  34887. source: "./media/characters/teshy/monster-back.svg",
  34888. extra: 1921/1914,
  34889. bottom: 171/2092
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Normal",
  34896. height: math.unit(6, "feet"),
  34897. default: true
  34898. },
  34899. ]
  34900. ))
  34901. characterMakers.push(() => makeCharacter(
  34902. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34903. {
  34904. front: {
  34905. height: math.unit(6, "feet"),
  34906. name: "Front",
  34907. image: {
  34908. source: "./media/characters/ramey/front.svg",
  34909. extra: 790/787,
  34910. bottom: 27/817
  34911. }
  34912. },
  34913. },
  34914. [
  34915. {
  34916. name: "Normal",
  34917. height: math.unit(6, "feet"),
  34918. default: true
  34919. },
  34920. ]
  34921. ))
  34922. characterMakers.push(() => makeCharacter(
  34923. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34924. {
  34925. front: {
  34926. height: math.unit(5 + 5/12, "feet"),
  34927. weight: math.unit(120, "lb"),
  34928. name: "Front",
  34929. image: {
  34930. source: "./media/characters/phirae/front.svg",
  34931. extra: 2491/2436,
  34932. bottom: 38/2529
  34933. }
  34934. },
  34935. },
  34936. [
  34937. {
  34938. name: "Normal",
  34939. height: math.unit(5 + 5/12, "feet"),
  34940. default: true
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34946. {
  34947. front: {
  34948. height: math.unit(5 + 3/12, "feet"),
  34949. name: "Front",
  34950. image: {
  34951. source: "./media/characters/stagglas/front.svg",
  34952. extra: 962/882,
  34953. bottom: 53/1015
  34954. }
  34955. },
  34956. feral: {
  34957. height: math.unit(335, "cm"),
  34958. name: "Feral",
  34959. image: {
  34960. source: "./media/characters/stagglas/feral.svg",
  34961. extra: 1732/1090,
  34962. bottom: 48/1780
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(5 + 3/12, "feet"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(5 + 4/12, "feet"),
  34979. weight: math.unit(145, "lb"),
  34980. name: "Front",
  34981. image: {
  34982. source: "./media/characters/starra/front.svg",
  34983. extra: 1790/1691,
  34984. bottom: 91/1881
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Normal",
  34991. height: math.unit(5 + 4/12, "feet"),
  34992. default: true
  34993. },
  34994. ]
  34995. ))
  34996. characterMakers.push(() => makeCharacter(
  34997. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34998. {
  34999. front: {
  35000. height: math.unit(2.2, "meters"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35004. extra: 1194/1005,
  35005. bottom: 25/1219
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(2.2, "meters"),
  35013. default: true
  35014. },
  35015. ]
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35019. {
  35020. side: {
  35021. height: math.unit(8 + 2/12, "feet"),
  35022. weight: math.unit(1240, "lb"),
  35023. name: "Side",
  35024. image: {
  35025. source: "./media/characters/mika-valentine/side.svg",
  35026. extra: 2670/2501,
  35027. bottom: 250/2920
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Normal",
  35034. height: math.unit(8 + 2/12, "feet"),
  35035. default: true
  35036. },
  35037. ]
  35038. ))
  35039. characterMakers.push(() => makeCharacter(
  35040. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35041. {
  35042. front: {
  35043. height: math.unit(7 + 2/12, "feet"),
  35044. name: "Front",
  35045. image: {
  35046. source: "./media/characters/xoltol/front.svg",
  35047. extra: 2212/2124,
  35048. bottom: 84/2296
  35049. }
  35050. },
  35051. side: {
  35052. height: math.unit(7 + 2/12, "feet"),
  35053. name: "Side",
  35054. image: {
  35055. source: "./media/characters/xoltol/side.svg",
  35056. extra: 2273/2197,
  35057. bottom: 26/2299
  35058. }
  35059. },
  35060. hand: {
  35061. height: math.unit(2.5, "feet"),
  35062. name: "Hand",
  35063. image: {
  35064. source: "./media/characters/xoltol/hand.svg"
  35065. }
  35066. },
  35067. },
  35068. [
  35069. {
  35070. name: "Small-ish",
  35071. height: math.unit(5 + 11/12, "feet")
  35072. },
  35073. {
  35074. name: "Normal",
  35075. height: math.unit(7 + 2/12, "feet")
  35076. },
  35077. {
  35078. name: "\"Macro\"",
  35079. height: math.unit(14 + 9/12, "feet"),
  35080. default: true
  35081. },
  35082. {
  35083. name: "Alternate Height",
  35084. height: math.unit(20, "feet")
  35085. },
  35086. {
  35087. name: "Actually Macro",
  35088. height: math.unit(100, "feet")
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(5 + 2/12, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/kotetsu-redwood/front.svg",
  35100. extra: 1053/942,
  35101. bottom: 60/1113
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal",
  35108. height: math.unit(5 + 2/12, "feet"),
  35109. default: true
  35110. },
  35111. ]
  35112. ))
  35113. characterMakers.push(() => makeCharacter(
  35114. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35115. {
  35116. front: {
  35117. height: math.unit(2.4, "meters"),
  35118. weight: math.unit(125, "kg"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/lilith/front.svg",
  35122. extra: 1590/1513,
  35123. bottom: 203/1793
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Humanoid",
  35130. height: math.unit(2.4, "meters")
  35131. },
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(6, "meters"),
  35135. default: true
  35136. },
  35137. {
  35138. name: "Largest",
  35139. height: math.unit(55, "meters")
  35140. },
  35141. ]
  35142. ))
  35143. characterMakers.push(() => makeCharacter(
  35144. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35145. {
  35146. front: {
  35147. height: math.unit(8 + 4/12, "feet"),
  35148. weight: math.unit(535, "lb"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/beh'kah-bolger/front.svg",
  35152. extra: 1660/1603,
  35153. bottom: 37/1697
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(8 + 4/12, "feet"),
  35161. default: true
  35162. },
  35163. {
  35164. name: "Kaiju",
  35165. height: math.unit(250, "feet")
  35166. },
  35167. {
  35168. name: "Still Growing",
  35169. height: math.unit(10, "miles")
  35170. },
  35171. {
  35172. name: "Continental",
  35173. height: math.unit(5000, "miles")
  35174. },
  35175. {
  35176. name: "Final Form",
  35177. height: math.unit(2500000, "miles")
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(7 + 2/12, "feet"),
  35186. weight: math.unit(230, "kg"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/tatyana-milewska/front.svg",
  35190. extra: 1199/1150,
  35191. bottom: 86/1285
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(7 + 2/12, "feet"),
  35199. default: true
  35200. },
  35201. {
  35202. name: "Big",
  35203. height: math.unit(12, "feet")
  35204. },
  35205. {
  35206. name: "Minimacro",
  35207. height: math.unit(20, "feet")
  35208. },
  35209. {
  35210. name: "Macro",
  35211. height: math.unit(120, "feet")
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35217. {
  35218. front: {
  35219. height: math.unit(7 + 8/12, "feet"),
  35220. weight: math.unit(152, "kg"),
  35221. name: "Front",
  35222. image: {
  35223. source: "./media/characters/helen-arri/front.svg",
  35224. extra: 440/423,
  35225. bottom: 14/454
  35226. }
  35227. },
  35228. back: {
  35229. height: math.unit(7 + 8/12, "feet"),
  35230. weight: math.unit(152, "kg"),
  35231. name: "Back",
  35232. image: {
  35233. source: "./media/characters/helen-arri/back.svg",
  35234. extra: 443/426,
  35235. bottom: 8/451
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(7 + 8/12, "feet"),
  35243. default: true
  35244. },
  35245. {
  35246. name: "Big",
  35247. height: math.unit(14, "feet")
  35248. },
  35249. {
  35250. name: "Minimacro",
  35251. height: math.unit(24, "feet")
  35252. },
  35253. {
  35254. name: "Macro",
  35255. height: math.unit(140, "feet")
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(6, "meters"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/ehanu-rehu/front.svg",
  35267. extra: 1800/1800,
  35268. bottom: 59/1859
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Normal",
  35275. height: math.unit(6, "meters"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(7 + 3/12, "feet"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/renholder/front.svg",
  35288. extra: 3096/2960,
  35289. bottom: 250/3346
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal Bat",
  35296. height: math.unit(7 + 3/12, "feet"),
  35297. default: true
  35298. },
  35299. {
  35300. name: "Slightly Tall Bat",
  35301. height: math.unit(100, "feet")
  35302. },
  35303. {
  35304. name: "Big Bat",
  35305. height: math.unit(1000, "feet")
  35306. },
  35307. {
  35308. name: "City-Sized Bat",
  35309. height: math.unit(200000, "feet")
  35310. },
  35311. {
  35312. name: "Bigger Bat",
  35313. height: math.unit(10000, "miles")
  35314. },
  35315. {
  35316. name: "Solar Sized Bat",
  35317. height: math.unit(100, "AU")
  35318. },
  35319. {
  35320. name: "Galactic Bat",
  35321. height: math.unit(200000, "lightyears")
  35322. },
  35323. {
  35324. name: "Universally Known Bat",
  35325. height: math.unit(1, "universe")
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(6 + 11/12, "feet"),
  35334. weight: math.unit(250, "lb"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/cookiecat/front.svg",
  35338. extra: 893/827,
  35339. bottom: 14/907
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Micro",
  35346. height: math.unit(3, "inches")
  35347. },
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(6 + 11/12, "feet"),
  35351. default: true
  35352. },
  35353. {
  35354. name: "Macro",
  35355. height: math.unit(100, "feet")
  35356. },
  35357. {
  35358. name: "Macro+",
  35359. height: math.unit(404, "feet")
  35360. },
  35361. {
  35362. name: "Megamacro",
  35363. height: math.unit(165, "miles")
  35364. },
  35365. {
  35366. name: "Planetary",
  35367. height: math.unit(4600, "miles")
  35368. },
  35369. ]
  35370. ))
  35371. characterMakers.push(() => makeCharacter(
  35372. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35373. {
  35374. front: {
  35375. height: math.unit(10 + 3/12, "feet"),
  35376. weight: math.unit(1500, "lb"),
  35377. name: "Front",
  35378. image: {
  35379. source: "./media/characters/tux-kusanagi/front.svg",
  35380. extra: 944/840,
  35381. bottom: 39/983
  35382. }
  35383. },
  35384. back: {
  35385. height: math.unit(10 + 3/12, "feet"),
  35386. weight: math.unit(1500, "lb"),
  35387. name: "Back",
  35388. image: {
  35389. source: "./media/characters/tux-kusanagi/back.svg",
  35390. extra: 941/842,
  35391. bottom: 28/969
  35392. }
  35393. },
  35394. rump: {
  35395. height: math.unit(5.25, "feet"),
  35396. name: "Rump",
  35397. image: {
  35398. source: "./media/characters/tux-kusanagi/rump.svg"
  35399. }
  35400. },
  35401. beak: {
  35402. height: math.unit(1.54, "feet"),
  35403. name: "Beak",
  35404. image: {
  35405. source: "./media/characters/tux-kusanagi/beak.svg"
  35406. }
  35407. },
  35408. },
  35409. [
  35410. {
  35411. name: "Normal",
  35412. height: math.unit(10 + 3/12, "feet"),
  35413. default: true
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(58, "feet"),
  35422. weight: math.unit(200, "tons"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/uzarmazari/front.svg",
  35426. extra: 1575/1455,
  35427. bottom: 152/1727
  35428. }
  35429. },
  35430. back: {
  35431. height: math.unit(58, "feet"),
  35432. weight: math.unit(200, "tons"),
  35433. name: "Back",
  35434. image: {
  35435. source: "./media/characters/uzarmazari/back.svg",
  35436. extra: 1585/1510,
  35437. bottom: 157/1742
  35438. }
  35439. },
  35440. head: {
  35441. height: math.unit(26, "feet"),
  35442. name: "Head",
  35443. image: {
  35444. source: "./media/characters/uzarmazari/head.svg"
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(58, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35458. {
  35459. side: {
  35460. height: math.unit(15, "feet"),
  35461. name: "Side",
  35462. image: {
  35463. source: "./media/characters/akitu/side.svg",
  35464. extra: 1421/1321,
  35465. bottom: 157/1578
  35466. }
  35467. },
  35468. front: {
  35469. height: math.unit(15, "feet"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/akitu/front.svg",
  35473. extra: 1435/1326,
  35474. bottom: 232/1667
  35475. }
  35476. },
  35477. },
  35478. [
  35479. {
  35480. name: "Normal",
  35481. height: math.unit(15, "feet"),
  35482. default: true
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35488. {
  35489. front: {
  35490. height: math.unit(10 + 8/12, "feet"),
  35491. name: "Front",
  35492. image: {
  35493. source: "./media/characters/azalie-croixland/front.svg",
  35494. extra: 1972/1856,
  35495. bottom: 31/2003
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Original Height",
  35502. height: math.unit(5 + 4/12, "feet")
  35503. },
  35504. {
  35505. name: "Normal Height",
  35506. height: math.unit(10 + 8/12, "feet"),
  35507. default: true
  35508. },
  35509. ]
  35510. ))
  35511. characterMakers.push(() => makeCharacter(
  35512. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35513. {
  35514. side: {
  35515. height: math.unit(7 + 1/12, "feet"),
  35516. weight: math.unit(245, "lb"),
  35517. name: "Side",
  35518. image: {
  35519. source: "./media/characters/kavus-kazian/side.svg",
  35520. extra: 349/342,
  35521. bottom: 15/364
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(7 + 1/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35535. {
  35536. normalFront: {
  35537. height: math.unit(5 + 11/12, "feet"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/moonlight-rose/normal-front.svg",
  35541. extra: 1980/1825,
  35542. bottom: 18/1998
  35543. },
  35544. form: "normal",
  35545. default: true
  35546. },
  35547. normalBack: {
  35548. height: math.unit(5 + 11/12, "feet"),
  35549. name: "Back",
  35550. image: {
  35551. source: "./media/characters/moonlight-rose/normal-back.svg",
  35552. extra: 2010/1839,
  35553. bottom: 10/2020
  35554. },
  35555. form: "normal"
  35556. },
  35557. demonFront: {
  35558. height: math.unit(1.5, "earths"),
  35559. name: "Front",
  35560. image: {
  35561. source: "./media/characters/moonlight-rose/demon.svg",
  35562. extra: 1400/1294,
  35563. bottom: 45/1445
  35564. },
  35565. form: "demon",
  35566. default: true
  35567. },
  35568. terraFront: {
  35569. height: math.unit(1.5, "earths"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/moonlight-rose/terra.svg"
  35573. },
  35574. form: "terra",
  35575. default: true
  35576. },
  35577. jupiterFront: {
  35578. height: math.unit(69911*2, "km"),
  35579. name: "Front",
  35580. image: {
  35581. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35582. extra: 1367/1286,
  35583. bottom: 55/1422
  35584. },
  35585. form: "jupiter",
  35586. default: true
  35587. },
  35588. neptuneFront: {
  35589. height: math.unit(24622*2, "feet"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35593. extra: 1851/1712,
  35594. bottom: 0/1851
  35595. },
  35596. form: "neptune",
  35597. default: true
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "\"Natural\" Height",
  35603. height: math.unit(5 + 11/12, "feet"),
  35604. form: "normal"
  35605. },
  35606. {
  35607. name: "Smallest comfortable size",
  35608. height: math.unit(40, "meters"),
  35609. form: "normal"
  35610. },
  35611. {
  35612. name: "Common size",
  35613. height: math.unit(50, "km"),
  35614. form: "normal",
  35615. default: true
  35616. },
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(1.5, "earths"),
  35620. form: "demon",
  35621. default: true
  35622. },
  35623. {
  35624. name: "Universal",
  35625. height: math.unit(15, "universes"),
  35626. form: "demon"
  35627. },
  35628. {
  35629. name: "Earth",
  35630. height: math.unit(1.5, "earths"),
  35631. form: "terra",
  35632. default: true
  35633. },
  35634. {
  35635. name: "Super Earth",
  35636. height: math.unit(67.5, "earths"),
  35637. form: "terra"
  35638. },
  35639. {
  35640. name: "Doesn't fit in a solar system...",
  35641. height: math.unit(1, "galaxy"),
  35642. form: "terra"
  35643. },
  35644. {
  35645. name: "Saturn",
  35646. height: math.unit(58232*2, "km"),
  35647. form: "jupiter"
  35648. },
  35649. {
  35650. name: "Jupiter",
  35651. height: math.unit(69911*2, "km"),
  35652. form: "jupiter",
  35653. default: true
  35654. },
  35655. {
  35656. name: "HD 100546 b",
  35657. height: math.unit(482938, "km"),
  35658. form: "jupiter"
  35659. },
  35660. {
  35661. name: "Enceladus",
  35662. height: math.unit(513*2, "km"),
  35663. form: "neptune"
  35664. },
  35665. {
  35666. name: "Europe",
  35667. height: math.unit(1560*2, "km"),
  35668. form: "neptune"
  35669. },
  35670. {
  35671. name: "Neptune",
  35672. height: math.unit(24622*2, "km"),
  35673. form: "neptune",
  35674. default: true
  35675. },
  35676. {
  35677. name: "CoRoT-9b",
  35678. height: math.unit(75067*2, "km"),
  35679. form: "neptune"
  35680. },
  35681. ],
  35682. {
  35683. "normal": {
  35684. name: "Normal",
  35685. default: true
  35686. },
  35687. "demon": {
  35688. name: "Demon"
  35689. },
  35690. "terra": {
  35691. name: "Terra"
  35692. },
  35693. "jupiter": {
  35694. name: "Jupiter"
  35695. },
  35696. "neptune": {
  35697. name: "Neptune"
  35698. }
  35699. }
  35700. ))
  35701. characterMakers.push(() => makeCharacter(
  35702. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35703. {
  35704. front: {
  35705. height: math.unit(16, "feet"),
  35706. weight: math.unit(610, "kg"),
  35707. name: "Front",
  35708. image: {
  35709. source: "./media/characters/huckle/front.svg",
  35710. extra: 1731/1625,
  35711. bottom: 33/1764
  35712. }
  35713. },
  35714. back: {
  35715. height: math.unit(16, "feet"),
  35716. weight: math.unit(610, "kg"),
  35717. name: "Back",
  35718. image: {
  35719. source: "./media/characters/huckle/back.svg",
  35720. extra: 1738/1651,
  35721. bottom: 37/1775
  35722. }
  35723. },
  35724. laughing: {
  35725. height: math.unit(3.75, "feet"),
  35726. name: "Laughing",
  35727. image: {
  35728. source: "./media/characters/huckle/laughing.svg"
  35729. }
  35730. },
  35731. angry: {
  35732. height: math.unit(4.15, "feet"),
  35733. name: "Angry",
  35734. image: {
  35735. source: "./media/characters/huckle/angry.svg"
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(16, "feet"),
  35743. default: true
  35744. },
  35745. {
  35746. name: "Mini Macro",
  35747. height: math.unit(463, "feet")
  35748. },
  35749. {
  35750. name: "Macro",
  35751. height: math.unit(1680, "meters")
  35752. },
  35753. {
  35754. name: "Mega Macro",
  35755. height: math.unit(175, "km")
  35756. },
  35757. {
  35758. name: "Terra Macro",
  35759. height: math.unit(32, "gigameters")
  35760. },
  35761. {
  35762. name: "Multiverse+",
  35763. height: math.unit(2.56e23, "yottameters")
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(6 + 9/12, "feet"),
  35772. weight: math.unit(280, "lb"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/candy/front.svg",
  35776. extra: 234/217,
  35777. bottom: 11/245
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Really Small",
  35784. height: math.unit(0.1, "nm")
  35785. },
  35786. {
  35787. name: "Micro",
  35788. height: math.unit(2, "inches")
  35789. },
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(6 + 9/12, "feet"),
  35793. default: true
  35794. },
  35795. {
  35796. name: "Small Macro",
  35797. height: math.unit(69, "feet")
  35798. },
  35799. {
  35800. name: "Macro",
  35801. height: math.unit(160, "feet")
  35802. },
  35803. {
  35804. name: "Megamacro",
  35805. height: math.unit(22000, "miles")
  35806. },
  35807. {
  35808. name: "Gigamacro",
  35809. height: math.unit(50000, "miles")
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(4, "feet"),
  35818. weight: math.unit(90, "lb"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/joey-mcdonald/front.svg",
  35822. extra: 1059/852,
  35823. bottom: 33/1092
  35824. }
  35825. },
  35826. back: {
  35827. height: math.unit(4, "feet"),
  35828. weight: math.unit(90, "lb"),
  35829. name: "Back",
  35830. image: {
  35831. source: "./media/characters/joey-mcdonald/back.svg",
  35832. extra: 1077/879,
  35833. bottom: 5/1082
  35834. }
  35835. },
  35836. frontKobold: {
  35837. height: math.unit(4, "feet"),
  35838. weight: math.unit(100, "lb"),
  35839. name: "Front-kobold",
  35840. image: {
  35841. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35842. extra: 1480/1367,
  35843. bottom: 0/1480
  35844. }
  35845. },
  35846. backKobold: {
  35847. height: math.unit(4, "feet"),
  35848. weight: math.unit(100, "lb"),
  35849. name: "Back-kobold",
  35850. image: {
  35851. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35852. extra: 1449/1361,
  35853. bottom: 0/1449
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(4, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(12 + 6/12, "feet"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/kass-lockheed/front.svg",
  35873. extra: 354/343,
  35874. bottom: 9/363
  35875. }
  35876. },
  35877. back: {
  35878. height: math.unit(12 + 6/12, "feet"),
  35879. name: "Back",
  35880. image: {
  35881. source: "./media/characters/kass-lockheed/back.svg",
  35882. extra: 364/352,
  35883. bottom: 3/367
  35884. }
  35885. },
  35886. dick: {
  35887. height: math.unit(3.12, "feet"),
  35888. name: "Dick",
  35889. image: {
  35890. source: "./media/characters/kass-lockheed/dick.svg"
  35891. }
  35892. },
  35893. head: {
  35894. height: math.unit(2.6, "feet"),
  35895. name: "Head",
  35896. image: {
  35897. source: "./media/characters/kass-lockheed/head.svg"
  35898. }
  35899. },
  35900. bleh: {
  35901. height: math.unit(2.85, "feet"),
  35902. name: "Bleh",
  35903. image: {
  35904. source: "./media/characters/kass-lockheed/bleh.svg"
  35905. }
  35906. },
  35907. smug: {
  35908. height: math.unit(2.85, "feet"),
  35909. name: "Smug",
  35910. image: {
  35911. source: "./media/characters/kass-lockheed/smug.svg"
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(12 + 6/12, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(6 + 2/12, "feet"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/taylor/front.svg",
  35931. extra: 639/495,
  35932. bottom: 12/651
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(6 + 2/12, "feet"),
  35940. default: true
  35941. },
  35942. {
  35943. name: "Big",
  35944. height: math.unit(15, "feet")
  35945. },
  35946. {
  35947. name: "Lorg",
  35948. height: math.unit(80, "feet")
  35949. },
  35950. {
  35951. name: "Too Lorg",
  35952. height: math.unit(120, "feet")
  35953. },
  35954. ]
  35955. ))
  35956. characterMakers.push(() => makeCharacter(
  35957. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35958. {
  35959. front: {
  35960. height: math.unit(15, "feet"),
  35961. name: "Front",
  35962. image: {
  35963. source: "./media/characters/kaizer/front.svg",
  35964. extra: 1612/1436,
  35965. bottom: 43/1655
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(15, "feet"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(2, "feet"),
  35982. weight: math.unit(30, "lb"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/sandy/front.svg",
  35986. extra: 1439/1307,
  35987. bottom: 194/1633
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Normal",
  35994. height: math.unit(2, "feet"),
  35995. default: true
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(3, "feet"),
  36004. name: "Front",
  36005. image: {
  36006. source: "./media/characters/mellvi/front.svg",
  36007. extra: 1831/1630,
  36008. bottom: 58/1889
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(3, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(5 + 11/12, "feet"),
  36025. weight: math.unit(200, "lb"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/shirou/front.svg",
  36029. extra: 2491/2383,
  36030. bottom: 189/2680
  36031. }
  36032. },
  36033. back: {
  36034. height: math.unit(5 + 11/12, "feet"),
  36035. weight: math.unit(200, "lb"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/shirou/back.svg",
  36039. extra: 2554/2450,
  36040. bottom: 76/2630
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(5 + 11/12, "feet"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(6 + 3/12, "feet"),
  36057. weight: math.unit(177, "lb"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/noryu/front.svg",
  36061. extra: 973/885,
  36062. bottom: 10/983
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(6 + 3/12, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(5 + 6/12, "feet"),
  36079. weight: math.unit(170, "lb"),
  36080. name: "Front",
  36081. image: {
  36082. source: "./media/characters/mevolas-rubenido/front.svg",
  36083. extra: 2109/1901,
  36084. bottom: 96/2205
  36085. }
  36086. },
  36087. },
  36088. [
  36089. {
  36090. name: "Normal",
  36091. height: math.unit(5 + 6/12, "feet"),
  36092. default: true
  36093. },
  36094. ]
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(100, "feet"),
  36101. name: "Front",
  36102. image: {
  36103. source: "./media/characters/dee/front.svg",
  36104. extra: 2153/2036,
  36105. bottom: 59/2212
  36106. }
  36107. },
  36108. back: {
  36109. height: math.unit(100, "feet"),
  36110. name: "Back",
  36111. image: {
  36112. source: "./media/characters/dee/back.svg",
  36113. extra: 2183/2058,
  36114. bottom: 75/2258
  36115. }
  36116. },
  36117. foot: {
  36118. height: math.unit(19.43, "feet"),
  36119. name: "Foot",
  36120. image: {
  36121. source: "./media/characters/dee/foot.svg"
  36122. }
  36123. },
  36124. hoof: {
  36125. height: math.unit(20.6, "feet"),
  36126. name: "Hoof",
  36127. image: {
  36128. source: "./media/characters/dee/hoof.svg"
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Macro",
  36135. height: math.unit(100, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36142. {
  36143. front: {
  36144. height: math.unit(5 + 6/12, "feet"),
  36145. name: "Front",
  36146. image: {
  36147. source: "./media/characters/teh/front.svg",
  36148. extra: 1002/847,
  36149. bottom: 62/1064
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(5 + 6/12, "feet"),
  36157. default: true
  36158. },
  36159. ]
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36163. {
  36164. side: {
  36165. height: math.unit(6 + 1/12, "feet"),
  36166. weight: math.unit(204, "lb"),
  36167. name: "Side",
  36168. image: {
  36169. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36170. extra: 974/775,
  36171. bottom: 169/1143
  36172. }
  36173. },
  36174. sitting: {
  36175. height: math.unit(6 + 2/12, "feet"),
  36176. weight: math.unit(204, "lb"),
  36177. name: "Sitting",
  36178. image: {
  36179. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36180. extra: 1175/964,
  36181. bottom: 378/1553
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(6 + 1/12, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(6, "inches"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/tululi/front.svg",
  36201. extra: 1997/1876,
  36202. bottom: 20/2017
  36203. }
  36204. },
  36205. },
  36206. [
  36207. {
  36208. name: "Normal",
  36209. height: math.unit(6, "inches"),
  36210. default: true
  36211. },
  36212. ]
  36213. ))
  36214. characterMakers.push(() => makeCharacter(
  36215. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36216. {
  36217. front: {
  36218. height: math.unit(4 + 1/12, "feet"),
  36219. name: "Front",
  36220. image: {
  36221. source: "./media/characters/star/front.svg",
  36222. extra: 1493/1189,
  36223. bottom: 48/1541
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(4 + 1/12, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(6 + 3/12, "feet"),
  36240. name: "Front",
  36241. image: {
  36242. source: "./media/characters/comet/front.svg",
  36243. extra: 1681/1462,
  36244. bottom: 26/1707
  36245. }
  36246. },
  36247. },
  36248. [
  36249. {
  36250. name: "Normal",
  36251. height: math.unit(6 + 3/12, "feet"),
  36252. default: true
  36253. },
  36254. ]
  36255. ))
  36256. characterMakers.push(() => makeCharacter(
  36257. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36258. {
  36259. front: {
  36260. height: math.unit(950, "feet"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/vortex/front.svg",
  36264. extra: 1497/1434,
  36265. bottom: 56/1553
  36266. }
  36267. },
  36268. maw: {
  36269. height: math.unit(285, "feet"),
  36270. name: "Maw",
  36271. image: {
  36272. source: "./media/characters/vortex/maw.svg"
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Macro",
  36279. height: math.unit(950, "feet"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36286. {
  36287. front: {
  36288. height: math.unit(600, "feet"),
  36289. weight: math.unit(0.02, "grams"),
  36290. name: "Front",
  36291. image: {
  36292. source: "./media/characters/doodle/front.svg",
  36293. extra: 1578/1413,
  36294. bottom: 37/1615
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Macro",
  36301. height: math.unit(600, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(6 + 6/12, "feet"),
  36311. name: "Front",
  36312. image: {
  36313. source: "./media/characters/jai/front.svg",
  36314. extra: 1645/1534,
  36315. bottom: 115/1760
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(6 + 6/12, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36329. {
  36330. front: {
  36331. height: math.unit(6 + 8/12, "feet"),
  36332. name: "Front",
  36333. image: {
  36334. source: "./media/characters/pixel/front.svg",
  36335. extra: 1900/1735,
  36336. bottom: 63/1963
  36337. }
  36338. },
  36339. },
  36340. [
  36341. {
  36342. name: "Normal",
  36343. height: math.unit(6 + 8/12, "feet"),
  36344. default: true
  36345. },
  36346. ]
  36347. ))
  36348. characterMakers.push(() => makeCharacter(
  36349. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36350. {
  36351. back: {
  36352. height: math.unit(4 + 1/12, "feet"),
  36353. weight: math.unit(75, "lb"),
  36354. name: "Back",
  36355. image: {
  36356. source: "./media/characters/rhett/back.svg",
  36357. extra: 930/878,
  36358. bottom: 25/955
  36359. }
  36360. },
  36361. front: {
  36362. height: math.unit(4 + 1/12, "feet"),
  36363. weight: math.unit(75, "lb"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/rhett/front.svg",
  36367. extra: 1682/1586,
  36368. bottom: 92/1774
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Micro",
  36375. height: math.unit(8, "inches")
  36376. },
  36377. {
  36378. name: "Tiny",
  36379. height: math.unit(2, "feet")
  36380. },
  36381. {
  36382. name: "Normal",
  36383. height: math.unit(4 + 1/12, "feet"),
  36384. default: true
  36385. },
  36386. ]
  36387. ))
  36388. characterMakers.push(() => makeCharacter(
  36389. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36390. {
  36391. front: {
  36392. height: math.unit(3 + 3/12, "feet"),
  36393. name: "Front",
  36394. image: {
  36395. source: "./media/characters/penny/front.svg",
  36396. extra: 1406/1311,
  36397. bottom: 26/1432
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(3 + 3/12, "feet"),
  36405. default: true
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(4 + 11/12, "feet"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/monty/front.svg",
  36417. extra: 1479/1209,
  36418. bottom: 0/1479
  36419. }
  36420. },
  36421. },
  36422. [
  36423. {
  36424. name: "Normal",
  36425. height: math.unit(4 + 11/12, "feet"),
  36426. default: true
  36427. },
  36428. ]
  36429. ))
  36430. characterMakers.push(() => makeCharacter(
  36431. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36432. {
  36433. front: {
  36434. height: math.unit(8 + 4/12, "feet"),
  36435. name: "Front",
  36436. image: {
  36437. source: "./media/characters/sterling/front.svg",
  36438. extra: 1420/1236,
  36439. bottom: 27/1447
  36440. }
  36441. },
  36442. },
  36443. [
  36444. {
  36445. name: "Normal",
  36446. height: math.unit(8 + 4/12, "feet"),
  36447. default: true
  36448. },
  36449. ]
  36450. ))
  36451. characterMakers.push(() => makeCharacter(
  36452. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36453. {
  36454. front: {
  36455. height: math.unit(15, "feet"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/marble/front.svg",
  36459. extra: 973/937,
  36460. bottom: 32/1005
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(15, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36474. {
  36475. front: {
  36476. height: math.unit(3, "inches"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/powder/front.svg",
  36480. extra: 1504/1334,
  36481. bottom: 518/2022
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(3, "inches"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(4 + 5/12, "feet"),
  36498. name: "Front",
  36499. image: {
  36500. source: "./media/characters/joey-raccoon/front.svg",
  36501. extra: 1273/1197,
  36502. bottom: 0/1273
  36503. }
  36504. },
  36505. },
  36506. [
  36507. {
  36508. name: "Normal",
  36509. height: math.unit(4 + 5/12, "feet"),
  36510. default: true
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36516. {
  36517. front: {
  36518. height: math.unit(8 + 4/12, "feet"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/vick/front.svg",
  36522. extra: 2187/2118,
  36523. bottom: 47/2234
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(8 + 4/12, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(5 + 5/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/mitsy/front.svg",
  36543. extra: 1842/1695,
  36544. bottom: 0/1842
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(5 + 5/12, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(6 + 3/12, "feet"),
  36561. name: "Front",
  36562. image: {
  36563. source: "./media/characters/silvy/front.svg",
  36564. extra: 1995/1836,
  36565. bottom: 225/2220
  36566. }
  36567. },
  36568. },
  36569. [
  36570. {
  36571. name: "Normal",
  36572. height: math.unit(6 + 3/12, "feet"),
  36573. default: true
  36574. },
  36575. ]
  36576. ))
  36577. characterMakers.push(() => makeCharacter(
  36578. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36579. {
  36580. front: {
  36581. height: math.unit(3 + 8/12, "feet"),
  36582. name: "Front",
  36583. image: {
  36584. source: "./media/characters/rodney/front.svg",
  36585. extra: 1956/1747,
  36586. bottom: 31/1987
  36587. }
  36588. },
  36589. frontDressed: {
  36590. height: math.unit(2.9, "feet"),
  36591. name: "Front (Dressed)",
  36592. image: {
  36593. source: "./media/characters/rodney/front-dressed.svg",
  36594. extra: 1382/1241,
  36595. bottom: 385/1767
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(3 + 8/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(5 + 9/12, "feet"),
  36612. weight: math.unit(194, "lbs"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/zakail-sudekai/front.svg",
  36616. extra: 2696/2533,
  36617. bottom: 248/2944
  36618. }
  36619. },
  36620. maw: {
  36621. height: math.unit(1.35, "feet"),
  36622. name: "Maw",
  36623. image: {
  36624. source: "./media/characters/zakail-sudekai/maw.svg"
  36625. }
  36626. },
  36627. },
  36628. [
  36629. {
  36630. name: "Normal",
  36631. height: math.unit(5 + 9/12, "feet"),
  36632. default: true
  36633. },
  36634. ]
  36635. ))
  36636. characterMakers.push(() => makeCharacter(
  36637. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36638. {
  36639. front: {
  36640. height: math.unit(8 + 4/12, "feet"),
  36641. weight: math.unit(1200, "lb"),
  36642. name: "Front",
  36643. image: {
  36644. source: "./media/characters/eleanor/front.svg",
  36645. extra: 1226/1192,
  36646. bottom: 52/1278
  36647. }
  36648. },
  36649. back: {
  36650. height: math.unit(8 + 4/12, "feet"),
  36651. weight: math.unit(1200, "lb"),
  36652. name: "Back",
  36653. image: {
  36654. source: "./media/characters/eleanor/back.svg",
  36655. extra: 1242/1184,
  36656. bottom: 60/1302
  36657. }
  36658. },
  36659. head: {
  36660. height: math.unit(2.62, "feet"),
  36661. name: "Head",
  36662. image: {
  36663. source: "./media/characters/eleanor/head.svg"
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(8 + 4/12, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(8 + 4/12, "feet"),
  36680. weight: math.unit(750, "lb"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/tanya/front.svg",
  36684. extra: 1749/1615,
  36685. bottom: 33/1782
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(8 + 4/12, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36699. {
  36700. front: {
  36701. height: math.unit(5, "feet"),
  36702. weight: math.unit(225, "lb"),
  36703. name: "Front",
  36704. image: {
  36705. source: "./media/characters/cindy/front.svg",
  36706. extra: 1320/1250,
  36707. bottom: 42/1362
  36708. }
  36709. },
  36710. frontDressed: {
  36711. height: math.unit(5, "feet"),
  36712. weight: math.unit(225, "lb"),
  36713. name: "Front (Dressed)",
  36714. image: {
  36715. source: "./media/characters/cindy/front-dressed.svg",
  36716. extra: 1320/1250,
  36717. bottom: 42/1362
  36718. }
  36719. },
  36720. back: {
  36721. height: math.unit(5, "feet"),
  36722. weight: math.unit(225, "lb"),
  36723. name: "Back",
  36724. image: {
  36725. source: "./media/characters/cindy/back.svg",
  36726. extra: 1384/1346,
  36727. bottom: 14/1398
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(5, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36741. {
  36742. front: {
  36743. height: math.unit(6 + 9/12, "feet"),
  36744. weight: math.unit(440, "lb"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/wilbur-owen/front.svg",
  36748. extra: 1575/1448,
  36749. bottom: 72/1647
  36750. }
  36751. },
  36752. back: {
  36753. height: math.unit(6 + 9/12, "feet"),
  36754. weight: math.unit(440, "lb"),
  36755. name: "Back",
  36756. image: {
  36757. source: "./media/characters/wilbur-owen/back.svg",
  36758. extra: 1578/1445,
  36759. bottom: 36/1614
  36760. }
  36761. },
  36762. },
  36763. [
  36764. {
  36765. name: "Normal",
  36766. height: math.unit(6 + 9/12, "feet"),
  36767. default: true
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(6 + 5/12, "feet"),
  36776. weight: math.unit(650, "lb"),
  36777. name: "Front",
  36778. image: {
  36779. source: "./media/characters/keegan/front.svg",
  36780. extra: 2387/2198,
  36781. bottom: 33/2420
  36782. }
  36783. },
  36784. side: {
  36785. height: math.unit(6 + 5/12, "feet"),
  36786. weight: math.unit(650, "lb"),
  36787. name: "Side",
  36788. image: {
  36789. source: "./media/characters/keegan/side.svg",
  36790. extra: 2390/2202,
  36791. bottom: 47/2437
  36792. }
  36793. },
  36794. back: {
  36795. height: math.unit(6 + 5/12, "feet"),
  36796. weight: math.unit(650, "lb"),
  36797. name: "Back",
  36798. image: {
  36799. source: "./media/characters/keegan/back.svg",
  36800. extra: 2418/2268,
  36801. bottom: 15/2433
  36802. }
  36803. },
  36804. frontSfw: {
  36805. height: math.unit(6 + 5/12, "feet"),
  36806. weight: math.unit(650, "lb"),
  36807. name: "Front (SFW)",
  36808. image: {
  36809. source: "./media/characters/keegan/front-sfw.svg",
  36810. extra: 2387/2198,
  36811. bottom: 33/2420
  36812. }
  36813. },
  36814. beans: {
  36815. height: math.unit(1.85, "feet"),
  36816. name: "Beans",
  36817. image: {
  36818. source: "./media/characters/keegan/beans.svg"
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(6 + 5/12, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(9, "feet"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/colton/front.svg",
  36838. extra: 1589/1326,
  36839. bottom: 139/1728
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(9, "feet"),
  36847. default: true
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(2 + 9/12, "feet"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/bora/front.svg",
  36859. extra: 1265/1250,
  36860. bottom: 24/1289
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(2 + 9/12, "feet"),
  36868. default: true
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(8, "feet"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/myu-myu/front.svg",
  36880. extra: 1949/1857,
  36881. bottom: 90/2039
  36882. }
  36883. },
  36884. },
  36885. [
  36886. {
  36887. name: "Normal",
  36888. height: math.unit(8, "feet"),
  36889. default: true
  36890. },
  36891. {
  36892. name: "Big",
  36893. height: math.unit(15, "feet")
  36894. },
  36895. {
  36896. name: "BIG",
  36897. height: math.unit(25, "feet")
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36903. {
  36904. side: {
  36905. height: math.unit(7 + 5/12, "feet"),
  36906. weight: math.unit(2800, "lb"),
  36907. name: "Side",
  36908. image: {
  36909. source: "./media/characters/haloren/side.svg",
  36910. extra: 1793/409,
  36911. bottom: 59/1852
  36912. }
  36913. },
  36914. frontPaw: {
  36915. height: math.unit(2.36, "feet"),
  36916. name: "Front paw",
  36917. image: {
  36918. source: "./media/characters/haloren/front-paw.svg"
  36919. }
  36920. },
  36921. hindPaw: {
  36922. height: math.unit(3.18, "feet"),
  36923. name: "Hind paw",
  36924. image: {
  36925. source: "./media/characters/haloren/hind-paw.svg"
  36926. }
  36927. },
  36928. maw: {
  36929. height: math.unit(5.05, "feet"),
  36930. name: "Maw",
  36931. image: {
  36932. source: "./media/characters/haloren/maw.svg"
  36933. }
  36934. },
  36935. dick: {
  36936. height: math.unit(2.90, "feet"),
  36937. name: "Dick",
  36938. image: {
  36939. source: "./media/characters/haloren/dick.svg"
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(7 + 5/12, "feet"),
  36947. default: true
  36948. },
  36949. {
  36950. name: "Enhanced",
  36951. height: math.unit(14 + 3/12, "feet")
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(171, "cm"),
  36960. name: "Front",
  36961. image: {
  36962. source: "./media/characters/kimmy/front.svg",
  36963. extra: 1491/1435,
  36964. bottom: 53/1544
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Small",
  36971. height: math.unit(9, "cm")
  36972. },
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(171, "cm"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36982. {
  36983. front: {
  36984. height: math.unit(8, "feet"),
  36985. weight: math.unit(300, "lb"),
  36986. name: "Front",
  36987. image: {
  36988. source: "./media/characters/galeboomer/front.svg",
  36989. extra: 4651/4415,
  36990. bottom: 162/4813
  36991. }
  36992. },
  36993. back: {
  36994. height: math.unit(8, "feet"),
  36995. weight: math.unit(300, "lb"),
  36996. name: "Back",
  36997. image: {
  36998. source: "./media/characters/galeboomer/back.svg",
  36999. extra: 4544/4314,
  37000. bottom: 16/4560
  37001. }
  37002. },
  37003. frontAlt: {
  37004. height: math.unit(8, "feet"),
  37005. weight: math.unit(300, "lb"),
  37006. name: "Front (Alt)",
  37007. image: {
  37008. source: "./media/characters/galeboomer/front-alt.svg",
  37009. extra: 4458/4228,
  37010. bottom: 68/4526
  37011. }
  37012. },
  37013. maw: {
  37014. height: math.unit(1.2, "feet"),
  37015. name: "Maw",
  37016. image: {
  37017. source: "./media/characters/galeboomer/maw.svg"
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(8, "feet"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(5 + 9/12, "feet"),
  37034. weight: math.unit(120, "lb"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/chyr/front.svg",
  37038. extra: 1323/1254,
  37039. bottom: 63/1386
  37040. }
  37041. },
  37042. back: {
  37043. height: math.unit(5 + 9/12, "feet"),
  37044. weight: math.unit(120, "lb"),
  37045. name: "Back",
  37046. image: {
  37047. source: "./media/characters/chyr/back.svg",
  37048. extra: 1323/1252,
  37049. bottom: 48/1371
  37050. }
  37051. },
  37052. },
  37053. [
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(5 + 9/12, "feet"),
  37057. default: true
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(7, "feet"),
  37066. weight: math.unit(310, "lb"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/solarus/front.svg",
  37070. extra: 2415/2021,
  37071. bottom: 103/2518
  37072. }
  37073. },
  37074. back: {
  37075. height: math.unit(7, "feet"),
  37076. weight: math.unit(310, "lb"),
  37077. name: "Back",
  37078. image: {
  37079. source: "./media/characters/solarus/back.svg",
  37080. extra: 2463/2089,
  37081. bottom: 79/2542
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Normal",
  37088. height: math.unit(7, "feet"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(16, "feet"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37101. extra: 1844/1780,
  37102. bottom: 58/1902
  37103. }
  37104. },
  37105. winterCoat: {
  37106. height: math.unit(16, "feet"),
  37107. name: "Winter Coat",
  37108. image: {
  37109. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37110. extra: 1807/1775,
  37111. bottom: 69/1876
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(16, "feet"),
  37119. default: true
  37120. },
  37121. {
  37122. name: "Chicago Size",
  37123. height: math.unit(560, "feet")
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(11 + 6/12, "feet"),
  37132. weight: math.unit(1366, "lb"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/lexor/front.svg",
  37136. extra: 1560/1481,
  37137. bottom: 211/1771
  37138. }
  37139. },
  37140. back: {
  37141. height: math.unit(11 + 6/12, "feet"),
  37142. weight: math.unit(1366, "lb"),
  37143. name: "Back",
  37144. image: {
  37145. source: "./media/characters/lexor/back.svg",
  37146. extra: 1614/1533,
  37147. bottom: 76/1690
  37148. }
  37149. },
  37150. maw: {
  37151. height: math.unit(3, "feet"),
  37152. name: "Maw",
  37153. image: {
  37154. source: "./media/characters/lexor/maw.svg"
  37155. }
  37156. },
  37157. dick: {
  37158. height: math.unit(2.59, "feet"),
  37159. name: "Dick",
  37160. image: {
  37161. source: "./media/characters/lexor/dick.svg"
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(11 + 6/12, "feet"),
  37169. default: true
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37175. {
  37176. front: {
  37177. height: math.unit(5 + 8/12, "feet"),
  37178. name: "Front",
  37179. image: {
  37180. source: "./media/characters/magnum/front.svg",
  37181. extra: 942/855,
  37182. bottom: 26/968
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(5 + 8/12, "feet"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(18 + 4/12, "feet"),
  37199. weight: math.unit(1500, "kg"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/solas-sharpsman/front.svg",
  37203. extra: 1698/1589,
  37204. bottom: 0/1698
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(18 + 4/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(5 + 5/12, "feet"),
  37221. weight: math.unit(180, "lb"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/october/front.svg",
  37225. extra: 1800/1650,
  37226. bottom: 0/1800
  37227. }
  37228. },
  37229. frontNsfw: {
  37230. height: math.unit(5 + 5/12, "feet"),
  37231. weight: math.unit(180, "lb"),
  37232. name: "Front (NSFW)",
  37233. image: {
  37234. source: "./media/characters/october/front-nsfw.svg",
  37235. extra: 1392/1307,
  37236. bottom: 42/1434
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(5 + 5/12, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(8 + 6/12, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/essynkardi/front.svg",
  37256. extra: 1914/1846,
  37257. bottom: 22/1936
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(8 + 6/12, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(6 + 6/12, "feet"),
  37274. weight: math.unit(7, "lb"),
  37275. name: "Front",
  37276. image: {
  37277. source: "./media/characters/icky/front.svg",
  37278. extra: 813/782,
  37279. bottom: 66/879
  37280. }
  37281. },
  37282. back: {
  37283. height: math.unit(6 + 6/12, "feet"),
  37284. weight: math.unit(7, "lb"),
  37285. name: "Back",
  37286. image: {
  37287. source: "./media/characters/icky/back.svg",
  37288. extra: 754/735,
  37289. bottom: 56/810
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(6 + 6/12, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(15, "feet"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/rojas/front.svg",
  37309. extra: 1462/1408,
  37310. bottom: 95/1557
  37311. }
  37312. },
  37313. back: {
  37314. height: math.unit(15, "feet"),
  37315. name: "Back",
  37316. image: {
  37317. source: "./media/characters/rojas/back.svg",
  37318. extra: 1023/954,
  37319. bottom: 28/1051
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(15, "feet"),
  37327. default: true
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37333. {
  37334. frontHuman: {
  37335. height: math.unit(5 + 7/12, "feet"),
  37336. name: "Front (Human)",
  37337. image: {
  37338. source: "./media/characters/alek-dryagan/front-human.svg",
  37339. extra: 1687/1667,
  37340. bottom: 69/1756
  37341. }
  37342. },
  37343. backHuman: {
  37344. height: math.unit(5 + 7/12, "feet"),
  37345. name: "Back (Human)",
  37346. image: {
  37347. source: "./media/characters/alek-dryagan/back-human.svg",
  37348. extra: 1670/1649,
  37349. bottom: 65/1735
  37350. }
  37351. },
  37352. frontDemi: {
  37353. height: math.unit(65, "feet"),
  37354. name: "Front (Demi)",
  37355. image: {
  37356. source: "./media/characters/alek-dryagan/front-demi.svg",
  37357. extra: 1669/1642,
  37358. bottom: 49/1718
  37359. }
  37360. },
  37361. backDemi: {
  37362. height: math.unit(65, "feet"),
  37363. name: "Back (Demi)",
  37364. image: {
  37365. source: "./media/characters/alek-dryagan/back-demi.svg",
  37366. extra: 1658/1637,
  37367. bottom: 40/1698
  37368. }
  37369. },
  37370. mawHuman: {
  37371. height: math.unit(0.3, "feet"),
  37372. name: "Maw (Human)",
  37373. image: {
  37374. source: "./media/characters/alek-dryagan/maw-human.svg"
  37375. }
  37376. },
  37377. mawDemi: {
  37378. height: math.unit(3.8, "feet"),
  37379. name: "Maw (Demi)",
  37380. image: {
  37381. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37382. }
  37383. },
  37384. },
  37385. [
  37386. {
  37387. name: "Normal",
  37388. height: math.unit(5 + 7/12, "feet"),
  37389. default: true
  37390. },
  37391. ]
  37392. ))
  37393. characterMakers.push(() => makeCharacter(
  37394. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37395. {
  37396. frontHuman: {
  37397. height: math.unit(5 + 2/12, "feet"),
  37398. name: "Front (Human)",
  37399. image: {
  37400. source: "./media/characters/gen/front-human.svg",
  37401. extra: 1627/1538,
  37402. bottom: 71/1698
  37403. }
  37404. },
  37405. backHuman: {
  37406. height: math.unit(5 + 2/12, "feet"),
  37407. name: "Back (Human)",
  37408. image: {
  37409. source: "./media/characters/gen/back-human.svg",
  37410. extra: 1638/1548,
  37411. bottom: 69/1707
  37412. }
  37413. },
  37414. frontDemi: {
  37415. height: math.unit(5 + 2/12, "feet"),
  37416. name: "Front (Demi)",
  37417. image: {
  37418. source: "./media/characters/gen/front-demi.svg",
  37419. extra: 1627/1538,
  37420. bottom: 71/1698
  37421. }
  37422. },
  37423. backDemi: {
  37424. height: math.unit(5 + 2/12, "feet"),
  37425. name: "Back (Demi)",
  37426. image: {
  37427. source: "./media/characters/gen/back-demi.svg",
  37428. extra: 1638/1548,
  37429. bottom: 69/1707
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(5 + 2/12, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37443. {
  37444. frontImp: {
  37445. height: math.unit(1 + 11/12, "feet"),
  37446. name: "Front (Imp)",
  37447. image: {
  37448. source: "./media/characters/max-kobold/front-imp.svg",
  37449. extra: 1238/1134,
  37450. bottom: 81/1319
  37451. }
  37452. },
  37453. backImp: {
  37454. height: math.unit(1 + 11/12, "feet"),
  37455. name: "Back (Imp)",
  37456. image: {
  37457. source: "./media/characters/max-kobold/back-imp.svg",
  37458. extra: 1334/1175,
  37459. bottom: 34/1368
  37460. }
  37461. },
  37462. frontDemi: {
  37463. height: math.unit(5 + 9/12, "feet"),
  37464. name: "Front (Demi)",
  37465. image: {
  37466. source: "./media/characters/max-kobold/front-demi.svg",
  37467. extra: 1715/1685,
  37468. bottom: 54/1769
  37469. }
  37470. },
  37471. backDemi: {
  37472. height: math.unit(5 + 9/12, "feet"),
  37473. name: "Back (Demi)",
  37474. image: {
  37475. source: "./media/characters/max-kobold/back-demi.svg",
  37476. extra: 1752/1729,
  37477. bottom: 41/1793
  37478. }
  37479. },
  37480. handImp: {
  37481. height: math.unit(0.45, "feet"),
  37482. name: "Hand (Imp)",
  37483. image: {
  37484. source: "./media/characters/max-kobold/hand.svg"
  37485. }
  37486. },
  37487. pawImp: {
  37488. height: math.unit(0.46, "feet"),
  37489. name: "Paw (Imp)",
  37490. image: {
  37491. source: "./media/characters/max-kobold/paw.svg"
  37492. }
  37493. },
  37494. handDemi: {
  37495. height: math.unit(0.80, "feet"),
  37496. name: "Hand (Demi)",
  37497. image: {
  37498. source: "./media/characters/max-kobold/hand.svg"
  37499. }
  37500. },
  37501. pawDemi: {
  37502. height: math.unit(1.1, "feet"),
  37503. name: "Paw (Demi)",
  37504. image: {
  37505. source: "./media/characters/max-kobold/paw.svg"
  37506. }
  37507. },
  37508. headImp: {
  37509. height: math.unit(1.33, "feet"),
  37510. name: "Head (Imp)",
  37511. image: {
  37512. source: "./media/characters/max-kobold/head-imp.svg"
  37513. }
  37514. },
  37515. mawImp: {
  37516. height: math.unit(0.75, "feet"),
  37517. name: "Maw (Imp)",
  37518. image: {
  37519. source: "./media/characters/max-kobold/maw-imp.svg"
  37520. }
  37521. },
  37522. mawDemi: {
  37523. height: math.unit(0.42, "feet"),
  37524. name: "Maw (Demi)",
  37525. image: {
  37526. source: "./media/characters/max-kobold/maw-demi.svg"
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(1 + 11/12, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(7 + 5/12, "feet"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/carbon/front.svg",
  37546. extra: 1754/1689,
  37547. bottom: 65/1819
  37548. }
  37549. },
  37550. back: {
  37551. height: math.unit(7 + 5/12, "feet"),
  37552. name: "Back",
  37553. image: {
  37554. source: "./media/characters/carbon/back.svg",
  37555. extra: 1762/1695,
  37556. bottom: 24/1786
  37557. }
  37558. },
  37559. frontGigantamax: {
  37560. height: math.unit(150, "feet"),
  37561. name: "Front (Gigantamax)",
  37562. image: {
  37563. source: "./media/characters/carbon/front-gigantamax.svg",
  37564. extra: 1826/1669,
  37565. bottom: 59/1885
  37566. }
  37567. },
  37568. backGigantamax: {
  37569. height: math.unit(150, "feet"),
  37570. name: "Back (Gigantamax)",
  37571. image: {
  37572. source: "./media/characters/carbon/back-gigantamax.svg",
  37573. extra: 1796/1653,
  37574. bottom: 53/1849
  37575. }
  37576. },
  37577. maw: {
  37578. height: math.unit(0.48, "feet"),
  37579. name: "Maw",
  37580. image: {
  37581. source: "./media/characters/carbon/maw.svg"
  37582. }
  37583. },
  37584. mawGigantamax: {
  37585. height: math.unit(7.5, "feet"),
  37586. name: "Maw (Gigantamax)",
  37587. image: {
  37588. source: "./media/characters/carbon/maw-gigantamax.svg"
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(7 + 5/12, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(6, "feet"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/maverick/front.svg",
  37608. extra: 1672/1661,
  37609. bottom: 85/1757
  37610. }
  37611. },
  37612. back: {
  37613. height: math.unit(6, "feet"),
  37614. name: "Back",
  37615. image: {
  37616. source: "./media/characters/maverick/back.svg",
  37617. extra: 1642/1631,
  37618. bottom: 38/1680
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(6, "feet"),
  37626. default: true
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37632. {
  37633. front: {
  37634. height: math.unit(15, "feet"),
  37635. weight: math.unit(615, "lb"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/grockle/front.svg",
  37639. extra: 1535/1427,
  37640. bottom: 56/1591
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(15, "feet"),
  37648. default: true
  37649. },
  37650. {
  37651. name: "Large",
  37652. height: math.unit(150, "feet")
  37653. },
  37654. {
  37655. name: "Macro",
  37656. height: math.unit(1876, "feet")
  37657. },
  37658. {
  37659. name: "Mega Macro",
  37660. height: math.unit(121940, "feet")
  37661. },
  37662. {
  37663. name: "Giga Macro",
  37664. height: math.unit(750, "km")
  37665. },
  37666. {
  37667. name: "Tera Macro",
  37668. height: math.unit(750000, "km")
  37669. },
  37670. {
  37671. name: "Galactic",
  37672. height: math.unit(1.4e5, "km")
  37673. },
  37674. {
  37675. name: "Godlike",
  37676. height: math.unit(9.8e280, "galaxies")
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(11, "meters"),
  37685. weight: math.unit(20, "tonnes"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/alistair/front.svg",
  37689. extra: 1265/1009,
  37690. bottom: 93/1358
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(11, "meters"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(5 + 8/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/haruka/front.svg",
  37710. extra: 2012/1952,
  37711. bottom: 0/2012
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(5 + 8/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37725. {
  37726. back: {
  37727. height: math.unit(9, "feet"),
  37728. name: "Back",
  37729. image: {
  37730. source: "./media/characters/vivian-sylveon/back.svg",
  37731. extra: 1853/1714,
  37732. bottom: 0/1853
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Normal",
  37739. height: math.unit(9, "feet"),
  37740. default: true
  37741. },
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(500, "feet")
  37745. },
  37746. {
  37747. name: "Megamacro",
  37748. height: math.unit(600, "miles")
  37749. },
  37750. {
  37751. name: "Gigamacro",
  37752. height: math.unit(30000, "miles")
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37758. {
  37759. anthro: {
  37760. height: math.unit(5 + 10/12, "feet"),
  37761. weight: math.unit(100, "lb"),
  37762. name: "Anthro",
  37763. image: {
  37764. source: "./media/characters/daiki/anthro.svg",
  37765. extra: 1115/1027,
  37766. bottom: 69/1184
  37767. }
  37768. },
  37769. feral: {
  37770. height: math.unit(200, "feet"),
  37771. name: "Feral",
  37772. image: {
  37773. source: "./media/characters/daiki/feral.svg",
  37774. extra: 1256/313,
  37775. bottom: 39/1295
  37776. }
  37777. },
  37778. feralHead: {
  37779. height: math.unit(171, "feet"),
  37780. name: "Feral Head",
  37781. image: {
  37782. source: "./media/characters/daiki/feral-head.svg"
  37783. }
  37784. },
  37785. manaDragon: {
  37786. height: math.unit(170, "meters"),
  37787. name: "Mana-dragon",
  37788. image: {
  37789. source: "./media/characters/daiki/mana-dragon.svg",
  37790. extra: 763/420,
  37791. bottom: 97/860
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(5 + 10/12, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37805. {
  37806. fullyEquippedFront: {
  37807. height: math.unit(3 + 1/12, "feet"),
  37808. weight: math.unit(24, "lb"),
  37809. name: "Fully Equipped (Front)",
  37810. image: {
  37811. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37812. extra: 687/605,
  37813. bottom: 18/705
  37814. }
  37815. },
  37816. fullyEquippedBack: {
  37817. height: math.unit(3 + 1/12, "feet"),
  37818. weight: math.unit(24, "lb"),
  37819. name: "Fully Equipped (Back)",
  37820. image: {
  37821. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37822. extra: 689/590,
  37823. bottom: 18/707
  37824. }
  37825. },
  37826. dailyWear: {
  37827. height: math.unit(3 + 1/12, "feet"),
  37828. weight: math.unit(24, "lb"),
  37829. name: "Daily Wear",
  37830. image: {
  37831. source: "./media/characters/tea-spot/daily-wear.svg",
  37832. extra: 701/620,
  37833. bottom: 21/722
  37834. }
  37835. },
  37836. maidWork: {
  37837. height: math.unit(3 + 1/12, "feet"),
  37838. weight: math.unit(24, "lb"),
  37839. name: "Maid Work",
  37840. image: {
  37841. source: "./media/characters/tea-spot/maid-work.svg",
  37842. extra: 693/609,
  37843. bottom: 15/708
  37844. }
  37845. },
  37846. },
  37847. [
  37848. {
  37849. name: "Normal",
  37850. height: math.unit(3 + 1/12, "feet"),
  37851. default: true
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37857. {
  37858. front: {
  37859. height: math.unit(175, "cm"),
  37860. weight: math.unit(75, "kg"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/chee/front.svg",
  37864. extra: 1796/1740,
  37865. bottom: 40/1836
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Micro-Micro",
  37872. height: math.unit(1, "nm")
  37873. },
  37874. {
  37875. name: "Micro-erst",
  37876. height: math.unit(1, "micrometer")
  37877. },
  37878. {
  37879. name: "Micro-er",
  37880. height: math.unit(1, "cm")
  37881. },
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(175, "cm"),
  37885. default: true
  37886. },
  37887. {
  37888. name: "Macro",
  37889. height: math.unit(100, "m")
  37890. },
  37891. {
  37892. name: "Macro-er",
  37893. height: math.unit(1, "km")
  37894. },
  37895. {
  37896. name: "Macro-erst",
  37897. height: math.unit(10, "km")
  37898. },
  37899. {
  37900. name: "Macro-Macro",
  37901. height: math.unit(100, "km")
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(11 + 9/12, "feet"),
  37910. weight: math.unit(935, "lb"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/kingsley/front.svg",
  37914. extra: 1803/1674,
  37915. bottom: 127/1930
  37916. }
  37917. },
  37918. frontNude: {
  37919. height: math.unit(11 + 9/12, "feet"),
  37920. weight: math.unit(935, "lb"),
  37921. name: "Front (Nude)",
  37922. image: {
  37923. source: "./media/characters/kingsley/front-nude.svg",
  37924. extra: 1803/1674,
  37925. bottom: 127/1930
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Normal",
  37932. height: math.unit(11 + 9/12, "feet"),
  37933. default: true
  37934. },
  37935. ]
  37936. ))
  37937. characterMakers.push(() => makeCharacter(
  37938. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37939. {
  37940. side: {
  37941. height: math.unit(9, "feet"),
  37942. name: "Side",
  37943. image: {
  37944. source: "./media/characters/rymel/side.svg",
  37945. extra: 792/469,
  37946. bottom: 121/913
  37947. }
  37948. },
  37949. maw: {
  37950. height: math.unit(2.4, "meters"),
  37951. name: "Maw",
  37952. image: {
  37953. source: "./media/characters/rymel/maw.svg"
  37954. }
  37955. },
  37956. },
  37957. [
  37958. {
  37959. name: "House Drake",
  37960. height: math.unit(2, "feet")
  37961. },
  37962. {
  37963. name: "Reduced",
  37964. height: math.unit(4.5, "feet")
  37965. },
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(9, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(1.74, "meters"),
  37978. weight: math.unit(55, "kg"),
  37979. name: "Front",
  37980. image: {
  37981. source: "./media/characters/rubus/front.svg",
  37982. extra: 1894/1742,
  37983. bottom: 44/1938
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(1.74, "meters"),
  37991. default: true
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(5 + 2/12, "feet"),
  38000. weight: math.unit(112, "lb"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/cassie-kingston/front.svg",
  38004. extra: 1438/1390,
  38005. bottom: 47/1485
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(5 + 2/12, "feet"),
  38013. default: true
  38014. },
  38015. {
  38016. name: "Macro",
  38017. height: math.unit(128, "feet")
  38018. },
  38019. {
  38020. name: "Megamacro",
  38021. height: math.unit(2.56, "miles")
  38022. },
  38023. ]
  38024. ))
  38025. characterMakers.push(() => makeCharacter(
  38026. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38027. {
  38028. front: {
  38029. height: math.unit(7, "feet"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/fox/front.svg",
  38033. extra: 1798/1703,
  38034. bottom: 55/1853
  38035. }
  38036. },
  38037. back: {
  38038. height: math.unit(7, "feet"),
  38039. name: "Back",
  38040. image: {
  38041. source: "./media/characters/fox/back.svg",
  38042. extra: 1748/1649,
  38043. bottom: 32/1780
  38044. }
  38045. },
  38046. head: {
  38047. height: math.unit(1.95, "feet"),
  38048. name: "Head",
  38049. image: {
  38050. source: "./media/characters/fox/head.svg"
  38051. }
  38052. },
  38053. dick: {
  38054. height: math.unit(1.33, "feet"),
  38055. name: "Dick",
  38056. image: {
  38057. source: "./media/characters/fox/dick.svg"
  38058. }
  38059. },
  38060. foot: {
  38061. height: math.unit(1, "feet"),
  38062. name: "Foot",
  38063. image: {
  38064. source: "./media/characters/fox/foot.svg"
  38065. }
  38066. },
  38067. paw: {
  38068. height: math.unit(0.92, "feet"),
  38069. name: "Paw",
  38070. image: {
  38071. source: "./media/characters/fox/paw.svg"
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Small",
  38078. height: math.unit(3, "inches")
  38079. },
  38080. {
  38081. name: "\"Realistic\"",
  38082. height: math.unit(7, "feet")
  38083. },
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(150, "feet"),
  38087. default: true
  38088. },
  38089. {
  38090. name: "BIG",
  38091. height: math.unit(1200, "feet")
  38092. },
  38093. {
  38094. name: "👀",
  38095. height: math.unit(5, "miles")
  38096. },
  38097. {
  38098. name: "👀👀👀",
  38099. height: math.unit(64, "miles")
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(625, "feet"),
  38108. name: "Front",
  38109. image: {
  38110. source: "./media/characters/asonja-rossa/front.svg",
  38111. extra: 1833/1686,
  38112. bottom: 24/1857
  38113. }
  38114. },
  38115. back: {
  38116. height: math.unit(625, "feet"),
  38117. name: "Back",
  38118. image: {
  38119. source: "./media/characters/asonja-rossa/back.svg",
  38120. extra: 1852/1753,
  38121. bottom: 26/1878
  38122. }
  38123. },
  38124. },
  38125. [
  38126. {
  38127. name: "Macro",
  38128. height: math.unit(625, "feet"),
  38129. default: true
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38135. {
  38136. side: {
  38137. height: math.unit(8, "feet"),
  38138. name: "Side",
  38139. image: {
  38140. source: "./media/characters/rezukii/side.svg",
  38141. extra: 979/542,
  38142. bottom: 87/1066
  38143. }
  38144. },
  38145. sitting: {
  38146. height: math.unit(14.6, "feet"),
  38147. name: "Sitting",
  38148. image: {
  38149. source: "./media/characters/rezukii/sitting.svg",
  38150. extra: 1023/813,
  38151. bottom: 45/1068
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Tiny",
  38158. height: math.unit(2, "feet")
  38159. },
  38160. {
  38161. name: "Smol",
  38162. height: math.unit(4, "feet")
  38163. },
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(8, "feet"),
  38167. default: true
  38168. },
  38169. {
  38170. name: "Big",
  38171. height: math.unit(12, "feet")
  38172. },
  38173. {
  38174. name: "Macro",
  38175. height: math.unit(30, "feet")
  38176. },
  38177. ]
  38178. ))
  38179. characterMakers.push(() => makeCharacter(
  38180. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38181. {
  38182. front: {
  38183. height: math.unit(14, "feet"),
  38184. weight: math.unit(9.5, "tonnes"),
  38185. name: "Front",
  38186. image: {
  38187. source: "./media/characters/dawnheart/front.svg",
  38188. extra: 2792/2675,
  38189. bottom: 64/2856
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(14, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38203. {
  38204. front: {
  38205. height: math.unit(1.7, "m"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/gladi/front.svg",
  38209. extra: 1460/1362,
  38210. bottom: 19/1479
  38211. }
  38212. },
  38213. back: {
  38214. height: math.unit(1.7, "m"),
  38215. name: "Back",
  38216. image: {
  38217. source: "./media/characters/gladi/back.svg",
  38218. extra: 1459/1357,
  38219. bottom: 12/1471
  38220. }
  38221. },
  38222. feral: {
  38223. height: math.unit(2.05, "m"),
  38224. name: "Feral",
  38225. image: {
  38226. source: "./media/characters/gladi/feral.svg",
  38227. extra: 821/557,
  38228. bottom: 91/912
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Shortest",
  38235. height: math.unit(70, "cm")
  38236. },
  38237. {
  38238. name: "Normal",
  38239. height: math.unit(1.7, "m")
  38240. },
  38241. {
  38242. name: "Macro",
  38243. height: math.unit(10, "m"),
  38244. default: true
  38245. },
  38246. {
  38247. name: "Tallest",
  38248. height: math.unit(200, "m")
  38249. },
  38250. ]
  38251. ))
  38252. characterMakers.push(() => makeCharacter(
  38253. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38254. {
  38255. front: {
  38256. height: math.unit(5 + 7/12, "feet"),
  38257. weight: math.unit(2, "tons"),
  38258. name: "Front",
  38259. image: {
  38260. source: "./media/characters/erdno/front.svg",
  38261. extra: 1234/1129,
  38262. bottom: 35/1269
  38263. }
  38264. },
  38265. angled: {
  38266. height: math.unit(5 + 7/12, "feet"),
  38267. weight: math.unit(2, "tons"),
  38268. name: "Angled",
  38269. image: {
  38270. source: "./media/characters/erdno/angled.svg",
  38271. extra: 1185/1139,
  38272. bottom: 36/1221
  38273. }
  38274. },
  38275. side: {
  38276. height: math.unit(5 + 7/12, "feet"),
  38277. weight: math.unit(2, "tons"),
  38278. name: "Side",
  38279. image: {
  38280. source: "./media/characters/erdno/side.svg",
  38281. extra: 1191/1144,
  38282. bottom: 40/1231
  38283. }
  38284. },
  38285. back: {
  38286. height: math.unit(5 + 7/12, "feet"),
  38287. weight: math.unit(2, "tons"),
  38288. name: "Back",
  38289. image: {
  38290. source: "./media/characters/erdno/back.svg",
  38291. extra: 1202/1146,
  38292. bottom: 17/1219
  38293. }
  38294. },
  38295. frontNsfw: {
  38296. height: math.unit(5 + 7/12, "feet"),
  38297. weight: math.unit(2, "tons"),
  38298. name: "Front (NSFW)",
  38299. image: {
  38300. source: "./media/characters/erdno/front-nsfw.svg",
  38301. extra: 1234/1129,
  38302. bottom: 35/1269
  38303. }
  38304. },
  38305. angledNsfw: {
  38306. height: math.unit(5 + 7/12, "feet"),
  38307. weight: math.unit(2, "tons"),
  38308. name: "Angled (NSFW)",
  38309. image: {
  38310. source: "./media/characters/erdno/angled-nsfw.svg",
  38311. extra: 1185/1139,
  38312. bottom: 36/1221
  38313. }
  38314. },
  38315. sideNsfw: {
  38316. height: math.unit(5 + 7/12, "feet"),
  38317. weight: math.unit(2, "tons"),
  38318. name: "Side (NSFW)",
  38319. image: {
  38320. source: "./media/characters/erdno/side-nsfw.svg",
  38321. extra: 1191/1144,
  38322. bottom: 40/1231
  38323. }
  38324. },
  38325. backNsfw: {
  38326. height: math.unit(5 + 7/12, "feet"),
  38327. weight: math.unit(2, "tons"),
  38328. name: "Back (NSFW)",
  38329. image: {
  38330. source: "./media/characters/erdno/back-nsfw.svg",
  38331. extra: 1202/1146,
  38332. bottom: 17/1219
  38333. }
  38334. },
  38335. frontHyper: {
  38336. height: math.unit(5 + 7/12, "feet"),
  38337. weight: math.unit(2, "tons"),
  38338. name: "Front (Hyper)",
  38339. image: {
  38340. source: "./media/characters/erdno/front-hyper.svg",
  38341. extra: 1298/1136,
  38342. bottom: 35/1333
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Normal",
  38349. height: math.unit(5 + 7/12, "feet"),
  38350. default: true
  38351. },
  38352. {
  38353. name: "Big",
  38354. height: math.unit(5.7, "meters")
  38355. },
  38356. {
  38357. name: "Macro",
  38358. height: math.unit(5.7, "kilometers")
  38359. },
  38360. {
  38361. name: "Megamacro",
  38362. height: math.unit(5.7, "earths")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(5 + 10/12, "feet"),
  38371. weight: math.unit(150, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/jamie/front.svg",
  38375. extra: 1908/1768,
  38376. bottom: 19/1927
  38377. }
  38378. },
  38379. },
  38380. [
  38381. {
  38382. name: "Minimum",
  38383. height: math.unit(2, "cm")
  38384. },
  38385. {
  38386. name: "Micro",
  38387. height: math.unit(3, "inches")
  38388. },
  38389. {
  38390. name: "Normal",
  38391. height: math.unit(5 + 10/12, "feet"),
  38392. default: true
  38393. },
  38394. {
  38395. name: "Macro",
  38396. height: math.unit(150, "feet")
  38397. },
  38398. {
  38399. name: "Megamacro",
  38400. height: math.unit(10000, "m")
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38406. {
  38407. front: {
  38408. height: math.unit(2, "meters"),
  38409. weight: math.unit(100, "kg"),
  38410. name: "Front",
  38411. image: {
  38412. source: "./media/characters/shiron/front.svg",
  38413. extra: 2103/1985,
  38414. bottom: 98/2201
  38415. }
  38416. },
  38417. back: {
  38418. height: math.unit(2, "meters"),
  38419. weight: math.unit(100, "kg"),
  38420. name: "Back",
  38421. image: {
  38422. source: "./media/characters/shiron/back.svg",
  38423. extra: 2110/2015,
  38424. bottom: 89/2199
  38425. }
  38426. },
  38427. hand: {
  38428. height: math.unit(0.96, "feet"),
  38429. name: "Hand",
  38430. image: {
  38431. source: "./media/characters/shiron/hand.svg"
  38432. }
  38433. },
  38434. foot: {
  38435. height: math.unit(1.464, "feet"),
  38436. name: "Foot",
  38437. image: {
  38438. source: "./media/characters/shiron/foot.svg"
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(2, "meters")
  38446. },
  38447. {
  38448. name: "Macro",
  38449. height: math.unit(500, "meters"),
  38450. default: true
  38451. },
  38452. {
  38453. name: "Megamacro",
  38454. height: math.unit(20, "km")
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(6, "feet"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/sam/front.svg",
  38466. extra: 849/826,
  38467. bottom: 19/868
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(6, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(8 + 4/12, "feet"),
  38484. weight: math.unit(122, "kg"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/namori-kurogawa/front.svg",
  38488. extra: 1894/1576,
  38489. bottom: 34/1928
  38490. }
  38491. },
  38492. },
  38493. [
  38494. {
  38495. name: "Normal",
  38496. height: math.unit(8 + 4/12, "feet"),
  38497. default: true
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38503. {
  38504. front: {
  38505. height: math.unit(9, "feet"),
  38506. weight: math.unit(621, "lb"),
  38507. name: "Front",
  38508. image: {
  38509. source: "./media/characters/unmru/front.svg",
  38510. extra: 1853/1747,
  38511. bottom: 73/1926
  38512. }
  38513. },
  38514. side: {
  38515. height: math.unit(9, "feet"),
  38516. weight: math.unit(621, "lb"),
  38517. name: "Side",
  38518. image: {
  38519. source: "./media/characters/unmru/side.svg",
  38520. extra: 1781/1671,
  38521. bottom: 127/1908
  38522. }
  38523. },
  38524. back: {
  38525. height: math.unit(9, "feet"),
  38526. weight: math.unit(621, "lb"),
  38527. name: "Back",
  38528. image: {
  38529. source: "./media/characters/unmru/back.svg",
  38530. extra: 1894/1765,
  38531. bottom: 75/1969
  38532. }
  38533. },
  38534. dick: {
  38535. height: math.unit(3, "feet"),
  38536. weight: math.unit(35, "lb"),
  38537. name: "Dick",
  38538. image: {
  38539. source: "./media/characters/unmru/dick.svg"
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(9, "feet")
  38547. },
  38548. {
  38549. name: "Natural",
  38550. height: math.unit(27, "feet"),
  38551. default: true
  38552. },
  38553. {
  38554. name: "Giant",
  38555. height: math.unit(90, "feet")
  38556. },
  38557. {
  38558. name: "Kaiju",
  38559. height: math.unit(270, "feet")
  38560. },
  38561. {
  38562. name: "Macro",
  38563. height: math.unit(900, "feet")
  38564. },
  38565. {
  38566. name: "Macro+",
  38567. height: math.unit(2700, "feet")
  38568. },
  38569. {
  38570. name: "Megamacro",
  38571. height: math.unit(9000, "feet")
  38572. },
  38573. {
  38574. name: "City-Crushing",
  38575. height: math.unit(27000, "feet")
  38576. },
  38577. {
  38578. name: "Mountain-Mashing",
  38579. height: math.unit(90000, "feet")
  38580. },
  38581. {
  38582. name: "Earth-Eclipsing",
  38583. height: math.unit(2.7e8, "feet")
  38584. },
  38585. {
  38586. name: "Sol-Swallowing",
  38587. height: math.unit(9e10, "feet")
  38588. },
  38589. {
  38590. name: "Majoris-Munching",
  38591. height: math.unit(2.7e13, "feet")
  38592. },
  38593. ]
  38594. ))
  38595. characterMakers.push(() => makeCharacter(
  38596. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38597. {
  38598. front: {
  38599. height: math.unit(1, "inch"),
  38600. name: "Front",
  38601. image: {
  38602. source: "./media/characters/squeaks-mouse/front.svg",
  38603. extra: 352/308,
  38604. bottom: 25/377
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Micro",
  38611. height: math.unit(1, "inch"),
  38612. default: true
  38613. },
  38614. ]
  38615. ))
  38616. characterMakers.push(() => makeCharacter(
  38617. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38618. {
  38619. side: {
  38620. height: math.unit(35, "feet"),
  38621. name: "Side",
  38622. image: {
  38623. source: "./media/characters/sayko/side.svg",
  38624. extra: 1697/1021,
  38625. bottom: 82/1779
  38626. }
  38627. },
  38628. head: {
  38629. height: math.unit(16, "feet"),
  38630. name: "Head",
  38631. image: {
  38632. source: "./media/characters/sayko/head.svg"
  38633. }
  38634. },
  38635. forepaw: {
  38636. height: math.unit(7.85, "feet"),
  38637. name: "Forepaw",
  38638. image: {
  38639. source: "./media/characters/sayko/forepaw.svg"
  38640. }
  38641. },
  38642. hindpaw: {
  38643. height: math.unit(8.8, "feet"),
  38644. name: "Hindpaw",
  38645. image: {
  38646. source: "./media/characters/sayko/hindpaw.svg"
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(35, "feet"),
  38654. default: true
  38655. },
  38656. {
  38657. name: "Colossus",
  38658. height: math.unit(100, "meters")
  38659. },
  38660. {
  38661. name: "\"Small\" Deity",
  38662. height: math.unit(1, "km")
  38663. },
  38664. {
  38665. name: "\"Large\" Deity",
  38666. height: math.unit(15, "km")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(6, "feet"),
  38675. weight: math.unit(250, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/mukiro/front.svg",
  38679. extra: 1368/1310,
  38680. bottom: 34/1402
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(6, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(12 + 4/12, "feet"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38700. extra: 1346/1311,
  38701. bottom: 65/1411
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Base",
  38708. height: math.unit(12 + 4/12, "feet"),
  38709. default: true
  38710. },
  38711. {
  38712. name: "Macro",
  38713. height: math.unit(150, "feet")
  38714. },
  38715. {
  38716. name: "Mega",
  38717. height: math.unit(2, "miles")
  38718. },
  38719. {
  38720. name: "Demi God",
  38721. height: math.unit(4, "AU")
  38722. },
  38723. {
  38724. name: "God Size",
  38725. height: math.unit(1, "universe")
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(3 + 3/12, "feet"),
  38734. weight: math.unit(88, "lb"),
  38735. name: "Front",
  38736. image: {
  38737. source: "./media/characters/trey/front.svg",
  38738. extra: 1815/1509,
  38739. bottom: 60/1875
  38740. }
  38741. },
  38742. },
  38743. [
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(3 + 3/12, "feet"),
  38747. default: true
  38748. },
  38749. ]
  38750. ))
  38751. characterMakers.push(() => makeCharacter(
  38752. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38753. {
  38754. front: {
  38755. height: math.unit(4, "meters"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/adelonda/front.svg",
  38759. extra: 1077/982,
  38760. bottom: 39/1116
  38761. }
  38762. },
  38763. back: {
  38764. height: math.unit(4, "meters"),
  38765. name: "Back",
  38766. image: {
  38767. source: "./media/characters/adelonda/back.svg",
  38768. extra: 1105/1003,
  38769. bottom: 25/1130
  38770. }
  38771. },
  38772. feral: {
  38773. height: math.unit(40/1.5, "meters"),
  38774. name: "Feral",
  38775. image: {
  38776. source: "./media/characters/adelonda/feral.svg",
  38777. extra: 597/271,
  38778. bottom: 387/984
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "Normal",
  38785. height: math.unit(4, "meters"),
  38786. default: true
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(8 + 4/12, "feet"),
  38795. weight: math.unit(670, "lb"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/acadiel/front.svg",
  38799. extra: 1901/1595,
  38800. bottom: 142/2043
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(8 + 4/12, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(200, "feet")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(6 + 2/12, "feet"),
  38821. weight: math.unit(185, "lb"),
  38822. name: "Front",
  38823. image: {
  38824. source: "./media/characters/kayne-ein/front.svg",
  38825. extra: 1780/1560,
  38826. bottom: 81/1861
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Normal",
  38833. height: math.unit(6 + 2/12, "feet"),
  38834. default: true
  38835. },
  38836. {
  38837. name: "Transformation Stage",
  38838. height: math.unit(15, "feet")
  38839. },
  38840. {
  38841. name: "Macro",
  38842. height: math.unit(150, "feet")
  38843. },
  38844. {
  38845. name: "Earth's Shadow",
  38846. height: math.unit(6200, "miles")
  38847. },
  38848. {
  38849. name: "Universal Demon",
  38850. height: math.unit(28e9, "parsecs")
  38851. },
  38852. {
  38853. name: "Multiverse God",
  38854. height: math.unit(3, "multiverses")
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(5 + 5/12, "feet"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/fawn/front.svg",
  38866. extra: 1873/1731,
  38867. bottom: 95/1968
  38868. }
  38869. },
  38870. back: {
  38871. height: math.unit(5 + 5/12, "feet"),
  38872. name: "Back",
  38873. image: {
  38874. source: "./media/characters/fawn/back.svg",
  38875. extra: 1813/1700,
  38876. bottom: 14/1827
  38877. }
  38878. },
  38879. hoof: {
  38880. height: math.unit(1.45, "feet"),
  38881. name: "Hoof",
  38882. image: {
  38883. source: "./media/characters/fawn/hoof.svg"
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(5 + 5/12, "feet"),
  38891. default: true
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(2 + 5/12, "feet"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/orion/front.svg",
  38903. extra: 1366/1304,
  38904. bottom: 43/1409
  38905. }
  38906. },
  38907. paw: {
  38908. height: math.unit(0.52, "feet"),
  38909. name: "Paw",
  38910. image: {
  38911. source: "./media/characters/orion/paw.svg"
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Normal",
  38918. height: math.unit(2 + 5/12, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(5 + 10/12, "feet"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/vera/front.svg",
  38931. extra: 1680/1575,
  38932. bottom: 49/1729
  38933. }
  38934. },
  38935. back: {
  38936. height: math.unit(5 + 10/12, "feet"),
  38937. name: "Back",
  38938. image: {
  38939. source: "./media/characters/vera/back.svg",
  38940. extra: 1700/1588,
  38941. bottom: 18/1718
  38942. }
  38943. },
  38944. arcanine: {
  38945. height: math.unit(6 + 8/12, "feet"),
  38946. name: "Arcanine",
  38947. image: {
  38948. source: "./media/characters/vera/arcanine.svg",
  38949. extra: 1590/1511,
  38950. bottom: 71/1661
  38951. }
  38952. },
  38953. maw: {
  38954. height: math.unit(0.82, "feet"),
  38955. name: "Maw",
  38956. image: {
  38957. source: "./media/characters/vera/maw.svg"
  38958. }
  38959. },
  38960. mawArcanine: {
  38961. height: math.unit(0.97, "feet"),
  38962. name: "Maw (Arcanine)",
  38963. image: {
  38964. source: "./media/characters/vera/maw-arcanine.svg"
  38965. }
  38966. },
  38967. paw: {
  38968. height: math.unit(0.75, "feet"),
  38969. name: "Paw",
  38970. image: {
  38971. source: "./media/characters/vera/paw.svg"
  38972. }
  38973. },
  38974. pawprint: {
  38975. height: math.unit(0.52, "feet"),
  38976. name: "Pawprint",
  38977. image: {
  38978. source: "./media/characters/vera/pawprint.svg"
  38979. }
  38980. },
  38981. },
  38982. [
  38983. {
  38984. name: "Normal",
  38985. height: math.unit(5 + 10/12, "feet"),
  38986. default: true
  38987. },
  38988. {
  38989. name: "Macro",
  38990. height: math.unit(75, "feet")
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(4, "feet"),
  38999. weight: math.unit(40, "lb"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/orvan-rabbit/front.svg",
  39003. extra: 1896/1642,
  39004. bottom: 29/1925
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(4, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(6, "feet"),
  39021. weight: math.unit(168, "lb"),
  39022. name: "Front",
  39023. image: {
  39024. source: "./media/characters/lisa/front.svg",
  39025. extra: 2065/1867,
  39026. bottom: 46/2111
  39027. }
  39028. },
  39029. back: {
  39030. height: math.unit(6, "feet"),
  39031. weight: math.unit(168, "lb"),
  39032. name: "Back",
  39033. image: {
  39034. source: "./media/characters/lisa/back.svg",
  39035. extra: 1982/1838,
  39036. bottom: 29/2011
  39037. }
  39038. },
  39039. maw: {
  39040. height: math.unit(0.81, "feet"),
  39041. name: "Maw",
  39042. image: {
  39043. source: "./media/characters/lisa/maw.svg"
  39044. }
  39045. },
  39046. paw: {
  39047. height: math.unit(0.9, "feet"),
  39048. name: "Paw",
  39049. image: {
  39050. source: "./media/characters/lisa/paw.svg"
  39051. }
  39052. },
  39053. caribousune: {
  39054. height: math.unit(7 + 2/12, "feet"),
  39055. weight: math.unit(268, "lb"),
  39056. name: "Caribousune",
  39057. image: {
  39058. source: "./media/characters/lisa/caribousune.svg",
  39059. extra: 1843/1633,
  39060. bottom: 29/1872
  39061. }
  39062. },
  39063. frontCaribousune: {
  39064. height: math.unit(7 + 2/12, "feet"),
  39065. weight: math.unit(268, "lb"),
  39066. name: "Front (Caribousune)",
  39067. image: {
  39068. source: "./media/characters/lisa/front-caribousune.svg",
  39069. extra: 1818/1638,
  39070. bottom: 52/1870
  39071. }
  39072. },
  39073. sideCaribousune: {
  39074. height: math.unit(7 + 2/12, "feet"),
  39075. weight: math.unit(268, "lb"),
  39076. name: "Side (Caribousune)",
  39077. image: {
  39078. source: "./media/characters/lisa/side-caribousune.svg",
  39079. extra: 1851/1635,
  39080. bottom: 16/1867
  39081. }
  39082. },
  39083. backCaribousune: {
  39084. height: math.unit(7 + 2/12, "feet"),
  39085. weight: math.unit(268, "lb"),
  39086. name: "Back (Caribousune)",
  39087. image: {
  39088. source: "./media/characters/lisa/back-caribousune.svg",
  39089. extra: 1801/1604,
  39090. bottom: 44/1845
  39091. }
  39092. },
  39093. caribou: {
  39094. height: math.unit(7 + 2/12, "feet"),
  39095. weight: math.unit(268, "lb"),
  39096. name: "Caribou",
  39097. image: {
  39098. source: "./media/characters/lisa/caribou.svg",
  39099. extra: 1843/1633,
  39100. bottom: 29/1872
  39101. }
  39102. },
  39103. frontCaribou: {
  39104. height: math.unit(7 + 2/12, "feet"),
  39105. weight: math.unit(268, "lb"),
  39106. name: "Front (Caribou)",
  39107. image: {
  39108. source: "./media/characters/lisa/front-caribou.svg",
  39109. extra: 1818/1638,
  39110. bottom: 52/1870
  39111. }
  39112. },
  39113. sideCaribou: {
  39114. height: math.unit(7 + 2/12, "feet"),
  39115. weight: math.unit(268, "lb"),
  39116. name: "Side (Caribou)",
  39117. image: {
  39118. source: "./media/characters/lisa/side-caribou.svg",
  39119. extra: 1851/1635,
  39120. bottom: 16/1867
  39121. }
  39122. },
  39123. backCaribou: {
  39124. height: math.unit(7 + 2/12, "feet"),
  39125. weight: math.unit(268, "lb"),
  39126. name: "Back (Caribou)",
  39127. image: {
  39128. source: "./media/characters/lisa/back-caribou.svg",
  39129. extra: 1801/1604,
  39130. bottom: 44/1845
  39131. }
  39132. },
  39133. mawCaribou: {
  39134. height: math.unit(1.45, "feet"),
  39135. name: "Maw (Caribou)",
  39136. image: {
  39137. source: "./media/characters/lisa/maw-caribou.svg"
  39138. }
  39139. },
  39140. mawCaribousune: {
  39141. height: math.unit(1.45, "feet"),
  39142. name: "Maw (Caribousune)",
  39143. image: {
  39144. source: "./media/characters/lisa/maw-caribousune.svg"
  39145. }
  39146. },
  39147. pawCaribousune: {
  39148. height: math.unit(1.61, "feet"),
  39149. name: "Paw (Caribou)",
  39150. image: {
  39151. source: "./media/characters/lisa/paw-caribousune.svg"
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(6, "feet")
  39159. },
  39160. {
  39161. name: "God Size",
  39162. height: math.unit(72, "feet"),
  39163. default: true
  39164. },
  39165. {
  39166. name: "Towering",
  39167. height: math.unit(288, "feet")
  39168. },
  39169. {
  39170. name: "City Size",
  39171. height: math.unit(48384, "feet")
  39172. },
  39173. {
  39174. name: "Continental",
  39175. height: math.unit(4200, "miles")
  39176. },
  39177. {
  39178. name: "Planet Eater",
  39179. height: math.unit(42, "earths")
  39180. },
  39181. {
  39182. name: "Star Swallower",
  39183. height: math.unit(42, "solarradii")
  39184. },
  39185. {
  39186. name: "System Swallower",
  39187. height: math.unit(84000, "AU")
  39188. },
  39189. {
  39190. name: "Galaxy Gobbler",
  39191. height: math.unit(42, "galaxies")
  39192. },
  39193. {
  39194. name: "Universe Devourer",
  39195. height: math.unit(42, "universes")
  39196. },
  39197. {
  39198. name: "Multiverse Muncher",
  39199. height: math.unit(42, "multiverses")
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39205. {
  39206. front: {
  39207. height: math.unit(36, "feet"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/shadow-rat/front.svg",
  39211. extra: 1845/1758,
  39212. bottom: 83/1928
  39213. }
  39214. },
  39215. },
  39216. [
  39217. {
  39218. name: "Macro",
  39219. height: math.unit(36, "feet"),
  39220. default: true
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39226. {
  39227. side: {
  39228. height: math.unit(8, "feet"),
  39229. weight: math.unit(2630, "lb"),
  39230. name: "Side",
  39231. image: {
  39232. source: "./media/characters/torallia/side.svg",
  39233. extra: 2164/2021,
  39234. bottom: 371/2535
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Mortal Interaction",
  39241. height: math.unit(8, "feet")
  39242. },
  39243. {
  39244. name: "Natural",
  39245. height: math.unit(24, "feet"),
  39246. default: true
  39247. },
  39248. {
  39249. name: "Giant",
  39250. height: math.unit(80, "feet")
  39251. },
  39252. {
  39253. name: "Kaiju",
  39254. height: math.unit(240, "feet")
  39255. },
  39256. {
  39257. name: "Macro",
  39258. height: math.unit(800, "feet")
  39259. },
  39260. {
  39261. name: "Macro+",
  39262. height: math.unit(2400, "feet")
  39263. },
  39264. {
  39265. name: "Macro++",
  39266. height: math.unit(8000, "feet")
  39267. },
  39268. {
  39269. name: "City-Crushing",
  39270. height: math.unit(24000, "feet")
  39271. },
  39272. {
  39273. name: "Mountain-Mashing",
  39274. height: math.unit(80000, "feet")
  39275. },
  39276. {
  39277. name: "District Demolisher",
  39278. height: math.unit(240000, "feet")
  39279. },
  39280. {
  39281. name: "Tri-County Terror",
  39282. height: math.unit(800000, "feet")
  39283. },
  39284. {
  39285. name: "State Smasher",
  39286. height: math.unit(2.4e6, "feet")
  39287. },
  39288. {
  39289. name: "Nation Nemesis",
  39290. height: math.unit(8e6, "feet")
  39291. },
  39292. {
  39293. name: "Continent Cracker",
  39294. height: math.unit(2.4e7, "feet")
  39295. },
  39296. {
  39297. name: "Planet-Pillaging",
  39298. height: math.unit(8e7, "feet")
  39299. },
  39300. {
  39301. name: "Earth-Eclipsing",
  39302. height: math.unit(2.4e8, "feet")
  39303. },
  39304. {
  39305. name: "Jovian-Jostling",
  39306. height: math.unit(8e8, "feet")
  39307. },
  39308. {
  39309. name: "Gas Giant Gulper",
  39310. height: math.unit(2.4e9, "feet")
  39311. },
  39312. {
  39313. name: "Astral Annihilator",
  39314. height: math.unit(8e9, "feet")
  39315. },
  39316. {
  39317. name: "Celestial Conqueror",
  39318. height: math.unit(2.4e10, "feet")
  39319. },
  39320. {
  39321. name: "Sol-Swallowing",
  39322. height: math.unit(8e10, "feet")
  39323. },
  39324. {
  39325. name: "Hunter of the Heavens",
  39326. height: math.unit(2.4e13, "feet")
  39327. },
  39328. ]
  39329. ))
  39330. characterMakers.push(() => makeCharacter(
  39331. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39332. {
  39333. front: {
  39334. height: math.unit(6 + 8/12, "feet"),
  39335. name: "Front",
  39336. image: {
  39337. source: "./media/characters/rebecca-pawlson/front.svg",
  39338. extra: 1737/1596,
  39339. bottom: 107/1844
  39340. }
  39341. },
  39342. back: {
  39343. height: math.unit(6 + 8/12, "feet"),
  39344. name: "Back",
  39345. image: {
  39346. source: "./media/characters/rebecca-pawlson/back.svg",
  39347. extra: 1702/1523,
  39348. bottom: 86/1788
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(6 + 8/12, "feet")
  39356. },
  39357. {
  39358. name: "Mini Macro",
  39359. height: math.unit(10, "feet"),
  39360. default: true
  39361. },
  39362. {
  39363. name: "Macro",
  39364. height: math.unit(100, "feet")
  39365. },
  39366. {
  39367. name: "Mega Macro",
  39368. height: math.unit(2500, "feet")
  39369. },
  39370. {
  39371. name: "Giga Macro",
  39372. height: math.unit(50, "miles")
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(7 + 6/12, "feet"),
  39381. weight: math.unit(600, "lb"),
  39382. name: "Front",
  39383. image: {
  39384. source: "./media/characters/moxie-nova/front.svg",
  39385. extra: 1734/1652,
  39386. bottom: 41/1775
  39387. }
  39388. },
  39389. },
  39390. [
  39391. {
  39392. name: "Normal",
  39393. height: math.unit(7 + 6/12, "feet"),
  39394. default: true
  39395. },
  39396. ]
  39397. ))
  39398. characterMakers.push(() => makeCharacter(
  39399. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39400. {
  39401. goat: {
  39402. height: math.unit(4, "feet"),
  39403. weight: math.unit(180, "lb"),
  39404. name: "Goat",
  39405. image: {
  39406. source: "./media/characters/tiffany/goat.svg",
  39407. extra: 1845/1595,
  39408. bottom: 106/1951
  39409. }
  39410. },
  39411. front: {
  39412. height: math.unit(5, "feet"),
  39413. weight: math.unit(150, "lb"),
  39414. name: "Foxcoon",
  39415. image: {
  39416. source: "./media/characters/tiffany/foxcoon.svg",
  39417. extra: 1941/1845,
  39418. bottom: 58/1999
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(5, "feet"),
  39426. default: true
  39427. },
  39428. ]
  39429. ))
  39430. characterMakers.push(() => makeCharacter(
  39431. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39432. {
  39433. front: {
  39434. height: math.unit(8, "feet"),
  39435. weight: math.unit(300, "lb"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/raxinath/front.svg",
  39439. extra: 1407/1309,
  39440. bottom: 39/1446
  39441. }
  39442. },
  39443. back: {
  39444. height: math.unit(8, "feet"),
  39445. weight: math.unit(300, "lb"),
  39446. name: "Back",
  39447. image: {
  39448. source: "./media/characters/raxinath/back.svg",
  39449. extra: 1405/1315,
  39450. bottom: 9/1414
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Speck",
  39457. height: math.unit(0.5, "nm")
  39458. },
  39459. {
  39460. name: "Micro",
  39461. height: math.unit(3, "inches")
  39462. },
  39463. {
  39464. name: "Kobold",
  39465. height: math.unit(3, "feet")
  39466. },
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(8, "feet"),
  39470. default: true
  39471. },
  39472. {
  39473. name: "Giant",
  39474. height: math.unit(50, "feet")
  39475. },
  39476. {
  39477. name: "Macro",
  39478. height: math.unit(1000, "feet")
  39479. },
  39480. {
  39481. name: "Megamacro",
  39482. height: math.unit(1, "mile")
  39483. },
  39484. ]
  39485. ))
  39486. characterMakers.push(() => makeCharacter(
  39487. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39488. {
  39489. front: {
  39490. height: math.unit(10, "feet"),
  39491. weight: math.unit(1442, "lb"),
  39492. name: "Front",
  39493. image: {
  39494. source: "./media/characters/mal-dragon/front.svg",
  39495. extra: 1515/1444,
  39496. bottom: 113/1628
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(10, "feet"),
  39501. weight: math.unit(1442, "lb"),
  39502. name: "Back",
  39503. image: {
  39504. source: "./media/characters/mal-dragon/back.svg",
  39505. extra: 1527/1434,
  39506. bottom: 25/1552
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Mortal Interaction",
  39513. height: math.unit(10, "feet"),
  39514. default: true
  39515. },
  39516. {
  39517. name: "Large",
  39518. height: math.unit(30, "feet")
  39519. },
  39520. {
  39521. name: "Kaiju",
  39522. height: math.unit(300, "feet")
  39523. },
  39524. {
  39525. name: "Megamacro",
  39526. height: math.unit(10000, "feet")
  39527. },
  39528. {
  39529. name: "Continent Cracker",
  39530. height: math.unit(30000000, "feet")
  39531. },
  39532. {
  39533. name: "Sol-Swallowing",
  39534. height: math.unit(1e11, "feet")
  39535. },
  39536. {
  39537. name: "Light Universal",
  39538. height: math.unit(5, "universes")
  39539. },
  39540. {
  39541. name: "Universe Atoms",
  39542. height: math.unit(1.829e9, "universes")
  39543. },
  39544. {
  39545. name: "Light Multiversal",
  39546. height: math.unit(5, "multiverses")
  39547. },
  39548. {
  39549. name: "Multiverse Atoms",
  39550. height: math.unit(1.829e9, "multiverses")
  39551. },
  39552. {
  39553. name: "Fabric of Time",
  39554. height: math.unit(1e262, "multiverses")
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39560. {
  39561. front: {
  39562. height: math.unit(9, "feet"),
  39563. weight: math.unit(1050, "lb"),
  39564. name: "Front",
  39565. image: {
  39566. source: "./media/characters/tabitha/front.svg",
  39567. extra: 2083/1994,
  39568. bottom: 68/2151
  39569. }
  39570. },
  39571. },
  39572. [
  39573. {
  39574. name: "Baseline",
  39575. height: math.unit(9, "feet"),
  39576. default: true
  39577. },
  39578. {
  39579. name: "Giant",
  39580. height: math.unit(90, "feet")
  39581. },
  39582. {
  39583. name: "Macro",
  39584. height: math.unit(900, "feet")
  39585. },
  39586. {
  39587. name: "Megamacro",
  39588. height: math.unit(9000, "feet")
  39589. },
  39590. {
  39591. name: "City-Crushing",
  39592. height: math.unit(27000, "feet")
  39593. },
  39594. {
  39595. name: "Mountain-Mashing",
  39596. height: math.unit(90000, "feet")
  39597. },
  39598. {
  39599. name: "Nation Nemesis",
  39600. height: math.unit(9e6, "feet")
  39601. },
  39602. {
  39603. name: "Continent Cracker",
  39604. height: math.unit(27e6, "feet")
  39605. },
  39606. {
  39607. name: "Earth-Eclipsing",
  39608. height: math.unit(2.7e8, "feet")
  39609. },
  39610. {
  39611. name: "Gas Giant Gulper",
  39612. height: math.unit(2.7e9, "feet")
  39613. },
  39614. {
  39615. name: "Sol-Swallowing",
  39616. height: math.unit(9e10, "feet")
  39617. },
  39618. {
  39619. name: "Galaxy Gulper",
  39620. height: math.unit(9, "galaxies")
  39621. },
  39622. {
  39623. name: "Cosmos Churner",
  39624. height: math.unit(9, "universes")
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(160, "cm"),
  39633. weight: math.unit(55, "kg"),
  39634. name: "Front",
  39635. image: {
  39636. source: "./media/characters/tow/front.svg",
  39637. extra: 1751/1722,
  39638. bottom: 74/1825
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Norm",
  39645. height: math.unit(160, "cm")
  39646. },
  39647. {
  39648. name: "Casual",
  39649. height: math.unit(3200, "m"),
  39650. default: true
  39651. },
  39652. {
  39653. name: "Show-Off",
  39654. height: math.unit(160, "km")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39660. {
  39661. front: {
  39662. height: math.unit(7 + 11/12, "feet"),
  39663. weight: math.unit(342.8, "lb"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/vivian-orca-dragon/front.svg",
  39667. extra: 1890/1865,
  39668. bottom: 28/1918
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Micro",
  39675. height: math.unit(5, "inches")
  39676. },
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(7 + 11/12, "feet"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Macro",
  39684. height: math.unit(395 + 7/12, "feet")
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39690. {
  39691. side: {
  39692. height: math.unit(10, "feet"),
  39693. weight: math.unit(1442, "lb"),
  39694. name: "Side",
  39695. image: {
  39696. source: "./media/characters/lotherakon/side.svg",
  39697. extra: 1604/1497,
  39698. bottom: 89/1693
  39699. }
  39700. },
  39701. },
  39702. [
  39703. {
  39704. name: "Mortal Interaction",
  39705. height: math.unit(10, "feet")
  39706. },
  39707. {
  39708. name: "Large",
  39709. height: math.unit(30, "feet"),
  39710. default: true
  39711. },
  39712. {
  39713. name: "Giant",
  39714. height: math.unit(100, "feet")
  39715. },
  39716. {
  39717. name: "Kaiju",
  39718. height: math.unit(300, "feet")
  39719. },
  39720. {
  39721. name: "Macro",
  39722. height: math.unit(1000, "feet")
  39723. },
  39724. {
  39725. name: "Macro+",
  39726. height: math.unit(3000, "feet")
  39727. },
  39728. {
  39729. name: "Megamacro",
  39730. height: math.unit(10000, "feet")
  39731. },
  39732. {
  39733. name: "City-Crushing",
  39734. height: math.unit(30000, "feet")
  39735. },
  39736. {
  39737. name: "Continent Cracker",
  39738. height: math.unit(30e6, "feet")
  39739. },
  39740. {
  39741. name: "Earth Eclipsing",
  39742. height: math.unit(3e8, "feet")
  39743. },
  39744. {
  39745. name: "Gas Giant Gulper",
  39746. height: math.unit(3e9, "feet")
  39747. },
  39748. {
  39749. name: "Sol-Swallowing",
  39750. height: math.unit(1e11, "feet")
  39751. },
  39752. {
  39753. name: "System Swallower",
  39754. height: math.unit(3e14, "feet")
  39755. },
  39756. {
  39757. name: "Galaxy Gulper",
  39758. height: math.unit(10, "galaxies")
  39759. },
  39760. {
  39761. name: "Light Universal",
  39762. height: math.unit(5, "universes")
  39763. },
  39764. {
  39765. name: "Universe Palm",
  39766. height: math.unit(20, "universes")
  39767. },
  39768. {
  39769. name: "Light Multiversal",
  39770. height: math.unit(5, "multiverses")
  39771. },
  39772. {
  39773. name: "Multiverse Palm",
  39774. height: math.unit(20, "multiverses")
  39775. },
  39776. {
  39777. name: "Inferno Incarnate",
  39778. height: math.unit(1e7, "multiverses")
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(8, "feet"),
  39787. weight: math.unit(1200, "lb"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/malithee/front.svg",
  39791. extra: 1675/1640,
  39792. bottom: 162/1837
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Mortal Interaction",
  39799. height: math.unit(8, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Large",
  39804. height: math.unit(24, "feet")
  39805. },
  39806. {
  39807. name: "Kaiju",
  39808. height: math.unit(240, "feet")
  39809. },
  39810. {
  39811. name: "Megamacro",
  39812. height: math.unit(8000, "feet")
  39813. },
  39814. {
  39815. name: "Continent Cracker",
  39816. height: math.unit(24e6, "feet")
  39817. },
  39818. {
  39819. name: "Earth-Eclipsing",
  39820. height: math.unit(2.4e8, "feet")
  39821. },
  39822. {
  39823. name: "Sol-Swallowing",
  39824. height: math.unit(8e10, "feet")
  39825. },
  39826. {
  39827. name: "Galaxy Gulper",
  39828. height: math.unit(8, "galaxies")
  39829. },
  39830. {
  39831. name: "Light Universal",
  39832. height: math.unit(4, "universes")
  39833. },
  39834. {
  39835. name: "Universe Atoms",
  39836. height: math.unit(1.829e9, "universes")
  39837. },
  39838. {
  39839. name: "Light Multiversal",
  39840. height: math.unit(4, "multiverses")
  39841. },
  39842. {
  39843. name: "Multiverse Atoms",
  39844. height: math.unit(1.829e9, "multiverses")
  39845. },
  39846. {
  39847. name: "Nigh-Omnipresence",
  39848. height: math.unit(8e261, "multiverses")
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(10, "feet"),
  39857. weight: math.unit(1500, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/miles-thestia/front.svg",
  39861. extra: 1812/1727,
  39862. bottom: 86/1898
  39863. }
  39864. },
  39865. back: {
  39866. height: math.unit(10, "feet"),
  39867. weight: math.unit(1500, "lb"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/miles-thestia/back.svg",
  39871. extra: 1799/1690,
  39872. bottom: 47/1846
  39873. }
  39874. },
  39875. frontNsfw: {
  39876. height: math.unit(10, "feet"),
  39877. weight: math.unit(1500, "lb"),
  39878. name: "Front (NSFW)",
  39879. image: {
  39880. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39881. extra: 1812/1727,
  39882. bottom: 86/1898
  39883. }
  39884. },
  39885. },
  39886. [
  39887. {
  39888. name: "Mini-Macro",
  39889. height: math.unit(10, "feet"),
  39890. default: true
  39891. },
  39892. ]
  39893. ))
  39894. characterMakers.push(() => makeCharacter(
  39895. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39896. {
  39897. front: {
  39898. height: math.unit(25, "feet"),
  39899. name: "Front",
  39900. image: {
  39901. source: "./media/characters/titan-s-wulf/front.svg",
  39902. extra: 1560/1484,
  39903. bottom: 76/1636
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Smallest",
  39910. height: math.unit(25, "feet"),
  39911. default: true
  39912. },
  39913. {
  39914. name: "Normal",
  39915. height: math.unit(200, "feet")
  39916. },
  39917. {
  39918. name: "Macro",
  39919. height: math.unit(200000, "feet")
  39920. },
  39921. {
  39922. name: "Multiversal Original",
  39923. height: math.unit(10000, "multiverses")
  39924. },
  39925. ]
  39926. ))
  39927. characterMakers.push(() => makeCharacter(
  39928. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39929. {
  39930. front: {
  39931. height: math.unit(8, "feet"),
  39932. weight: math.unit(553, "lb"),
  39933. name: "Front",
  39934. image: {
  39935. source: "./media/characters/tawendeh/front.svg",
  39936. extra: 2365/2268,
  39937. bottom: 83/2448
  39938. }
  39939. },
  39940. frontClothed: {
  39941. height: math.unit(8, "feet"),
  39942. weight: math.unit(553, "lb"),
  39943. name: "Front (Clothed)",
  39944. image: {
  39945. source: "./media/characters/tawendeh/front-clothed.svg",
  39946. extra: 2365/2268,
  39947. bottom: 83/2448
  39948. }
  39949. },
  39950. back: {
  39951. height: math.unit(8, "feet"),
  39952. weight: math.unit(553, "lb"),
  39953. name: "Back",
  39954. image: {
  39955. source: "./media/characters/tawendeh/back.svg",
  39956. extra: 2397/2294,
  39957. bottom: 42/2439
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Mortal Interaction",
  39964. height: math.unit(8, "feet"),
  39965. default: true
  39966. },
  39967. {
  39968. name: "Giant",
  39969. height: math.unit(80, "feet")
  39970. },
  39971. {
  39972. name: "Macro",
  39973. height: math.unit(800, "feet")
  39974. },
  39975. {
  39976. name: "Megamacro",
  39977. height: math.unit(8000, "feet")
  39978. },
  39979. {
  39980. name: "City-Crushing",
  39981. height: math.unit(24000, "feet")
  39982. },
  39983. {
  39984. name: "Mountain-Mashing",
  39985. height: math.unit(80000, "feet")
  39986. },
  39987. {
  39988. name: "Nation Nemesis",
  39989. height: math.unit(8e6, "feet")
  39990. },
  39991. {
  39992. name: "Continent Cracker",
  39993. height: math.unit(24e6, "feet")
  39994. },
  39995. {
  39996. name: "Earth-Eclipsing",
  39997. height: math.unit(2.4e8, "feet")
  39998. },
  39999. {
  40000. name: "Gas Giant Gulper",
  40001. height: math.unit(2.4e9, "feet")
  40002. },
  40003. {
  40004. name: "Sol-Swallowing",
  40005. height: math.unit(8e10, "feet")
  40006. },
  40007. {
  40008. name: "Galaxy Gulper",
  40009. height: math.unit(8, "galaxies")
  40010. },
  40011. {
  40012. name: "Cosmos Churner",
  40013. height: math.unit(8, "universes")
  40014. },
  40015. {
  40016. name: "Omnipotent Otter",
  40017. height: math.unit(80, "universes")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(2.6, "meters"),
  40026. weight: math.unit(900, "kg"),
  40027. name: "Front",
  40028. image: {
  40029. source: "./media/characters/neesha/front.svg",
  40030. extra: 1803/1653,
  40031. bottom: 128/1931
  40032. }
  40033. },
  40034. },
  40035. [
  40036. {
  40037. name: "Normal",
  40038. height: math.unit(2.6, "meters"),
  40039. default: true
  40040. },
  40041. {
  40042. name: "Macro",
  40043. height: math.unit(50, "meters")
  40044. },
  40045. ]
  40046. ))
  40047. characterMakers.push(() => makeCharacter(
  40048. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40049. {
  40050. front: {
  40051. height: math.unit(5, "feet"),
  40052. weight: math.unit(185, "lb"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/kyera/front.svg",
  40056. extra: 1875/1790,
  40057. bottom: 96/1971
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Normal",
  40064. height: math.unit(5, "feet"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(7 + 6/12, "feet"),
  40074. weight: math.unit(540, "lb"),
  40075. name: "Front",
  40076. image: {
  40077. source: "./media/characters/yuko/front.svg",
  40078. extra: 1282/1222,
  40079. bottom: 101/1383
  40080. }
  40081. },
  40082. frontClothed: {
  40083. height: math.unit(7 + 6/12, "feet"),
  40084. weight: math.unit(540, "lb"),
  40085. name: "Front (Clothed)",
  40086. image: {
  40087. source: "./media/characters/yuko/front-clothed.svg",
  40088. extra: 1282/1222,
  40089. bottom: 101/1383
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(7 + 6/12, "feet"),
  40097. default: true
  40098. },
  40099. {
  40100. name: "Macro",
  40101. height: math.unit(26 + 9/12, "feet")
  40102. },
  40103. {
  40104. name: "Megamacro",
  40105. height: math.unit(300, "feet")
  40106. },
  40107. {
  40108. name: "Gigamacro",
  40109. height: math.unit(5000, "feet")
  40110. },
  40111. {
  40112. name: "Planetary",
  40113. height: math.unit(10000, "miles")
  40114. },
  40115. ]
  40116. ))
  40117. characterMakers.push(() => makeCharacter(
  40118. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40119. {
  40120. front: {
  40121. height: math.unit(8 + 2/12, "feet"),
  40122. weight: math.unit(600, "lb"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/deam-nitrel/front.svg",
  40126. extra: 1308/1234,
  40127. bottom: 125/1433
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(8 + 2/12, "feet"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(6.1, "feet"),
  40144. weight: math.unit(180, "lb"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/skyress/front.svg",
  40148. extra: 1045/915,
  40149. bottom: 28/1073
  40150. }
  40151. },
  40152. maw: {
  40153. height: math.unit(1, "feet"),
  40154. name: "Maw",
  40155. image: {
  40156. source: "./media/characters/skyress/maw.svg"
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(6.1, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Macro",
  40168. height: math.unit(200, "feet")
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40174. {
  40175. front: {
  40176. height: math.unit(4 + 2/12, "feet"),
  40177. weight: math.unit(40, "kg"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/amethyst-jones/front.svg",
  40181. extra: 1220/1150,
  40182. bottom: 101/1321
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(4 + 2/12, "feet"),
  40190. default: true
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40196. {
  40197. front: {
  40198. height: math.unit(1.7, "m"),
  40199. weight: math.unit(135, "lb"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/jade/front.svg",
  40203. extra: 1818/1767,
  40204. bottom: 32/1850
  40205. }
  40206. },
  40207. back: {
  40208. height: math.unit(1.7, "m"),
  40209. weight: math.unit(135, "lb"),
  40210. name: "Back",
  40211. image: {
  40212. source: "./media/characters/jade/back.svg",
  40213. extra: 1869/1809,
  40214. bottom: 35/1904
  40215. }
  40216. },
  40217. hand: {
  40218. height: math.unit(0.24, "m"),
  40219. name: "Hand",
  40220. image: {
  40221. source: "./media/characters/jade/hand.svg"
  40222. }
  40223. },
  40224. foot: {
  40225. height: math.unit(0.263, "m"),
  40226. name: "Foot",
  40227. image: {
  40228. source: "./media/characters/jade/foot.svg"
  40229. }
  40230. },
  40231. dick: {
  40232. height: math.unit(0.47, "m"),
  40233. name: "Dick",
  40234. image: {
  40235. source: "./media/characters/jade/dick.svg"
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Micro",
  40242. height: math.unit(22, "cm")
  40243. },
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(1.7, "m"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(152, "m")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(100, "miles"),
  40260. weight: math.unit(20000, "tons"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/cookie/front.svg",
  40264. extra: 1125/1070,
  40265. bottom: 30/1155
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Big",
  40272. height: math.unit(50, "feet")
  40273. },
  40274. {
  40275. name: "Macro",
  40276. height: math.unit(100, "miles"),
  40277. default: true
  40278. },
  40279. {
  40280. name: "Megamacro",
  40281. height: math.unit(90000, "miles")
  40282. },
  40283. ]
  40284. ))
  40285. characterMakers.push(() => makeCharacter(
  40286. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40287. {
  40288. front: {
  40289. height: math.unit(6, "feet"),
  40290. weight: math.unit(145, "lb"),
  40291. name: "Front",
  40292. image: {
  40293. source: "./media/characters/farzian/front.svg",
  40294. extra: 1902/1693,
  40295. bottom: 108/2010
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Macro",
  40302. height: math.unit(500, "feet"),
  40303. default: true
  40304. },
  40305. ]
  40306. ))
  40307. characterMakers.push(() => makeCharacter(
  40308. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40309. {
  40310. front: {
  40311. height: math.unit(3 + 6/12, "feet"),
  40312. weight: math.unit(50, "lb"),
  40313. name: "Front",
  40314. image: {
  40315. source: "./media/characters/kimberly-tilson/front.svg",
  40316. extra: 1400/1322,
  40317. bottom: 36/1436
  40318. }
  40319. },
  40320. back: {
  40321. height: math.unit(3 + 6/12, "feet"),
  40322. weight: math.unit(50, "lb"),
  40323. name: "Back",
  40324. image: {
  40325. source: "./media/characters/kimberly-tilson/back.svg",
  40326. extra: 1370/1307,
  40327. bottom: 20/1390
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(3 + 6/12, "feet"),
  40335. default: true
  40336. },
  40337. ]
  40338. ))
  40339. characterMakers.push(() => makeCharacter(
  40340. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40341. {
  40342. front: {
  40343. height: math.unit(1148, "feet"),
  40344. weight: math.unit(34057, "lb"),
  40345. name: "Front",
  40346. image: {
  40347. source: "./media/characters/harthos/front.svg",
  40348. extra: 1391/1339,
  40349. bottom: 13/1404
  40350. }
  40351. },
  40352. },
  40353. [
  40354. {
  40355. name: "Macro",
  40356. height: math.unit(1148, "feet"),
  40357. default: true
  40358. },
  40359. ]
  40360. ))
  40361. characterMakers.push(() => makeCharacter(
  40362. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40363. {
  40364. front: {
  40365. height: math.unit(15, "feet"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/hypatia/front.svg",
  40369. extra: 1653/1591,
  40370. bottom: 79/1732
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(15, "feet")
  40378. },
  40379. {
  40380. name: "Small",
  40381. height: math.unit(300, "feet")
  40382. },
  40383. {
  40384. name: "Macro",
  40385. height: math.unit(2500, "feet"),
  40386. default: true
  40387. },
  40388. {
  40389. name: "Mega Macro",
  40390. height: math.unit(1500, "miles")
  40391. },
  40392. {
  40393. name: "Giga Macro",
  40394. height: math.unit(1.5e6, "miles")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6, "feet"),
  40403. weight: math.unit(200, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/wulver/front.svg",
  40407. extra: 1724/1632,
  40408. bottom: 130/1854
  40409. }
  40410. },
  40411. frontNsfw: {
  40412. height: math.unit(6, "feet"),
  40413. weight: math.unit(200, "lb"),
  40414. name: "Front (NSFW)",
  40415. image: {
  40416. source: "./media/characters/wulver/front-nsfw.svg",
  40417. extra: 1724/1632,
  40418. bottom: 130/1854
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Human-Sized",
  40425. height: math.unit(6, "feet")
  40426. },
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(4, "meters"),
  40430. default: true
  40431. },
  40432. {
  40433. name: "Large",
  40434. height: math.unit(6, "m")
  40435. },
  40436. ]
  40437. ))
  40438. characterMakers.push(() => makeCharacter(
  40439. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40440. {
  40441. front: {
  40442. height: math.unit(7, "feet"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/maru/front.svg",
  40446. extra: 1595/1570,
  40447. bottom: 0/1595
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Normal",
  40454. height: math.unit(7, "feet"),
  40455. default: true
  40456. },
  40457. {
  40458. name: "Macro",
  40459. height: math.unit(700, "feet")
  40460. },
  40461. {
  40462. name: "Mega Macro",
  40463. height: math.unit(25, "miles")
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(6, "feet"),
  40472. weight: math.unit(170, "lb"),
  40473. name: "Front",
  40474. image: {
  40475. source: "./media/characters/xenon/front.svg",
  40476. extra: 1376/1305,
  40477. bottom: 56/1432
  40478. }
  40479. },
  40480. back: {
  40481. height: math.unit(6, "feet"),
  40482. weight: math.unit(170, "lb"),
  40483. name: "Back",
  40484. image: {
  40485. source: "./media/characters/xenon/back.svg",
  40486. extra: 1328/1259,
  40487. bottom: 95/1423
  40488. }
  40489. },
  40490. maw: {
  40491. height: math.unit(0.52, "feet"),
  40492. name: "Maw",
  40493. image: {
  40494. source: "./media/characters/xenon/maw.svg"
  40495. }
  40496. },
  40497. hand: {
  40498. height: math.unit(0.82, "feet"),
  40499. name: "Hand",
  40500. image: {
  40501. source: "./media/characters/xenon/hand.svg"
  40502. }
  40503. },
  40504. foot: {
  40505. height: math.unit(1.13, "feet"),
  40506. name: "Foot",
  40507. image: {
  40508. source: "./media/characters/xenon/foot.svg"
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Micro",
  40515. height: math.unit(0.8, "inches")
  40516. },
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(6, "feet")
  40520. },
  40521. {
  40522. name: "Macro",
  40523. height: math.unit(50, "feet"),
  40524. default: true
  40525. },
  40526. {
  40527. name: "Macro+",
  40528. height: math.unit(250, "feet")
  40529. },
  40530. {
  40531. name: "Megamacro",
  40532. height: math.unit(1500, "feet")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(7 + 5/12, "feet"),
  40541. name: "Front",
  40542. image: {
  40543. source: "./media/characters/zane/front.svg",
  40544. extra: 1260/1203,
  40545. bottom: 94/1354
  40546. }
  40547. },
  40548. back: {
  40549. height: math.unit(5.05, "feet"),
  40550. name: "Back",
  40551. image: {
  40552. source: "./media/characters/zane/back.svg",
  40553. extra: 893/829,
  40554. bottom: 30/923
  40555. }
  40556. },
  40557. werewolf: {
  40558. height: math.unit(11, "feet"),
  40559. name: "Werewolf",
  40560. image: {
  40561. source: "./media/characters/zane/werewolf.svg",
  40562. extra: 1383/1323,
  40563. bottom: 89/1472
  40564. }
  40565. },
  40566. foot: {
  40567. height: math.unit(1.46, "feet"),
  40568. name: "Foot",
  40569. image: {
  40570. source: "./media/characters/zane/foot.svg"
  40571. }
  40572. },
  40573. footFront: {
  40574. height: math.unit(0.784, "feet"),
  40575. name: "Foot (Front)",
  40576. image: {
  40577. source: "./media/characters/zane/foot-front.svg"
  40578. }
  40579. },
  40580. dick: {
  40581. height: math.unit(1.95, "feet"),
  40582. name: "Dick",
  40583. image: {
  40584. source: "./media/characters/zane/dick.svg"
  40585. }
  40586. },
  40587. dickWerewolf: {
  40588. height: math.unit(3.77, "feet"),
  40589. name: "Dick (Werewolf)",
  40590. image: {
  40591. source: "./media/characters/zane/dick.svg"
  40592. }
  40593. },
  40594. },
  40595. [
  40596. {
  40597. name: "Normal",
  40598. height: math.unit(7 + 5/12, "feet"),
  40599. default: true
  40600. },
  40601. ]
  40602. ))
  40603. characterMakers.push(() => makeCharacter(
  40604. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40605. {
  40606. front: {
  40607. height: math.unit(6 + 2/12, "feet"),
  40608. weight: math.unit(284, "lb"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/benni-desparque/front.svg",
  40612. extra: 1353/1126,
  40613. bottom: 69/1422
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Civilian",
  40620. height: math.unit(6 + 2/12, "feet")
  40621. },
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(98, "feet"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Kaiju Fighter",
  40629. height: math.unit(268, "feet")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(5, "feet"),
  40638. weight: math.unit(105, "lb"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/maxine/front.svg",
  40642. extra: 1386/1250,
  40643. bottom: 71/1457
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Normal",
  40650. height: math.unit(5, "feet"),
  40651. default: true
  40652. },
  40653. ]
  40654. ))
  40655. characterMakers.push(() => makeCharacter(
  40656. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40657. {
  40658. front: {
  40659. height: math.unit(11 + 7/12, "feet"),
  40660. weight: math.unit(9576, "lb"),
  40661. name: "Front",
  40662. image: {
  40663. source: "./media/characters/scaly/front.svg",
  40664. extra: 888/867,
  40665. bottom: 36/924
  40666. }
  40667. },
  40668. },
  40669. [
  40670. {
  40671. name: "Normal",
  40672. height: math.unit(11 + 7/12, "feet"),
  40673. default: true
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40679. {
  40680. front: {
  40681. height: math.unit(6 + 3/12, "feet"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/saelria/front.svg",
  40685. extra: 1243/1138,
  40686. bottom: 46/1289
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Micro",
  40693. height: math.unit(6, "inches"),
  40694. },
  40695. {
  40696. name: "Normal",
  40697. height: math.unit(6 + 3/12, "feet"),
  40698. default: true
  40699. },
  40700. {
  40701. name: "Macro",
  40702. height: math.unit(25, "feet")
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(80, "meters"),
  40711. weight: math.unit(7000, "tonnes"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/tef/front.svg",
  40715. extra: 2036/1991,
  40716. bottom: 54/2090
  40717. }
  40718. },
  40719. back: {
  40720. height: math.unit(80, "meters"),
  40721. weight: math.unit(7000, "tonnes"),
  40722. name: "Back",
  40723. image: {
  40724. source: "./media/characters/tef/back.svg",
  40725. extra: 2036/1991,
  40726. bottom: 54/2090
  40727. }
  40728. },
  40729. },
  40730. [
  40731. {
  40732. name: "Macro",
  40733. height: math.unit(80, "meters"),
  40734. default: true
  40735. },
  40736. ]
  40737. ))
  40738. characterMakers.push(() => makeCharacter(
  40739. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40740. {
  40741. front: {
  40742. height: math.unit(13, "feet"),
  40743. weight: math.unit(6, "tons"),
  40744. name: "Front",
  40745. image: {
  40746. source: "./media/characters/rover/front.svg",
  40747. extra: 1233/1156,
  40748. bottom: 50/1283
  40749. }
  40750. },
  40751. back: {
  40752. height: math.unit(13, "feet"),
  40753. weight: math.unit(6, "tons"),
  40754. name: "Back",
  40755. image: {
  40756. source: "./media/characters/rover/back.svg",
  40757. extra: 1327/1258,
  40758. bottom: 39/1366
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(13, "feet"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(1300, "feet")
  40771. },
  40772. {
  40773. name: "Megamacro",
  40774. height: math.unit(1300, "miles")
  40775. },
  40776. {
  40777. name: "Gigamacro",
  40778. height: math.unit(1300000, "miles")
  40779. },
  40780. ]
  40781. ))
  40782. characterMakers.push(() => makeCharacter(
  40783. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40784. {
  40785. front: {
  40786. height: math.unit(6, "feet"),
  40787. weight: math.unit(150, "lb"),
  40788. name: "Front",
  40789. image: {
  40790. source: "./media/characters/ariz/front.svg",
  40791. extra: 1401/1346,
  40792. bottom: 5/1406
  40793. }
  40794. },
  40795. },
  40796. [
  40797. {
  40798. name: "Normal",
  40799. height: math.unit(10, "feet"),
  40800. default: true
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40806. {
  40807. front: {
  40808. height: math.unit(6, "feet"),
  40809. weight: math.unit(140, "lb"),
  40810. name: "Front",
  40811. image: {
  40812. source: "./media/characters/sigrun/front.svg",
  40813. extra: 1418/1359,
  40814. bottom: 27/1445
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Macro",
  40821. height: math.unit(35, "feet"),
  40822. default: true
  40823. },
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(6, "feet"),
  40831. weight: math.unit(150, "lb"),
  40832. name: "Front",
  40833. image: {
  40834. source: "./media/characters/numin/front.svg",
  40835. extra: 1433/1388,
  40836. bottom: 12/1445
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Macro",
  40843. height: math.unit(21.5, "km"),
  40844. default: true
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(6, "feet"),
  40853. weight: math.unit(463, "lb"),
  40854. name: "Front",
  40855. image: {
  40856. source: "./media/characters/melwa/front.svg",
  40857. extra: 1307/1248,
  40858. bottom: 93/1400
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(50, "meters"),
  40866. default: true
  40867. },
  40868. ]
  40869. ))
  40870. characterMakers.push(() => makeCharacter(
  40871. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40872. {
  40873. front: {
  40874. height: math.unit(325, "feet"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/zorkaiju/front.svg",
  40878. extra: 1955/1814,
  40879. bottom: 40/1995
  40880. }
  40881. },
  40882. frontExtended: {
  40883. height: math.unit(325, "feet"),
  40884. name: "Front (Extended)",
  40885. image: {
  40886. source: "./media/characters/zorkaiju/front-extended.svg",
  40887. extra: 1955/1814,
  40888. bottom: 40/1995
  40889. }
  40890. },
  40891. side: {
  40892. height: math.unit(325, "feet"),
  40893. name: "Side",
  40894. image: {
  40895. source: "./media/characters/zorkaiju/side.svg",
  40896. extra: 1495/1396,
  40897. bottom: 17/1512
  40898. }
  40899. },
  40900. sideExtended: {
  40901. height: math.unit(325, "feet"),
  40902. name: "Side (Extended)",
  40903. image: {
  40904. source: "./media/characters/zorkaiju/side-extended.svg",
  40905. extra: 1495/1396,
  40906. bottom: 17/1512
  40907. }
  40908. },
  40909. back: {
  40910. height: math.unit(325, "feet"),
  40911. name: "Back",
  40912. image: {
  40913. source: "./media/characters/zorkaiju/back.svg",
  40914. extra: 1959/1821,
  40915. bottom: 31/1990
  40916. }
  40917. },
  40918. backExtended: {
  40919. height: math.unit(325, "feet"),
  40920. name: "Back (Extended)",
  40921. image: {
  40922. source: "./media/characters/zorkaiju/back-extended.svg",
  40923. extra: 1959/1821,
  40924. bottom: 31/1990
  40925. }
  40926. },
  40927. hand: {
  40928. height: math.unit(58.4, "feet"),
  40929. name: "Hand",
  40930. image: {
  40931. source: "./media/characters/zorkaiju/hand.svg"
  40932. }
  40933. },
  40934. handExtended: {
  40935. height: math.unit(61.4, "feet"),
  40936. name: "Hand (Extended)",
  40937. image: {
  40938. source: "./media/characters/zorkaiju/hand-extended.svg"
  40939. }
  40940. },
  40941. foot: {
  40942. height: math.unit(95, "feet"),
  40943. name: "Foot",
  40944. image: {
  40945. source: "./media/characters/zorkaiju/foot.svg"
  40946. }
  40947. },
  40948. leftArm: {
  40949. height: math.unit(59, "feet"),
  40950. name: "Left Arm",
  40951. image: {
  40952. source: "./media/characters/zorkaiju/left-arm.svg"
  40953. }
  40954. },
  40955. rightArm: {
  40956. height: math.unit(59, "feet"),
  40957. name: "Right Arm",
  40958. image: {
  40959. source: "./media/characters/zorkaiju/right-arm.svg"
  40960. }
  40961. },
  40962. tail: {
  40963. height: math.unit(104, "feet"),
  40964. name: "Tail",
  40965. image: {
  40966. source: "./media/characters/zorkaiju/tail.svg"
  40967. }
  40968. },
  40969. tailExtended: {
  40970. height: math.unit(104, "feet"),
  40971. name: "Tail (Extended)",
  40972. image: {
  40973. source: "./media/characters/zorkaiju/tail-extended.svg"
  40974. }
  40975. },
  40976. tailBottom: {
  40977. height: math.unit(104, "feet"),
  40978. name: "Tail Bottom",
  40979. image: {
  40980. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40981. }
  40982. },
  40983. crystal: {
  40984. height: math.unit(27.54, "feet"),
  40985. name: "Crystal",
  40986. image: {
  40987. source: "./media/characters/zorkaiju/crystal.svg"
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Kaiju",
  40994. height: math.unit(325, "feet"),
  40995. default: true
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(6 + 1/12, "feet"),
  41004. weight: math.unit(115, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/bailey-belfry/front.svg",
  41008. extra: 1240/1121,
  41009. bottom: 101/1341
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(6 + 1/12, "feet"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41023. {
  41024. side: {
  41025. height: math.unit(4, "meters"),
  41026. weight: math.unit(250, "kg"),
  41027. name: "Side",
  41028. image: {
  41029. source: "./media/characters/blacky/side.svg",
  41030. extra: 1027/919,
  41031. bottom: 43/1070
  41032. }
  41033. },
  41034. maw: {
  41035. height: math.unit(1, "meters"),
  41036. name: "Maw",
  41037. image: {
  41038. source: "./media/characters/blacky/maw.svg"
  41039. }
  41040. },
  41041. paw: {
  41042. height: math.unit(1, "meters"),
  41043. name: "Paw",
  41044. image: {
  41045. source: "./media/characters/blacky/paw.svg"
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Normal",
  41052. height: math.unit(4, "meters"),
  41053. default: true
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41059. {
  41060. front: {
  41061. height: math.unit(170, "cm"),
  41062. weight: math.unit(66, "kg"),
  41063. name: "Front",
  41064. image: {
  41065. source: "./media/characters/thux-ei/front.svg",
  41066. extra: 1109/1011,
  41067. bottom: 8/1117
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Normal",
  41074. height: math.unit(170, "cm"),
  41075. default: true
  41076. },
  41077. ]
  41078. ))
  41079. characterMakers.push(() => makeCharacter(
  41080. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41081. {
  41082. front: {
  41083. height: math.unit(5, "feet"),
  41084. weight: math.unit(120, "lb"),
  41085. name: "Front",
  41086. image: {
  41087. source: "./media/characters/roxanne-voltaire/front.svg",
  41088. extra: 1901/1779,
  41089. bottom: 53/1954
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Normal",
  41096. height: math.unit(5, "feet"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Giant",
  41101. height: math.unit(50, "feet")
  41102. },
  41103. {
  41104. name: "Titan",
  41105. height: math.unit(500, "feet")
  41106. },
  41107. {
  41108. name: "Macro",
  41109. height: math.unit(5000, "feet")
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(50000, "feet")
  41114. },
  41115. {
  41116. name: "Gigamacro",
  41117. height: math.unit(500000, "feet")
  41118. },
  41119. {
  41120. name: "Teramacro",
  41121. height: math.unit(5e6, "feet")
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(6 + 2/12, "feet"),
  41130. name: "Front",
  41131. image: {
  41132. source: "./media/characters/squeaks/front.svg",
  41133. extra: 1823/1768,
  41134. bottom: 138/1961
  41135. }
  41136. },
  41137. },
  41138. [
  41139. {
  41140. name: "Micro",
  41141. height: math.unit(0.5, "inches")
  41142. },
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(6 + 2/12, "feet"),
  41146. default: true
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(600, "feet")
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(1.72, "meters"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/archinger/front.svg",
  41162. extra: 1861/1675,
  41163. bottom: 125/1986
  41164. }
  41165. },
  41166. back: {
  41167. height: math.unit(1.72, "meters"),
  41168. name: "Back",
  41169. image: {
  41170. source: "./media/characters/archinger/back.svg",
  41171. extra: 1844/1701,
  41172. bottom: 104/1948
  41173. }
  41174. },
  41175. cock: {
  41176. height: math.unit(0.59, "feet"),
  41177. name: "Cock",
  41178. image: {
  41179. source: "./media/characters/archinger/cock.svg"
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Normal",
  41186. height: math.unit(1.72, "meters"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(84, "meters")
  41192. },
  41193. {
  41194. name: "Macro+",
  41195. height: math.unit(112, "meters")
  41196. },
  41197. {
  41198. name: "Macro++",
  41199. height: math.unit(960, "meters")
  41200. },
  41201. {
  41202. name: "Macro+++",
  41203. height: math.unit(4, "km")
  41204. },
  41205. {
  41206. name: "Macro++++",
  41207. height: math.unit(48, "km")
  41208. },
  41209. {
  41210. name: "Macro+++++",
  41211. height: math.unit(4500, "km")
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(5 + 5/12, "feet"),
  41220. name: "Front",
  41221. image: {
  41222. source: "./media/characters/alsnapz/front.svg",
  41223. extra: 1157/1065,
  41224. bottom: 42/1199
  41225. }
  41226. },
  41227. },
  41228. [
  41229. {
  41230. name: "Normal",
  41231. height: math.unit(5 + 5/12, "feet"),
  41232. default: true
  41233. },
  41234. ]
  41235. ))
  41236. characterMakers.push(() => makeCharacter(
  41237. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41238. {
  41239. side: {
  41240. height: math.unit(3.2, "earths"),
  41241. name: "Side",
  41242. image: {
  41243. source: "./media/characters/mag/side.svg",
  41244. extra: 1331/1008,
  41245. bottom: 52/1383
  41246. }
  41247. },
  41248. wing: {
  41249. height: math.unit(1.94, "earths"),
  41250. name: "Wing",
  41251. image: {
  41252. source: "./media/characters/mag/wing.svg"
  41253. }
  41254. },
  41255. dick: {
  41256. height: math.unit(1.8, "earths"),
  41257. name: "Dick",
  41258. image: {
  41259. source: "./media/characters/mag/dick.svg"
  41260. }
  41261. },
  41262. ass: {
  41263. height: math.unit(1.33, "earths"),
  41264. name: "Ass",
  41265. image: {
  41266. source: "./media/characters/mag/ass.svg"
  41267. }
  41268. },
  41269. head: {
  41270. height: math.unit(1.1, "earths"),
  41271. name: "Head",
  41272. image: {
  41273. source: "./media/characters/mag/head.svg"
  41274. }
  41275. },
  41276. maw: {
  41277. height: math.unit(1.62, "earths"),
  41278. name: "Maw",
  41279. image: {
  41280. source: "./media/characters/mag/maw.svg"
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Small",
  41287. height: math.unit(162, "feet")
  41288. },
  41289. {
  41290. name: "Normal",
  41291. height: math.unit(3.2, "earths"),
  41292. default: true
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41298. {
  41299. front: {
  41300. height: math.unit(512, "feet"),
  41301. weight: math.unit(63509, "tonnes"),
  41302. name: "Front",
  41303. image: {
  41304. source: "./media/characters/vorrel-harroc/front.svg",
  41305. extra: 1075/1063,
  41306. bottom: 62/1137
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Normal",
  41313. height: math.unit(10, "feet")
  41314. },
  41315. {
  41316. name: "Macro",
  41317. height: math.unit(512, "feet"),
  41318. default: true
  41319. },
  41320. {
  41321. name: "Megamacro",
  41322. height: math.unit(256, "miles")
  41323. },
  41324. {
  41325. name: "Gigamacro",
  41326. height: math.unit(4096, "miles")
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41332. {
  41333. side: {
  41334. height: math.unit(50, "feet"),
  41335. name: "Side",
  41336. image: {
  41337. source: "./media/characters/froimar/side.svg",
  41338. extra: 855/638,
  41339. bottom: 99/954
  41340. }
  41341. },
  41342. },
  41343. [
  41344. {
  41345. name: "Macro",
  41346. height: math.unit(50, "feet"),
  41347. default: true
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(210, "miles"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/timothy/front.svg",
  41359. extra: 1007/943,
  41360. bottom: 62/1069
  41361. }
  41362. },
  41363. frontSkirt: {
  41364. height: math.unit(210, "miles"),
  41365. name: "Front (Skirt)",
  41366. image: {
  41367. source: "./media/characters/timothy/front-skirt.svg",
  41368. extra: 1007/943,
  41369. bottom: 62/1069
  41370. }
  41371. },
  41372. frontCoat: {
  41373. height: math.unit(210, "miles"),
  41374. name: "Front (Coat)",
  41375. image: {
  41376. source: "./media/characters/timothy/front-coat.svg",
  41377. extra: 1007/943,
  41378. bottom: 62/1069
  41379. }
  41380. },
  41381. },
  41382. [
  41383. {
  41384. name: "Macro",
  41385. height: math.unit(210, "miles"),
  41386. default: true
  41387. },
  41388. {
  41389. name: "Megamacro",
  41390. height: math.unit(210000, "miles")
  41391. },
  41392. ]
  41393. ))
  41394. characterMakers.push(() => makeCharacter(
  41395. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41396. {
  41397. front: {
  41398. height: math.unit(188, "feet"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/pyotr/front.svg",
  41402. extra: 1912/1826,
  41403. bottom: 18/1930
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Macro",
  41410. height: math.unit(188, "feet"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Megamacro",
  41415. height: math.unit(8, "miles")
  41416. },
  41417. ]
  41418. ))
  41419. characterMakers.push(() => makeCharacter(
  41420. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41421. {
  41422. side: {
  41423. height: math.unit(10, "feet"),
  41424. weight: math.unit(4500, "lb"),
  41425. name: "Side",
  41426. image: {
  41427. source: "./media/characters/ackart/side.svg",
  41428. extra: 1776/1668,
  41429. bottom: 116/1892
  41430. }
  41431. },
  41432. },
  41433. [
  41434. {
  41435. name: "Normal",
  41436. height: math.unit(10, "feet"),
  41437. default: true
  41438. },
  41439. ]
  41440. ))
  41441. characterMakers.push(() => makeCharacter(
  41442. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41443. {
  41444. side: {
  41445. height: math.unit(21, "feet"),
  41446. name: "Side",
  41447. image: {
  41448. source: "./media/characters/nolow/side.svg",
  41449. extra: 1484/1434,
  41450. bottom: 85/1569
  41451. }
  41452. },
  41453. sideErect: {
  41454. height: math.unit(21, "feet"),
  41455. name: "Side-erect",
  41456. image: {
  41457. source: "./media/characters/nolow/side-erect.svg",
  41458. extra: 1484/1434,
  41459. bottom: 85/1569
  41460. }
  41461. },
  41462. },
  41463. [
  41464. {
  41465. name: "Regular",
  41466. height: math.unit(12, "feet")
  41467. },
  41468. {
  41469. name: "Big Chee",
  41470. height: math.unit(21, "feet"),
  41471. default: true
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(7, "feet"),
  41480. weight: math.unit(250, "lb"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/nines/front.svg",
  41484. extra: 1741/1607,
  41485. bottom: 41/1782
  41486. }
  41487. },
  41488. side: {
  41489. height: math.unit(7, "feet"),
  41490. weight: math.unit(250, "lb"),
  41491. name: "Side",
  41492. image: {
  41493. source: "./media/characters/nines/side.svg",
  41494. extra: 1854/1735,
  41495. bottom: 93/1947
  41496. }
  41497. },
  41498. back: {
  41499. height: math.unit(7, "feet"),
  41500. weight: math.unit(250, "lb"),
  41501. name: "Back",
  41502. image: {
  41503. source: "./media/characters/nines/back.svg",
  41504. extra: 1748/1615,
  41505. bottom: 20/1768
  41506. }
  41507. },
  41508. },
  41509. [
  41510. {
  41511. name: "Megamacro",
  41512. height: math.unit(99, "km"),
  41513. default: true
  41514. },
  41515. ]
  41516. ))
  41517. characterMakers.push(() => makeCharacter(
  41518. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41519. {
  41520. front: {
  41521. height: math.unit(5 + 10/12, "feet"),
  41522. weight: math.unit(210, "lb"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/zenith/front.svg",
  41526. extra: 1531/1452,
  41527. bottom: 198/1729
  41528. }
  41529. },
  41530. back: {
  41531. height: math.unit(5 + 10/12, "feet"),
  41532. weight: math.unit(210, "lb"),
  41533. name: "Back",
  41534. image: {
  41535. source: "./media/characters/zenith/back.svg",
  41536. extra: 1571/1487,
  41537. bottom: 75/1646
  41538. }
  41539. },
  41540. },
  41541. [
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(5 + 10/12, "feet"),
  41545. default: true
  41546. }
  41547. ]
  41548. ))
  41549. characterMakers.push(() => makeCharacter(
  41550. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41551. {
  41552. front: {
  41553. height: math.unit(4, "feet"),
  41554. weight: math.unit(60, "lb"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/jasper/front.svg",
  41558. extra: 1450/1379,
  41559. bottom: 19/1469
  41560. }
  41561. },
  41562. },
  41563. [
  41564. {
  41565. name: "Normal",
  41566. height: math.unit(4, "feet"),
  41567. default: true
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(6 + 5/12, "feet"),
  41576. weight: math.unit(290, "lb"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/tiberius-thyben/front.svg",
  41580. extra: 757/739,
  41581. bottom: 39/796
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Micro",
  41588. height: math.unit(1.5, "inches")
  41589. },
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(6 + 5/12, "feet"),
  41593. default: true
  41594. },
  41595. {
  41596. name: "Macro",
  41597. height: math.unit(300, "feet")
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(5 + 6/12, "feet"),
  41606. weight: math.unit(60, "kg"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/sabre/front.svg",
  41610. extra: 738/671,
  41611. bottom: 27/765
  41612. }
  41613. },
  41614. },
  41615. [
  41616. {
  41617. name: "Teeny",
  41618. height: math.unit(2, "inches")
  41619. },
  41620. {
  41621. name: "Smol",
  41622. height: math.unit(8, "inches")
  41623. },
  41624. {
  41625. name: "Normal",
  41626. height: math.unit(5 + 6/12, "feet"),
  41627. default: true
  41628. },
  41629. {
  41630. name: "Mini-Macro",
  41631. height: math.unit(15, "feet")
  41632. },
  41633. {
  41634. name: "Macro",
  41635. height: math.unit(50, "feet")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(6 + 4/12, "feet"),
  41644. weight: math.unit(170, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/charlie/front.svg",
  41648. extra: 1348/1228,
  41649. bottom: 15/1363
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Macro",
  41656. height: math.unit(1700, "meters"),
  41657. default: true
  41658. },
  41659. {
  41660. name: "MegaMacro",
  41661. height: math.unit(20400, "meters")
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41667. {
  41668. front: {
  41669. height: math.unit(6 + 3/12, "feet"),
  41670. weight: math.unit(185, "lb"),
  41671. name: "Front",
  41672. image: {
  41673. source: "./media/characters/susan-grant/front.svg",
  41674. extra: 1351/1327,
  41675. bottom: 26/1377
  41676. }
  41677. },
  41678. },
  41679. [
  41680. {
  41681. name: "Normal",
  41682. height: math.unit(6 + 3/12, "feet"),
  41683. default: true
  41684. },
  41685. {
  41686. name: "Macro",
  41687. height: math.unit(225, "feet")
  41688. },
  41689. {
  41690. name: "Macro+",
  41691. height: math.unit(900, "feet")
  41692. },
  41693. {
  41694. name: "MegaMacro",
  41695. height: math.unit(14400, "feet")
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(5 + 4/12, "feet"),
  41704. weight: math.unit(110, "lb"),
  41705. name: "Front",
  41706. image: {
  41707. source: "./media/characters/axel-isanov/front.svg",
  41708. extra: 1096/1065,
  41709. bottom: 13/1109
  41710. }
  41711. },
  41712. },
  41713. [
  41714. {
  41715. name: "Normal",
  41716. height: math.unit(5 + 4/12, "feet"),
  41717. default: true
  41718. },
  41719. ]
  41720. ))
  41721. characterMakers.push(() => makeCharacter(
  41722. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41723. {
  41724. front: {
  41725. height: math.unit(9, "feet"),
  41726. weight: math.unit(467, "lb"),
  41727. name: "Front",
  41728. image: {
  41729. source: "./media/characters/necahual/front.svg",
  41730. extra: 920/873,
  41731. bottom: 26/946
  41732. }
  41733. },
  41734. back: {
  41735. height: math.unit(9, "feet"),
  41736. weight: math.unit(467, "lb"),
  41737. name: "Back",
  41738. image: {
  41739. source: "./media/characters/necahual/back.svg",
  41740. extra: 930/884,
  41741. bottom: 16/946
  41742. }
  41743. },
  41744. frontUnderwear: {
  41745. height: math.unit(9, "feet"),
  41746. weight: math.unit(467, "lb"),
  41747. name: "Front (Underwear)",
  41748. image: {
  41749. source: "./media/characters/necahual/front-underwear.svg",
  41750. extra: 920/873,
  41751. bottom: 26/946
  41752. }
  41753. },
  41754. frontDressed: {
  41755. height: math.unit(9, "feet"),
  41756. weight: math.unit(467, "lb"),
  41757. name: "Front (Dressed)",
  41758. image: {
  41759. source: "./media/characters/necahual/front-dressed.svg",
  41760. extra: 920/873,
  41761. bottom: 26/946
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Comprsesed",
  41768. height: math.unit(9, "feet")
  41769. },
  41770. {
  41771. name: "Natural",
  41772. height: math.unit(15, "feet"),
  41773. default: true
  41774. },
  41775. {
  41776. name: "Boosted",
  41777. height: math.unit(50, "feet")
  41778. },
  41779. {
  41780. name: "Boosted+",
  41781. height: math.unit(150, "feet")
  41782. },
  41783. {
  41784. name: "Max",
  41785. height: math.unit(500, "feet")
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41791. {
  41792. front: {
  41793. height: math.unit(22 + 1/12, "feet"),
  41794. weight: math.unit(3200, "lb"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/theo-acacia/front.svg",
  41798. extra: 1796/1741,
  41799. bottom: 83/1879
  41800. }
  41801. },
  41802. frontUnderwear: {
  41803. height: math.unit(22 + 1/12, "feet"),
  41804. weight: math.unit(3200, "lb"),
  41805. name: "Front (Underwear)",
  41806. image: {
  41807. source: "./media/characters/theo-acacia/front-underwear.svg",
  41808. extra: 1796/1741,
  41809. bottom: 83/1879
  41810. }
  41811. },
  41812. frontNude: {
  41813. height: math.unit(22 + 1/12, "feet"),
  41814. weight: math.unit(3200, "lb"),
  41815. name: "Front (Nude)",
  41816. image: {
  41817. source: "./media/characters/theo-acacia/front-nude.svg",
  41818. extra: 1796/1741,
  41819. bottom: 83/1879
  41820. }
  41821. },
  41822. },
  41823. [
  41824. {
  41825. name: "Normal",
  41826. height: math.unit(22 + 1/12, "feet"),
  41827. default: true
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(20, "feet"),
  41836. name: "Front",
  41837. image: {
  41838. source: "./media/characters/astra/front.svg",
  41839. extra: 1850/1714,
  41840. bottom: 106/1956
  41841. }
  41842. },
  41843. frontUndressed: {
  41844. height: math.unit(20, "feet"),
  41845. name: "Front (Undressed)",
  41846. image: {
  41847. source: "./media/characters/astra/front-undressed.svg",
  41848. extra: 1926/1749,
  41849. bottom: 0/1926
  41850. }
  41851. },
  41852. hand: {
  41853. height: math.unit(1.53, "feet"),
  41854. name: "Hand",
  41855. image: {
  41856. source: "./media/characters/astra/hand.svg"
  41857. }
  41858. },
  41859. paw: {
  41860. height: math.unit(1.53, "feet"),
  41861. name: "Paw",
  41862. image: {
  41863. source: "./media/characters/astra/paw.svg"
  41864. }
  41865. },
  41866. },
  41867. [
  41868. {
  41869. name: "Smallest",
  41870. height: math.unit(20, "feet")
  41871. },
  41872. {
  41873. name: "Normal",
  41874. height: math.unit(1e9, "miles"),
  41875. default: true
  41876. },
  41877. {
  41878. name: "Larger",
  41879. height: math.unit(5, "multiverses")
  41880. },
  41881. {
  41882. name: "Largest",
  41883. height: math.unit(1e9, "multiverses")
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(8, "feet"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/breanna/front.svg",
  41895. extra: 1912/1632,
  41896. bottom: 33/1945
  41897. }
  41898. },
  41899. },
  41900. [
  41901. {
  41902. name: "Smallest",
  41903. height: math.unit(8, "feet")
  41904. },
  41905. {
  41906. name: "Normal",
  41907. height: math.unit(1, "mile"),
  41908. default: true
  41909. },
  41910. {
  41911. name: "Maximum",
  41912. height: math.unit(1500000000000, "lightyears")
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(5 + 11/12, "feet"),
  41921. weight: math.unit(155, "lb"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/cai/front.svg",
  41925. extra: 1823/1702,
  41926. bottom: 32/1855
  41927. }
  41928. },
  41929. back: {
  41930. height: math.unit(5 + 11/12, "feet"),
  41931. weight: math.unit(155, "lb"),
  41932. name: "Back",
  41933. image: {
  41934. source: "./media/characters/cai/back.svg",
  41935. extra: 1809/1708,
  41936. bottom: 31/1840
  41937. }
  41938. },
  41939. },
  41940. [
  41941. {
  41942. name: "Normal",
  41943. height: math.unit(5 + 11/12, "feet"),
  41944. default: true
  41945. },
  41946. {
  41947. name: "Big",
  41948. height: math.unit(15, "feet")
  41949. },
  41950. {
  41951. name: "Macro",
  41952. height: math.unit(200, "feet")
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(5 + 6/12, "feet"),
  41961. weight: math.unit(160, "lb"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41965. extra: 1227/1174,
  41966. bottom: 37/1264
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Macro",
  41973. height: math.unit(444, "meters"),
  41974. default: true
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(18 + 7/12, "feet"),
  41983. name: "Front",
  41984. image: {
  41985. source: "./media/characters/rex/front.svg",
  41986. extra: 1941/1807,
  41987. bottom: 66/2007
  41988. }
  41989. },
  41990. back: {
  41991. height: math.unit(18 + 7/12, "feet"),
  41992. name: "Back",
  41993. image: {
  41994. source: "./media/characters/rex/back.svg",
  41995. extra: 1937/1822,
  41996. bottom: 42/1979
  41997. }
  41998. },
  41999. boot: {
  42000. height: math.unit(3.45, "feet"),
  42001. name: "Boot",
  42002. image: {
  42003. source: "./media/characters/rex/boot.svg"
  42004. }
  42005. },
  42006. paw: {
  42007. height: math.unit(4.17, "feet"),
  42008. name: "Paw",
  42009. image: {
  42010. source: "./media/characters/rex/paw.svg"
  42011. }
  42012. },
  42013. head: {
  42014. height: math.unit(6.728, "feet"),
  42015. name: "Head",
  42016. image: {
  42017. source: "./media/characters/rex/head.svg"
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Nano",
  42024. height: math.unit(18 + 7/12, "feet")
  42025. },
  42026. {
  42027. name: "Micro",
  42028. height: math.unit(1.5, "megameters")
  42029. },
  42030. {
  42031. name: "Normal",
  42032. height: math.unit(440, "megameters"),
  42033. default: true
  42034. },
  42035. {
  42036. name: "Macro",
  42037. height: math.unit(2.5, "gigameters")
  42038. },
  42039. {
  42040. name: "Gigamacro",
  42041. height: math.unit(2, "galaxies")
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42047. {
  42048. side: {
  42049. height: math.unit(32, "feet"),
  42050. weight: math.unit(250000, "lb"),
  42051. name: "Side",
  42052. image: {
  42053. source: "./media/characters/silverwing/side.svg",
  42054. extra: 1100/1019,
  42055. bottom: 204/1304
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Normal",
  42062. height: math.unit(32, "feet"),
  42063. default: true
  42064. },
  42065. ]
  42066. ))
  42067. characterMakers.push(() => makeCharacter(
  42068. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42069. {
  42070. front: {
  42071. height: math.unit(6 + 6/12, "feet"),
  42072. weight: math.unit(350, "lb"),
  42073. name: "Front",
  42074. image: {
  42075. source: "./media/characters/tristan-hawthorne/front.svg",
  42076. extra: 1159/1124,
  42077. bottom: 37/1196
  42078. },
  42079. form: "labrador",
  42080. default: true
  42081. },
  42082. skunkFront: {
  42083. height: math.unit(4 + 6/12, "feet"),
  42084. weight: math.unit(120, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42088. extra: 1609/1551,
  42089. bottom: 169/1778
  42090. },
  42091. form: "skunk",
  42092. default: true
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Normal",
  42098. height: math.unit(6 + 6/12, "feet"),
  42099. form: "labrador",
  42100. default: true
  42101. },
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(4 + 6/12, "feet"),
  42105. form: "skunk",
  42106. default: true
  42107. },
  42108. ],
  42109. {
  42110. "labrador": {
  42111. name: "Labrador",
  42112. default: true
  42113. },
  42114. "skunk": {
  42115. name: "Skunk"
  42116. }
  42117. }
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(5 + 11/12, "feet"),
  42124. weight: math.unit(190, "lb"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/mizu/front.svg",
  42128. extra: 1988/1788,
  42129. bottom: 14/2002
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(5 + 11/12, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(1.7, "feet"),
  42146. weight: math.unit(50, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/dechroma/front.svg",
  42150. extra: 1095/859,
  42151. bottom: 64/1159
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(1.7, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42165. {
  42166. side: {
  42167. height: math.unit(30, "feet"),
  42168. name: "Side",
  42169. image: {
  42170. source: "./media/characters/veluren-thanazel/side.svg",
  42171. extra: 1611/633,
  42172. bottom: 118/1729
  42173. }
  42174. },
  42175. front: {
  42176. height: math.unit(30, "feet"),
  42177. name: "Front",
  42178. image: {
  42179. source: "./media/characters/veluren-thanazel/front.svg",
  42180. extra: 1486/636,
  42181. bottom: 238/1724
  42182. }
  42183. },
  42184. head: {
  42185. height: math.unit(21.4, "feet"),
  42186. name: "Head",
  42187. image: {
  42188. source: "./media/characters/veluren-thanazel/head.svg"
  42189. }
  42190. },
  42191. genitals: {
  42192. height: math.unit(19.4, "feet"),
  42193. name: "Genitals",
  42194. image: {
  42195. source: "./media/characters/veluren-thanazel/genitals.svg"
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Social",
  42202. height: math.unit(6, "feet")
  42203. },
  42204. {
  42205. name: "Play",
  42206. height: math.unit(12, "feet")
  42207. },
  42208. {
  42209. name: "True",
  42210. height: math.unit(30, "feet"),
  42211. default: true
  42212. },
  42213. ]
  42214. ))
  42215. characterMakers.push(() => makeCharacter(
  42216. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42217. {
  42218. front: {
  42219. height: math.unit(7 + 6/12, "feet"),
  42220. weight: math.unit(500, "kg"),
  42221. name: "Front",
  42222. image: {
  42223. source: "./media/characters/arcturas/front.svg",
  42224. extra: 1700/1500,
  42225. bottom: 145/1845
  42226. }
  42227. },
  42228. },
  42229. [
  42230. {
  42231. name: "Normal",
  42232. height: math.unit(7 + 6/12, "feet"),
  42233. default: true
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42239. {
  42240. side: {
  42241. height: math.unit(6, "feet"),
  42242. weight: math.unit(2, "tons"),
  42243. name: "Side",
  42244. image: {
  42245. source: "./media/characters/vitaen/side.svg",
  42246. extra: 1157/617,
  42247. bottom: 122/1279
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(6, "feet"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(19, "feet"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/fia-dreamweaver/front.svg",
  42267. extra: 1630/1504,
  42268. bottom: 25/1655
  42269. }
  42270. },
  42271. },
  42272. [
  42273. {
  42274. name: "Normal",
  42275. height: math.unit(19, "feet"),
  42276. default: true
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(5 + 4/12, "feet"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/artan/front.svg",
  42288. extra: 1618/1535,
  42289. bottom: 46/1664
  42290. }
  42291. },
  42292. back: {
  42293. height: math.unit(5 + 4/12, "feet"),
  42294. name: "Back",
  42295. image: {
  42296. source: "./media/characters/artan/back.svg",
  42297. extra: 1618/1543,
  42298. bottom: 31/1649
  42299. }
  42300. },
  42301. },
  42302. [
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(5 + 4/12, "feet"),
  42306. default: true
  42307. },
  42308. ]
  42309. ))
  42310. characterMakers.push(() => makeCharacter(
  42311. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42312. {
  42313. side: {
  42314. height: math.unit(182, "cm"),
  42315. weight: math.unit(1000, "lb"),
  42316. name: "Side",
  42317. image: {
  42318. source: "./media/characters/silver-dragon/side.svg",
  42319. extra: 710/287,
  42320. bottom: 88/798
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(182, "cm"),
  42328. default: true
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42334. {
  42335. side: {
  42336. height: math.unit(6 + 6/12, "feet"),
  42337. weight: math.unit(1.5, "tons"),
  42338. name: "Side",
  42339. image: {
  42340. source: "./media/characters/zephyr/side.svg",
  42341. extra: 1433/586,
  42342. bottom: 109/1542
  42343. }
  42344. },
  42345. },
  42346. [
  42347. {
  42348. name: "Normal",
  42349. height: math.unit(6 + 6/12, "feet"),
  42350. default: true
  42351. },
  42352. ]
  42353. ))
  42354. characterMakers.push(() => makeCharacter(
  42355. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42356. {
  42357. side: {
  42358. height: math.unit(1, "feet"),
  42359. name: "Side",
  42360. image: {
  42361. source: "./media/characters/vixye/side.svg",
  42362. extra: 632/541,
  42363. bottom: 0/632
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Normal",
  42370. height: math.unit(1, "feet"),
  42371. default: true
  42372. },
  42373. {
  42374. name: "True",
  42375. height: math.unit(1e15, "multiverses")
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(8 + 2/12, "feet"),
  42384. weight: math.unit(650, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42388. extra: 1174/1137,
  42389. bottom: 82/1256
  42390. }
  42391. },
  42392. back: {
  42393. height: math.unit(8 + 2/12, "feet"),
  42394. weight: math.unit(650, "lb"),
  42395. name: "Back",
  42396. image: {
  42397. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42398. extra: 1204/1157,
  42399. bottom: 46/1250
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Wildform",
  42406. height: math.unit(8 + 2/12, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(18, "feet"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/cyphin/front.svg",
  42419. extra: 970/886,
  42420. bottom: 42/1012
  42421. }
  42422. },
  42423. back: {
  42424. height: math.unit(18, "feet"),
  42425. name: "Back",
  42426. image: {
  42427. source: "./media/characters/cyphin/back.svg",
  42428. extra: 1009/894,
  42429. bottom: 24/1033
  42430. }
  42431. },
  42432. head: {
  42433. height: math.unit(5.05, "feet"),
  42434. name: "Head",
  42435. image: {
  42436. source: "./media/characters/cyphin/head.svg"
  42437. }
  42438. },
  42439. tailbud: {
  42440. height: math.unit(5, "feet"),
  42441. name: "Tailbud",
  42442. image: {
  42443. source: "./media/characters/cyphin/tailbud.svg"
  42444. }
  42445. },
  42446. },
  42447. [
  42448. ]
  42449. ))
  42450. characterMakers.push(() => makeCharacter(
  42451. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42452. {
  42453. side: {
  42454. height: math.unit(10, "feet"),
  42455. weight: math.unit(6, "tons"),
  42456. name: "Side",
  42457. image: {
  42458. source: "./media/characters/raijin/side.svg",
  42459. extra: 1529/613,
  42460. bottom: 337/1866
  42461. }
  42462. },
  42463. },
  42464. [
  42465. {
  42466. name: "Normal",
  42467. height: math.unit(10, "feet"),
  42468. default: true
  42469. },
  42470. ]
  42471. ))
  42472. characterMakers.push(() => makeCharacter(
  42473. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42474. {
  42475. side: {
  42476. height: math.unit(9, "feet"),
  42477. name: "Side",
  42478. image: {
  42479. source: "./media/characters/nilghais/side.svg",
  42480. extra: 1047/744,
  42481. bottom: 91/1138
  42482. }
  42483. },
  42484. head: {
  42485. height: math.unit(3.14, "feet"),
  42486. name: "Head",
  42487. image: {
  42488. source: "./media/characters/nilghais/head.svg"
  42489. }
  42490. },
  42491. mouth: {
  42492. height: math.unit(4.6, "feet"),
  42493. name: "Mouth",
  42494. image: {
  42495. source: "./media/characters/nilghais/mouth.svg"
  42496. }
  42497. },
  42498. wings: {
  42499. height: math.unit(24, "feet"),
  42500. name: "Wings",
  42501. image: {
  42502. source: "./media/characters/nilghais/wings.svg"
  42503. }
  42504. },
  42505. ass: {
  42506. height: math.unit(6.12, "feet"),
  42507. name: "Ass",
  42508. image: {
  42509. source: "./media/characters/nilghais/ass.svg"
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(9, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42523. {
  42524. regular: {
  42525. height: math.unit(16 + 2/12, "feet"),
  42526. weight: math.unit(2300, "lb"),
  42527. name: "Regular",
  42528. image: {
  42529. source: "./media/characters/zolgar/regular.svg",
  42530. extra: 1246/1004,
  42531. bottom: 124/1370
  42532. }
  42533. },
  42534. boxers: {
  42535. height: math.unit(16 + 2/12, "feet"),
  42536. weight: math.unit(2300, "lb"),
  42537. name: "Boxers",
  42538. image: {
  42539. source: "./media/characters/zolgar/boxers.svg",
  42540. extra: 1246/1004,
  42541. bottom: 124/1370
  42542. }
  42543. },
  42544. armored: {
  42545. height: math.unit(16 + 2/12, "feet"),
  42546. weight: math.unit(2300, "lb"),
  42547. name: "Armored",
  42548. image: {
  42549. source: "./media/characters/zolgar/armored.svg",
  42550. extra: 1246/1004,
  42551. bottom: 124/1370
  42552. }
  42553. },
  42554. goth: {
  42555. height: math.unit(16 + 2/12, "feet"),
  42556. weight: math.unit(2300, "lb"),
  42557. name: "Goth",
  42558. image: {
  42559. source: "./media/characters/zolgar/goth.svg",
  42560. extra: 1246/1004,
  42561. bottom: 124/1370
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Shrunken Down",
  42568. height: math.unit(9 + 2/12, "feet")
  42569. },
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(16 + 2/12, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(6, "feet"),
  42582. weight: math.unit(168, "lb"),
  42583. name: "Front",
  42584. image: {
  42585. source: "./media/characters/luca/front.svg",
  42586. extra: 841/667,
  42587. bottom: 102/943
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Normal",
  42594. height: math.unit(6, "feet"),
  42595. default: true
  42596. },
  42597. ]
  42598. ))
  42599. characterMakers.push(() => makeCharacter(
  42600. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42601. {
  42602. side: {
  42603. height: math.unit(7 + 3/12, "feet"),
  42604. weight: math.unit(312, "lb"),
  42605. name: "Side",
  42606. image: {
  42607. source: "./media/characters/zezo/side.svg",
  42608. extra: 1192/1067,
  42609. bottom: 63/1255
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(7 + 3/12, "feet"),
  42617. default: true
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(5 + 5/12, "feet"),
  42626. weight: math.unit(170, "lb"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/mayso/front.svg",
  42630. extra: 1215/1108,
  42631. bottom: 16/1231
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(5 + 5/12, "feet"),
  42639. default: true
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(4 + 3/12, "feet"),
  42648. weight: math.unit(80, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/hess/front.svg",
  42652. extra: 1200/1123,
  42653. bottom: 16/1216
  42654. }
  42655. },
  42656. },
  42657. [
  42658. {
  42659. name: "Normal",
  42660. height: math.unit(4 + 3/12, "feet"),
  42661. default: true
  42662. },
  42663. ]
  42664. ))
  42665. characterMakers.push(() => makeCharacter(
  42666. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42667. {
  42668. front: {
  42669. height: math.unit(1.9, "meters"),
  42670. name: "Front",
  42671. image: {
  42672. source: "./media/characters/ashgar/front.svg",
  42673. extra: 1177/1146,
  42674. bottom: 99/1276
  42675. }
  42676. },
  42677. back: {
  42678. height: math.unit(1.9, "meters"),
  42679. name: "Back",
  42680. image: {
  42681. source: "./media/characters/ashgar/back.svg",
  42682. extra: 1201/1183,
  42683. bottom: 53/1254
  42684. }
  42685. },
  42686. feral: {
  42687. height: math.unit(1.4, "meters"),
  42688. name: "Feral",
  42689. image: {
  42690. source: "./media/characters/ashgar/feral.svg",
  42691. extra: 370/345,
  42692. bottom: 45/415
  42693. }
  42694. },
  42695. },
  42696. [
  42697. {
  42698. name: "Normal",
  42699. height: math.unit(1.9, "meters"),
  42700. default: true
  42701. },
  42702. ]
  42703. ))
  42704. characterMakers.push(() => makeCharacter(
  42705. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42706. {
  42707. regular: {
  42708. height: math.unit(6, "feet"),
  42709. weight: math.unit(220, "lb"),
  42710. name: "Regular",
  42711. image: {
  42712. source: "./media/characters/phillip/regular.svg",
  42713. extra: 1373/1277,
  42714. bottom: 75/1448
  42715. }
  42716. },
  42717. dressed: {
  42718. height: math.unit(6, "feet"),
  42719. weight: math.unit(220, "lb"),
  42720. name: "Dressed",
  42721. image: {
  42722. source: "./media/characters/phillip/dressed.svg",
  42723. extra: 1373/1277,
  42724. bottom: 75/1448
  42725. }
  42726. },
  42727. paw: {
  42728. height: math.unit(1.44, "feet"),
  42729. name: "Paw",
  42730. image: {
  42731. source: "./media/characters/phillip/paw.svg"
  42732. }
  42733. },
  42734. },
  42735. [
  42736. {
  42737. name: "Normal",
  42738. height: math.unit(6, "feet"),
  42739. default: true
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42745. {
  42746. side: {
  42747. height: math.unit(42, "feet"),
  42748. name: "Side",
  42749. image: {
  42750. source: "./media/characters/uvula/side.svg",
  42751. extra: 683/586,
  42752. bottom: 60/743
  42753. }
  42754. },
  42755. front: {
  42756. height: math.unit(42, "feet"),
  42757. name: "Front",
  42758. image: {
  42759. source: "./media/characters/uvula/front.svg",
  42760. extra: 705/613,
  42761. bottom: 54/759
  42762. }
  42763. },
  42764. maw: {
  42765. height: math.unit(23.5, "feet"),
  42766. name: "Maw",
  42767. image: {
  42768. source: "./media/characters/uvula/maw.svg"
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Original Size",
  42775. height: math.unit(14, "inches")
  42776. },
  42777. {
  42778. name: "Human Size",
  42779. height: math.unit(6, "feet")
  42780. },
  42781. {
  42782. name: "Big",
  42783. height: math.unit(42, "feet"),
  42784. default: true
  42785. },
  42786. {
  42787. name: "Bigger",
  42788. height: math.unit(100, "feet")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(5 + 11/12, "feet"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/lannah/front.svg",
  42800. extra: 1208/1113,
  42801. bottom: 97/1305
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal",
  42808. height: math.unit(5 + 11/12, "feet"),
  42809. default: true
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42815. {
  42816. front: {
  42817. height: math.unit(6 + 3/12, "feet"),
  42818. weight: math.unit(3.5, "tons"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/emberflame/front.svg",
  42822. extra: 1198/672,
  42823. bottom: 82/1280
  42824. }
  42825. },
  42826. side: {
  42827. height: math.unit(6 + 3/12, "feet"),
  42828. weight: math.unit(3.5, "tons"),
  42829. name: "Side",
  42830. image: {
  42831. source: "./media/characters/emberflame/side.svg",
  42832. extra: 938/527,
  42833. bottom: 56/994
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Normal",
  42840. height: math.unit(6 + 3/12, "feet"),
  42841. default: true
  42842. },
  42843. ]
  42844. ))
  42845. characterMakers.push(() => makeCharacter(
  42846. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42847. {
  42848. side: {
  42849. height: math.unit(17.5, "feet"),
  42850. weight: math.unit(35, "tons"),
  42851. name: "Side",
  42852. image: {
  42853. source: "./media/characters/sophie-ambrose/side.svg",
  42854. extra: 1573/1242,
  42855. bottom: 71/1644
  42856. }
  42857. },
  42858. maw: {
  42859. height: math.unit(7.4, "feet"),
  42860. name: "Maw",
  42861. image: {
  42862. source: "./media/characters/sophie-ambrose/maw.svg"
  42863. }
  42864. },
  42865. },
  42866. [
  42867. {
  42868. name: "Normal",
  42869. height: math.unit(17.5, "feet"),
  42870. default: true
  42871. },
  42872. ]
  42873. ))
  42874. characterMakers.push(() => makeCharacter(
  42875. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42876. {
  42877. front: {
  42878. height: math.unit(280, "feet"),
  42879. weight: math.unit(550, "tons"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/king-mugi/front.svg",
  42883. extra: 1102/947,
  42884. bottom: 104/1206
  42885. }
  42886. },
  42887. },
  42888. [
  42889. {
  42890. name: "King Mugi",
  42891. height: math.unit(280, "feet"),
  42892. default: true
  42893. },
  42894. ]
  42895. ))
  42896. characterMakers.push(() => makeCharacter(
  42897. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42898. {
  42899. front: {
  42900. height: math.unit(64, "meters"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/nova-fox/front.svg",
  42904. extra: 1310/1246,
  42905. bottom: 65/1375
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Macro",
  42912. height: math.unit(64, "meters"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(6 + 3/12, "feet"),
  42922. weight: math.unit(170, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/sam-bat/front.svg",
  42926. extra: 1601/1411,
  42927. bottom: 125/1726
  42928. }
  42929. },
  42930. back: {
  42931. height: math.unit(6 + 3/12, "feet"),
  42932. weight: math.unit(170, "lb"),
  42933. name: "Back",
  42934. image: {
  42935. source: "./media/characters/sam-bat/back.svg",
  42936. extra: 1577/1405,
  42937. bottom: 58/1635
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Normal",
  42944. height: math.unit(6 + 3/12, "feet"),
  42945. default: true
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42951. {
  42952. front: {
  42953. height: math.unit(59, "feet"),
  42954. weight: math.unit(40000, "lb"),
  42955. name: "Front",
  42956. image: {
  42957. source: "./media/characters/inari/front.svg",
  42958. extra: 1884/1350,
  42959. bottom: 95/1979
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Gigantamax",
  42966. height: math.unit(59, "feet"),
  42967. default: true
  42968. },
  42969. ]
  42970. ))
  42971. characterMakers.push(() => makeCharacter(
  42972. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42973. {
  42974. front: {
  42975. height: math.unit(5 + 8/12, "feet"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/elizabeth/front.svg",
  42979. extra: 1395/1298,
  42980. bottom: 54/1449
  42981. }
  42982. },
  42983. mouth: {
  42984. height: math.unit(1.97, "feet"),
  42985. name: "Mouth",
  42986. image: {
  42987. source: "./media/characters/elizabeth/mouth.svg"
  42988. }
  42989. },
  42990. foot: {
  42991. height: math.unit(1.17, "feet"),
  42992. name: "Foot",
  42993. image: {
  42994. source: "./media/characters/elizabeth/foot.svg"
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(5 + 8/12, "feet"),
  43002. default: true
  43003. },
  43004. {
  43005. name: "Minimacro",
  43006. height: math.unit(18, "feet")
  43007. },
  43008. {
  43009. name: "Macro",
  43010. height: math.unit(180, "feet")
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(5 + 2/12, "feet"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/october-gossamer/front.svg",
  43022. extra: 505/454,
  43023. bottom: 7/512
  43024. }
  43025. },
  43026. back: {
  43027. height: math.unit(5 + 2/12, "feet"),
  43028. name: "Back",
  43029. image: {
  43030. source: "./media/characters/october-gossamer/back.svg",
  43031. extra: 501/454,
  43032. bottom: 11/512
  43033. }
  43034. },
  43035. },
  43036. [
  43037. {
  43038. name: "Normal",
  43039. height: math.unit(5 + 2/12, "feet"),
  43040. default: true
  43041. },
  43042. ]
  43043. ))
  43044. characterMakers.push(() => makeCharacter(
  43045. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43046. {
  43047. front: {
  43048. height: math.unit(5, "feet"),
  43049. name: "Front",
  43050. image: {
  43051. source: "./media/characters/epiglottis/front.svg",
  43052. extra: 923/849,
  43053. bottom: 17/940
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Original Size",
  43060. height: math.unit(10, "inches")
  43061. },
  43062. {
  43063. name: "Human Size",
  43064. height: math.unit(5, "feet"),
  43065. default: true
  43066. },
  43067. {
  43068. name: "Big",
  43069. height: math.unit(25, "feet")
  43070. },
  43071. {
  43072. name: "Bigger",
  43073. height: math.unit(50, "feet")
  43074. },
  43075. {
  43076. name: "oh lawd",
  43077. height: math.unit(75, "feet")
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(2 + 4/12, "feet"),
  43086. weight: math.unit(60, "lb"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/lerm/front.svg",
  43090. extra: 796/790,
  43091. bottom: 79/875
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(2 + 4/12, "feet"),
  43099. default: true
  43100. },
  43101. ]
  43102. ))
  43103. characterMakers.push(() => makeCharacter(
  43104. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43105. {
  43106. front: {
  43107. height: math.unit(5.5, "feet"),
  43108. weight: math.unit(130, "lb"),
  43109. name: "Front",
  43110. image: {
  43111. source: "./media/characters/xena-nebadon/front.svg",
  43112. extra: 1828/1730,
  43113. bottom: 79/1907
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Tiny Puppy",
  43120. height: math.unit(3, "inches")
  43121. },
  43122. {
  43123. name: "Normal",
  43124. height: math.unit(5.5, "feet"),
  43125. default: true
  43126. },
  43127. {
  43128. name: "Lotta Lady",
  43129. height: math.unit(12, "feet")
  43130. },
  43131. {
  43132. name: "Pretty Big",
  43133. height: math.unit(100, "feet")
  43134. },
  43135. {
  43136. name: "Big",
  43137. height: math.unit(500, "feet")
  43138. },
  43139. {
  43140. name: "Skyscraper Toys",
  43141. height: math.unit(2500, "feet")
  43142. },
  43143. {
  43144. name: "Plane Catcher",
  43145. height: math.unit(8, "miles")
  43146. },
  43147. {
  43148. name: "Planet Toys",
  43149. height: math.unit(15, "earths")
  43150. },
  43151. {
  43152. name: "Stardust",
  43153. height: math.unit(0.25, "galaxies")
  43154. },
  43155. {
  43156. name: "Snacks",
  43157. height: math.unit(70, "universes")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(1.6, "meters"),
  43166. weight: math.unit(60, "kg"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/bounty/front.svg",
  43170. extra: 1426/1308,
  43171. bottom: 15/1441
  43172. }
  43173. },
  43174. back: {
  43175. height: math.unit(1.6, "meters"),
  43176. weight: math.unit(60, "kg"),
  43177. name: "Back",
  43178. image: {
  43179. source: "./media/characters/bounty/back.svg",
  43180. extra: 1417/1307,
  43181. bottom: 8/1425
  43182. }
  43183. },
  43184. },
  43185. [
  43186. {
  43187. name: "Normal",
  43188. height: math.unit(1.6, "meters"),
  43189. default: true
  43190. },
  43191. {
  43192. name: "Macro",
  43193. height: math.unit(300, "meters")
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43199. {
  43200. front: {
  43201. height: math.unit(2 + 8/12, "feet"),
  43202. weight: math.unit(15, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/mochi/front.svg",
  43206. extra: 1022/852,
  43207. bottom: 435/1457
  43208. }
  43209. },
  43210. back: {
  43211. height: math.unit(2 + 8/12, "feet"),
  43212. weight: math.unit(15, "lb"),
  43213. name: "Back",
  43214. image: {
  43215. source: "./media/characters/mochi/back.svg",
  43216. extra: 1335/1119,
  43217. bottom: 39/1374
  43218. }
  43219. },
  43220. bird: {
  43221. height: math.unit(2 + 8/12, "feet"),
  43222. weight: math.unit(15, "lb"),
  43223. name: "Bird",
  43224. image: {
  43225. source: "./media/characters/mochi/bird.svg",
  43226. extra: 1251/1113,
  43227. bottom: 178/1429
  43228. }
  43229. },
  43230. kaiju: {
  43231. height: math.unit(154, "feet"),
  43232. weight: math.unit(1e7, "lb"),
  43233. name: "Kaiju",
  43234. image: {
  43235. source: "./media/characters/mochi/kaiju.svg",
  43236. extra: 460/324,
  43237. bottom: 40/500
  43238. }
  43239. },
  43240. head: {
  43241. height: math.unit(1.21, "feet"),
  43242. name: "Head",
  43243. image: {
  43244. source: "./media/characters/mochi/head.svg"
  43245. }
  43246. },
  43247. alternateTail: {
  43248. height: math.unit(2 + 8/12, "feet"),
  43249. weight: math.unit(45, "lb"),
  43250. name: "Alternate Tail",
  43251. image: {
  43252. source: "./media/characters/mochi/alternate-tail.svg",
  43253. extra: 139/76,
  43254. bottom: 45/184
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Micro",
  43261. height: math.unit(2, "inches")
  43262. },
  43263. {
  43264. name: "Normal",
  43265. height: math.unit(2 + 8/12, "feet"),
  43266. default: true
  43267. },
  43268. {
  43269. name: "Macro",
  43270. height: math.unit(106, "feet")
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(5.67, "feet"),
  43279. weight: math.unit(135, "lb"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/sarel/front.svg",
  43283. extra: 865/788,
  43284. bottom: 97/962
  43285. }
  43286. },
  43287. back: {
  43288. height: math.unit(5.67, "feet"),
  43289. weight: math.unit(135, "lb"),
  43290. name: "Back",
  43291. image: {
  43292. source: "./media/characters/sarel/back.svg",
  43293. extra: 857/777,
  43294. bottom: 32/889
  43295. }
  43296. },
  43297. chozoan: {
  43298. height: math.unit(5.67, "feet"),
  43299. weight: math.unit(135, "lb"),
  43300. name: "Chozoan",
  43301. image: {
  43302. source: "./media/characters/sarel/chozoan.svg",
  43303. extra: 865/788,
  43304. bottom: 97/962
  43305. }
  43306. },
  43307. current: {
  43308. height: math.unit(5.67, "feet"),
  43309. weight: math.unit(135, "lb"),
  43310. name: "Current",
  43311. image: {
  43312. source: "./media/characters/sarel/current.svg",
  43313. extra: 865/788,
  43314. bottom: 97/962
  43315. }
  43316. },
  43317. head: {
  43318. height: math.unit(1.77, "feet"),
  43319. name: "Head",
  43320. image: {
  43321. source: "./media/characters/sarel/head.svg"
  43322. }
  43323. },
  43324. claws: {
  43325. height: math.unit(1.8, "feet"),
  43326. name: "Claws",
  43327. image: {
  43328. source: "./media/characters/sarel/claws.svg"
  43329. }
  43330. },
  43331. clawsAlt: {
  43332. height: math.unit(1.8, "feet"),
  43333. name: "Claws-alt",
  43334. image: {
  43335. source: "./media/characters/sarel/claws-alt.svg"
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Normal",
  43342. height: math.unit(5.67, "feet"),
  43343. default: true
  43344. },
  43345. ]
  43346. ))
  43347. characterMakers.push(() => makeCharacter(
  43348. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43349. {
  43350. front: {
  43351. height: math.unit(5500, "feet"),
  43352. name: "Front",
  43353. image: {
  43354. source: "./media/characters/alyonia/front.svg",
  43355. extra: 1200/1135,
  43356. bottom: 29/1229
  43357. }
  43358. },
  43359. back: {
  43360. height: math.unit(5500, "feet"),
  43361. name: "Back",
  43362. image: {
  43363. source: "./media/characters/alyonia/back.svg",
  43364. extra: 1205/1138,
  43365. bottom: 10/1215
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Small",
  43372. height: math.unit(10, "feet")
  43373. },
  43374. {
  43375. name: "Macro",
  43376. height: math.unit(500, "feet")
  43377. },
  43378. {
  43379. name: "Mega Macro",
  43380. height: math.unit(5500, "feet"),
  43381. default: true
  43382. },
  43383. {
  43384. name: "Mega Macro+",
  43385. height: math.unit(500000, "feet")
  43386. },
  43387. {
  43388. name: "Giga Macro",
  43389. height: math.unit(3000, "miles")
  43390. },
  43391. {
  43392. name: "Tera Macro",
  43393. height: math.unit(2.8e6, "miles")
  43394. },
  43395. {
  43396. name: "Galactic",
  43397. height: math.unit(120000, "lightyears")
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43403. {
  43404. werewolf: {
  43405. height: math.unit(8, "feet"),
  43406. weight: math.unit(425, "lb"),
  43407. name: "Werewolf",
  43408. image: {
  43409. source: "./media/characters/autumn/werewolf.svg",
  43410. extra: 2154/2031,
  43411. bottom: 160/2314
  43412. }
  43413. },
  43414. human: {
  43415. height: math.unit(5 + 8/12, "feet"),
  43416. weight: math.unit(150, "lb"),
  43417. name: "Human",
  43418. image: {
  43419. source: "./media/characters/autumn/human.svg",
  43420. extra: 1200/1149,
  43421. bottom: 30/1230
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Normal",
  43428. height: math.unit(8, "feet"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(8 + 5/12, "feet"),
  43438. weight: math.unit(825, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/cobalt-charizard/front.svg",
  43442. extra: 1268/1155,
  43443. bottom: 122/1390
  43444. }
  43445. },
  43446. side: {
  43447. height: math.unit(8 + 5/12, "feet"),
  43448. weight: math.unit(825, "lb"),
  43449. name: "Side",
  43450. image: {
  43451. source: "./media/characters/cobalt-charizard/side.svg",
  43452. extra: 1348/1257,
  43453. bottom: 58/1406
  43454. }
  43455. },
  43456. gMax: {
  43457. height: math.unit(134 + 11/12, "feet"),
  43458. name: "G-Max",
  43459. image: {
  43460. source: "./media/characters/cobalt-charizard/g-max.svg",
  43461. extra: 1835/1541,
  43462. bottom: 151/1986
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Normal",
  43469. height: math.unit(8 + 5/12, "feet"),
  43470. default: true
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(6 + 3/12, "feet"),
  43479. weight: math.unit(210, "lb"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/stella/front.svg",
  43483. extra: 3549/3335,
  43484. bottom: 51/3600
  43485. }
  43486. },
  43487. },
  43488. [
  43489. {
  43490. name: "Normal",
  43491. height: math.unit(6 + 3/12, "feet"),
  43492. default: true
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43498. {
  43499. front: {
  43500. height: math.unit(5, "feet"),
  43501. weight: math.unit(90, "lb"),
  43502. name: "Front",
  43503. image: {
  43504. source: "./media/characters/riley-bishop/front.svg",
  43505. extra: 1450/1428,
  43506. bottom: 152/1602
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(5, "feet"),
  43514. default: true
  43515. },
  43516. ]
  43517. ))
  43518. characterMakers.push(() => makeCharacter(
  43519. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43520. {
  43521. side: {
  43522. height: math.unit(8 + 2/12, "feet"),
  43523. weight: math.unit(500, "kg"),
  43524. name: "Side",
  43525. image: {
  43526. source: "./media/characters/theo-arcanine/side.svg",
  43527. extra: 1342/1074,
  43528. bottom: 111/1453
  43529. }
  43530. },
  43531. },
  43532. [
  43533. {
  43534. name: "Normal",
  43535. height: math.unit(8 + 2/12, "feet"),
  43536. default: true
  43537. },
  43538. ]
  43539. ))
  43540. characterMakers.push(() => makeCharacter(
  43541. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43542. {
  43543. front: {
  43544. height: math.unit(4, "feet"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/kali/front.svg",
  43548. extra: 1921/1357,
  43549. bottom: 70/1991
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(4, "feet"),
  43557. default: true
  43558. },
  43559. {
  43560. name: "Macro",
  43561. height: math.unit(32, "meters")
  43562. },
  43563. {
  43564. name: "Macro+",
  43565. height: math.unit(150, "meters")
  43566. },
  43567. {
  43568. name: "Megamacro",
  43569. height: math.unit(7500, "meters")
  43570. },
  43571. {
  43572. name: "Megamacro+",
  43573. height: math.unit(80, "kilometers")
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43579. {
  43580. side: {
  43581. height: math.unit(5 + 11/12, "feet"),
  43582. weight: math.unit(236, "lb"),
  43583. name: "Side",
  43584. image: {
  43585. source: "./media/characters/gapp/side.svg",
  43586. extra: 775/340,
  43587. bottom: 58/833
  43588. }
  43589. },
  43590. mouth: {
  43591. height: math.unit(2.98, "feet"),
  43592. name: "Mouth",
  43593. image: {
  43594. source: "./media/characters/gapp/mouth.svg"
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(5 + 1/12, "feet"),
  43602. default: true
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(6, "feet"),
  43611. name: "Front",
  43612. image: {
  43613. source: "./media/characters/persephone/front.svg",
  43614. extra: 1895/1717,
  43615. bottom: 96/1991
  43616. }
  43617. },
  43618. back: {
  43619. height: math.unit(6, "feet"),
  43620. name: "Back",
  43621. image: {
  43622. source: "./media/characters/persephone/back.svg",
  43623. extra: 1868/1679,
  43624. bottom: 26/1894
  43625. }
  43626. },
  43627. casual: {
  43628. height: math.unit(6, "feet"),
  43629. name: "Casual",
  43630. image: {
  43631. source: "./media/characters/persephone/casual.svg",
  43632. extra: 1713/1541,
  43633. bottom: 76/1789
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Human Size",
  43640. height: math.unit(6, "feet")
  43641. },
  43642. {
  43643. name: "Big Steppy",
  43644. height: math.unit(600, "meters"),
  43645. default: true
  43646. },
  43647. {
  43648. name: "Galaxy Brain",
  43649. height: math.unit(1, "zettameter")
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(1.85, "meters"),
  43658. name: "Front",
  43659. image: {
  43660. source: "./media/characters/riley-foxthing/front.svg",
  43661. extra: 1495/1354,
  43662. bottom: 122/1617
  43663. }
  43664. },
  43665. frontAlt: {
  43666. height: math.unit(1.85, "meters"),
  43667. name: "Front (Alt)",
  43668. image: {
  43669. source: "./media/characters/riley-foxthing/front-alt.svg",
  43670. extra: 1572/1389,
  43671. bottom: 116/1688
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal Sized",
  43678. height: math.unit(1.85, "meters"),
  43679. default: true
  43680. },
  43681. {
  43682. name: "Quite Sizable",
  43683. height: math.unit(5, "meters")
  43684. },
  43685. {
  43686. name: "Rather Large",
  43687. height: math.unit(20, "meters")
  43688. },
  43689. {
  43690. name: "Macro",
  43691. height: math.unit(450, "meters")
  43692. },
  43693. {
  43694. name: "Giga",
  43695. height: math.unit(5, "km")
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6, "feet"),
  43704. weight: math.unit(200, "lb"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/blizzard/front.svg",
  43708. extra: 1136/990,
  43709. bottom: 136/1272
  43710. }
  43711. },
  43712. back: {
  43713. height: math.unit(6, "feet"),
  43714. weight: math.unit(200, "lb"),
  43715. name: "Back",
  43716. image: {
  43717. source: "./media/characters/blizzard/back.svg",
  43718. extra: 1175/1034,
  43719. bottom: 97/1272
  43720. }
  43721. },
  43722. sitting: {
  43723. height: math.unit(3.725, "feet"),
  43724. weight: math.unit(200, "lb"),
  43725. name: "Sitting",
  43726. image: {
  43727. source: "./media/characters/blizzard/sitting.svg",
  43728. extra: 581/485,
  43729. bottom: 90/671
  43730. }
  43731. },
  43732. frontWizard: {
  43733. height: math.unit(7.9, "feet"),
  43734. weight: math.unit(200, "lb"),
  43735. name: "Front (Wizard)",
  43736. image: {
  43737. source: "./media/characters/blizzard/front-wizard.svg"
  43738. }
  43739. },
  43740. backWizard: {
  43741. height: math.unit(7.9, "feet"),
  43742. weight: math.unit(200, "lb"),
  43743. name: "Back (Wizard)",
  43744. image: {
  43745. source: "./media/characters/blizzard/back-wizard.svg"
  43746. }
  43747. },
  43748. frontNsfw: {
  43749. height: math.unit(6, "feet"),
  43750. weight: math.unit(200, "lb"),
  43751. name: "Front (NSFW)",
  43752. image: {
  43753. source: "./media/characters/blizzard/front-nsfw.svg",
  43754. extra: 1136/990,
  43755. bottom: 136/1272
  43756. }
  43757. },
  43758. backNsfw: {
  43759. height: math.unit(6, "feet"),
  43760. weight: math.unit(200, "lb"),
  43761. name: "Back (NSFW)",
  43762. image: {
  43763. source: "./media/characters/blizzard/back-nsfw.svg",
  43764. extra: 1175/1034,
  43765. bottom: 97/1272
  43766. }
  43767. },
  43768. sittingNsfw: {
  43769. height: math.unit(3.725, "feet"),
  43770. weight: math.unit(200, "lb"),
  43771. name: "Sitting (NSFW)",
  43772. image: {
  43773. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43774. extra: 581/485,
  43775. bottom: 90/671
  43776. }
  43777. },
  43778. wizardFrontNsfw: {
  43779. height: math.unit(7.9, "feet"),
  43780. weight: math.unit(200, "lb"),
  43781. name: "Wizard (Front, NSFW)",
  43782. image: {
  43783. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(6, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(5 + 2/12, "feet"),
  43800. name: "Front",
  43801. image: {
  43802. source: "./media/characters/lumi/front.svg",
  43803. extra: 1328/1268,
  43804. bottom: 103/1431
  43805. }
  43806. },
  43807. back: {
  43808. height: math.unit(5 + 2/12, "feet"),
  43809. name: "Back",
  43810. image: {
  43811. source: "./media/characters/lumi/back.svg",
  43812. extra: 1381/1327,
  43813. bottom: 43/1424
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(5 + 2/12, "feet"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43827. {
  43828. front: {
  43829. height: math.unit(5 + 9/12, "feet"),
  43830. name: "Front",
  43831. image: {
  43832. source: "./media/characters/aliya-cotton/front.svg",
  43833. extra: 577/564,
  43834. bottom: 29/606
  43835. }
  43836. },
  43837. },
  43838. [
  43839. {
  43840. name: "Normal",
  43841. height: math.unit(5 + 9/12, "feet"),
  43842. default: true
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(2.7, "meters"),
  43851. weight: math.unit(25000, "lb"),
  43852. name: "Front",
  43853. image: {
  43854. source: "./media/characters/noah-luxray/front.svg",
  43855. extra: 1644/825,
  43856. bottom: 339/1983
  43857. }
  43858. },
  43859. side: {
  43860. height: math.unit(2.97, "meters"),
  43861. weight: math.unit(25000, "lb"),
  43862. name: "Side",
  43863. image: {
  43864. source: "./media/characters/noah-luxray/side.svg",
  43865. extra: 1319/650,
  43866. bottom: 163/1482
  43867. }
  43868. },
  43869. dick: {
  43870. height: math.unit(7.4, "feet"),
  43871. weight: math.unit(2500, "lb"),
  43872. name: "Dick",
  43873. image: {
  43874. source: "./media/characters/noah-luxray/dick.svg"
  43875. }
  43876. },
  43877. dickAlt: {
  43878. height: math.unit(10.83, "feet"),
  43879. weight: math.unit(2500, "lb"),
  43880. name: "Dick-alt",
  43881. image: {
  43882. source: "./media/characters/noah-luxray/dick-alt.svg"
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "BIG",
  43889. height: math.unit(2.7, "meters"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43896. {
  43897. standing: {
  43898. height: math.unit(183, "cm"),
  43899. weight: math.unit(68, "kg"),
  43900. name: "Standing",
  43901. image: {
  43902. source: "./media/characters/arion/standing.svg",
  43903. extra: 1869/1807,
  43904. bottom: 93/1962
  43905. }
  43906. },
  43907. reclining: {
  43908. height: math.unit(70.5, "cm"),
  43909. weight: math.unit(68, "lb"),
  43910. name: "Reclining",
  43911. image: {
  43912. source: "./media/characters/arion/reclining.svg",
  43913. extra: 937/870,
  43914. bottom: 63/1000
  43915. }
  43916. },
  43917. },
  43918. [
  43919. {
  43920. name: "Colossus Size, Low",
  43921. height: math.unit(33, "meters"),
  43922. default: true
  43923. },
  43924. {
  43925. name: "Colossus Size, Mid",
  43926. height: math.unit(52, "meters")
  43927. },
  43928. {
  43929. name: "Colossus Size, High",
  43930. height: math.unit(60, "meters")
  43931. },
  43932. {
  43933. name: "Titan Size, Low",
  43934. height: math.unit(91, "meters"),
  43935. },
  43936. {
  43937. name: "Titan Size, Mid",
  43938. height: math.unit(122, "meters")
  43939. },
  43940. {
  43941. name: "Titan Size, High",
  43942. height: math.unit(162, "meters")
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(53, "meters"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/stellar-marbey/front.svg",
  43954. extra: 1913/1805,
  43955. bottom: 92/2005
  43956. }
  43957. },
  43958. back: {
  43959. height: math.unit(53, "meters"),
  43960. name: "Back",
  43961. image: {
  43962. source: "./media/characters/stellar-marbey/back.svg",
  43963. extra: 1960/1851,
  43964. bottom: 28/1988
  43965. }
  43966. },
  43967. mouth: {
  43968. height: math.unit(3.5, "meters"),
  43969. name: "Mouth",
  43970. image: {
  43971. source: "./media/characters/stellar-marbey/mouth.svg"
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Macro",
  43978. height: math.unit(53, "meters"),
  43979. default: true
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(8 + 1/12, "feet"),
  43988. weight: math.unit(233, "lb"),
  43989. name: "Front",
  43990. image: {
  43991. source: "./media/characters/matsu/front.svg",
  43992. extra: 832/772,
  43993. bottom: 40/872
  43994. }
  43995. },
  43996. back: {
  43997. height: math.unit(8 + 1/12, "feet"),
  43998. weight: math.unit(233, "lb"),
  43999. name: "Back",
  44000. image: {
  44001. source: "./media/characters/matsu/back.svg",
  44002. extra: 839/780,
  44003. bottom: 47/886
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Normal",
  44010. height: math.unit(8 + 1/12, "feet"),
  44011. default: true
  44012. },
  44013. ]
  44014. ))
  44015. characterMakers.push(() => makeCharacter(
  44016. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44017. {
  44018. front: {
  44019. height: math.unit(4, "feet"),
  44020. weight: math.unit(148, "lb"),
  44021. name: "Front",
  44022. image: {
  44023. source: "./media/characters/thiz/front.svg",
  44024. extra: 1913/1748,
  44025. bottom: 62/1975
  44026. }
  44027. },
  44028. },
  44029. [
  44030. {
  44031. name: "Normal",
  44032. height: math.unit(4, "feet"),
  44033. default: true
  44034. },
  44035. ]
  44036. ))
  44037. characterMakers.push(() => makeCharacter(
  44038. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44039. {
  44040. front: {
  44041. height: math.unit(7 + 6/12, "feet"),
  44042. weight: math.unit(267, "lb"),
  44043. name: "Front",
  44044. image: {
  44045. source: "./media/characters/marcel/front.svg",
  44046. extra: 1221/1096,
  44047. bottom: 76/1297
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Normal",
  44054. height: math.unit(7 + 6/12, "feet"),
  44055. default: true
  44056. },
  44057. ]
  44058. ))
  44059. characterMakers.push(() => makeCharacter(
  44060. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44061. {
  44062. side: {
  44063. height: math.unit(42, "meters"),
  44064. name: "Side",
  44065. image: {
  44066. source: "./media/characters/flake/side.svg",
  44067. extra: 1525/1306,
  44068. bottom: 209/1734
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(42, "meters"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44082. {
  44083. dressed: {
  44084. height: math.unit(6 + 4/12, "feet"),
  44085. weight: math.unit(520, "lb"),
  44086. name: "Dressed",
  44087. image: {
  44088. source: "./media/characters/someonne/dressed.svg",
  44089. extra: 1020/1010,
  44090. bottom: 178/1198
  44091. }
  44092. },
  44093. undressed: {
  44094. height: math.unit(6 + 4/12, "feet"),
  44095. weight: math.unit(520, "lb"),
  44096. name: "Undressed",
  44097. image: {
  44098. source: "./media/characters/someonne/undressed.svg",
  44099. extra: 1019/1014,
  44100. bottom: 169/1188
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(6 + 4/12, "feet"),
  44108. default: true
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44114. {
  44115. front: {
  44116. height: math.unit(3, "feet"),
  44117. weight: math.unit(30, "lb"),
  44118. name: "Front",
  44119. image: {
  44120. source: "./media/characters/till/front.svg",
  44121. extra: 892/823,
  44122. bottom: 55/947
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(3, "feet"),
  44130. default: true
  44131. },
  44132. ]
  44133. ))
  44134. characterMakers.push(() => makeCharacter(
  44135. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44136. {
  44137. front: {
  44138. height: math.unit(9 + 8/12, "feet"),
  44139. weight: math.unit(800, "lb"),
  44140. name: "Front",
  44141. image: {
  44142. source: "./media/characters/sydney-heki/front.svg",
  44143. extra: 1360/1300,
  44144. bottom: 22/1382
  44145. }
  44146. },
  44147. back: {
  44148. height: math.unit(9 + 8/12, "feet"),
  44149. weight: math.unit(800, "lb"),
  44150. name: "Back",
  44151. image: {
  44152. source: "./media/characters/sydney-heki/back.svg",
  44153. extra: 1356/1293,
  44154. bottom: 12/1368
  44155. }
  44156. },
  44157. frontDressed: {
  44158. height: math.unit(9 + 8/12, "feet"),
  44159. weight: math.unit(800, "lb"),
  44160. name: "Front-dressed",
  44161. image: {
  44162. source: "./media/characters/sydney-heki/front-dressed.svg",
  44163. extra: 1360/1300,
  44164. bottom: 22/1382
  44165. }
  44166. },
  44167. },
  44168. [
  44169. {
  44170. name: "Normal",
  44171. height: math.unit(9 + 8/12, "feet"),
  44172. default: true
  44173. },
  44174. {
  44175. name: "Macro",
  44176. height: math.unit(500, "feet")
  44177. },
  44178. {
  44179. name: "Megamacro",
  44180. height: math.unit(3.6, "miles")
  44181. },
  44182. ]
  44183. ))
  44184. characterMakers.push(() => makeCharacter(
  44185. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44186. {
  44187. front: {
  44188. height: math.unit(200, "cm"),
  44189. weight: math.unit(250, "lb"),
  44190. name: "Front",
  44191. image: {
  44192. source: "./media/characters/fowler-karlsson/front.svg",
  44193. extra: 897/845,
  44194. bottom: 123/1020
  44195. }
  44196. },
  44197. back: {
  44198. height: math.unit(200, "cm"),
  44199. weight: math.unit(250, "lb"),
  44200. name: "Back",
  44201. image: {
  44202. source: "./media/characters/fowler-karlsson/back.svg",
  44203. extra: 999/944,
  44204. bottom: 26/1025
  44205. }
  44206. },
  44207. dick: {
  44208. height: math.unit(1.92, "feet"),
  44209. weight: math.unit(150, "lb"),
  44210. name: "Dick",
  44211. image: {
  44212. source: "./media/characters/fowler-karlsson/dick.svg"
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Normal",
  44219. height: math.unit(200, "cm"),
  44220. default: true
  44221. },
  44222. {
  44223. name: "Smaller Macro",
  44224. height: math.unit(90, "m")
  44225. },
  44226. {
  44227. name: "Macro",
  44228. height: math.unit(150, "m")
  44229. },
  44230. {
  44231. name: "Bigger Macro",
  44232. height: math.unit(300, "m")
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44238. {
  44239. side: {
  44240. height: math.unit(8 + 2/12, "feet"),
  44241. weight: math.unit(1, "tonne"),
  44242. name: "Side",
  44243. image: {
  44244. source: "./media/characters/rylide/side.svg",
  44245. extra: 1318/1034,
  44246. bottom: 106/1424
  44247. }
  44248. },
  44249. sitting: {
  44250. height: math.unit(303, "cm"),
  44251. weight: math.unit(1, "tonne"),
  44252. name: "Sitting",
  44253. image: {
  44254. source: "./media/characters/rylide/sitting.svg",
  44255. extra: 1303/1103,
  44256. bottom: 36/1339
  44257. }
  44258. },
  44259. },
  44260. [
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(8 + 2/12, "feet"),
  44264. default: true
  44265. },
  44266. ]
  44267. ))
  44268. characterMakers.push(() => makeCharacter(
  44269. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44270. {
  44271. front: {
  44272. height: math.unit(5 + 10/12, "feet"),
  44273. weight: math.unit(160, "lb"),
  44274. name: "Front",
  44275. image: {
  44276. source: "./media/characters/pudask/front.svg",
  44277. extra: 1616/1590,
  44278. bottom: 161/1777
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Ferret Height",
  44285. height: math.unit(2 + 5/12, "feet")
  44286. },
  44287. {
  44288. name: "Canon Height",
  44289. height: math.unit(5 + 10/12, "feet"),
  44290. default: true
  44291. },
  44292. ]
  44293. ))
  44294. characterMakers.push(() => makeCharacter(
  44295. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44296. {
  44297. front: {
  44298. height: math.unit(3 + 6/12, "feet"),
  44299. weight: math.unit(60, "lb"),
  44300. name: "Front",
  44301. image: {
  44302. source: "./media/characters/ramita/front.svg",
  44303. extra: 1402/1232,
  44304. bottom: 62/1464
  44305. }
  44306. },
  44307. dressed: {
  44308. height: math.unit(3 + 6/12, "feet"),
  44309. weight: math.unit(60, "lb"),
  44310. name: "Dressed",
  44311. image: {
  44312. source: "./media/characters/ramita/dressed.svg",
  44313. extra: 1534/1249,
  44314. bottom: 50/1584
  44315. }
  44316. },
  44317. },
  44318. [
  44319. {
  44320. name: "Normal",
  44321. height: math.unit(3 + 6/12, "feet"),
  44322. default: true
  44323. },
  44324. ]
  44325. ))
  44326. characterMakers.push(() => makeCharacter(
  44327. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44328. {
  44329. front: {
  44330. height: math.unit(8, "feet"),
  44331. name: "Front",
  44332. image: {
  44333. source: "./media/characters/ark/front.svg",
  44334. extra: 772/693,
  44335. bottom: 45/817
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(8, "feet"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44349. {
  44350. front: {
  44351. height: math.unit(6, "feet"),
  44352. weight: math.unit(250, "lb"),
  44353. volume: math.unit(5/8, "gallons"),
  44354. name: "Front",
  44355. image: {
  44356. source: "./media/characters/ludwig-horn/front.svg",
  44357. extra: 1782/1635,
  44358. bottom: 96/1878
  44359. }
  44360. },
  44361. back: {
  44362. height: math.unit(6, "feet"),
  44363. weight: math.unit(250, "lb"),
  44364. volume: math.unit(5/8, "gallons"),
  44365. name: "Back",
  44366. image: {
  44367. source: "./media/characters/ludwig-horn/back.svg",
  44368. extra: 1874/1729,
  44369. bottom: 27/1901
  44370. }
  44371. },
  44372. dick: {
  44373. height: math.unit(1.05, "feet"),
  44374. weight: math.unit(15, "lb"),
  44375. volume: math.unit(5/8, "gallons"),
  44376. name: "Dick",
  44377. image: {
  44378. source: "./media/characters/ludwig-horn/dick.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Small",
  44385. height: math.unit(6, "feet")
  44386. },
  44387. {
  44388. name: "Typical",
  44389. height: math.unit(12, "feet"),
  44390. default: true
  44391. },
  44392. {
  44393. name: "Building",
  44394. height: math.unit(80, "feet")
  44395. },
  44396. {
  44397. name: "Town",
  44398. height: math.unit(800, "feet")
  44399. },
  44400. {
  44401. name: "Kingdom",
  44402. height: math.unit(80000, "feet")
  44403. },
  44404. {
  44405. name: "Planet",
  44406. height: math.unit(8000000, "feet")
  44407. },
  44408. {
  44409. name: "Universe",
  44410. height: math.unit(8000000000, "feet")
  44411. },
  44412. {
  44413. name: "Transcended",
  44414. height: math.unit(8e27, "feet")
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(5, "feet"),
  44423. weight: math.unit(50, "kg"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/biot-avery/front.svg",
  44427. extra: 1295/1232,
  44428. bottom: 86/1381
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(5, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(6, "feet"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/kitsune-kiro/front.svg",
  44448. extra: 1270/1158,
  44449. bottom: 42/1312
  44450. }
  44451. },
  44452. frontAlt: {
  44453. height: math.unit(6, "feet"),
  44454. name: "Front-alt",
  44455. image: {
  44456. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44457. extra: 1130/1081,
  44458. bottom: 36/1166
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Smol",
  44465. height: math.unit(3, "feet")
  44466. },
  44467. {
  44468. name: "Normal",
  44469. height: math.unit(6, "feet"),
  44470. default: true
  44471. },
  44472. ]
  44473. ))
  44474. characterMakers.push(() => makeCharacter(
  44475. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44476. {
  44477. front: {
  44478. height: math.unit(6, "feet"),
  44479. weight: math.unit(125, "lb"),
  44480. name: "Front",
  44481. image: {
  44482. source: "./media/characters/jack-thatcher/front.svg",
  44483. extra: 1474/1370,
  44484. bottom: 26/1500
  44485. }
  44486. },
  44487. back: {
  44488. height: math.unit(6, "feet"),
  44489. weight: math.unit(125, "lb"),
  44490. name: "Back",
  44491. image: {
  44492. source: "./media/characters/jack-thatcher/back.svg",
  44493. extra: 1489/1384,
  44494. bottom: 18/1507
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(6, "feet"),
  44502. default: true
  44503. },
  44504. {
  44505. name: "Macro",
  44506. height: math.unit(75, "feet")
  44507. },
  44508. {
  44509. name: "Macro-er",
  44510. height: math.unit(250, "feet")
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(7, "feet"),
  44519. weight: math.unit(110, "kg"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/max-hyper/front.svg",
  44523. extra: 1969/1881,
  44524. bottom: 49/2018
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(7, "feet"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(5 + 5/12, "feet"),
  44541. weight: math.unit(160, "lb"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/spook/front.svg",
  44545. extra: 794/791,
  44546. bottom: 54/848
  44547. }
  44548. },
  44549. back: {
  44550. height: math.unit(5 + 5/12, "feet"),
  44551. weight: math.unit(160, "lb"),
  44552. name: "Back",
  44553. image: {
  44554. source: "./media/characters/spook/back.svg",
  44555. extra: 812/798,
  44556. bottom: 32/844
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "Normal",
  44563. height: math.unit(5 + 5/12, "feet"),
  44564. default: true
  44565. },
  44566. ]
  44567. ))
  44568. characterMakers.push(() => makeCharacter(
  44569. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44570. {
  44571. front: {
  44572. height: math.unit(18, "feet"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/xeaduulix/front.svg",
  44576. extra: 1380/1166,
  44577. bottom: 110/1490
  44578. }
  44579. },
  44580. back: {
  44581. height: math.unit(18, "feet"),
  44582. name: "Back",
  44583. image: {
  44584. source: "./media/characters/xeaduulix/back.svg",
  44585. extra: 1592/1170,
  44586. bottom: 128/1720
  44587. }
  44588. },
  44589. frontNsfw: {
  44590. height: math.unit(18, "feet"),
  44591. name: "Front (NSFW)",
  44592. image: {
  44593. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44594. extra: 1380/1166,
  44595. bottom: 110/1490
  44596. }
  44597. },
  44598. backNsfw: {
  44599. height: math.unit(18, "feet"),
  44600. name: "Back (NSFW)",
  44601. image: {
  44602. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44603. extra: 1592/1170,
  44604. bottom: 128/1720
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Normal",
  44611. height: math.unit(18, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44618. {
  44619. spreadWings: {
  44620. height: math.unit(20, "feet"),
  44621. name: "Spread Wings",
  44622. image: {
  44623. source: "./media/characters/fledge/spread-wings.svg",
  44624. extra: 693/635,
  44625. bottom: 26/719
  44626. }
  44627. },
  44628. front: {
  44629. height: math.unit(20, "feet"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/fledge/front.svg",
  44633. extra: 684/637,
  44634. bottom: 18/702
  44635. }
  44636. },
  44637. frontAlt: {
  44638. height: math.unit(20, "feet"),
  44639. name: "Front (Alt)",
  44640. image: {
  44641. source: "./media/characters/fledge/front-alt.svg",
  44642. extra: 708/664,
  44643. bottom: 13/721
  44644. }
  44645. },
  44646. back: {
  44647. height: math.unit(20, "feet"),
  44648. name: "Back",
  44649. image: {
  44650. source: "./media/characters/fledge/back.svg",
  44651. extra: 718/634,
  44652. bottom: 22/740
  44653. }
  44654. },
  44655. head: {
  44656. height: math.unit(5.55, "feet"),
  44657. name: "Head",
  44658. image: {
  44659. source: "./media/characters/fledge/head.svg"
  44660. }
  44661. },
  44662. headAlt: {
  44663. height: math.unit(5.1, "feet"),
  44664. name: "Head (Alt)",
  44665. image: {
  44666. source: "./media/characters/fledge/head-alt.svg"
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Small",
  44673. height: math.unit(6 + 2/12, "feet")
  44674. },
  44675. {
  44676. name: "Big",
  44677. height: math.unit(20, "feet"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "Giant",
  44682. height: math.unit(100, "feet")
  44683. },
  44684. {
  44685. name: "Macro",
  44686. height: math.unit(200, "feet")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(1, "meter"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/atlas-morenai/front.svg",
  44698. extra: 1275/1043,
  44699. bottom: 19/1294
  44700. }
  44701. },
  44702. back: {
  44703. height: math.unit(1, "meter"),
  44704. name: "Back",
  44705. image: {
  44706. source: "./media/characters/atlas-morenai/back.svg",
  44707. extra: 1141/1001,
  44708. bottom: 25/1166
  44709. }
  44710. },
  44711. },
  44712. [
  44713. {
  44714. name: "Normal",
  44715. height: math.unit(1, "meter"),
  44716. default: true
  44717. },
  44718. {
  44719. name: "Magic-Infused",
  44720. height: math.unit(5, "meters")
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(5, "meters"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/cintia/front.svg",
  44732. extra: 1312/1228,
  44733. bottom: 38/1350
  44734. }
  44735. },
  44736. back: {
  44737. height: math.unit(5, "meters"),
  44738. name: "Back",
  44739. image: {
  44740. source: "./media/characters/cintia/back.svg",
  44741. extra: 1260/1166,
  44742. bottom: 98/1358
  44743. }
  44744. },
  44745. frontDick: {
  44746. height: math.unit(5, "meters"),
  44747. name: "Front (Dick)",
  44748. image: {
  44749. source: "./media/characters/cintia/front-dick.svg",
  44750. extra: 1312/1228,
  44751. bottom: 38/1350
  44752. }
  44753. },
  44754. backDick: {
  44755. height: math.unit(5, "meters"),
  44756. name: "Back (Dick)",
  44757. image: {
  44758. source: "./media/characters/cintia/back-dick.svg",
  44759. extra: 1260/1166,
  44760. bottom: 98/1358
  44761. }
  44762. },
  44763. bust: {
  44764. height: math.unit(1.97, "meters"),
  44765. name: "Bust",
  44766. image: {
  44767. source: "./media/characters/cintia/bust.svg",
  44768. extra: 617/565,
  44769. bottom: 0/617
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Normal",
  44776. height: math.unit(5, "meters"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44783. {
  44784. side: {
  44785. height: math.unit(100, "feet"),
  44786. name: "Side",
  44787. image: {
  44788. source: "./media/characters/denora/side.svg",
  44789. extra: 875/803,
  44790. bottom: 9/884
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Standard",
  44797. height: math.unit(100, "feet"),
  44798. default: true
  44799. },
  44800. {
  44801. name: "Grand",
  44802. height: math.unit(1000, "feet")
  44803. },
  44804. {
  44805. name: "Conquering",
  44806. height: math.unit(10000, "feet")
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44812. {
  44813. dressed: {
  44814. height: math.unit(8 + 5/12, "feet"),
  44815. weight: math.unit(700, "lb"),
  44816. name: "Dressed",
  44817. image: {
  44818. source: "./media/characters/kiva/dressed.svg",
  44819. extra: 1102/1055,
  44820. bottom: 60/1162
  44821. }
  44822. },
  44823. nude: {
  44824. height: math.unit(8 + 5/12, "feet"),
  44825. weight: math.unit(700, "lb"),
  44826. name: "Nude",
  44827. image: {
  44828. source: "./media/characters/kiva/nude.svg",
  44829. extra: 1102/1055,
  44830. bottom: 60/1162
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Base Height",
  44837. height: math.unit(8 + 5/12, "feet"),
  44838. default: true
  44839. },
  44840. {
  44841. name: "Macro",
  44842. height: math.unit(100, "feet")
  44843. },
  44844. {
  44845. name: "Max",
  44846. height: math.unit(3280, "feet")
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(6 + 8/12, "feet"),
  44855. weight: math.unit(250, "lb"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/ztragon/front.svg",
  44859. extra: 1825/1684,
  44860. bottom: 98/1923
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(6 + 8/12, "feet"),
  44868. default: true
  44869. },
  44870. {
  44871. name: "Macro",
  44872. height: math.unit(80, "feet")
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44878. {
  44879. front: {
  44880. height: math.unit(10.4, "feet"),
  44881. weight: math.unit(2, "tons"),
  44882. name: "Front",
  44883. image: {
  44884. source: "./media/characters/yesenia/front.svg",
  44885. extra: 1479/1474,
  44886. bottom: 233/1712
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(10.4, "feet"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44900. {
  44901. normal: {
  44902. height: math.unit(6 + 1/12, "feet"),
  44903. weight: math.unit(180, "lb"),
  44904. name: "Normal",
  44905. image: {
  44906. source: "./media/characters/leanne-lycheborne/normal.svg",
  44907. extra: 1748/1660,
  44908. bottom: 98/1846
  44909. }
  44910. },
  44911. were: {
  44912. height: math.unit(12, "feet"),
  44913. weight: math.unit(1600, "lb"),
  44914. name: "Were",
  44915. image: {
  44916. source: "./media/characters/leanne-lycheborne/were.svg",
  44917. extra: 1485/1432,
  44918. bottom: 66/1551
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(6 + 1/12, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44932. {
  44933. side: {
  44934. height: math.unit(13, "feet"),
  44935. name: "Side",
  44936. image: {
  44937. source: "./media/characters/kira-tyler/side.svg",
  44938. extra: 693/393,
  44939. bottom: 58/751
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Normal",
  44946. height: math.unit(13, "feet"),
  44947. default: true
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44953. {
  44954. front: {
  44955. height: math.unit(10.3, "feet"),
  44956. weight: math.unit(150, "lb"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/blaze/front.svg",
  44960. extra: 1378/1286,
  44961. bottom: 172/1550
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(10.3, "feet"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44975. {
  44976. side: {
  44977. height: math.unit(2, "meters"),
  44978. weight: math.unit(400, "kg"),
  44979. name: "Side",
  44980. image: {
  44981. source: "./media/characters/anu/side.svg",
  44982. extra: 506/394,
  44983. bottom: 18/524
  44984. }
  44985. },
  44986. },
  44987. [
  44988. {
  44989. name: "Humanoid",
  44990. height: math.unit(2, "meters")
  44991. },
  44992. {
  44993. name: "Normal",
  44994. height: math.unit(5, "meters"),
  44995. default: true
  44996. },
  44997. ]
  44998. ))
  44999. characterMakers.push(() => makeCharacter(
  45000. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45001. {
  45002. front: {
  45003. height: math.unit(5 + 5/12, "feet"),
  45004. weight: math.unit(170, "lb"),
  45005. name: "Front",
  45006. image: {
  45007. source: "./media/characters/synx-the-lynx/front.svg",
  45008. extra: 1893/1745,
  45009. bottom: 17/1910
  45010. }
  45011. },
  45012. side: {
  45013. height: math.unit(5 + 5/12, "feet"),
  45014. weight: math.unit(170, "lb"),
  45015. name: "Side",
  45016. image: {
  45017. source: "./media/characters/synx-the-lynx/side.svg",
  45018. extra: 1884/1740,
  45019. bottom: 39/1923
  45020. }
  45021. },
  45022. back: {
  45023. height: math.unit(5 + 5/12, "feet"),
  45024. weight: math.unit(170, "lb"),
  45025. name: "Back",
  45026. image: {
  45027. source: "./media/characters/synx-the-lynx/back.svg",
  45028. extra: 1903/1755,
  45029. bottom: 14/1917
  45030. }
  45031. },
  45032. },
  45033. [
  45034. {
  45035. name: "Normal",
  45036. height: math.unit(5 + 5/12, "feet"),
  45037. default: true
  45038. },
  45039. ]
  45040. ))
  45041. characterMakers.push(() => makeCharacter(
  45042. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45043. {
  45044. back: {
  45045. height: math.unit(15, "feet"),
  45046. name: "Back",
  45047. image: {
  45048. source: "./media/characters/nadezda-fex/back.svg",
  45049. extra: 1695/1481,
  45050. bottom: 25/1720
  45051. }
  45052. },
  45053. },
  45054. [
  45055. {
  45056. name: "Normal",
  45057. height: math.unit(15, "feet"),
  45058. default: true
  45059. },
  45060. {
  45061. name: "Macro",
  45062. height: math.unit(2.5, "miles")
  45063. },
  45064. {
  45065. name: "Goddess",
  45066. height: math.unit(2, "multiverses")
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45072. {
  45073. front: {
  45074. height: math.unit(216, "cm"),
  45075. name: "Front",
  45076. image: {
  45077. source: "./media/characters/lev/front.svg",
  45078. extra: 1728/1670,
  45079. bottom: 82/1810
  45080. }
  45081. },
  45082. back: {
  45083. height: math.unit(216, "cm"),
  45084. name: "Back",
  45085. image: {
  45086. source: "./media/characters/lev/back.svg",
  45087. extra: 1738/1675,
  45088. bottom: 24/1762
  45089. }
  45090. },
  45091. dressed: {
  45092. height: math.unit(216, "cm"),
  45093. name: "Dressed",
  45094. image: {
  45095. source: "./media/characters/lev/dressed.svg",
  45096. extra: 1397/1351,
  45097. bottom: 73/1470
  45098. }
  45099. },
  45100. head: {
  45101. height: math.unit(0.51, "meter"),
  45102. name: "Head",
  45103. image: {
  45104. source: "./media/characters/lev/head.svg"
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(216, "cm"),
  45112. default: true
  45113. },
  45114. {
  45115. name: "Relatively Macro",
  45116. height: math.unit(80, "meters")
  45117. },
  45118. {
  45119. name: "Megamacro",
  45120. height: math.unit(21600, "meters")
  45121. },
  45122. {
  45123. name: "Megamacro+",
  45124. height: math.unit(64800, "meters")
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45130. {
  45131. front: {
  45132. height: math.unit(2, "meters"),
  45133. weight: math.unit(80, "kg"),
  45134. name: "Front",
  45135. image: {
  45136. source: "./media/characters/moka/front.svg",
  45137. extra: 1337/1255,
  45138. bottom: 58/1395
  45139. }
  45140. },
  45141. },
  45142. [
  45143. {
  45144. name: "Micro",
  45145. height: math.unit(15, "cm")
  45146. },
  45147. {
  45148. name: "Normal",
  45149. height: math.unit(2, "meters"),
  45150. default: true
  45151. },
  45152. {
  45153. name: "Macro",
  45154. height: math.unit(20, "meters"),
  45155. },
  45156. ]
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45160. {
  45161. front: {
  45162. height: math.unit(9, "feet"),
  45163. weight: math.unit(240, "lb"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/kuzco/front.svg",
  45167. extra: 1593/1487,
  45168. bottom: 32/1625
  45169. }
  45170. },
  45171. side: {
  45172. height: math.unit(9, "feet"),
  45173. weight: math.unit(240, "lb"),
  45174. name: "Side",
  45175. image: {
  45176. source: "./media/characters/kuzco/side.svg",
  45177. extra: 1575/1485,
  45178. bottom: 30/1605
  45179. }
  45180. },
  45181. back: {
  45182. height: math.unit(9, "feet"),
  45183. weight: math.unit(240, "lb"),
  45184. name: "Back",
  45185. image: {
  45186. source: "./media/characters/kuzco/back.svg",
  45187. extra: 1603/1514,
  45188. bottom: 14/1617
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Normal",
  45195. height: math.unit(9, "feet"),
  45196. default: true
  45197. },
  45198. ]
  45199. ))
  45200. characterMakers.push(() => makeCharacter(
  45201. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45202. {
  45203. side: {
  45204. height: math.unit(2, "meters"),
  45205. weight: math.unit(300, "kg"),
  45206. name: "Side",
  45207. image: {
  45208. source: "./media/characters/ceruleus/side.svg",
  45209. extra: 1068/974,
  45210. bottom: 126/1194
  45211. }
  45212. },
  45213. },
  45214. [
  45215. {
  45216. name: "Normal",
  45217. height: math.unit(16, "meters"),
  45218. default: true
  45219. },
  45220. ]
  45221. ))
  45222. characterMakers.push(() => makeCharacter(
  45223. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45224. {
  45225. front: {
  45226. height: math.unit(9, "feet"),
  45227. weight: math.unit(500, "kg"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/acouya/front.svg",
  45231. extra: 1660/1473,
  45232. bottom: 28/1688
  45233. }
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Normal",
  45239. height: math.unit(9, "feet"),
  45240. default: true
  45241. },
  45242. ]
  45243. ))
  45244. characterMakers.push(() => makeCharacter(
  45245. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45246. {
  45247. front: {
  45248. height: math.unit(5 + 6/12, "feet"),
  45249. weight: math.unit(195, "lb"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/vant/front.svg",
  45253. extra: 1396/1320,
  45254. bottom: 20/1416
  45255. }
  45256. },
  45257. back: {
  45258. height: math.unit(5 + 6/12, "feet"),
  45259. weight: math.unit(195, "lb"),
  45260. name: "Back",
  45261. image: {
  45262. source: "./media/characters/vant/back.svg",
  45263. extra: 1396/1320,
  45264. bottom: 20/1416
  45265. }
  45266. },
  45267. maw: {
  45268. height: math.unit(0.75, "feet"),
  45269. name: "Maw",
  45270. image: {
  45271. source: "./media/characters/vant/maw.svg"
  45272. }
  45273. },
  45274. paw: {
  45275. height: math.unit(1.07, "feet"),
  45276. name: "Paw",
  45277. image: {
  45278. source: "./media/characters/vant/paw.svg"
  45279. }
  45280. },
  45281. },
  45282. [
  45283. {
  45284. name: "Micro",
  45285. height: math.unit(0.25, "inches")
  45286. },
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(5 + 6/12, "feet"),
  45290. default: true
  45291. },
  45292. {
  45293. name: "Macro",
  45294. height: math.unit(75, "feet")
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(30, "meters"),
  45303. weight: math.unit(363, "tons"),
  45304. name: "Front",
  45305. image: {
  45306. source: "./media/characters/ahra/front.svg",
  45307. extra: 1914/1814,
  45308. bottom: 46/1960
  45309. }
  45310. },
  45311. },
  45312. [
  45313. {
  45314. name: "Macro",
  45315. height: math.unit(30, "meters"),
  45316. default: true
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45322. {
  45323. undressed: {
  45324. height: math.unit(2, "m"),
  45325. weight: math.unit(250, "kg"),
  45326. name: "Undressed",
  45327. image: {
  45328. source: "./media/characters/coriander/undressed.svg",
  45329. extra: 1757/1606,
  45330. bottom: 107/1864
  45331. }
  45332. },
  45333. dressed: {
  45334. height: math.unit(2, "m"),
  45335. weight: math.unit(250, "kg"),
  45336. name: "Dressed",
  45337. image: {
  45338. source: "./media/characters/coriander/dressed.svg",
  45339. extra: 1757/1606,
  45340. bottom: 107/1864
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(4, "meters"),
  45348. default: true
  45349. },
  45350. {
  45351. name: "XL",
  45352. height: math.unit(6, "meters")
  45353. },
  45354. {
  45355. name: "XXL",
  45356. height: math.unit(8, "meters")
  45357. },
  45358. ]
  45359. ))
  45360. characterMakers.push(() => makeCharacter(
  45361. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45362. {
  45363. front: {
  45364. height: math.unit(6, "feet"),
  45365. name: "Front",
  45366. image: {
  45367. source: "./media/characters/syrinx/front.svg",
  45368. extra: 1557/1259,
  45369. bottom: 171/1728
  45370. }
  45371. },
  45372. },
  45373. [
  45374. {
  45375. name: "Normal",
  45376. height: math.unit(6 + 3/12, "feet"),
  45377. default: true
  45378. },
  45379. ]
  45380. ))
  45381. characterMakers.push(() => makeCharacter(
  45382. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45383. {
  45384. front: {
  45385. height: math.unit(11 + 6/12, "feet"),
  45386. weight: math.unit(1.5, "tons"),
  45387. name: "Front",
  45388. image: {
  45389. source: "./media/characters/bor/front.svg",
  45390. extra: 1189/1109,
  45391. bottom: 170/1359
  45392. }
  45393. },
  45394. },
  45395. [
  45396. {
  45397. name: "Normal",
  45398. height: math.unit(11 + 6/12, "feet"),
  45399. default: true
  45400. },
  45401. {
  45402. name: "Macro",
  45403. height: math.unit(32 + 9/12, "feet")
  45404. },
  45405. ]
  45406. ))
  45407. characterMakers.push(() => makeCharacter(
  45408. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45409. {
  45410. anthro: {
  45411. height: math.unit(9, "feet"),
  45412. weight: math.unit(2076, "lb"),
  45413. name: "Anthro",
  45414. image: {
  45415. source: "./media/characters/abacus/anthro.svg",
  45416. extra: 1540/1494,
  45417. bottom: 233/1773
  45418. }
  45419. },
  45420. pigeon: {
  45421. height: math.unit(1, "feet"),
  45422. name: "Pigeon",
  45423. image: {
  45424. source: "./media/characters/abacus/pigeon.svg",
  45425. extra: 528/525,
  45426. bottom: 46/574
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(9, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45440. {
  45441. side: {
  45442. height: math.unit(6, "feet"),
  45443. name: "Side",
  45444. image: {
  45445. source: "./media/characters/delkhan/side.svg",
  45446. extra: 1884/1786,
  45447. bottom: 308/2192
  45448. }
  45449. },
  45450. head: {
  45451. height: math.unit(3.38, "feet"),
  45452. name: "Head",
  45453. image: {
  45454. source: "./media/characters/delkhan/head.svg"
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(72, "feet"),
  45462. default: true
  45463. },
  45464. {
  45465. name: "Giant",
  45466. height: math.unit(172, "feet")
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45472. {
  45473. standing: {
  45474. height: math.unit(6, "feet"),
  45475. name: "Standing",
  45476. image: {
  45477. source: "./media/characters/euchidat/standing.svg",
  45478. extra: 1612/1553,
  45479. bottom: 116/1728
  45480. }
  45481. },
  45482. leaning: {
  45483. height: math.unit(6, "feet"),
  45484. name: "Leaning",
  45485. image: {
  45486. source: "./media/characters/euchidat/leaning.svg",
  45487. extra: 1719/1674,
  45488. bottom: 27/1746
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(175, "feet"),
  45496. default: true
  45497. },
  45498. {
  45499. name: "Megamacro",
  45500. height: math.unit(190, "miles")
  45501. },
  45502. {
  45503. name: "Gigamacro",
  45504. height: math.unit(190000, "miles")
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(6, "feet"),
  45513. weight: math.unit(150, "lb"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/rebecca-stack/front.svg",
  45517. extra: 1256/1201,
  45518. bottom: 18/1274
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(5 + 8/12, "feet"),
  45526. default: true
  45527. },
  45528. {
  45529. name: "Demolitionist",
  45530. height: math.unit(200, "feet")
  45531. },
  45532. {
  45533. name: "Out of Control",
  45534. height: math.unit(2, "miles")
  45535. },
  45536. {
  45537. name: "Giga",
  45538. height: math.unit(7200, "miles")
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(6, "feet"),
  45547. weight: math.unit(150, "lb"),
  45548. name: "Front",
  45549. image: {
  45550. source: "./media/characters/jenny-cartwright/front.svg",
  45551. extra: 1384/1376,
  45552. bottom: 58/1442
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal",
  45559. height: math.unit(6 + 7/12, "feet"),
  45560. default: true
  45561. },
  45562. {
  45563. name: "Librarian",
  45564. height: math.unit(55, "feet")
  45565. },
  45566. {
  45567. name: "Sightseer",
  45568. height: math.unit(50, "miles")
  45569. },
  45570. {
  45571. name: "Giga",
  45572. height: math.unit(30000, "miles")
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45578. {
  45579. nude: {
  45580. height: math.unit(8, "feet"),
  45581. weight: math.unit(225, "lb"),
  45582. name: "Nude",
  45583. image: {
  45584. source: "./media/characters/marvy/nude.svg",
  45585. extra: 1900/1683,
  45586. bottom: 89/1989
  45587. }
  45588. },
  45589. dressed: {
  45590. height: math.unit(8, "feet"),
  45591. weight: math.unit(225, "lb"),
  45592. name: "Dressed",
  45593. image: {
  45594. source: "./media/characters/marvy/dressed.svg",
  45595. extra: 1900/1683,
  45596. bottom: 89/1989
  45597. }
  45598. },
  45599. head: {
  45600. height: math.unit(2.85, "feet"),
  45601. name: "Head",
  45602. image: {
  45603. source: "./media/characters/marvy/head.svg"
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "Normal",
  45610. height: math.unit(8, "feet"),
  45611. default: true
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45617. {
  45618. front: {
  45619. height: math.unit(8, "feet"),
  45620. weight: math.unit(250, "lb"),
  45621. name: "Front",
  45622. image: {
  45623. source: "./media/characters/leah/front.svg",
  45624. extra: 1257/1149,
  45625. bottom: 109/1366
  45626. }
  45627. },
  45628. },
  45629. [
  45630. {
  45631. name: "Normal",
  45632. height: math.unit(8, "feet"),
  45633. default: true
  45634. },
  45635. {
  45636. name: "Minimacro",
  45637. height: math.unit(40, "feet")
  45638. },
  45639. {
  45640. name: "Macro",
  45641. height: math.unit(124, "feet")
  45642. },
  45643. {
  45644. name: "Megamacro",
  45645. height: math.unit(850, "feet")
  45646. },
  45647. ]
  45648. ))
  45649. characterMakers.push(() => makeCharacter(
  45650. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45651. {
  45652. side: {
  45653. height: math.unit(13 + 6/12, "feet"),
  45654. weight: math.unit(3200, "lb"),
  45655. name: "Side",
  45656. image: {
  45657. source: "./media/characters/alvir/side.svg",
  45658. extra: 896/589,
  45659. bottom: 26/922
  45660. }
  45661. },
  45662. },
  45663. [
  45664. {
  45665. name: "Normal",
  45666. height: math.unit(13 + 6/12, "feet"),
  45667. default: true
  45668. },
  45669. ]
  45670. ))
  45671. characterMakers.push(() => makeCharacter(
  45672. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45673. {
  45674. front: {
  45675. height: math.unit(5 + 4/12, "feet"),
  45676. weight: math.unit(236, "lb"),
  45677. name: "Front",
  45678. image: {
  45679. source: "./media/characters/zaina-khalil/front.svg",
  45680. extra: 1533/1485,
  45681. bottom: 94/1627
  45682. }
  45683. },
  45684. side: {
  45685. height: math.unit(5 + 4/12, "feet"),
  45686. weight: math.unit(236, "lb"),
  45687. name: "Side",
  45688. image: {
  45689. source: "./media/characters/zaina-khalil/side.svg",
  45690. extra: 1537/1498,
  45691. bottom: 66/1603
  45692. }
  45693. },
  45694. back: {
  45695. height: math.unit(5 + 4/12, "feet"),
  45696. weight: math.unit(236, "lb"),
  45697. name: "Back",
  45698. image: {
  45699. source: "./media/characters/zaina-khalil/back.svg",
  45700. extra: 1546/1494,
  45701. bottom: 89/1635
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(5 + 4/12, "feet"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45715. {
  45716. side: {
  45717. height: math.unit(12, "feet"),
  45718. weight: math.unit(4000, "lb"),
  45719. name: "Side",
  45720. image: {
  45721. source: "./media/characters/terry/side.svg",
  45722. extra: 1518/1439,
  45723. bottom: 149/1667
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(12, "feet"),
  45740. weight: math.unit(1500, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/kahea/front.svg",
  45744. extra: 1722/1617,
  45745. bottom: 179/1901
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(12, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45759. {
  45760. demonFront: {
  45761. height: math.unit(36, "feet"),
  45762. name: "Front",
  45763. image: {
  45764. source: "./media/characters/alex-xuria/demon-front.svg",
  45765. extra: 1705/1673,
  45766. bottom: 198/1903
  45767. },
  45768. form: "demon",
  45769. default: true
  45770. },
  45771. demonBack: {
  45772. height: math.unit(36, "feet"),
  45773. name: "Back",
  45774. image: {
  45775. source: "./media/characters/alex-xuria/demon-back.svg",
  45776. extra: 1725/1693,
  45777. bottom: 70/1795
  45778. },
  45779. form: "demon"
  45780. },
  45781. demonHead: {
  45782. height: math.unit(2.14, "meters"),
  45783. name: "Head",
  45784. image: {
  45785. source: "./media/characters/alex-xuria/demon-head.svg"
  45786. },
  45787. form: "demon"
  45788. },
  45789. demonHand: {
  45790. height: math.unit(1.61, "meters"),
  45791. name: "Hand",
  45792. image: {
  45793. source: "./media/characters/alex-xuria/demon-hand.svg"
  45794. },
  45795. form: "demon"
  45796. },
  45797. demonPaw: {
  45798. height: math.unit(1.35, "meters"),
  45799. name: "Paw",
  45800. image: {
  45801. source: "./media/characters/alex-xuria/demon-paw.svg"
  45802. },
  45803. form: "demon"
  45804. },
  45805. demonFoot: {
  45806. height: math.unit(2.2, "meters"),
  45807. name: "Foot",
  45808. image: {
  45809. source: "./media/characters/alex-xuria/demon-foot.svg"
  45810. },
  45811. form: "demon"
  45812. },
  45813. demonCock: {
  45814. height: math.unit(1.74, "meters"),
  45815. name: "Cock",
  45816. image: {
  45817. source: "./media/characters/alex-xuria/demon-cock.svg"
  45818. },
  45819. form: "demon"
  45820. },
  45821. demonTailClosed: {
  45822. height: math.unit(1.47, "meters"),
  45823. name: "Tail (Closed)",
  45824. image: {
  45825. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45826. },
  45827. form: "demon"
  45828. },
  45829. demonTailOpen: {
  45830. height: math.unit(2.85, "meters"),
  45831. name: "Tail (Open)",
  45832. image: {
  45833. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45834. },
  45835. form: "demon"
  45836. },
  45837. incubusFront: {
  45838. height: math.unit(12, "feet"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/alex-xuria/incubus-front.svg",
  45842. extra: 1754/1677,
  45843. bottom: 125/1879
  45844. },
  45845. form: "incubus",
  45846. default: true
  45847. },
  45848. incubusBack: {
  45849. height: math.unit(12, "feet"),
  45850. name: "Back",
  45851. image: {
  45852. source: "./media/characters/alex-xuria/incubus-back.svg",
  45853. extra: 1702/1647,
  45854. bottom: 30/1732
  45855. },
  45856. form: "incubus"
  45857. },
  45858. incubusHead: {
  45859. height: math.unit(3.45, "feet"),
  45860. name: "Head",
  45861. image: {
  45862. source: "./media/characters/alex-xuria/incubus-head.svg"
  45863. },
  45864. form: "incubus"
  45865. },
  45866. rabbitFront: {
  45867. height: math.unit(6, "feet"),
  45868. name: "Front",
  45869. image: {
  45870. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45871. extra: 1369/1349,
  45872. bottom: 45/1414
  45873. },
  45874. form: "rabbit",
  45875. default: true
  45876. },
  45877. rabbitSide: {
  45878. height: math.unit(6, "feet"),
  45879. name: "Side",
  45880. image: {
  45881. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45882. extra: 1370/1356,
  45883. bottom: 37/1407
  45884. },
  45885. form: "rabbit"
  45886. },
  45887. rabbitBack: {
  45888. height: math.unit(6, "feet"),
  45889. name: "Back",
  45890. image: {
  45891. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45892. extra: 1375/1358,
  45893. bottom: 43/1418
  45894. },
  45895. form: "rabbit"
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(6, "feet"),
  45902. default: true,
  45903. form: "rabbit"
  45904. },
  45905. {
  45906. name: "Incubus",
  45907. height: math.unit(12, "feet"),
  45908. default: true,
  45909. form: "incubus"
  45910. },
  45911. {
  45912. name: "Demon",
  45913. height: math.unit(36, "feet"),
  45914. default: true,
  45915. form: "demon"
  45916. }
  45917. ],
  45918. {
  45919. "demon": {
  45920. name: "Demon",
  45921. default: true
  45922. },
  45923. "incubus": {
  45924. name: "Incubus",
  45925. },
  45926. "rabbit": {
  45927. name: "Rabbit"
  45928. }
  45929. }
  45930. ))
  45931. characterMakers.push(() => makeCharacter(
  45932. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45933. {
  45934. front: {
  45935. height: math.unit(7 + 5/12, "feet"),
  45936. weight: math.unit(510, "lb"),
  45937. name: "Front",
  45938. image: {
  45939. source: "./media/characters/syrup/front.svg",
  45940. extra: 932/916,
  45941. bottom: 26/958
  45942. }
  45943. },
  45944. },
  45945. [
  45946. {
  45947. name: "Normal",
  45948. height: math.unit(7 + 5/12, "feet"),
  45949. default: true
  45950. },
  45951. {
  45952. name: "Big",
  45953. height: math.unit(50, "feet")
  45954. },
  45955. {
  45956. name: "Macro",
  45957. height: math.unit(300, "feet")
  45958. },
  45959. {
  45960. name: "Megamacro",
  45961. height: math.unit(1, "mile")
  45962. },
  45963. ]
  45964. ))
  45965. characterMakers.push(() => makeCharacter(
  45966. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45967. {
  45968. front: {
  45969. height: math.unit(6 + 9/12, "feet"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/zeimne/front.svg",
  45973. extra: 1969/1806,
  45974. bottom: 53/2022
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(6 + 9/12, "feet"),
  45982. default: true
  45983. },
  45984. {
  45985. name: "Giant",
  45986. height: math.unit(550, "feet")
  45987. },
  45988. {
  45989. name: "Mega",
  45990. height: math.unit(3, "miles")
  45991. },
  45992. {
  45993. name: "Giga",
  45994. height: math.unit(250, "miles")
  45995. },
  45996. {
  45997. name: "Tera",
  45998. height: math.unit(1, "AU")
  45999. },
  46000. ]
  46001. ))
  46002. characterMakers.push(() => makeCharacter(
  46003. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46004. {
  46005. front: {
  46006. height: math.unit(5 + 2/12, "feet"),
  46007. name: "Front",
  46008. image: {
  46009. source: "./media/characters/grar/front.svg",
  46010. extra: 1331/1119,
  46011. bottom: 60/1391
  46012. }
  46013. },
  46014. back: {
  46015. height: math.unit(5 + 2/12, "feet"),
  46016. name: "Back",
  46017. image: {
  46018. source: "./media/characters/grar/back.svg",
  46019. extra: 1385/1169,
  46020. bottom: 23/1408
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(5 + 2/12, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(13 + 7/12, "feet"),
  46037. weight: math.unit(2200, "lb"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/endraya/front.svg",
  46041. extra: 1289/1215,
  46042. bottom: 50/1339
  46043. }
  46044. },
  46045. nude: {
  46046. height: math.unit(13 + 7/12, "feet"),
  46047. weight: math.unit(2200, "lb"),
  46048. name: "Nude",
  46049. image: {
  46050. source: "./media/characters/endraya/nude.svg",
  46051. extra: 1247/1171,
  46052. bottom: 40/1287
  46053. }
  46054. },
  46055. head: {
  46056. height: math.unit(2.6, "feet"),
  46057. name: "Head",
  46058. image: {
  46059. source: "./media/characters/endraya/head.svg"
  46060. }
  46061. },
  46062. slit: {
  46063. height: math.unit(3.4, "feet"),
  46064. name: "Slit",
  46065. image: {
  46066. source: "./media/characters/endraya/slit.svg"
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(13 + 7/12, "feet"),
  46074. default: true
  46075. },
  46076. {
  46077. name: "Macro",
  46078. height: math.unit(200, "feet")
  46079. },
  46080. ]
  46081. ))
  46082. characterMakers.push(() => makeCharacter(
  46083. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46084. {
  46085. front: {
  46086. height: math.unit(1.81, "meters"),
  46087. weight: math.unit(69, "kg"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/rodryana/front.svg",
  46091. extra: 2002/1921,
  46092. bottom: 53/2055
  46093. }
  46094. },
  46095. back: {
  46096. height: math.unit(1.81, "meters"),
  46097. weight: math.unit(69, "kg"),
  46098. name: "Back",
  46099. image: {
  46100. source: "./media/characters/rodryana/back.svg",
  46101. extra: 1993/1926,
  46102. bottom: 48/2041
  46103. }
  46104. },
  46105. maw: {
  46106. height: math.unit(0.19769417475, "meters"),
  46107. name: "Maw",
  46108. image: {
  46109. source: "./media/characters/rodryana/maw.svg"
  46110. }
  46111. },
  46112. slit: {
  46113. height: math.unit(0.31631067961, "meters"),
  46114. name: "Slit",
  46115. image: {
  46116. source: "./media/characters/rodryana/slit.svg"
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(1.81, "meters")
  46124. },
  46125. {
  46126. name: "Mini Macro",
  46127. height: math.unit(181, "meters")
  46128. },
  46129. {
  46130. name: "Macro",
  46131. height: math.unit(452, "meters"),
  46132. default: true
  46133. },
  46134. {
  46135. name: "Mega Macro",
  46136. height: math.unit(1.375, "km")
  46137. },
  46138. {
  46139. name: "Giga Macro",
  46140. height: math.unit(13.575, "km")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(6, "feet"),
  46149. weight: math.unit(1000, "lb"),
  46150. name: "Front",
  46151. image: {
  46152. source: "./media/characters/asaya/front.svg",
  46153. extra: 1460/1200,
  46154. bottom: 71/1531
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(8, "km"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46168. {
  46169. front: {
  46170. height: math.unit(3.5, "meters"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/sarzu-and-israz/front.svg",
  46174. extra: 1570/1558,
  46175. bottom: 150/1720
  46176. },
  46177. },
  46178. back: {
  46179. height: math.unit(3.5, "meters"),
  46180. name: "Back",
  46181. image: {
  46182. source: "./media/characters/sarzu-and-israz/back.svg",
  46183. extra: 1523/1509,
  46184. bottom: 132/1655
  46185. },
  46186. },
  46187. frontFemale: {
  46188. height: math.unit(3.5, "meters"),
  46189. name: "Front (Female)",
  46190. image: {
  46191. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46192. extra: 1570/1558,
  46193. bottom: 150/1720
  46194. },
  46195. },
  46196. frontHerm: {
  46197. height: math.unit(3.5, "meters"),
  46198. name: "Front (Herm)",
  46199. image: {
  46200. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46201. extra: 1570/1558,
  46202. bottom: 150/1720
  46203. },
  46204. },
  46205. },
  46206. [
  46207. {
  46208. name: "Normal",
  46209. height: math.unit(3.5, "meters"),
  46210. default: true,
  46211. },
  46212. {
  46213. name: "Macro",
  46214. height: math.unit(65.5, "meters"),
  46215. },
  46216. ],
  46217. ))
  46218. characterMakers.push(() => makeCharacter(
  46219. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46220. {
  46221. front: {
  46222. height: math.unit(6, "feet"),
  46223. weight: math.unit(250, "lb"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/zenimma/front.svg",
  46227. extra: 1346/1320,
  46228. bottom: 58/1404
  46229. }
  46230. },
  46231. back: {
  46232. height: math.unit(6, "feet"),
  46233. weight: math.unit(250, "lb"),
  46234. name: "Back",
  46235. image: {
  46236. source: "./media/characters/zenimma/back.svg",
  46237. extra: 1324/1308,
  46238. bottom: 44/1368
  46239. }
  46240. },
  46241. dick: {
  46242. height: math.unit(1.44, "feet"),
  46243. name: "Dick",
  46244. image: {
  46245. source: "./media/characters/zenimma/dick.svg"
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Canon Height",
  46252. height: math.unit(66, "miles"),
  46253. default: true
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46259. {
  46260. nude: {
  46261. height: math.unit(6, "feet"),
  46262. weight: math.unit(150, "lb"),
  46263. name: "Nude",
  46264. image: {
  46265. source: "./media/characters/shavon/nude.svg",
  46266. extra: 1242/1096,
  46267. bottom: 98/1340
  46268. }
  46269. },
  46270. dressed: {
  46271. height: math.unit(6, "feet"),
  46272. weight: math.unit(150, "lb"),
  46273. name: "Dressed",
  46274. image: {
  46275. source: "./media/characters/shavon/dressed.svg",
  46276. extra: 1242/1096,
  46277. bottom: 98/1340
  46278. }
  46279. },
  46280. },
  46281. [
  46282. {
  46283. name: "Macro",
  46284. height: math.unit(255, "feet"),
  46285. default: true
  46286. },
  46287. ]
  46288. ))
  46289. characterMakers.push(() => makeCharacter(
  46290. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46291. {
  46292. front: {
  46293. height: math.unit(6, "feet"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/steph/front.svg",
  46297. extra: 1430/1330,
  46298. bottom: 54/1484
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Normal",
  46305. height: math.unit(6, "feet"),
  46306. default: true
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(9, "feet"),
  46315. weight: math.unit(400, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/kil'aman/front.svg",
  46319. extra: 1210/1159,
  46320. bottom: 109/1319
  46321. }
  46322. },
  46323. head: {
  46324. height: math.unit(2.14, "feet"),
  46325. name: "Head",
  46326. image: {
  46327. source: "./media/characters/kil'aman/head.svg"
  46328. }
  46329. },
  46330. maw: {
  46331. height: math.unit(1.21, "feet"),
  46332. name: "Maw",
  46333. image: {
  46334. source: "./media/characters/kil'aman/maw.svg"
  46335. }
  46336. },
  46337. foot: {
  46338. height: math.unit(1.7, "feet"),
  46339. name: "Foot",
  46340. image: {
  46341. source: "./media/characters/kil'aman/foot.svg"
  46342. }
  46343. },
  46344. dick: {
  46345. height: math.unit(2.1, "feet"),
  46346. name: "Dick",
  46347. image: {
  46348. source: "./media/characters/kil'aman/dick.svg"
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(9, "feet")
  46356. },
  46357. {
  46358. name: "Canon Height",
  46359. height: math.unit(10, "miles"),
  46360. default: true
  46361. },
  46362. {
  46363. name: "Maximum",
  46364. height: math.unit(6e9, "miles")
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46370. {
  46371. front: {
  46372. height: math.unit(90, "feet"),
  46373. weight: math.unit(675000, "lb"),
  46374. name: "Front",
  46375. image: {
  46376. source: "./media/characters/qadan/front.svg",
  46377. extra: 1012/1004,
  46378. bottom: 78/1090
  46379. }
  46380. },
  46381. back: {
  46382. height: math.unit(90, "feet"),
  46383. weight: math.unit(675000, "lb"),
  46384. name: "Back",
  46385. image: {
  46386. source: "./media/characters/qadan/back.svg",
  46387. extra: 1042/1031,
  46388. bottom: 55/1097
  46389. }
  46390. },
  46391. armored: {
  46392. height: math.unit(90, "feet"),
  46393. weight: math.unit(675000, "lb"),
  46394. name: "Armored",
  46395. image: {
  46396. source: "./media/characters/qadan/armored.svg",
  46397. extra: 1047/1037,
  46398. bottom: 48/1095
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Normal",
  46405. height: math.unit(90, "feet"),
  46406. default: true
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(6, "feet"),
  46415. weight: math.unit(225, "lb"),
  46416. name: "Front",
  46417. image: {
  46418. source: "./media/characters/brooke/front.svg",
  46419. extra: 1050/1010,
  46420. bottom: 66/1116
  46421. }
  46422. },
  46423. back: {
  46424. height: math.unit(6, "feet"),
  46425. weight: math.unit(225, "lb"),
  46426. name: "Back",
  46427. image: {
  46428. source: "./media/characters/brooke/back.svg",
  46429. extra: 1053/1013,
  46430. bottom: 41/1094
  46431. }
  46432. },
  46433. dressed: {
  46434. height: math.unit(6, "feet"),
  46435. weight: math.unit(225, "lb"),
  46436. name: "Dressed",
  46437. image: {
  46438. source: "./media/characters/brooke/dressed.svg",
  46439. extra: 1050/1010,
  46440. bottom: 66/1116
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Canon Height",
  46447. height: math.unit(500, "miles"),
  46448. default: true
  46449. },
  46450. ]
  46451. ))
  46452. characterMakers.push(() => makeCharacter(
  46453. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46454. {
  46455. front: {
  46456. height: math.unit(6 + 2/12, "feet"),
  46457. weight: math.unit(210, "lb"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/wubs/front.svg",
  46461. extra: 1345/1325,
  46462. bottom: 70/1415
  46463. }
  46464. },
  46465. back: {
  46466. height: math.unit(6 + 2/12, "feet"),
  46467. weight: math.unit(210, "lb"),
  46468. name: "Back",
  46469. image: {
  46470. source: "./media/characters/wubs/back.svg",
  46471. extra: 1296/1275,
  46472. bottom: 58/1354
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Normal",
  46479. height: math.unit(6 + 2/12, "feet"),
  46480. default: true
  46481. },
  46482. {
  46483. name: "Macro",
  46484. height: math.unit(1000, "feet")
  46485. },
  46486. {
  46487. name: "Megamacro",
  46488. height: math.unit(1, "mile")
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46494. {
  46495. front: {
  46496. height: math.unit(4, "feet"),
  46497. weight: math.unit(120, "lb"),
  46498. name: "Front",
  46499. image: {
  46500. source: "./media/characters/blue/front.svg",
  46501. extra: 1636/1525,
  46502. bottom: 43/1679
  46503. }
  46504. },
  46505. back: {
  46506. height: math.unit(4, "feet"),
  46507. weight: math.unit(120, "lb"),
  46508. name: "Back",
  46509. image: {
  46510. source: "./media/characters/blue/back.svg",
  46511. extra: 1660/1560,
  46512. bottom: 57/1717
  46513. }
  46514. },
  46515. paws: {
  46516. height: math.unit(0.826, "feet"),
  46517. name: "Paws",
  46518. image: {
  46519. source: "./media/characters/blue/paws.svg"
  46520. }
  46521. },
  46522. },
  46523. [
  46524. {
  46525. name: "Micro",
  46526. height: math.unit(3, "inches")
  46527. },
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(4, "feet"),
  46531. default: true
  46532. },
  46533. {
  46534. name: "Femenine Form",
  46535. height: math.unit(14, "feet")
  46536. },
  46537. {
  46538. name: "Werebat Form",
  46539. height: math.unit(18, "feet")
  46540. },
  46541. ]
  46542. ))
  46543. characterMakers.push(() => makeCharacter(
  46544. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46545. {
  46546. female: {
  46547. height: math.unit(7 + 4/12, "feet"),
  46548. weight: math.unit(243, "lb"),
  46549. name: "Female",
  46550. image: {
  46551. source: "./media/characters/kaya/female.svg",
  46552. extra: 975/898,
  46553. bottom: 34/1009
  46554. }
  46555. },
  46556. herm: {
  46557. height: math.unit(7 + 4/12, "feet"),
  46558. weight: math.unit(243, "lb"),
  46559. name: "Herm",
  46560. image: {
  46561. source: "./media/characters/kaya/herm.svg",
  46562. extra: 975/898,
  46563. bottom: 34/1009
  46564. }
  46565. },
  46566. },
  46567. [
  46568. {
  46569. name: "Normal",
  46570. height: math.unit(7 + 4/12, "feet"),
  46571. default: true
  46572. },
  46573. ]
  46574. ))
  46575. characterMakers.push(() => makeCharacter(
  46576. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46577. {
  46578. female: {
  46579. height: math.unit(9 + 4/12, "feet"),
  46580. weight: math.unit(398, "lb"),
  46581. name: "Female",
  46582. image: {
  46583. source: "./media/characters/kassandra/female.svg",
  46584. extra: 908/839,
  46585. bottom: 61/969
  46586. }
  46587. },
  46588. intersex: {
  46589. height: math.unit(9 + 4/12, "feet"),
  46590. weight: math.unit(398, "lb"),
  46591. name: "Intersex",
  46592. image: {
  46593. source: "./media/characters/kassandra/intersex.svg",
  46594. extra: 908/839,
  46595. bottom: 61/969
  46596. }
  46597. },
  46598. },
  46599. [
  46600. {
  46601. name: "Normal",
  46602. height: math.unit(9 + 4/12, "feet"),
  46603. default: true
  46604. },
  46605. ]
  46606. ))
  46607. characterMakers.push(() => makeCharacter(
  46608. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46609. {
  46610. front: {
  46611. height: math.unit(3, "meters"),
  46612. name: "Front",
  46613. image: {
  46614. source: "./media/characters/amy/front.svg",
  46615. extra: 1380/1343,
  46616. bottom: 70/1450
  46617. }
  46618. },
  46619. back: {
  46620. height: math.unit(3, "meters"),
  46621. name: "Back",
  46622. image: {
  46623. source: "./media/characters/amy/back.svg",
  46624. extra: 1380/1347,
  46625. bottom: 66/1446
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Normal",
  46632. height: math.unit(3, "meters"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46639. {
  46640. side: {
  46641. height: math.unit(47, "cm"),
  46642. weight: math.unit(10.8, "kg"),
  46643. name: "Side",
  46644. image: {
  46645. source: "./media/characters/alphaschakal/side.svg",
  46646. extra: 1058/568,
  46647. bottom: 62/1120
  46648. }
  46649. },
  46650. back: {
  46651. height: math.unit(78, "cm"),
  46652. weight: math.unit(10.8, "kg"),
  46653. name: "Back",
  46654. image: {
  46655. source: "./media/characters/alphaschakal/back.svg",
  46656. extra: 1102/942,
  46657. bottom: 185/1287
  46658. }
  46659. },
  46660. head: {
  46661. height: math.unit(28, "cm"),
  46662. name: "Head",
  46663. image: {
  46664. source: "./media/characters/alphaschakal/head.svg",
  46665. extra: 696/508,
  46666. bottom: 0/696
  46667. }
  46668. },
  46669. paw: {
  46670. height: math.unit(16, "cm"),
  46671. name: "Paw",
  46672. image: {
  46673. source: "./media/characters/alphaschakal/paw.svg"
  46674. }
  46675. },
  46676. },
  46677. [
  46678. {
  46679. name: "Normal",
  46680. height: math.unit(47, "cm"),
  46681. default: true
  46682. },
  46683. {
  46684. name: "Macro",
  46685. height: math.unit(340, "cm")
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(36, "earths"),
  46694. name: "Front",
  46695. image: {
  46696. source: "./media/characters/ecobyss/front.svg",
  46697. extra: 1282/1215,
  46698. bottom: 11/1293
  46699. }
  46700. },
  46701. back: {
  46702. height: math.unit(36, "earths"),
  46703. name: "Back",
  46704. image: {
  46705. source: "./media/characters/ecobyss/back.svg",
  46706. extra: 1291/1222,
  46707. bottom: 8/1299
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Normal",
  46714. height: math.unit(36, "earths"),
  46715. default: true
  46716. },
  46717. ]
  46718. ))
  46719. characterMakers.push(() => makeCharacter(
  46720. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46721. {
  46722. front: {
  46723. height: math.unit(12, "feet"),
  46724. name: "Front",
  46725. image: {
  46726. source: "./media/characters/vasuk/front.svg",
  46727. extra: 1326/1207,
  46728. bottom: 64/1390
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal",
  46735. height: math.unit(12, "feet"),
  46736. default: true
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46742. {
  46743. side: {
  46744. height: math.unit(100, "feet"),
  46745. name: "Side",
  46746. image: {
  46747. source: "./media/characters/linneaus/side.svg",
  46748. extra: 987/807,
  46749. bottom: 47/1034
  46750. }
  46751. },
  46752. },
  46753. [
  46754. {
  46755. name: "Macro",
  46756. height: math.unit(100, "feet"),
  46757. default: true
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(8, "feet"),
  46766. weight: math.unit(1200, "lb"),
  46767. name: "Front",
  46768. image: {
  46769. source: "./media/characters/nyterious-daligdig/front.svg",
  46770. extra: 1284/1094,
  46771. bottom: 84/1368
  46772. }
  46773. },
  46774. back: {
  46775. height: math.unit(8, "feet"),
  46776. weight: math.unit(1200, "lb"),
  46777. name: "Back",
  46778. image: {
  46779. source: "./media/characters/nyterious-daligdig/back.svg",
  46780. extra: 1301/1121,
  46781. bottom: 129/1430
  46782. }
  46783. },
  46784. mouth: {
  46785. height: math.unit(1.464, "feet"),
  46786. name: "Mouth",
  46787. image: {
  46788. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Small",
  46795. height: math.unit(8, "feet"),
  46796. default: true
  46797. },
  46798. {
  46799. name: "Normal",
  46800. height: math.unit(15, "feet")
  46801. },
  46802. {
  46803. name: "Macro",
  46804. height: math.unit(90, "feet")
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46810. {
  46811. front: {
  46812. height: math.unit(7 + 4/12, "feet"),
  46813. weight: math.unit(252, "lb"),
  46814. name: "Front",
  46815. image: {
  46816. source: "./media/characters/bandel/front.svg",
  46817. extra: 1946/1775,
  46818. bottom: 26/1972
  46819. }
  46820. },
  46821. back: {
  46822. height: math.unit(7 + 4/12, "feet"),
  46823. weight: math.unit(252, "lb"),
  46824. name: "Back",
  46825. image: {
  46826. source: "./media/characters/bandel/back.svg",
  46827. extra: 1940/1770,
  46828. bottom: 25/1965
  46829. }
  46830. },
  46831. maw: {
  46832. height: math.unit(2.15, "feet"),
  46833. name: "Maw",
  46834. image: {
  46835. source: "./media/characters/bandel/maw.svg"
  46836. }
  46837. },
  46838. stomach: {
  46839. height: math.unit(1.95, "feet"),
  46840. name: "Stomach",
  46841. image: {
  46842. source: "./media/characters/bandel/stomach.svg"
  46843. }
  46844. },
  46845. },
  46846. [
  46847. {
  46848. name: "Normal",
  46849. height: math.unit(7 + 4/12, "feet"),
  46850. default: true
  46851. },
  46852. ]
  46853. ))
  46854. characterMakers.push(() => makeCharacter(
  46855. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46856. {
  46857. front: {
  46858. height: math.unit(10 + 5/12, "feet"),
  46859. weight: math.unit(773.5, "kg"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/zed/front.svg",
  46863. extra: 987/941,
  46864. bottom: 52/1039
  46865. }
  46866. },
  46867. },
  46868. [
  46869. {
  46870. name: "Short",
  46871. height: math.unit(5 + 4/12, "feet")
  46872. },
  46873. {
  46874. name: "Average",
  46875. height: math.unit(10 + 5/12, "feet"),
  46876. default: true
  46877. },
  46878. {
  46879. name: "Mini-Macro",
  46880. height: math.unit(24 + 9/12, "feet")
  46881. },
  46882. {
  46883. name: "Macro",
  46884. height: math.unit(249, "feet")
  46885. },
  46886. {
  46887. name: "Mega-Macro",
  46888. height: math.unit(12490, "feet")
  46889. },
  46890. {
  46891. name: "Giga-Macro",
  46892. height: math.unit(24.9, "miles")
  46893. },
  46894. {
  46895. name: "Tera-Macro",
  46896. height: math.unit(24900, "miles")
  46897. },
  46898. {
  46899. name: "Cosmic Scale",
  46900. height: math.unit(38.9, "lightyears")
  46901. },
  46902. {
  46903. name: "Universal Scale",
  46904. height: math.unit(138e12, "lightyears")
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46910. {
  46911. front: {
  46912. height: math.unit(1561, "inches"),
  46913. name: "Front",
  46914. image: {
  46915. source: "./media/characters/ivan/front.svg",
  46916. extra: 1126/1071,
  46917. bottom: 26/1152
  46918. }
  46919. },
  46920. back: {
  46921. height: math.unit(1561, "inches"),
  46922. name: "Back",
  46923. image: {
  46924. source: "./media/characters/ivan/back.svg",
  46925. extra: 1134/1079,
  46926. bottom: 30/1164
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(1561, "inches"),
  46934. default: true
  46935. },
  46936. ]
  46937. ))
  46938. characterMakers.push(() => makeCharacter(
  46939. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46940. {
  46941. front: {
  46942. height: math.unit(5 + 7/12, "feet"),
  46943. weight: math.unit(150, "lb"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/robin-arctic-hare/front.svg",
  46947. extra: 1148/974,
  46948. bottom: 20/1168
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(5 + 7/12, "feet"),
  46956. default: true
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46962. {
  46963. side: {
  46964. height: math.unit(5, "feet"),
  46965. name: "Side",
  46966. image: {
  46967. source: "./media/characters/birch/side.svg",
  46968. extra: 985/796,
  46969. bottom: 111/1096
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(5, "feet"),
  46977. default: true
  46978. },
  46979. ]
  46980. ))
  46981. characterMakers.push(() => makeCharacter(
  46982. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46983. {
  46984. front: {
  46985. height: math.unit(4, "feet"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/rasp/front.svg",
  46989. extra: 561/478,
  46990. bottom: 74/635
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(4, "feet"),
  46998. default: true
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47004. {
  47005. front: {
  47006. height: math.unit(4 + 6/12, "feet"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/agatha/front.svg",
  47010. extra: 947/933,
  47011. bottom: 42/989
  47012. }
  47013. },
  47014. back: {
  47015. height: math.unit(4 + 6/12, "feet"),
  47016. name: "Back",
  47017. image: {
  47018. source: "./media/characters/agatha/back.svg",
  47019. extra: 935/922,
  47020. bottom: 48/983
  47021. }
  47022. },
  47023. },
  47024. [
  47025. {
  47026. name: "Normal",
  47027. height: math.unit(4 + 6 /12, "feet"),
  47028. default: true
  47029. },
  47030. {
  47031. name: "Max Size",
  47032. height: math.unit(500, "feet")
  47033. },
  47034. ]
  47035. ))
  47036. characterMakers.push(() => makeCharacter(
  47037. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47038. {
  47039. side: {
  47040. height: math.unit(30, "feet"),
  47041. name: "Side",
  47042. image: {
  47043. source: "./media/characters/roggy/side.svg",
  47044. extra: 909/643,
  47045. bottom: 63/972
  47046. }
  47047. },
  47048. lounging: {
  47049. height: math.unit(20, "feet"),
  47050. name: "Lounging",
  47051. image: {
  47052. source: "./media/characters/roggy/lounging.svg",
  47053. extra: 643/479,
  47054. bottom: 145/788
  47055. }
  47056. },
  47057. handpaw: {
  47058. height: math.unit(13.1, "feet"),
  47059. name: "Handpaw",
  47060. image: {
  47061. source: "./media/characters/roggy/handpaw.svg"
  47062. }
  47063. },
  47064. footpaw: {
  47065. height: math.unit(15.8, "feet"),
  47066. name: "Footpaw",
  47067. image: {
  47068. source: "./media/characters/roggy/footpaw.svg"
  47069. }
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Menacing",
  47075. height: math.unit(30, "feet"),
  47076. default: true
  47077. },
  47078. ]
  47079. ))
  47080. characterMakers.push(() => makeCharacter(
  47081. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47082. {
  47083. front: {
  47084. height: math.unit(5 + 7/12, "feet"),
  47085. weight: math.unit(135, "lb"),
  47086. name: "Front",
  47087. image: {
  47088. source: "./media/characters/naomi/front.svg",
  47089. extra: 1209/1154,
  47090. bottom: 129/1338
  47091. }
  47092. },
  47093. back: {
  47094. height: math.unit(5 + 7/12, "feet"),
  47095. weight: math.unit(135, "lb"),
  47096. name: "Back",
  47097. image: {
  47098. source: "./media/characters/naomi/back.svg",
  47099. extra: 1252/1190,
  47100. bottom: 23/1275
  47101. }
  47102. },
  47103. },
  47104. [
  47105. {
  47106. name: "Normal",
  47107. height: math.unit(5 + 7 /12, "feet"),
  47108. default: true
  47109. },
  47110. ]
  47111. ))
  47112. characterMakers.push(() => makeCharacter(
  47113. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47114. {
  47115. side: {
  47116. height: math.unit(35, "meters"),
  47117. name: "Side",
  47118. image: {
  47119. source: "./media/characters/kimpi/side.svg",
  47120. extra: 419/382,
  47121. bottom: 63/482
  47122. }
  47123. },
  47124. hand: {
  47125. height: math.unit(8.96, "meters"),
  47126. name: "Hand",
  47127. image: {
  47128. source: "./media/characters/kimpi/hand.svg"
  47129. }
  47130. },
  47131. },
  47132. [
  47133. {
  47134. name: "Normal",
  47135. height: math.unit(35, "meters"),
  47136. default: true
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47142. {
  47143. front: {
  47144. height: math.unit(4 + 4/12, "feet"),
  47145. name: "Front",
  47146. image: {
  47147. source: "./media/characters/pepper-purrloin/front.svg",
  47148. extra: 1141/1024,
  47149. bottom: 21/1162
  47150. }
  47151. },
  47152. },
  47153. [
  47154. {
  47155. name: "Normal",
  47156. height: math.unit(4 + 4/12, "feet"),
  47157. default: true
  47158. },
  47159. ]
  47160. ))
  47161. characterMakers.push(() => makeCharacter(
  47162. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47163. {
  47164. front: {
  47165. height: math.unit(6 + 2/12, "feet"),
  47166. name: "Front",
  47167. image: {
  47168. source: "./media/characters/raphael/front.svg",
  47169. extra: 1101/962,
  47170. bottom: 59/1160
  47171. }
  47172. },
  47173. },
  47174. [
  47175. {
  47176. name: "Normal",
  47177. height: math.unit(6 + 2/12, "feet"),
  47178. default: true
  47179. },
  47180. ]
  47181. ))
  47182. characterMakers.push(() => makeCharacter(
  47183. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47184. {
  47185. front: {
  47186. height: math.unit(6, "feet"),
  47187. weight: math.unit(150, "lb"),
  47188. name: "Front",
  47189. image: {
  47190. source: "./media/characters/victor-williams/front.svg",
  47191. extra: 1894/1825,
  47192. bottom: 67/1961
  47193. }
  47194. },
  47195. },
  47196. [
  47197. {
  47198. name: "Normal",
  47199. height: math.unit(6, "feet"),
  47200. default: true
  47201. },
  47202. ]
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(5 + 8/12, "feet"),
  47209. weight: math.unit(150, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/rachel/front.svg",
  47213. extra: 1902/1787,
  47214. bottom: 46/1948
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Base Height",
  47221. height: math.unit(5 + 8/12, "feet"),
  47222. default: true
  47223. },
  47224. {
  47225. name: "Macro",
  47226. height: math.unit(200, "feet")
  47227. },
  47228. {
  47229. name: "Mega Macro",
  47230. height: math.unit(1, "mile")
  47231. },
  47232. {
  47233. name: "Giga Macro",
  47234. height: math.unit(1500, "miles")
  47235. },
  47236. {
  47237. name: "Tera Macro",
  47238. height: math.unit(8000, "miles")
  47239. },
  47240. {
  47241. name: "Tera Macro+",
  47242. height: math.unit(2e5, "miles")
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47248. {
  47249. front: {
  47250. height: math.unit(6.5, "feet"),
  47251. name: "Front",
  47252. image: {
  47253. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47254. extra: 860/819,
  47255. bottom: 307/1167
  47256. }
  47257. },
  47258. back: {
  47259. height: math.unit(6.5, "feet"),
  47260. name: "Back",
  47261. image: {
  47262. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47263. extra: 880/837,
  47264. bottom: 395/1275
  47265. }
  47266. },
  47267. sleeping: {
  47268. height: math.unit(2.79, "feet"),
  47269. name: "Sleeping",
  47270. image: {
  47271. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47272. extra: 465/383,
  47273. bottom: 263/728
  47274. }
  47275. },
  47276. maw: {
  47277. height: math.unit(2.52, "feet"),
  47278. name: "Maw",
  47279. image: {
  47280. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47281. }
  47282. },
  47283. },
  47284. [
  47285. {
  47286. name: "Normal",
  47287. height: math.unit(6.5, "feet"),
  47288. default: true
  47289. },
  47290. ]
  47291. ))
  47292. characterMakers.push(() => makeCharacter(
  47293. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47294. {
  47295. front: {
  47296. height: math.unit(5, "feet"),
  47297. name: "Front",
  47298. image: {
  47299. source: "./media/characters/nova-nerium/front.svg",
  47300. extra: 1548/1392,
  47301. bottom: 374/1922
  47302. }
  47303. },
  47304. back: {
  47305. height: math.unit(5, "feet"),
  47306. name: "Back",
  47307. image: {
  47308. source: "./media/characters/nova-nerium/back.svg",
  47309. extra: 1658/1468,
  47310. bottom: 257/1915
  47311. }
  47312. },
  47313. },
  47314. [
  47315. {
  47316. name: "Normal",
  47317. height: math.unit(5, "feet"),
  47318. default: true
  47319. },
  47320. ]
  47321. ))
  47322. characterMakers.push(() => makeCharacter(
  47323. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47324. {
  47325. front: {
  47326. height: math.unit(5 + 4/12, "feet"),
  47327. name: "Front",
  47328. image: {
  47329. source: "./media/characters/ashe-pyriph/front.svg",
  47330. extra: 1935/1747,
  47331. bottom: 60/1995
  47332. }
  47333. },
  47334. },
  47335. [
  47336. {
  47337. name: "Normal",
  47338. height: math.unit(5 + 4/12, "feet"),
  47339. default: true
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47345. {
  47346. front: {
  47347. height: math.unit(8.7, "feet"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/flicker-wisp/front.svg",
  47351. extra: 1835/1613,
  47352. bottom: 449/2284
  47353. }
  47354. },
  47355. side: {
  47356. height: math.unit(8.7, "feet"),
  47357. name: "Side",
  47358. image: {
  47359. source: "./media/characters/flicker-wisp/side.svg",
  47360. extra: 1841/1642,
  47361. bottom: 336/2177
  47362. },
  47363. default: true
  47364. },
  47365. maw: {
  47366. height: math.unit(3.35, "feet"),
  47367. name: "Maw",
  47368. image: {
  47369. source: "./media/characters/flicker-wisp/maw.svg",
  47370. extra: 2338/1506,
  47371. bottom: 0/2338
  47372. }
  47373. },
  47374. ovipositor: {
  47375. height: math.unit(4.95, "feet"),
  47376. name: "Ovipositor",
  47377. image: {
  47378. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47379. }
  47380. },
  47381. egg: {
  47382. height: math.unit(0.385, "feet"),
  47383. weight: math.unit(2, "lb"),
  47384. name: "Egg",
  47385. image: {
  47386. source: "./media/characters/flicker-wisp/egg.svg"
  47387. }
  47388. },
  47389. },
  47390. [
  47391. {
  47392. name: "Normal",
  47393. height: math.unit(8.7, "feet"),
  47394. default: true
  47395. },
  47396. ]
  47397. ))
  47398. characterMakers.push(() => makeCharacter(
  47399. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47400. {
  47401. side: {
  47402. height: math.unit(11, "feet"),
  47403. name: "Side",
  47404. image: {
  47405. source: "./media/characters/faefnul/side.svg",
  47406. extra: 1100/1007,
  47407. bottom: 0/1100
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Normal",
  47414. height: math.unit(11, "feet"),
  47415. default: true
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47421. {
  47422. front: {
  47423. height: math.unit(6 + 2/12, "feet"),
  47424. name: "Front",
  47425. image: {
  47426. source: "./media/characters/shady/front.svg",
  47427. extra: 502/461,
  47428. bottom: 9/511
  47429. }
  47430. },
  47431. kneeling: {
  47432. height: math.unit(4.6, "feet"),
  47433. name: "Kneeling",
  47434. image: {
  47435. source: "./media/characters/shady/kneeling.svg",
  47436. extra: 1328/1219,
  47437. bottom: 117/1445
  47438. }
  47439. },
  47440. maw: {
  47441. height: math.unit(2, "feet"),
  47442. name: "Maw",
  47443. image: {
  47444. source: "./media/characters/shady/maw.svg"
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Nano",
  47451. height: math.unit(1, "mm")
  47452. },
  47453. {
  47454. name: "Micro",
  47455. height: math.unit(12, "mm")
  47456. },
  47457. {
  47458. name: "Tiny",
  47459. height: math.unit(3, "inches")
  47460. },
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(6 + 2/12, "feet"),
  47464. default: true
  47465. },
  47466. {
  47467. name: "Big",
  47468. height: math.unit(15, "feet")
  47469. },
  47470. {
  47471. name: "Macro",
  47472. height: math.unit(150, "feet")
  47473. },
  47474. {
  47475. name: "Titanic",
  47476. height: math.unit(500, "feet")
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(12, "feet"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/fenrir/front.svg",
  47488. extra: 968/875,
  47489. bottom: 22/990
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Big",
  47496. height: math.unit(12, "feet"),
  47497. default: true
  47498. },
  47499. ]
  47500. ))
  47501. characterMakers.push(() => makeCharacter(
  47502. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47503. {
  47504. front: {
  47505. height: math.unit(5 + 4/12, "feet"),
  47506. name: "Front",
  47507. image: {
  47508. source: "./media/characters/makar/front.svg",
  47509. extra: 1181/1112,
  47510. bottom: 78/1259
  47511. }
  47512. },
  47513. },
  47514. [
  47515. {
  47516. name: "Normal",
  47517. height: math.unit(5 + 4/12, "feet"),
  47518. default: true
  47519. },
  47520. ]
  47521. ))
  47522. characterMakers.push(() => makeCharacter(
  47523. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47524. {
  47525. front: {
  47526. height: math.unit(5 + 7/12, "feet"),
  47527. name: "Front",
  47528. image: {
  47529. source: "./media/characters/callow/front.svg",
  47530. extra: 1482/1304,
  47531. bottom: 23/1505
  47532. }
  47533. },
  47534. back: {
  47535. height: math.unit(5 + 7/12, "feet"),
  47536. name: "Back",
  47537. image: {
  47538. source: "./media/characters/callow/back.svg",
  47539. extra: 1484/1296,
  47540. bottom: 25/1509
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Micro",
  47547. height: math.unit(3, "inches"),
  47548. default: true
  47549. },
  47550. {
  47551. name: "Normal",
  47552. height: math.unit(5 + 7/12, "feet")
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47558. {
  47559. front: {
  47560. height: math.unit(6 + 2/12, "feet"),
  47561. name: "Front",
  47562. image: {
  47563. source: "./media/characters/natel/front.svg",
  47564. extra: 1833/1692,
  47565. bottom: 166/1999
  47566. }
  47567. },
  47568. },
  47569. [
  47570. {
  47571. name: "Normal",
  47572. height: math.unit(6 + 2/12, "feet"),
  47573. default: true
  47574. },
  47575. ]
  47576. ))
  47577. //characters
  47578. function makeCharacters() {
  47579. const results = [];
  47580. characterMakers.forEach(character => {
  47581. results.push(character());
  47582. });
  47583. return results;
  47584. }