less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55049 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. }
  2087. //species
  2088. function getSpeciesInfo(speciesList) {
  2089. let result = new Set();
  2090. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2091. result.add(entry)
  2092. });
  2093. return Array.from(result);
  2094. };
  2095. function getSpeciesInfoHelper(species) {
  2096. if (!speciesData[species]) {
  2097. console.warn(species + " doesn't exist");
  2098. return [];
  2099. }
  2100. if (speciesData[species].parents) {
  2101. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2102. } else {
  2103. return [species];
  2104. }
  2105. }
  2106. characterMakers.push(() => makeCharacter(
  2107. {
  2108. name: "Fen",
  2109. species: ["crux"],
  2110. description: {
  2111. title: "Bio",
  2112. text: "Very furry. Sheds on everything."
  2113. },
  2114. tags: [
  2115. "anthro",
  2116. "goo"
  2117. ]
  2118. },
  2119. {
  2120. front: {
  2121. height: math.unit(12, "feet"),
  2122. weight: math.unit(2400, "lb"),
  2123. name: "Front",
  2124. image: {
  2125. source: "./media/characters/fen/front.svg",
  2126. extra: 1804/1562,
  2127. bottom: 205/2009
  2128. },
  2129. extraAttributes: {
  2130. pawSize: {
  2131. name: "Paw Size",
  2132. power: 2,
  2133. type: "area",
  2134. base: math.unit(0.35, "m^2")
  2135. }
  2136. }
  2137. },
  2138. diving: {
  2139. height: math.unit(4.9, "meters"),
  2140. weight: math.unit(2400, "lb"),
  2141. name: "Diving",
  2142. image: {
  2143. source: "./media/characters/fen/diving.svg"
  2144. }
  2145. },
  2146. sleeby: {
  2147. height: math.unit(3.45, "meters"),
  2148. weight: math.unit(2400, "lb"),
  2149. name: "Sleeby",
  2150. image: {
  2151. source: "./media/characters/fen/sleeby.svg"
  2152. }
  2153. },
  2154. goo: {
  2155. height: math.unit(12, "feet"),
  2156. weight: math.unit(3600, "lb"),
  2157. volume: math.unit(1000, "liters"),
  2158. preyCapacity: math.unit(6, "people"),
  2159. name: "Goo",
  2160. image: {
  2161. source: "./media/characters/fen/goo.svg",
  2162. extra: 1307/1071,
  2163. bottom: 134/1441
  2164. }
  2165. },
  2166. gooNsfw: {
  2167. height: math.unit(12, "feet"),
  2168. weight: math.unit(3750, "lb"),
  2169. volume: math.unit(1000, "liters"),
  2170. preyCapacity: math.unit(6, "people"),
  2171. name: "Goo (NSFW)",
  2172. image: {
  2173. source: "./media/characters/fen/goo-nsfw.svg",
  2174. extra: 1875/1734,
  2175. bottom: 122/1997
  2176. }
  2177. },
  2178. maw: {
  2179. height: math.unit(5.03, "feet"),
  2180. name: "Maw",
  2181. image: {
  2182. source: "./media/characters/fen/maw.svg"
  2183. }
  2184. },
  2185. gooCeiling: {
  2186. height: math.unit(6.6, "feet"),
  2187. weight: math.unit(3000, "lb"),
  2188. volume: math.unit(1000, "liters"),
  2189. preyCapacity: math.unit(6, "people"),
  2190. name: "Goo (Ceiling)",
  2191. image: {
  2192. source: "./media/characters/fen/goo-ceiling.svg"
  2193. }
  2194. },
  2195. paw: {
  2196. height: math.unit(3.77, "feet"),
  2197. name: "Paw",
  2198. image: {
  2199. source: "./media/characters/fen/paw.svg"
  2200. },
  2201. extraAttributes: {
  2202. "toeSize": {
  2203. name: "Toe Size",
  2204. power: 2,
  2205. type: "area",
  2206. base: math.unit(0.02875, "m^2")
  2207. },
  2208. "pawSize": {
  2209. name: "Paw Size",
  2210. power: 2,
  2211. type: "area",
  2212. base: math.unit(0.378, "m^2")
  2213. },
  2214. }
  2215. },
  2216. tail: {
  2217. height: math.unit(12.1, "feet"),
  2218. name: "Tail",
  2219. image: {
  2220. source: "./media/characters/fen/tail.svg"
  2221. }
  2222. },
  2223. tailFull: {
  2224. height: math.unit(12.1, "feet"),
  2225. name: "Full Tail",
  2226. image: {
  2227. source: "./media/characters/fen/tail-full.svg"
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(12, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/fen/back.svg",
  2236. },
  2237. info: {
  2238. description: {
  2239. mode: "append",
  2240. text: "\n\nHe is not currently looking at you."
  2241. }
  2242. }
  2243. },
  2244. full: {
  2245. height: math.unit(1.85, "meter"),
  2246. weight: math.unit(3200, "lb"),
  2247. name: "Full",
  2248. image: {
  2249. source: "./media/characters/fen/full.svg",
  2250. extra: 1133/859,
  2251. bottom: 145/1278
  2252. },
  2253. info: {
  2254. description: {
  2255. mode: "append",
  2256. text: "\n\nMunch."
  2257. }
  2258. }
  2259. },
  2260. gooLounging: {
  2261. height: math.unit(4.53, "feet"),
  2262. weight: math.unit(3000, "lb"),
  2263. preyCapacity: math.unit(6, "people"),
  2264. name: "Goo (Lounging)",
  2265. image: {
  2266. source: "./media/characters/fen/goo-lounging.svg",
  2267. bottom: 116 / 613
  2268. }
  2269. },
  2270. lounging: {
  2271. height: math.unit(10.52, "feet"),
  2272. weight: math.unit(2400, "lb"),
  2273. name: "Lounging",
  2274. image: {
  2275. source: "./media/characters/fen/lounging.svg"
  2276. }
  2277. },
  2278. },
  2279. [
  2280. {
  2281. name: "Small",
  2282. height: math.unit(2.2428, "meter")
  2283. },
  2284. {
  2285. name: "Normal",
  2286. height: math.unit(12, "feet"),
  2287. default: true,
  2288. },
  2289. {
  2290. name: "Big",
  2291. height: math.unit(20, "feet")
  2292. },
  2293. {
  2294. name: "Minimacro",
  2295. height: math.unit(40, "feet"),
  2296. info: {
  2297. description: {
  2298. mode: "append",
  2299. text: "\n\nTOO DAMN BIG"
  2300. }
  2301. }
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(100, "feet"),
  2306. info: {
  2307. description: {
  2308. mode: "append",
  2309. text: "\n\nTOO DAMN BIG"
  2310. }
  2311. }
  2312. },
  2313. {
  2314. name: "Megamacro",
  2315. height: math.unit(2, "miles")
  2316. },
  2317. {
  2318. name: "Gigamacro",
  2319. height: math.unit(10, "earths")
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(183, "cm"),
  2328. weight: math.unit(80, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/sofia-fluttertail/front.svg",
  2332. bottom: 0.01,
  2333. extra: 2154 / 2081
  2334. }
  2335. },
  2336. frontAlt: {
  2337. height: math.unit(183, "cm"),
  2338. weight: math.unit(80, "kg"),
  2339. name: "Front (alt)",
  2340. image: {
  2341. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2342. }
  2343. },
  2344. back: {
  2345. height: math.unit(183, "cm"),
  2346. weight: math.unit(80, "kg"),
  2347. name: "Back",
  2348. image: {
  2349. source: "./media/characters/sofia-fluttertail/back.svg"
  2350. }
  2351. },
  2352. kneeling: {
  2353. height: math.unit(125, "cm"),
  2354. weight: math.unit(80, "kg"),
  2355. name: "Kneeling",
  2356. image: {
  2357. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2358. extra: 1033 / 977,
  2359. bottom: 23.7 / 1057
  2360. }
  2361. },
  2362. maw: {
  2363. height: math.unit(183 / 5, "cm"),
  2364. name: "Maw",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/maw.svg"
  2367. }
  2368. },
  2369. mawcloseup: {
  2370. height: math.unit(183 / 5 * 0.41, "cm"),
  2371. name: "Maw (Closeup)",
  2372. image: {
  2373. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2374. }
  2375. },
  2376. paws: {
  2377. height: math.unit(1.17, "feet"),
  2378. name: "Paws",
  2379. image: {
  2380. source: "./media/characters/sofia-fluttertail/paws.svg",
  2381. extra: 851 / 851,
  2382. bottom: 17 / 868
  2383. }
  2384. },
  2385. },
  2386. [
  2387. {
  2388. name: "Normal",
  2389. height: math.unit(1.83, "meter")
  2390. },
  2391. {
  2392. name: "Size Thief",
  2393. height: math.unit(18, "feet")
  2394. },
  2395. {
  2396. name: "50 Foot Collie",
  2397. height: math.unit(50, "feet")
  2398. },
  2399. {
  2400. name: "Macro",
  2401. height: math.unit(96, "feet"),
  2402. default: true
  2403. },
  2404. {
  2405. name: "Megamerger",
  2406. height: math.unit(650, "feet")
  2407. },
  2408. ]
  2409. ))
  2410. characterMakers.push(() => makeCharacter(
  2411. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2412. {
  2413. front: {
  2414. height: math.unit(7, "feet"),
  2415. weight: math.unit(100, "kg"),
  2416. name: "Front",
  2417. image: {
  2418. source: "./media/characters/march/front.svg",
  2419. extra: 1992/1851,
  2420. bottom: 39/2031
  2421. }
  2422. },
  2423. foot: {
  2424. height: math.unit(0.9, "feet"),
  2425. name: "Foot",
  2426. image: {
  2427. source: "./media/characters/march/foot.svg"
  2428. }
  2429. },
  2430. },
  2431. [
  2432. {
  2433. name: "Normal",
  2434. height: math.unit(7.9, "feet")
  2435. },
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(220, "meters")
  2439. },
  2440. {
  2441. name: "Megamacro",
  2442. height: math.unit(2.98, "km"),
  2443. default: true
  2444. },
  2445. {
  2446. name: "Gigamacro",
  2447. height: math.unit(15963, "km")
  2448. },
  2449. {
  2450. name: "Teramacro",
  2451. height: math.unit(2980000000, "km")
  2452. },
  2453. {
  2454. name: "Examacro",
  2455. height: math.unit(250, "parsecs")
  2456. },
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2461. {
  2462. front: {
  2463. height: math.unit(6, "feet"),
  2464. weight: math.unit(60, "kg"),
  2465. name: "Front",
  2466. image: {
  2467. source: "./media/characters/noir/front.svg",
  2468. extra: 1,
  2469. bottom: 0.032
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(6.6, "feet")
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(500, "feet")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(2.5, "km"),
  2485. default: true
  2486. },
  2487. {
  2488. name: "Gigamacro",
  2489. height: math.unit(22500, "km")
  2490. },
  2491. {
  2492. name: "Teramacro",
  2493. height: math.unit(2500000000, "km")
  2494. },
  2495. {
  2496. name: "Examacro",
  2497. height: math.unit(200, "parsecs")
  2498. },
  2499. ]
  2500. ))
  2501. characterMakers.push(() => makeCharacter(
  2502. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2503. {
  2504. front: {
  2505. height: math.unit(7, "feet"),
  2506. weight: math.unit(100, "kg"),
  2507. name: "Front",
  2508. image: {
  2509. source: "./media/characters/okuri/front.svg",
  2510. extra: 739/665,
  2511. bottom: 39/778
  2512. }
  2513. },
  2514. back: {
  2515. height: math.unit(7, "feet"),
  2516. weight: math.unit(100, "kg"),
  2517. name: "Back",
  2518. image: {
  2519. source: "./media/characters/okuri/back.svg",
  2520. extra: 734/653,
  2521. bottom: 13/747
  2522. }
  2523. },
  2524. sitting: {
  2525. height: math.unit(2.95, "feet"),
  2526. weight: math.unit(100, "kg"),
  2527. name: "Sitting",
  2528. image: {
  2529. source: "./media/characters/okuri/sitting.svg",
  2530. extra: 370/318,
  2531. bottom: 99/469
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Smallest",
  2538. height: math.unit(5 + 2/12, "feet")
  2539. },
  2540. {
  2541. name: "Smaller",
  2542. height: math.unit(300, "feet")
  2543. },
  2544. {
  2545. name: "Small",
  2546. height: math.unit(1000, "feet")
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(1, "mile")
  2551. },
  2552. {
  2553. name: "Mega Macro (Small)",
  2554. height: math.unit(20, "km")
  2555. },
  2556. {
  2557. name: "Mega Macro (Large)",
  2558. height: math.unit(600, "km")
  2559. },
  2560. {
  2561. name: "Giga Macro",
  2562. height: math.unit(10000, "km")
  2563. },
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(577560, "km"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Large",
  2571. height: math.unit(4, "galaxies")
  2572. },
  2573. {
  2574. name: "Largest",
  2575. height: math.unit(15, "multiverses")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2581. {
  2582. front: {
  2583. height: math.unit(7, "feet"),
  2584. weight: math.unit(100, "kg"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/manny/front.svg",
  2588. extra: 1,
  2589. bottom: 0.06
  2590. }
  2591. },
  2592. back: {
  2593. height: math.unit(7, "feet"),
  2594. weight: math.unit(100, "kg"),
  2595. name: "Back",
  2596. image: {
  2597. source: "./media/characters/manny/back.svg",
  2598. extra: 1,
  2599. bottom: 0.014
  2600. }
  2601. },
  2602. },
  2603. [
  2604. {
  2605. name: "Normal",
  2606. height: math.unit(7, "feet"),
  2607. },
  2608. {
  2609. name: "Macro",
  2610. height: math.unit(78, "feet"),
  2611. default: true
  2612. },
  2613. {
  2614. name: "Macro+",
  2615. height: math.unit(300, "meters")
  2616. },
  2617. {
  2618. name: "Macro++",
  2619. height: math.unit(2400, "meters")
  2620. },
  2621. {
  2622. name: "Megamacro",
  2623. height: math.unit(5167, "meters")
  2624. },
  2625. {
  2626. name: "Gigamacro",
  2627. height: math.unit(41769, "miles")
  2628. },
  2629. ]
  2630. ))
  2631. characterMakers.push(() => makeCharacter(
  2632. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2633. {
  2634. front: {
  2635. height: math.unit(7, "feet"),
  2636. weight: math.unit(100, "kg"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/adake/front-1.svg"
  2640. }
  2641. },
  2642. frontAlt: {
  2643. height: math.unit(7, "feet"),
  2644. weight: math.unit(100, "kg"),
  2645. name: "Front (Alt)",
  2646. image: {
  2647. source: "./media/characters/adake/front-2.svg",
  2648. extra: 1,
  2649. bottom: 0.01
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(7, "feet"),
  2654. weight: math.unit(100, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/adake/back.svg",
  2658. }
  2659. },
  2660. kneel: {
  2661. height: math.unit(5.385, "feet"),
  2662. weight: math.unit(100, "kg"),
  2663. name: "Kneeling",
  2664. image: {
  2665. source: "./media/characters/adake/kneel.svg",
  2666. bottom: 0.052
  2667. }
  2668. },
  2669. },
  2670. [
  2671. {
  2672. name: "Normal",
  2673. height: math.unit(7, "feet"),
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(78, "feet"),
  2678. default: true
  2679. },
  2680. {
  2681. name: "Macro+",
  2682. height: math.unit(300, "meters")
  2683. },
  2684. {
  2685. name: "Macro++",
  2686. height: math.unit(2400, "meters")
  2687. },
  2688. {
  2689. name: "Megamacro",
  2690. height: math.unit(5167, "meters")
  2691. },
  2692. {
  2693. name: "Gigamacro",
  2694. height: math.unit(41769, "miles")
  2695. },
  2696. ]
  2697. ))
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(1.65, "meters"),
  2703. weight: math.unit(50, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/elijah/front.svg",
  2707. extra: 858 / 830,
  2708. bottom: 95.5 / 953.8559
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(1.65, "meters"),
  2713. weight: math.unit(50, "kg"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/elijah/back.svg",
  2717. extra: 895 / 850,
  2718. bottom: 5.3 / 897.956
  2719. }
  2720. },
  2721. frontNsfw: {
  2722. height: math.unit(1.65, "meters"),
  2723. weight: math.unit(50, "kg"),
  2724. name: "Front (NSFW)",
  2725. image: {
  2726. source: "./media/characters/elijah/front-nsfw.svg",
  2727. extra: 858 / 830,
  2728. bottom: 95.5 / 953.8559
  2729. }
  2730. },
  2731. backNsfw: {
  2732. height: math.unit(1.65, "meters"),
  2733. weight: math.unit(50, "kg"),
  2734. name: "Back (NSFW)",
  2735. image: {
  2736. source: "./media/characters/elijah/back-nsfw.svg",
  2737. extra: 895 / 850,
  2738. bottom: 5.3 / 897.956
  2739. }
  2740. },
  2741. dick: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Dick",
  2744. image: {
  2745. source: "./media/characters/elijah/dick.svg"
  2746. }
  2747. },
  2748. beakOpen: {
  2749. height: math.unit(1.25, "feet"),
  2750. name: "Beak (Open)",
  2751. image: {
  2752. source: "./media/characters/elijah/beak-open.svg"
  2753. }
  2754. },
  2755. beakShut: {
  2756. height: math.unit(1.25, "feet"),
  2757. name: "Beak (Shut)",
  2758. image: {
  2759. source: "./media/characters/elijah/beak-shut.svg"
  2760. }
  2761. },
  2762. footFlexing: {
  2763. height: math.unit(1.61, "feet"),
  2764. name: "Foot (Flexing)",
  2765. image: {
  2766. source: "./media/characters/elijah/foot-flexing.svg"
  2767. }
  2768. },
  2769. footStepping: {
  2770. height: math.unit(1.44, "feet"),
  2771. name: "Foot (Stepping)",
  2772. image: {
  2773. source: "./media/characters/elijah/foot-stepping.svg"
  2774. }
  2775. },
  2776. plantigradeLeg: {
  2777. height: math.unit(2.34, "feet"),
  2778. name: "Plantigrade Leg",
  2779. image: {
  2780. source: "./media/characters/elijah/plantigrade-leg.svg"
  2781. }
  2782. },
  2783. plantigradeFootLeft: {
  2784. height: math.unit(0.9, "feet"),
  2785. name: "Plantigrade Foot (Left)",
  2786. image: {
  2787. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2788. }
  2789. },
  2790. plantigradeFootRight: {
  2791. height: math.unit(0.9, "feet"),
  2792. name: "Plantigrade Foot (Right)",
  2793. image: {
  2794. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(1.65, "meters")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(55, "meters"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(105, "meters")
  2811. },
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(7 + 2/12, "feet"),
  2819. weight: math.unit(320, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/rai/front.svg",
  2823. extra: 1802/1696,
  2824. bottom: 68/1870
  2825. }
  2826. },
  2827. frontDressed: {
  2828. height: math.unit(7 + 2/12, "feet"),
  2829. weight: math.unit(320, "kg"),
  2830. name: "Front (Dressed)",
  2831. image: {
  2832. source: "./media/characters/rai/front-dressed.svg",
  2833. extra: 1802/1696,
  2834. bottom: 68/1870
  2835. }
  2836. },
  2837. side: {
  2838. height: math.unit(7 + 2/12, "feet"),
  2839. weight: math.unit(320, "kg"),
  2840. name: "Side",
  2841. image: {
  2842. source: "./media/characters/rai/side.svg",
  2843. extra: 1789/1710,
  2844. bottom: 115/1904
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(7 + 2/12, "feet"),
  2849. weight: math.unit(320, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/rai/back.svg",
  2853. extra: 1770/1707,
  2854. bottom: 28/1798
  2855. }
  2856. },
  2857. feral: {
  2858. height: math.unit(9.5, "feet"),
  2859. weight: math.unit(640, "kg"),
  2860. name: "Feral",
  2861. image: {
  2862. source: "./media/characters/rai/feral.svg",
  2863. extra: 945/553,
  2864. bottom: 176/1121
  2865. }
  2866. },
  2867. dragon: {
  2868. height: math.unit(23, "feet"),
  2869. weight: math.unit(50000, "lb"),
  2870. name: "Dragon",
  2871. image: {
  2872. source: "./media/characters/rai/dragon.svg",
  2873. extra: 2498 / 2030,
  2874. bottom: 85.2 / 2584
  2875. }
  2876. },
  2877. maw: {
  2878. height: math.unit(1.69, "feet"),
  2879. name: "Maw",
  2880. image: {
  2881. source: "./media/characters/rai/maw.svg"
  2882. }
  2883. },
  2884. },
  2885. [
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(7 + 2/12, "feet")
  2889. },
  2890. {
  2891. name: "Big",
  2892. height: math.unit(11, "feet")
  2893. },
  2894. {
  2895. name: "Macro",
  2896. height: math.unit(302, "feet"),
  2897. default: true
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2903. {
  2904. frontDressed: {
  2905. height: math.unit(216, "feet"),
  2906. weight: math.unit(7000000, "lb"),
  2907. name: "Front (Dressed)",
  2908. image: {
  2909. source: "./media/characters/jazzy/front-dressed.svg",
  2910. extra: 2738 / 2651,
  2911. bottom: 41.8 / 2786
  2912. }
  2913. },
  2914. backDressed: {
  2915. height: math.unit(216, "feet"),
  2916. weight: math.unit(7000000, "lb"),
  2917. name: "Back (Dressed)",
  2918. image: {
  2919. source: "./media/characters/jazzy/back-dressed.svg",
  2920. extra: 2775 / 2673,
  2921. bottom: 36.8 / 2817
  2922. }
  2923. },
  2924. front: {
  2925. height: math.unit(216, "feet"),
  2926. weight: math.unit(7000000, "lb"),
  2927. name: "Front",
  2928. image: {
  2929. source: "./media/characters/jazzy/front.svg",
  2930. extra: 2738 / 2651,
  2931. bottom: 41.8 / 2786
  2932. }
  2933. },
  2934. back: {
  2935. height: math.unit(216, "feet"),
  2936. weight: math.unit(7000000, "lb"),
  2937. name: "Back",
  2938. image: {
  2939. source: "./media/characters/jazzy/back.svg",
  2940. extra: 2775 / 2673,
  2941. bottom: 36.8 / 2817
  2942. }
  2943. },
  2944. maw: {
  2945. height: math.unit(20, "feet"),
  2946. name: "Maw",
  2947. image: {
  2948. source: "./media/characters/jazzy/maw.svg"
  2949. }
  2950. },
  2951. paws: {
  2952. height: math.unit(27.5, "feet"),
  2953. name: "Paws",
  2954. image: {
  2955. source: "./media/characters/jazzy/paws.svg"
  2956. }
  2957. },
  2958. eye: {
  2959. height: math.unit(4.4, "feet"),
  2960. name: "Eye",
  2961. image: {
  2962. source: "./media/characters/jazzy/eye.svg"
  2963. }
  2964. },
  2965. droneOffense: {
  2966. height: math.unit(9.5, "inches"),
  2967. name: "Drone (Offense)",
  2968. image: {
  2969. source: "./media/characters/jazzy/drone-offense.svg"
  2970. }
  2971. },
  2972. droneRecon: {
  2973. height: math.unit(9.5, "inches"),
  2974. name: "Drone (Recon)",
  2975. image: {
  2976. source: "./media/characters/jazzy/drone-recon.svg"
  2977. }
  2978. },
  2979. droneDefense: {
  2980. height: math.unit(9.5, "inches"),
  2981. name: "Drone (Defense)",
  2982. image: {
  2983. source: "./media/characters/jazzy/drone-defense.svg"
  2984. }
  2985. },
  2986. },
  2987. [
  2988. {
  2989. name: "Macro",
  2990. height: math.unit(216, "feet"),
  2991. default: true
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(9 + 6/12, "feet"),
  3000. weight: math.unit(700, "lb"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/flamm/front.svg",
  3004. extra: 1751/1632,
  3005. bottom: 46/1797
  3006. }
  3007. },
  3008. buff: {
  3009. height: math.unit(9 + 6/12, "feet"),
  3010. weight: math.unit(950, "lb"),
  3011. name: "Buff",
  3012. image: {
  3013. source: "./media/characters/flamm/buff.svg",
  3014. extra: 3018/2874,
  3015. bottom: 221/3239
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(9.5, "feet")
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(200, "feet"),
  3027. default: true
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(5 + 3/12, "feet"),
  3036. weight: math.unit(60, "kg"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/zephiro/front.svg",
  3040. extra: 1873/1761,
  3041. bottom: 147/2020
  3042. }
  3043. },
  3044. side: {
  3045. height: math.unit(5 + 3/12, "feet"),
  3046. weight: math.unit(60, "kg"),
  3047. name: "Side",
  3048. image: {
  3049. source: "./media/characters/zephiro/side.svg",
  3050. extra: 1929/1827,
  3051. bottom: 65/1994
  3052. }
  3053. },
  3054. back: {
  3055. height: math.unit(5 + 3/12, "feet"),
  3056. weight: math.unit(60, "kg"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/zephiro/back.svg",
  3060. extra: 1926/1816,
  3061. bottom: 41/1967
  3062. }
  3063. },
  3064. hand: {
  3065. height: math.unit(0.68, "feet"),
  3066. name: "Hand",
  3067. image: {
  3068. source: "./media/characters/zephiro/hand.svg"
  3069. }
  3070. },
  3071. paw: {
  3072. height: math.unit(1, "feet"),
  3073. name: "Paw",
  3074. image: {
  3075. source: "./media/characters/zephiro/paw.svg"
  3076. }
  3077. },
  3078. beans: {
  3079. height: math.unit(0.93, "feet"),
  3080. name: "Beans",
  3081. image: {
  3082. source: "./media/characters/zephiro/beans.svg"
  3083. }
  3084. },
  3085. },
  3086. [
  3087. {
  3088. name: "Micro",
  3089. height: math.unit(3, "inches")
  3090. },
  3091. {
  3092. name: "Normal",
  3093. height: math.unit(5 + 3 / 12, "feet"),
  3094. default: true
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(118, "feet")
  3099. },
  3100. ]
  3101. ))
  3102. characterMakers.push(() => makeCharacter(
  3103. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3104. {
  3105. front: {
  3106. height: math.unit(5, "feet"),
  3107. weight: math.unit(90, "kg"),
  3108. name: "Front",
  3109. image: {
  3110. source: "./media/characters/fory/front.svg",
  3111. extra: 2862 / 2674,
  3112. bottom: 180 / 3043.8
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(5, "feet"),
  3117. weight: math.unit(90, "kg"),
  3118. name: "Back",
  3119. image: {
  3120. source: "./media/characters/fory/back.svg",
  3121. extra: 2962 / 2791,
  3122. bottom: 106 / 3071.8
  3123. }
  3124. },
  3125. foot: {
  3126. height: math.unit(2.14, "feet"),
  3127. name: "Foot",
  3128. image: {
  3129. source: "./media/characters/fory/foot.svg"
  3130. }
  3131. },
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(5, "feet")
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(50, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Megamacro",
  3145. height: math.unit(10, "miles")
  3146. },
  3147. {
  3148. name: "Gigamacro",
  3149. height: math.unit(5, "earths")
  3150. },
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(7, "feet"),
  3158. weight: math.unit(90, "kg"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/kurrikage/front.svg",
  3162. extra: 1845/1733,
  3163. bottom: 119/1964
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(7, "feet"),
  3168. weight: math.unit(90, "kg"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/kurrikage/back.svg",
  3172. extra: 1790/1677,
  3173. bottom: 61/1851
  3174. }
  3175. },
  3176. dressed: {
  3177. height: math.unit(7, "feet"),
  3178. weight: math.unit(90, "kg"),
  3179. name: "Dressed",
  3180. image: {
  3181. source: "./media/characters/kurrikage/dressed.svg",
  3182. extra: 1845/1733,
  3183. bottom: 119/1964
  3184. }
  3185. },
  3186. foot: {
  3187. height: math.unit(1.5, "feet"),
  3188. name: "Foot",
  3189. image: {
  3190. source: "./media/characters/kurrikage/foot.svg"
  3191. }
  3192. },
  3193. staff: {
  3194. height: math.unit(6.7, "feet"),
  3195. name: "Staff",
  3196. image: {
  3197. source: "./media/characters/kurrikage/staff.svg"
  3198. }
  3199. },
  3200. peek: {
  3201. height: math.unit(1.05, "feet"),
  3202. name: "Peeking",
  3203. image: {
  3204. source: "./media/characters/kurrikage/peek.svg",
  3205. bottom: 0.08
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(12, "feet"),
  3213. default: true
  3214. },
  3215. {
  3216. name: "Big",
  3217. height: math.unit(20, "feet")
  3218. },
  3219. {
  3220. name: "Macro",
  3221. height: math.unit(500, "feet")
  3222. },
  3223. {
  3224. name: "Megamacro",
  3225. height: math.unit(20, "miles")
  3226. },
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(75, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/shingo/front.svg",
  3238. extra: 1900/1825,
  3239. bottom: 82/1982
  3240. }
  3241. },
  3242. side: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(75, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/shingo/side.svg",
  3248. extra: 1930/1865,
  3249. bottom: 16/1946
  3250. }
  3251. },
  3252. back: {
  3253. height: math.unit(6, "feet"),
  3254. weight: math.unit(75, "kg"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/shingo/back.svg",
  3258. extra: 1922/1852,
  3259. bottom: 16/1938
  3260. }
  3261. },
  3262. frontDressed: {
  3263. height: math.unit(6, "feet"),
  3264. weight: math.unit(150, "lb"),
  3265. name: "Front-dressed",
  3266. image: {
  3267. source: "./media/characters/shingo/front-dressed.svg",
  3268. extra: 1900/1825,
  3269. bottom: 82/1982
  3270. }
  3271. },
  3272. paw: {
  3273. height: math.unit(1.29, "feet"),
  3274. name: "Paw",
  3275. image: {
  3276. source: "./media/characters/shingo/paw.svg"
  3277. }
  3278. },
  3279. hand: {
  3280. height: math.unit(1.07, "feet"),
  3281. name: "Hand",
  3282. image: {
  3283. source: "./media/characters/shingo/hand.svg"
  3284. }
  3285. },
  3286. frontAlt: {
  3287. height: math.unit(6, "feet"),
  3288. weight: math.unit(75, "kg"),
  3289. name: "Front (Alt)",
  3290. image: {
  3291. source: "./media/characters/shingo/front-alt.svg",
  3292. extra: 3511 / 3338,
  3293. bottom: 0.005
  3294. }
  3295. },
  3296. frontAlt2: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Front (Alt 2)",
  3300. image: {
  3301. source: "./media/characters/shingo/front-alt-2.svg",
  3302. extra: 706/681,
  3303. bottom: 11/717
  3304. }
  3305. },
  3306. pawAlt: {
  3307. height: math.unit(1, "feet"),
  3308. name: "Paw (Alt)",
  3309. image: {
  3310. source: "./media/characters/shingo/paw-alt.svg"
  3311. }
  3312. },
  3313. },
  3314. [
  3315. {
  3316. name: "Micro",
  3317. height: math.unit(4, "inches")
  3318. },
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(6, "feet"),
  3322. default: true
  3323. },
  3324. {
  3325. name: "Macro",
  3326. height: math.unit(108, "feet")
  3327. },
  3328. {
  3329. name: "Macro+",
  3330. height: math.unit(1500, "feet")
  3331. },
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3336. {
  3337. side: {
  3338. height: math.unit(6, "feet"),
  3339. weight: math.unit(75, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/aigey/side.svg"
  3343. }
  3344. },
  3345. },
  3346. [
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(200, "feet"),
  3350. default: true
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(100, "miles")
  3355. },
  3356. ]
  3357. )
  3358. )
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/natasha/front.svg",
  3368. extra: 859 / 824,
  3369. bottom: 23 / 879.6
  3370. }
  3371. },
  3372. frontNsfw: {
  3373. height: math.unit(5 + 5 / 12, "feet"),
  3374. weight: math.unit(75, "kg"),
  3375. name: "Front (NSFW)",
  3376. image: {
  3377. source: "./media/characters/natasha/front-nsfw.svg",
  3378. extra: 859 / 824,
  3379. bottom: 23 / 879.6
  3380. }
  3381. },
  3382. frontErect: {
  3383. height: math.unit(5 + 5 / 12, "feet"),
  3384. weight: math.unit(75, "kg"),
  3385. name: "Front (Erect)",
  3386. image: {
  3387. source: "./media/characters/natasha/front-erect.svg",
  3388. extra: 859 / 824,
  3389. bottom: 23 / 879.6
  3390. }
  3391. },
  3392. back: {
  3393. height: math.unit(5 + 5 / 12, "feet"),
  3394. weight: math.unit(75, "kg"),
  3395. name: "Back",
  3396. image: {
  3397. source: "./media/characters/natasha/back.svg",
  3398. extra: 887.9 / 852.6,
  3399. bottom: 9.7 / 896.4
  3400. }
  3401. },
  3402. backAlt: {
  3403. height: math.unit(5 + 5 / 12, "feet"),
  3404. weight: math.unit(75, "kg"),
  3405. name: "Back (Alt)",
  3406. image: {
  3407. source: "./media/characters/natasha/back-alt.svg",
  3408. extra: 1236.7 / 1192,
  3409. bottom: 22.3 / 1258.2
  3410. }
  3411. },
  3412. dick: {
  3413. height: math.unit(1.772, "feet"),
  3414. name: "Dick",
  3415. image: {
  3416. source: "./media/characters/natasha/dick.svg"
  3417. }
  3418. },
  3419. paw: {
  3420. height: math.unit(0.250, "meters"),
  3421. name: "Paw",
  3422. image: {
  3423. source: "./media/characters/natasha/paw.svg"
  3424. },
  3425. extraAttributes: {
  3426. "toeSize": {
  3427. name: "Toe Size",
  3428. power: 2,
  3429. type: "area",
  3430. base: math.unit(0.0024, "m^2")
  3431. },
  3432. "padSize": {
  3433. name: "Pad Size",
  3434. power: 2,
  3435. type: "area",
  3436. base: math.unit(0.00889, "m^2")
  3437. },
  3438. "pawSize": {
  3439. name: "Paw Size",
  3440. power: 2,
  3441. type: "area",
  3442. base: math.unit(0.023667, "m^2")
  3443. },
  3444. }
  3445. },
  3446. },
  3447. [
  3448. {
  3449. name: "Shortstack",
  3450. height: math.unit(3, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Normal",
  3455. height: math.unit(5 + 5 / 12, "feet")
  3456. },
  3457. {
  3458. name: "Large",
  3459. height: math.unit(12, "feet")
  3460. },
  3461. {
  3462. name: "Macro",
  3463. height: math.unit(100, "feet")
  3464. },
  3465. {
  3466. name: "Macro+",
  3467. height: math.unit(260, "feet")
  3468. },
  3469. {
  3470. name: "Macro++",
  3471. height: math.unit(1, "mile")
  3472. },
  3473. ]
  3474. ))
  3475. characterMakers.push(() => makeCharacter(
  3476. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3477. {
  3478. front: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(75, "kg"),
  3481. name: "Front",
  3482. image: {
  3483. source: "./media/characters/malik/front.svg",
  3484. extra: 1750/1561,
  3485. bottom: 80/1830
  3486. },
  3487. extraAttributes: {
  3488. "toeSize": {
  3489. name: "Toe Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.0159, "m^2")
  3493. },
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.09834, "m^2")
  3499. },
  3500. }
  3501. },
  3502. side: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(75, "kg"),
  3505. name: "Side",
  3506. image: {
  3507. source: "./media/characters/malik/side.svg",
  3508. extra: 1802/1685,
  3509. bottom: 42/1844
  3510. },
  3511. extraAttributes: {
  3512. "toeSize": {
  3513. name: "Toe Size",
  3514. power: 2,
  3515. type: "area",
  3516. base: math.unit(0.0159, "m^2")
  3517. },
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.09834, "m^2")
  3523. },
  3524. }
  3525. },
  3526. back: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Back",
  3530. image: {
  3531. source: "./media/characters/malik/back.svg",
  3532. extra: 1803/1607,
  3533. bottom: 33/1836
  3534. },
  3535. extraAttributes: {
  3536. "toeSize": {
  3537. name: "Toe Size",
  3538. power: 2,
  3539. type: "area",
  3540. base: math.unit(0.0159, "m^2")
  3541. },
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.09834, "m^2")
  3547. },
  3548. }
  3549. },
  3550. },
  3551. [
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(156, "feet"),
  3555. default: true
  3556. },
  3557. {
  3558. name: "Macro+",
  3559. height: math.unit(1188, "feet")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(75, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/sefer/front.svg",
  3572. extra: 848 / 659,
  3573. bottom: 28.3 / 876.442
  3574. }
  3575. },
  3576. back: {
  3577. height: math.unit(6, "feet"),
  3578. weight: math.unit(75, "kg"),
  3579. name: "Back",
  3580. image: {
  3581. source: "./media/characters/sefer/back.svg",
  3582. extra: 864 / 695,
  3583. bottom: 10 / 871
  3584. }
  3585. },
  3586. frontDressed: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(75, "kg"),
  3589. name: "Dressed",
  3590. image: {
  3591. source: "./media/characters/sefer/dressed.svg",
  3592. extra: 839 / 653,
  3593. bottom: 37.6 / 878
  3594. }
  3595. },
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(6, "feet"),
  3601. default: true
  3602. },
  3603. {
  3604. name: "Big",
  3605. height: math.unit(8, "meters")
  3606. },
  3607. ]
  3608. ))
  3609. characterMakers.push(() => makeCharacter(
  3610. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3611. {
  3612. body: {
  3613. height: math.unit(2.2428, "meter"),
  3614. weight: math.unit(124.738, "kg"),
  3615. name: "Body",
  3616. image: {
  3617. extra: 1225 / 1050,
  3618. source: "./media/characters/north/front.svg"
  3619. }
  3620. }
  3621. },
  3622. [
  3623. {
  3624. name: "Micro",
  3625. height: math.unit(4, "inches")
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(63, "meters")
  3630. },
  3631. {
  3632. name: "Megamacro",
  3633. height: math.unit(101, "miles"),
  3634. default: true
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3640. {
  3641. angled: {
  3642. height: math.unit(4, "meter"),
  3643. weight: math.unit(150, "kg"),
  3644. name: "Angled",
  3645. image: {
  3646. source: "./media/characters/talan/angled-sfw.svg",
  3647. bottom: 29 / 3734
  3648. }
  3649. },
  3650. angledNsfw: {
  3651. height: math.unit(4, "meter"),
  3652. weight: math.unit(150, "kg"),
  3653. name: "Angled (NSFW)",
  3654. image: {
  3655. source: "./media/characters/talan/angled-nsfw.svg",
  3656. bottom: 29 / 3734
  3657. }
  3658. },
  3659. frontNsfw: {
  3660. height: math.unit(4, "meter"),
  3661. weight: math.unit(150, "kg"),
  3662. name: "Front (NSFW)",
  3663. image: {
  3664. source: "./media/characters/talan/front-nsfw.svg",
  3665. bottom: 29 / 3734
  3666. }
  3667. },
  3668. sideNsfw: {
  3669. height: math.unit(4, "meter"),
  3670. weight: math.unit(150, "kg"),
  3671. name: "Side (NSFW)",
  3672. image: {
  3673. source: "./media/characters/talan/side-nsfw.svg",
  3674. bottom: 29 / 3734
  3675. }
  3676. },
  3677. back: {
  3678. height: math.unit(4, "meter"),
  3679. weight: math.unit(150, "kg"),
  3680. name: "Back",
  3681. image: {
  3682. source: "./media/characters/talan/back.svg"
  3683. }
  3684. },
  3685. dickBottom: {
  3686. height: math.unit(0.621, "meter"),
  3687. name: "Dick (Bottom)",
  3688. image: {
  3689. source: "./media/characters/talan/dick-bottom.svg"
  3690. }
  3691. },
  3692. dickTop: {
  3693. height: math.unit(0.621, "meter"),
  3694. name: "Dick (Top)",
  3695. image: {
  3696. source: "./media/characters/talan/dick-top.svg"
  3697. }
  3698. },
  3699. dickSide: {
  3700. height: math.unit(0.305, "meter"),
  3701. name: "Dick (Side)",
  3702. image: {
  3703. source: "./media/characters/talan/dick-side.svg"
  3704. }
  3705. },
  3706. dickFront: {
  3707. height: math.unit(0.305, "meter"),
  3708. name: "Dick (Front)",
  3709. image: {
  3710. source: "./media/characters/talan/dick-front.svg"
  3711. }
  3712. },
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(4, "meters")
  3718. },
  3719. {
  3720. name: "Macro",
  3721. height: math.unit(100, "meters")
  3722. },
  3723. {
  3724. name: "Megamacro",
  3725. height: math.unit(2, "miles"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Gigamacro",
  3730. height: math.unit(5000, "miles")
  3731. },
  3732. {
  3733. name: "Teramacro",
  3734. height: math.unit(100, "parsecs")
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(2, "meter"),
  3743. weight: math.unit(90, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/gael'rathus/front.svg"
  3747. }
  3748. },
  3749. frontAlt: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(90, "kg"),
  3752. name: "Front (alt)",
  3753. image: {
  3754. source: "./media/characters/gael'rathus/front-alt.svg"
  3755. }
  3756. },
  3757. frontAlt2: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(90, "kg"),
  3760. name: "Front (alt 2)",
  3761. image: {
  3762. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3763. }
  3764. }
  3765. },
  3766. [
  3767. {
  3768. name: "Normal",
  3769. height: math.unit(9, "feet"),
  3770. default: true
  3771. },
  3772. {
  3773. name: "Large",
  3774. height: math.unit(25, "feet")
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(0.25, "miles")
  3779. },
  3780. {
  3781. name: "Megamacro",
  3782. height: math.unit(10, "miles")
  3783. }
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3788. {
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(140, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/sosha/side.svg",
  3795. extra: 1170/1006,
  3796. bottom: 94/1264
  3797. }
  3798. },
  3799. maw: {
  3800. height: math.unit(2.87, "feet"),
  3801. name: "Maw",
  3802. image: {
  3803. source: "./media/characters/sosha/maw.svg",
  3804. extra: 966/865,
  3805. bottom: 0/966
  3806. }
  3807. },
  3808. cooch: {
  3809. height: math.unit(5.6, "feet"),
  3810. name: "Cooch",
  3811. image: {
  3812. source: "./media/characters/sosha/cooch.svg"
  3813. }
  3814. },
  3815. },
  3816. [
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(12, "feet"),
  3820. default: true
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3826. {
  3827. side: {
  3828. height: math.unit(5 + 5 / 12, "feet"),
  3829. weight: math.unit(170, "kg"),
  3830. name: "Side",
  3831. image: {
  3832. source: "./media/characters/runnola/side.svg",
  3833. extra: 741 / 448,
  3834. bottom: 0.05
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Small",
  3841. height: math.unit(3, "feet")
  3842. },
  3843. {
  3844. name: "Normal",
  3845. height: math.unit(5 + 5 / 12, "feet"),
  3846. default: true
  3847. },
  3848. {
  3849. name: "Big",
  3850. height: math.unit(10, "feet")
  3851. },
  3852. ]
  3853. ))
  3854. characterMakers.push(() => makeCharacter(
  3855. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3856. {
  3857. front: {
  3858. height: math.unit(2, "meter"),
  3859. weight: math.unit(50, "kg"),
  3860. name: "Front",
  3861. image: {
  3862. source: "./media/characters/kurribird/front.svg",
  3863. bottom: 0.015
  3864. }
  3865. },
  3866. frontAlt: {
  3867. height: math.unit(1.5, "meter"),
  3868. weight: math.unit(50, "kg"),
  3869. name: "Front (Alt)",
  3870. image: {
  3871. source: "./media/characters/kurribird/front-alt.svg",
  3872. extra: 1.45
  3873. }
  3874. },
  3875. },
  3876. [
  3877. {
  3878. name: "Normal",
  3879. height: math.unit(7, "feet")
  3880. },
  3881. {
  3882. name: "Big",
  3883. height: math.unit(12, "feet"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(1500, "feet")
  3889. },
  3890. {
  3891. name: "Megamacro",
  3892. height: math.unit(2, "miles")
  3893. }
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(2, "meter"),
  3901. weight: math.unit(80, "kg"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/elbial/front.svg",
  3905. extra: 1643 / 1556,
  3906. bottom: 60.2 / 1696
  3907. }
  3908. },
  3909. side: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(80, "kg"),
  3912. name: "Side",
  3913. image: {
  3914. source: "./media/characters/elbial/side.svg",
  3915. extra: 1601/1528,
  3916. bottom: 97/1698
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(2, "meter"),
  3921. weight: math.unit(80, "kg"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/elbial/back.svg",
  3925. extra: 1653/1569,
  3926. bottom: 20/1673
  3927. }
  3928. },
  3929. frontDressed: {
  3930. height: math.unit(2, "meter"),
  3931. weight: math.unit(80, "kg"),
  3932. name: "Front (Dressed)",
  3933. image: {
  3934. source: "./media/characters/elbial/front-dressed.svg",
  3935. extra: 1638/1569,
  3936. bottom: 70/1708
  3937. }
  3938. },
  3939. genitals: {
  3940. height: math.unit(2 / 3.367, "meter"),
  3941. name: "Genitals",
  3942. image: {
  3943. source: "./media/characters/elbial/genitals.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Large",
  3950. height: math.unit(100, "feet")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(500, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(10, "miles")
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(25000, "miles")
  3964. },
  3965. {
  3966. name: "Full-Size",
  3967. height: math.unit(8000000, "gigaparsecs")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(2, "meter"),
  3976. weight: math.unit(60, "kg"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/noah/front.svg"
  3980. }
  3981. },
  3982. talons: {
  3983. height: math.unit(0.315, "meter"),
  3984. name: "Talons",
  3985. image: {
  3986. source: "./media/characters/noah/talons.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Large",
  3993. height: math.unit(50, "feet")
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(750, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(50, "miles")
  4003. },
  4004. {
  4005. name: "Gigamacro",
  4006. height: math.unit(100000, "miles")
  4007. },
  4008. {
  4009. name: "Full-Size",
  4010. height: math.unit(3000000000, "miles")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(80, "kg"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/natalya/front.svg"
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(80, "kg"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/natalya/back.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(150, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Megamacro",
  4042. height: math.unit(5, "miles")
  4043. },
  4044. {
  4045. name: "Full-Size",
  4046. height: math.unit(600, "kiloparsecs")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(2, "meter"),
  4055. weight: math.unit(50, "kg"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/erestrebah/front.svg",
  4059. extra: 1262/1162,
  4060. bottom: 96/1358
  4061. }
  4062. },
  4063. back: {
  4064. height: math.unit(2, "meter"),
  4065. weight: math.unit(50, "kg"),
  4066. name: "Back",
  4067. image: {
  4068. source: "./media/characters/erestrebah/back.svg",
  4069. extra: 1257/1139,
  4070. bottom: 13/1270
  4071. }
  4072. },
  4073. wing: {
  4074. height: math.unit(2, "meter"),
  4075. weight: math.unit(50, "kg"),
  4076. name: "Wing",
  4077. image: {
  4078. source: "./media/characters/erestrebah/wing.svg",
  4079. extra: 1262/1162,
  4080. bottom: 96/1358
  4081. }
  4082. },
  4083. mouth: {
  4084. height: math.unit(0.39, "feet"),
  4085. name: "Mouth",
  4086. image: {
  4087. source: "./media/characters/erestrebah/mouth.svg"
  4088. }
  4089. }
  4090. },
  4091. [
  4092. {
  4093. name: "Normal",
  4094. height: math.unit(10, "feet")
  4095. },
  4096. {
  4097. name: "Large",
  4098. height: math.unit(50, "feet"),
  4099. default: true
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(300, "feet")
  4104. },
  4105. {
  4106. name: "Macro+",
  4107. height: math.unit(750, "feet")
  4108. },
  4109. {
  4110. name: "Megamacro",
  4111. height: math.unit(3, "miles")
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4117. {
  4118. front: {
  4119. height: math.unit(2, "meter"),
  4120. weight: math.unit(80, "kg"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/jennifer/front.svg",
  4124. bottom: 0.11,
  4125. extra: 1.16
  4126. }
  4127. },
  4128. frontAlt: {
  4129. height: math.unit(2, "meter"),
  4130. weight: math.unit(80, "kg"),
  4131. name: "Front (Alt)",
  4132. image: {
  4133. source: "./media/characters/jennifer/front-alt.svg"
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Canon Height",
  4140. height: math.unit(120, "feet"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Macro+",
  4145. height: math.unit(300, "feet")
  4146. },
  4147. {
  4148. name: "Megamacro",
  4149. height: math.unit(20000, "feet")
  4150. }
  4151. ]
  4152. ))
  4153. characterMakers.push(() => makeCharacter(
  4154. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4155. {
  4156. front: {
  4157. height: math.unit(2, "meter"),
  4158. weight: math.unit(50, "kg"),
  4159. name: "Front",
  4160. image: {
  4161. source: "./media/characters/kalista/front.svg",
  4162. extra: 1314/1145,
  4163. bottom: 101/1415
  4164. }
  4165. },
  4166. back: {
  4167. height: math.unit(2, "meter"),
  4168. weight: math.unit(50, "kg"),
  4169. name: "Back",
  4170. image: {
  4171. source: "./media/characters/kalista/back.svg",
  4172. extra: 1366 / 1156,
  4173. bottom: 33.9 / 1362.78
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Uncomfortably Small",
  4180. height: math.unit(10, "feet")
  4181. },
  4182. {
  4183. name: "Small",
  4184. height: math.unit(30, "feet")
  4185. },
  4186. {
  4187. name: "Macro",
  4188. height: math.unit(100, "feet"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Macro+",
  4193. height: math.unit(2000, "feet")
  4194. },
  4195. {
  4196. name: "True Form",
  4197. height: math.unit(8924, "miles")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(120, "kg"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/ggv/front.svg"
  4210. }
  4211. },
  4212. side: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(120, "kg"),
  4215. name: "Side",
  4216. image: {
  4217. source: "./media/characters/ggv/side.svg"
  4218. }
  4219. }
  4220. },
  4221. [
  4222. {
  4223. name: "Extremely Puny",
  4224. height: math.unit(9 + 5 / 12, "feet")
  4225. },
  4226. {
  4227. name: "Horribly Small",
  4228. height: math.unit(47.7, "miles"),
  4229. default: true
  4230. },
  4231. {
  4232. name: "Reasonably Sized",
  4233. height: math.unit(25000, "parsecs")
  4234. },
  4235. {
  4236. name: "Slightly Uncompressed",
  4237. height: math.unit(7.77e31, "parsecs")
  4238. },
  4239. {
  4240. name: "Omniversal",
  4241. height: math.unit(1e300, "meters")
  4242. },
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4247. {
  4248. front: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(75, "lb"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/napalm/front.svg"
  4254. }
  4255. },
  4256. back: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(75, "lb"),
  4259. name: "Back",
  4260. image: {
  4261. source: "./media/characters/napalm/back.svg"
  4262. }
  4263. }
  4264. },
  4265. [
  4266. {
  4267. name: "Standard",
  4268. height: math.unit(55, "feet"),
  4269. default: true
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(7 + 5 / 6, "feet"),
  4278. weight: math.unit(325, "lb"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/asana/front.svg",
  4282. extra: 1133 / 1060,
  4283. bottom: 15.2 / 1148.6
  4284. }
  4285. },
  4286. back: {
  4287. height: math.unit(7 + 5 / 6, "feet"),
  4288. weight: math.unit(325, "lb"),
  4289. name: "Back",
  4290. image: {
  4291. source: "./media/characters/asana/back.svg",
  4292. extra: 1114 / 1043,
  4293. bottom: 5 / 1120
  4294. }
  4295. },
  4296. dressedDark: {
  4297. height: math.unit(7 + 5 / 6, "feet"),
  4298. weight: math.unit(325, "lb"),
  4299. name: "Dressed (Dark)",
  4300. image: {
  4301. source: "./media/characters/asana/dressed-dark.svg",
  4302. extra: 1133 / 1060,
  4303. bottom: 15.2 / 1148.6
  4304. }
  4305. },
  4306. dressedLight: {
  4307. height: math.unit(7 + 5 / 6, "feet"),
  4308. weight: math.unit(325, "lb"),
  4309. name: "Dressed (Light)",
  4310. image: {
  4311. source: "./media/characters/asana/dressed-light.svg",
  4312. extra: 1133 / 1060,
  4313. bottom: 15.2 / 1148.6
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Standard",
  4320. height: math.unit(7 + 5 / 6, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Large",
  4325. height: math.unit(10, "meters")
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(2500, "meters")
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(5e6, "meters")
  4334. },
  4335. {
  4336. name: "Examacro",
  4337. height: math.unit(5e12, "lightyears")
  4338. },
  4339. {
  4340. name: "Max Size",
  4341. height: math.unit(1e31, "lightyears")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(60, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/ebony/front.svg",
  4354. bottom: 0.03,
  4355. extra: 1045 / 810 + 0.03
  4356. }
  4357. },
  4358. side: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(60, "kg"),
  4361. name: "Side",
  4362. image: {
  4363. source: "./media/characters/ebony/side.svg",
  4364. bottom: 0.03,
  4365. extra: 1045 / 810 + 0.03
  4366. }
  4367. },
  4368. back: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(60, "kg"),
  4371. name: "Back",
  4372. image: {
  4373. source: "./media/characters/ebony/back.svg",
  4374. bottom: 0.01,
  4375. extra: 1045 / 810 + 0.01
  4376. }
  4377. },
  4378. },
  4379. [
  4380. // TODO check why I did this lol
  4381. {
  4382. name: "Standard",
  4383. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(200, "feet")
  4389. },
  4390. {
  4391. name: "Gigamacro",
  4392. height: math.unit(13000, "km")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(175, "lb"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/mountain/front.svg",
  4405. extra: 972 / 955,
  4406. bottom: 64 / 1036.6
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(175, "lb"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/mountain/back.svg",
  4415. extra: 970 / 950,
  4416. bottom: 28.25 / 999
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Large",
  4423. height: math.unit(20, "meters")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(300, "meters")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(10000, "km"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Examacro",
  4436. height: math.unit(10e9, "lightyears")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4442. {
  4443. front: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(500, "lb"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/rick/front.svg"
  4449. }
  4450. }
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(8, "feet"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(5, "km")
  4461. }
  4462. ]
  4463. ))
  4464. characterMakers.push(() => makeCharacter(
  4465. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4466. {
  4467. front: {
  4468. height: math.unit(8, "feet"),
  4469. weight: math.unit(120, "lb"),
  4470. name: "Front",
  4471. image: {
  4472. source: "./media/characters/ona/front.svg"
  4473. }
  4474. },
  4475. frontAlt: {
  4476. height: math.unit(8, "feet"),
  4477. weight: math.unit(120, "lb"),
  4478. name: "Front (Alt)",
  4479. image: {
  4480. source: "./media/characters/ona/front-alt.svg"
  4481. }
  4482. },
  4483. back: {
  4484. height: math.unit(8, "feet"),
  4485. weight: math.unit(120, "lb"),
  4486. name: "Back",
  4487. image: {
  4488. source: "./media/characters/ona/back.svg"
  4489. }
  4490. },
  4491. foot: {
  4492. height: math.unit(1.1, "feet"),
  4493. name: "Foot",
  4494. image: {
  4495. source: "./media/characters/ona/foot.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Megamacro",
  4502. height: math.unit(70, "km"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Gigamacro",
  4507. height: math.unit(681818, "miles")
  4508. },
  4509. {
  4510. name: "Examacro",
  4511. height: math.unit(3800000, "lightyears")
  4512. },
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4517. {
  4518. front: {
  4519. height: math.unit(12, "feet"),
  4520. weight: math.unit(3000, "lb"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/mech/front.svg",
  4524. extra: 2900 / 2770,
  4525. bottom: 110 / 3010
  4526. }
  4527. },
  4528. back: {
  4529. height: math.unit(12, "feet"),
  4530. weight: math.unit(3000, "lb"),
  4531. name: "Back",
  4532. image: {
  4533. source: "./media/characters/mech/back.svg",
  4534. extra: 3011 / 2890,
  4535. bottom: 94 / 3105
  4536. }
  4537. },
  4538. maw: {
  4539. height: math.unit(3.07, "feet"),
  4540. name: "Maw",
  4541. image: {
  4542. source: "./media/characters/mech/maw.svg"
  4543. }
  4544. },
  4545. head: {
  4546. height: math.unit(3.07, "feet"),
  4547. name: "Head",
  4548. image: {
  4549. source: "./media/characters/mech/head.svg"
  4550. }
  4551. },
  4552. dick: {
  4553. height: math.unit(1.43, "feet"),
  4554. name: "Dick",
  4555. image: {
  4556. source: "./media/characters/mech/dick.svg"
  4557. }
  4558. },
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(12, "feet")
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet"),
  4568. default: true
  4569. },
  4570. {
  4571. name: "Macro+",
  4572. height: math.unit(1500, "feet")
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4578. {
  4579. front: {
  4580. height: math.unit(1.3, "meter"),
  4581. weight: math.unit(30, "kg"),
  4582. name: "Front",
  4583. image: {
  4584. source: "./media/characters/gregory/front.svg",
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(1.3, "meter"),
  4592. default: true
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(20, "meter")
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(2.8, "meter"),
  4605. weight: math.unit(200, "kg"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/elory/front.svg",
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(2.8, "meter"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(38, "meter")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(470, "feet"),
  4629. weight: math.unit(924, "tons"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/angelpatamon/front.svg",
  4633. }
  4634. }
  4635. },
  4636. [
  4637. {
  4638. name: "Normal",
  4639. height: math.unit(470, "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Deity Size I",
  4644. height: math.unit(28651.2, "km")
  4645. },
  4646. {
  4647. name: "Deity Size II",
  4648. height: math.unit(171907.2, "km")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4654. {
  4655. side: {
  4656. height: math.unit(7.2, "meter"),
  4657. weight: math.unit(8.2, "tons"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/cryae/side.svg",
  4661. extra: 3500 / 1500
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(7.2, "meter"),
  4669. default: true
  4670. }
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(175, "lb"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/xera/front.svg",
  4682. extra: 2377 / 1972,
  4683. bottom: 75.5 / 2452
  4684. }
  4685. },
  4686. side: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(175, "lb"),
  4689. name: "Side",
  4690. image: {
  4691. source: "./media/characters/xera/side.svg",
  4692. extra: 2345 / 2019,
  4693. bottom: 39.7 / 2384
  4694. }
  4695. },
  4696. back: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(175, "lb"),
  4699. name: "Back",
  4700. image: {
  4701. source: "./media/characters/xera/back.svg",
  4702. extra: 2095 / 1984,
  4703. bottom: 67 / 2166
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Small",
  4710. height: math.unit(10, "feet")
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(500, "meters"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Macro+",
  4719. height: math.unit(10, "km")
  4720. },
  4721. {
  4722. name: "Gigamacro",
  4723. height: math.unit(25000, "km")
  4724. },
  4725. {
  4726. name: "Teramacro",
  4727. height: math.unit(3e6, "km")
  4728. }
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(175, "lb"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/nebula/front.svg",
  4740. extra: 2566 / 2362,
  4741. bottom: 81 / 2644
  4742. }
  4743. }
  4744. },
  4745. [
  4746. {
  4747. name: "Small",
  4748. height: math.unit(4.5, "meters")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(1500, "meters"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Megamacro",
  4757. height: math.unit(150, "km")
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(27000, "km")
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(225, "lb"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/abysgar/front.svg",
  4774. extra: 1739/1614,
  4775. bottom: 71/1810
  4776. }
  4777. },
  4778. frontNsfw: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(225, "lb"),
  4781. name: "Front (NSFW)",
  4782. image: {
  4783. source: "./media/characters/abysgar/front-nsfw.svg",
  4784. extra: 1739/1614,
  4785. bottom: 71/1810
  4786. }
  4787. },
  4788. back: {
  4789. height: math.unit(4.6, "feet"),
  4790. weight: math.unit(225, "lb"),
  4791. name: "Back",
  4792. image: {
  4793. source: "./media/characters/abysgar/back.svg",
  4794. extra: 1384/1327,
  4795. bottom: 0/1384
  4796. }
  4797. },
  4798. head: {
  4799. height: math.unit(1.25, "feet"),
  4800. name: "Head",
  4801. image: {
  4802. source: "./media/characters/abysgar/head.svg",
  4803. extra: 669/569,
  4804. bottom: 0/669
  4805. }
  4806. },
  4807. },
  4808. [
  4809. {
  4810. name: "Small",
  4811. height: math.unit(4.5, "meters")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(1250, "meters"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Megamacro",
  4820. height: math.unit(125, "km")
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(26000, "km")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(180, "lb"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/yakuz/front.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Small",
  4843. height: math.unit(5, "meters")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(1500, "meters"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Megamacro",
  4852. height: math.unit(200, "km")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(100000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mirova/front.svg",
  4869. extra: 3334 / 3071,
  4870. bottom: 42 / 3375.6
  4871. }
  4872. }
  4873. },
  4874. [
  4875. {
  4876. name: "Small",
  4877. height: math.unit(5, "meters")
  4878. },
  4879. {
  4880. name: "Macro",
  4881. height: math.unit(900, "meters"),
  4882. default: true
  4883. },
  4884. {
  4885. name: "Megamacro",
  4886. height: math.unit(135, "km")
  4887. },
  4888. {
  4889. name: "Gigamacro",
  4890. height: math.unit(20000, "km")
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4896. {
  4897. side: {
  4898. height: math.unit(28.35, "feet"),
  4899. weight: math.unit(99.75, "tons"),
  4900. name: "Side",
  4901. image: {
  4902. source: "./media/characters/asana-mech/side.svg",
  4903. extra: 923 / 699,
  4904. bottom: 50 / 975
  4905. }
  4906. },
  4907. chaingun: {
  4908. height: math.unit(7, "feet"),
  4909. weight: math.unit(2400, "lb"),
  4910. name: "Chaingun",
  4911. image: {
  4912. source: "./media/characters/asana-mech/chaingun.svg"
  4913. }
  4914. },
  4915. laser: {
  4916. height: math.unit(7.12, "feet"),
  4917. weight: math.unit(2000, "lb"),
  4918. name: "Laser",
  4919. image: {
  4920. source: "./media/characters/asana-mech/laser.svg"
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(28.35, "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(2500, "feet")
  4933. },
  4934. {
  4935. name: "Megamacro",
  4936. height: math.unit(25, "miles")
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(6e8, "lightyears")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(5, "meters"),
  4949. weight: math.unit(1000, "kg"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/asche/front.svg",
  4953. extra: 1258 / 1190,
  4954. bottom: 47 / 1305
  4955. }
  4956. },
  4957. frontUnderwear: {
  4958. height: math.unit(5, "meters"),
  4959. weight: math.unit(1000, "kg"),
  4960. name: "Front (Underwear)",
  4961. image: {
  4962. source: "./media/characters/asche/front-underwear.svg",
  4963. extra: 1258 / 1190,
  4964. bottom: 47 / 1305
  4965. }
  4966. },
  4967. frontDressed: {
  4968. height: math.unit(5, "meters"),
  4969. weight: math.unit(1000, "kg"),
  4970. name: "Front (Dressed)",
  4971. image: {
  4972. source: "./media/characters/asche/front-dressed.svg",
  4973. extra: 1258 / 1190,
  4974. bottom: 47 / 1305
  4975. }
  4976. },
  4977. frontArmor: {
  4978. height: math.unit(5, "meters"),
  4979. weight: math.unit(1000, "kg"),
  4980. name: "Front (Armored)",
  4981. image: {
  4982. source: "./media/characters/asche/front-armored.svg",
  4983. extra: 1374 / 1308,
  4984. bottom: 23 / 1397
  4985. }
  4986. },
  4987. mp724: {
  4988. height: math.unit(0.96, "meters"),
  4989. weight: math.unit(38, "kg"),
  4990. name: "H&K MP724",
  4991. image: {
  4992. source: "./media/characters/asche/h&k-mp724.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(5, "meters"),
  4997. weight: math.unit(1000, "kg"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/asche/side.svg",
  5001. extra: 1717 / 1609,
  5002. bottom: 0.005
  5003. }
  5004. },
  5005. back: {
  5006. height: math.unit(5, "meters"),
  5007. weight: math.unit(1000, "kg"),
  5008. name: "Back",
  5009. image: {
  5010. source: "./media/characters/asche/back.svg",
  5011. extra: 1570 / 1501
  5012. }
  5013. },
  5014. },
  5015. [
  5016. {
  5017. name: "DEFCON 5",
  5018. height: math.unit(5, "meters")
  5019. },
  5020. {
  5021. name: "DEFCON 4",
  5022. height: math.unit(500, "meters"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "DEFCON 3",
  5027. height: math.unit(5, "km")
  5028. },
  5029. {
  5030. name: "DEFCON 2",
  5031. height: math.unit(500, "km")
  5032. },
  5033. {
  5034. name: "DEFCON 1",
  5035. height: math.unit(500000, "km")
  5036. },
  5037. {
  5038. name: "DEFCON 0",
  5039. height: math.unit(3, "gigaparsecs")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(2, "meters"),
  5048. weight: math.unit(76, "kg"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/gale/front.svg"
  5052. }
  5053. },
  5054. frontAlt1: {
  5055. height: math.unit(2, "meters"),
  5056. weight: math.unit(76, "kg"),
  5057. name: "Front (Alt 1)",
  5058. image: {
  5059. source: "./media/characters/gale/front-alt-1.svg"
  5060. }
  5061. },
  5062. frontAlt2: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(76, "kg"),
  5065. name: "Front (Alt 2)",
  5066. image: {
  5067. source: "./media/characters/gale/front-alt-2.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(7, "feet")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(150, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro+",
  5083. height: math.unit(300, "feet")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(5 + 10/12, "feet"),
  5092. weight: math.unit(67, "kg"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/draylen/front.svg",
  5096. extra: 832/777,
  5097. bottom: 85/917
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Normal",
  5104. height: math.unit(5 + 10/12, "feet")
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(150, "feet"),
  5109. default: true
  5110. }
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5115. {
  5116. front: {
  5117. height: math.unit(7 + 9 / 12, "feet"),
  5118. weight: math.unit(379, "lbs"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/chez/front.svg"
  5122. }
  5123. },
  5124. side: {
  5125. height: math.unit(7 + 9 / 12, "feet"),
  5126. weight: math.unit(379, "lbs"),
  5127. name: "Side",
  5128. image: {
  5129. source: "./media/characters/chez/side.svg"
  5130. }
  5131. }
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(7 + 9 / 12, "feet"),
  5137. default: true
  5138. },
  5139. {
  5140. name: "God King",
  5141. height: math.unit(9750000, "meters")
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(275, "lbs"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/kaylum/front.svg",
  5154. bottom: 0.01,
  5155. extra: 1166 / 1031
  5156. }
  5157. },
  5158. frontWingless: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(275, "lbs"),
  5161. name: "Front (Wingless)",
  5162. image: {
  5163. source: "./media/characters/kaylum/front-wingless.svg",
  5164. bottom: 0.01,
  5165. extra: 1117 / 1031
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(3.05, "meters")
  5173. },
  5174. {
  5175. name: "Master",
  5176. height: math.unit(5.5, "meters")
  5177. },
  5178. {
  5179. name: "Rampage",
  5180. height: math.unit(19, "meters")
  5181. },
  5182. {
  5183. name: "Macro Lite",
  5184. height: math.unit(37, "meters")
  5185. },
  5186. {
  5187. name: "Hyper Predator",
  5188. height: math.unit(61, "meters")
  5189. },
  5190. {
  5191. name: "Macro",
  5192. height: math.unit(138, "meters"),
  5193. default: true
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(5 + 5 / 12, "feet"),
  5202. weight: math.unit(120, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/geta/front.svg",
  5206. extra: 1003/933,
  5207. bottom: 21/1024
  5208. }
  5209. },
  5210. paw: {
  5211. height: math.unit(0.35, "feet"),
  5212. name: "Paw",
  5213. image: {
  5214. source: "./media/characters/geta/paw.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Micro",
  5221. height: math.unit(3, "inches"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(5 + 5 / 12, "feet")
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(300, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/tyrnn/front.svg"
  5239. }
  5240. }
  5241. },
  5242. [
  5243. {
  5244. name: "Main Height",
  5245. height: math.unit(355, "feet"),
  5246. default: true
  5247. },
  5248. {
  5249. name: "Fave. Height",
  5250. height: math.unit(2400, "feet")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(300, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/appledectomy/front.svg"
  5263. }
  5264. }
  5265. },
  5266. [
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(2500, "feet")
  5270. },
  5271. {
  5272. name: "Megamacro",
  5273. height: math.unit(50, "miles"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Gigamacro",
  5278. height: math.unit(5000, "miles")
  5279. },
  5280. {
  5281. name: "Teramacro",
  5282. height: math.unit(250000, "miles")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(200, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/vulpes/front.svg",
  5295. extra: 573 / 543,
  5296. bottom: 0.033
  5297. }
  5298. },
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(200, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/vulpes/side.svg",
  5305. extra: 577 / 549,
  5306. bottom: 11 / 588
  5307. }
  5308. },
  5309. back: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(200, "lbs"),
  5312. name: "Back",
  5313. image: {
  5314. source: "./media/characters/vulpes/back.svg",
  5315. extra: 573 / 549,
  5316. bottom: 20 / 593
  5317. }
  5318. },
  5319. feet: {
  5320. height: math.unit(1.276, "feet"),
  5321. name: "Feet",
  5322. image: {
  5323. source: "./media/characters/vulpes/feet.svg"
  5324. }
  5325. },
  5326. maw: {
  5327. height: math.unit(1.18, "feet"),
  5328. name: "Maw",
  5329. image: {
  5330. source: "./media/characters/vulpes/maw.svg"
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Micro",
  5337. height: math.unit(2, "inches")
  5338. },
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(6.3, "feet")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(850, "feet")
  5346. },
  5347. {
  5348. name: "Megamacro",
  5349. height: math.unit(7500, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(570000, "miles")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(210, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/rain-fallen/front.svg"
  5367. }
  5368. },
  5369. side: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(210, "lbs"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/rain-fallen/side.svg"
  5375. }
  5376. },
  5377. back: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(210, "lbs"),
  5380. name: "Back",
  5381. image: {
  5382. source: "./media/characters/rain-fallen/back.svg"
  5383. }
  5384. },
  5385. feral: {
  5386. height: math.unit(9, "feet"),
  5387. weight: math.unit(700, "lbs"),
  5388. name: "Feral",
  5389. image: {
  5390. source: "./media/characters/rain-fallen/feral.svg"
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Meddling with Mortals",
  5397. height: math.unit(8 + 8/12, "feet")
  5398. },
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(5, "meter")
  5402. },
  5403. {
  5404. name: "Macro",
  5405. height: math.unit(150, "meter"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Megamacro",
  5410. height: math.unit(278e6, "meter")
  5411. },
  5412. {
  5413. name: "Gigamacro",
  5414. height: math.unit(2e9, "meter")
  5415. },
  5416. {
  5417. name: "Teramacro",
  5418. height: math.unit(8e12, "meter")
  5419. },
  5420. {
  5421. name: "Devourer",
  5422. height: math.unit(14, "zettameters")
  5423. },
  5424. {
  5425. name: "Scarlet King",
  5426. height: math.unit(18, "yottameters")
  5427. },
  5428. {
  5429. name: "Void",
  5430. height: math.unit(1e88, "yottameters")
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5436. {
  5437. standing: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(180, "lbs"),
  5440. name: "Standing",
  5441. image: {
  5442. source: "./media/characters/zaakira/standing.svg",
  5443. extra: 1599/1504,
  5444. bottom: 39/1638
  5445. }
  5446. },
  5447. laying: {
  5448. height: math.unit(3.3, "feet"),
  5449. weight: math.unit(180, "lbs"),
  5450. name: "Laying",
  5451. image: {
  5452. source: "./media/characters/zaakira/laying.svg"
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(12, "feet")
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(279, "feet"),
  5464. default: true
  5465. }
  5466. ]
  5467. ))
  5468. characterMakers.push(() => makeCharacter(
  5469. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5470. {
  5471. femSfw: {
  5472. height: math.unit(8, "feet"),
  5473. weight: math.unit(350, "lb"),
  5474. name: "Fem",
  5475. image: {
  5476. source: "./media/characters/sigvald/fem-sfw.svg",
  5477. extra: 182 / 164,
  5478. bottom: 8.7 / 190.5
  5479. }
  5480. },
  5481. femNsfw: {
  5482. height: math.unit(8, "feet"),
  5483. weight: math.unit(350, "lb"),
  5484. name: "Fem (NSFW)",
  5485. image: {
  5486. source: "./media/characters/sigvald/fem-nsfw.svg",
  5487. extra: 182 / 164,
  5488. bottom: 8.7 / 190.5
  5489. }
  5490. },
  5491. maleNsfw: {
  5492. height: math.unit(8, "feet"),
  5493. weight: math.unit(350, "lb"),
  5494. name: "Male (NSFW)",
  5495. image: {
  5496. source: "./media/characters/sigvald/male-nsfw.svg",
  5497. extra: 182 / 164,
  5498. bottom: 8.7 / 190.5
  5499. }
  5500. },
  5501. hermNsfw: {
  5502. height: math.unit(8, "feet"),
  5503. weight: math.unit(350, "lb"),
  5504. name: "Herm (NSFW)",
  5505. image: {
  5506. source: "./media/characters/sigvald/herm-nsfw.svg",
  5507. extra: 182 / 164,
  5508. bottom: 8.7 / 190.5
  5509. }
  5510. },
  5511. dick: {
  5512. height: math.unit(2.36, "feet"),
  5513. name: "Dick",
  5514. image: {
  5515. source: "./media/characters/sigvald/dick.svg"
  5516. }
  5517. },
  5518. eye: {
  5519. height: math.unit(0.31, "feet"),
  5520. name: "Eye",
  5521. image: {
  5522. source: "./media/characters/sigvald/eye.svg"
  5523. }
  5524. },
  5525. mouth: {
  5526. height: math.unit(0.92, "feet"),
  5527. name: "Mouth",
  5528. image: {
  5529. source: "./media/characters/sigvald/mouth.svg"
  5530. }
  5531. },
  5532. paws: {
  5533. height: math.unit(2.2, "feet"),
  5534. name: "Paws",
  5535. image: {
  5536. source: "./media/characters/sigvald/paws.svg"
  5537. }
  5538. }
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(8, "feet")
  5544. },
  5545. {
  5546. name: "Large",
  5547. height: math.unit(12, "feet")
  5548. },
  5549. {
  5550. name: "Larger",
  5551. height: math.unit(20, "feet")
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(150, "feet")
  5556. },
  5557. {
  5558. name: "Macro+",
  5559. height: math.unit(200, "feet"),
  5560. default: true
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5566. {
  5567. side: {
  5568. height: math.unit(12, "feet"),
  5569. weight: math.unit(2000, "kg"),
  5570. name: "Side",
  5571. image: {
  5572. source: "./media/characters/scott/side.svg",
  5573. extra: 754 / 724,
  5574. bottom: 0.069
  5575. }
  5576. },
  5577. upright: {
  5578. height: math.unit(12, "feet"),
  5579. weight: math.unit(2000, "kg"),
  5580. name: "Upright",
  5581. image: {
  5582. source: "./media/characters/scott/upright.svg",
  5583. extra: 3881 / 3722,
  5584. bottom: 0.05
  5585. }
  5586. },
  5587. },
  5588. [
  5589. {
  5590. name: "Normal",
  5591. height: math.unit(12, "feet"),
  5592. default: true
  5593. },
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5598. {
  5599. side: {
  5600. height: math.unit(8, "meters"),
  5601. weight: math.unit(84755, "lbs"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/tobias/side.svg",
  5605. extra: 1474 / 1096,
  5606. bottom: 38.9 / 1513.1235
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(8, "meters"),
  5614. default: true
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5620. {
  5621. front: {
  5622. height: math.unit(5.5, "feet"),
  5623. weight: math.unit(400, "lbs"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/kieran/front.svg",
  5627. extra: 2694 / 2364,
  5628. bottom: 217 / 2908
  5629. }
  5630. },
  5631. side: {
  5632. height: math.unit(5.5, "feet"),
  5633. weight: math.unit(400, "lbs"),
  5634. name: "Side",
  5635. image: {
  5636. source: "./media/characters/kieran/side.svg",
  5637. extra: 875 / 777,
  5638. bottom: 84.6 / 959
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(5.5, "feet"),
  5646. default: true
  5647. },
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5652. {
  5653. side: {
  5654. height: math.unit(2, "meters"),
  5655. weight: math.unit(70, "kg"),
  5656. name: "Side",
  5657. image: {
  5658. source: "./media/characters/sanya/side.svg",
  5659. bottom: 0.02,
  5660. extra: 1.02
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Small",
  5667. height: math.unit(2, "meters")
  5668. },
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(3, "meters")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(16, "meters"),
  5676. default: true
  5677. },
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(2, "meters"),
  5685. weight: math.unit(120, "kg"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/miranda/front.svg",
  5689. extra: 195 / 185,
  5690. bottom: 10.9 / 206.5
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(2, "meters"),
  5695. weight: math.unit(120, "kg"),
  5696. name: "Back",
  5697. image: {
  5698. source: "./media/characters/miranda/back.svg",
  5699. extra: 201 / 193,
  5700. bottom: 2.3 / 203.7
  5701. }
  5702. },
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(10, "feet"),
  5708. default: true
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "James", species: ["deer"], tags: ["anthro"] },
  5714. {
  5715. side: {
  5716. height: math.unit(2, "meters"),
  5717. weight: math.unit(100, "kg"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/james/front.svg",
  5721. extra: 10 / 8.5
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(8.5, "feet"),
  5729. default: true
  5730. }
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5735. {
  5736. side: {
  5737. height: math.unit(9.5, "feet"),
  5738. weight: math.unit(2500, "lbs"),
  5739. name: "Side",
  5740. image: {
  5741. source: "./media/characters/heather/side.svg"
  5742. }
  5743. },
  5744. },
  5745. [
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(9.5, "feet"),
  5749. default: true
  5750. }
  5751. ]
  5752. ))
  5753. characterMakers.push(() => makeCharacter(
  5754. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5755. {
  5756. side: {
  5757. height: math.unit(6.5, "feet"),
  5758. weight: math.unit(400, "lbs"),
  5759. name: "Side",
  5760. image: {
  5761. source: "./media/characters/lukas/side.svg",
  5762. extra: 7.25 / 6.5
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(6.5, "feet"),
  5770. default: true
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5776. {
  5777. side: {
  5778. height: math.unit(5, "feet"),
  5779. weight: math.unit(3000, "lbs"),
  5780. name: "Side",
  5781. image: {
  5782. source: "./media/characters/louise/side.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5, "feet"),
  5790. default: true
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5796. {
  5797. side: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(150, "lbs"),
  5800. name: "Side",
  5801. image: {
  5802. source: "./media/characters/ramona/side.svg",
  5803. extra: 871/854,
  5804. bottom: 41/912
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Normal",
  5811. height: math.unit(6 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Minimacro",
  5815. height: math.unit(5.3, "meters"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(20, "stories")
  5821. },
  5822. {
  5823. name: "Macro+",
  5824. height: math.unit(50, "stories")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5830. {
  5831. standing: {
  5832. height: math.unit(5.75, "feet"),
  5833. weight: math.unit(160, "lbs"),
  5834. name: "Standing",
  5835. image: {
  5836. source: "./media/characters/deerpuff/standing.svg",
  5837. extra: 682 / 624
  5838. }
  5839. },
  5840. sitting: {
  5841. height: math.unit(5.75 / 1.79, "feet"),
  5842. weight: math.unit(160, "lbs"),
  5843. name: "Sitting",
  5844. image: {
  5845. source: "./media/characters/deerpuff/sitting.svg",
  5846. bottom: 44 / 400,
  5847. extra: 1
  5848. }
  5849. },
  5850. taurLaying: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(400, "lbs"),
  5853. name: "Taur (Laying)",
  5854. image: {
  5855. source: "./media/characters/deerpuff/taur-laying.svg"
  5856. }
  5857. },
  5858. },
  5859. [
  5860. {
  5861. name: "Puffball",
  5862. height: math.unit(6, "inches")
  5863. },
  5864. {
  5865. name: "Normalpuff",
  5866. height: math.unit(5.75, "feet")
  5867. },
  5868. {
  5869. name: "Macropuff",
  5870. height: math.unit(1500, "feet"),
  5871. default: true
  5872. },
  5873. {
  5874. name: "Megapuff",
  5875. height: math.unit(500, "miles")
  5876. },
  5877. {
  5878. name: "Gigapuff",
  5879. height: math.unit(250000, "miles")
  5880. },
  5881. {
  5882. name: "Omegapuff",
  5883. height: math.unit(1000, "lightyears")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5889. {
  5890. stomping: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(170, "lbs"),
  5893. name: "Stomping",
  5894. image: {
  5895. source: "./media/characters/vivian/stomping.svg"
  5896. }
  5897. },
  5898. sitting: {
  5899. height: math.unit(6 / 1.75, "feet"),
  5900. weight: math.unit(170, "lbs"),
  5901. name: "Sitting",
  5902. image: {
  5903. source: "./media/characters/vivian/sitting.svg",
  5904. bottom: 1 / 6.4,
  5905. extra: 1,
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(7, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(10, "stories")
  5918. },
  5919. {
  5920. name: "Macro+",
  5921. height: math.unit(30, "stories")
  5922. },
  5923. {
  5924. name: "Megamacro",
  5925. height: math.unit(10, "miles")
  5926. },
  5927. {
  5928. name: "Megamacro+",
  5929. height: math.unit(2750000, "meters")
  5930. },
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5935. {
  5936. front: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(160, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/prince/front.svg",
  5942. extra: 3400 / 3000
  5943. }
  5944. },
  5945. jumping: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(160, "lbs"),
  5948. name: "Jumping",
  5949. image: {
  5950. source: "./media/characters/prince/jump.svg",
  5951. extra: 2555 / 2134
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(7.75, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Not cute",
  5963. height: math.unit(17, "feet")
  5964. },
  5965. {
  5966. name: "I said NOT",
  5967. height: math.unit(91, "feet")
  5968. },
  5969. {
  5970. name: "Please stop",
  5971. height: math.unit(560, "feet")
  5972. },
  5973. {
  5974. name: "What have you done",
  5975. height: math.unit(2200, "feet")
  5976. },
  5977. {
  5978. name: "Deer God",
  5979. height: math.unit(3.6, "miles")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5985. {
  5986. standing: {
  5987. height: math.unit(6, "feet"),
  5988. weight: math.unit(300, "lbs"),
  5989. name: "Standing",
  5990. image: {
  5991. source: "./media/characters/psymon/standing.svg",
  5992. extra: 1888 / 1810,
  5993. bottom: 0.05
  5994. }
  5995. },
  5996. slithering: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(300, "lbs"),
  5999. name: "Slithering",
  6000. image: {
  6001. source: "./media/characters/psymon/slithering.svg",
  6002. extra: 1330 / 1224
  6003. }
  6004. },
  6005. slitheringAlt: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(300, "lbs"),
  6008. name: "Slithering (Alt)",
  6009. image: {
  6010. source: "./media/characters/psymon/slithering-alt.svg",
  6011. extra: 1330 / 1224
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(11.25, "feet"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Large",
  6023. height: math.unit(27, "feet")
  6024. },
  6025. {
  6026. name: "Giant",
  6027. height: math.unit(87, "feet")
  6028. },
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(365, "feet")
  6032. },
  6033. {
  6034. name: "Megamacro",
  6035. height: math.unit(3, "miles")
  6036. },
  6037. {
  6038. name: "World Serpent",
  6039. height: math.unit(8000, "miles")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/daimos/front.svg",
  6052. extra: 4160 / 3897,
  6053. bottom: 0.021
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Normal",
  6060. height: math.unit(8, "feet"),
  6061. default: true
  6062. },
  6063. {
  6064. name: "Big Dog",
  6065. height: math.unit(22, "feet")
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(127, "feet")
  6070. },
  6071. {
  6072. name: "Megamacro",
  6073. height: math.unit(3600, "feet")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6079. {
  6080. side: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(180, "lbs"),
  6083. name: "Side",
  6084. image: {
  6085. source: "./media/characters/blake/side.svg",
  6086. extra: 1212 / 1120,
  6087. bottom: 0.05
  6088. }
  6089. },
  6090. crouched: {
  6091. height: math.unit(6 * 0.57, "feet"),
  6092. weight: math.unit(180, "lbs"),
  6093. name: "Crouched",
  6094. image: {
  6095. source: "./media/characters/blake/crouched.svg",
  6096. extra: 840 / 587,
  6097. bottom: 0.04
  6098. }
  6099. },
  6100. bent: {
  6101. height: math.unit(6 * 0.75, "feet"),
  6102. weight: math.unit(180, "lbs"),
  6103. name: "Bent",
  6104. image: {
  6105. source: "./media/characters/blake/bent.svg",
  6106. extra: 592 / 544,
  6107. bottom: 0.035
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(8 + 1 / 6, "feet"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Big Backside",
  6119. height: math.unit(37, "feet")
  6120. },
  6121. {
  6122. name: "Subway Shredder",
  6123. height: math.unit(72, "feet")
  6124. },
  6125. {
  6126. name: "City Carver",
  6127. height: math.unit(1675, "feet")
  6128. },
  6129. {
  6130. name: "Tectonic Tweaker",
  6131. height: math.unit(2300, "miles")
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(6, "feet"),
  6140. weight: math.unit(180, "lbs"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/guisetto/front.svg",
  6144. extra: 856 / 817,
  6145. bottom: 0.06
  6146. }
  6147. },
  6148. airborne: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(180, "lbs"),
  6151. name: "Airborne",
  6152. image: {
  6153. source: "./media/characters/guisetto/airborne.svg",
  6154. extra: 584 / 525
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(10 + 11 / 12, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Large",
  6166. height: math.unit(35, "feet")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(475, "feet")
  6171. },
  6172. ]
  6173. ))
  6174. characterMakers.push(() => makeCharacter(
  6175. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6176. {
  6177. front: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(180, "lbs"),
  6180. name: "Front",
  6181. image: {
  6182. source: "./media/characters/luxor/front.svg",
  6183. extra: 2940 / 2152
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(180, "lbs"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/luxor/back.svg",
  6192. extra: 1083 / 960
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(5 + 5 / 6, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Lamp",
  6204. height: math.unit(50, "feet")
  6205. },
  6206. {
  6207. name: "Lämp",
  6208. height: math.unit(300, "feet")
  6209. },
  6210. {
  6211. name: "The sun is a lamp",
  6212. height: math.unit(250000, "miles")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6218. {
  6219. front: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(50, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/huoyan/front.svg"
  6225. }
  6226. },
  6227. side: {
  6228. height: math.unit(6, "feet"),
  6229. weight: math.unit(180, "lbs"),
  6230. name: "Side",
  6231. image: {
  6232. source: "./media/characters/huoyan/side.svg"
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Chef",
  6239. height: math.unit(9, "feet")
  6240. },
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(65, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(780, "feet")
  6249. },
  6250. {
  6251. name: "Flaming Mountain",
  6252. height: math.unit(4.8, "miles")
  6253. },
  6254. {
  6255. name: "Celestial",
  6256. height: math.unit(765000, "miles")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(5 + 3 / 4, "feet"),
  6265. weight: math.unit(120, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/tails/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(5 + 3 / 4, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(4, "feet"),
  6285. weight: math.unit(50, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/rainy/front.svg"
  6289. }
  6290. }
  6291. },
  6292. [
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(800, "feet"),
  6296. default: true
  6297. }
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(150, "lbs"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/rainier/front.svg"
  6309. }
  6310. }
  6311. },
  6312. [
  6313. {
  6314. name: "Micro",
  6315. height: math.unit(2, "mm"),
  6316. default: true
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6322. {
  6323. front: {
  6324. height: math.unit(8 + 4/12, "feet"),
  6325. weight: math.unit(450, "kilograms"),
  6326. volume: math.unit(5, "cups"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/andy-renard/front.svg",
  6330. extra: 1839/1726,
  6331. bottom: 134/1973
  6332. }
  6333. },
  6334. back: {
  6335. height: math.unit(8 + 4/12, "feet"),
  6336. weight: math.unit(450, "kilograms"),
  6337. volume: math.unit(5, "cups"),
  6338. name: "Back",
  6339. image: {
  6340. source: "./media/characters/andy-renard/back.svg",
  6341. extra: 1838/1710,
  6342. bottom: 105/1943
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Tall",
  6349. height: math.unit(8 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Mini Macro",
  6353. height: math.unit(15, "feet"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(100, "feet")
  6359. },
  6360. {
  6361. name: "Mega Macro",
  6362. height: math.unit(1000, "feet")
  6363. },
  6364. {
  6365. name: "Giga Macro",
  6366. height: math.unit(10, "miles")
  6367. },
  6368. {
  6369. name: "God Macro",
  6370. height: math.unit(1, "multiverse")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6376. {
  6377. front: {
  6378. height: math.unit(6, "feet"),
  6379. weight: math.unit(210, "lbs"),
  6380. name: "Front",
  6381. image: {
  6382. source: "./media/characters/cimmaron/front-sfw.svg",
  6383. extra: 701 / 676,
  6384. bottom: 0.046
  6385. }
  6386. },
  6387. back: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(210, "lbs"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/cimmaron/back-sfw.svg",
  6393. extra: 701 / 676,
  6394. bottom: 0.046
  6395. }
  6396. },
  6397. frontNsfw: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(210, "lbs"),
  6400. name: "Front (NSFW)",
  6401. image: {
  6402. source: "./media/characters/cimmaron/front-nsfw.svg",
  6403. extra: 701 / 676,
  6404. bottom: 0.046
  6405. }
  6406. },
  6407. backNsfw: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(210, "lbs"),
  6410. name: "Back (NSFW)",
  6411. image: {
  6412. source: "./media/characters/cimmaron/back-nsfw.svg",
  6413. extra: 701 / 676,
  6414. bottom: 0.046
  6415. }
  6416. },
  6417. dick: {
  6418. height: math.unit(1.714, "feet"),
  6419. name: "Dick",
  6420. image: {
  6421. source: "./media/characters/cimmaron/dick.svg"
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(6, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Macro Mayor",
  6433. height: math.unit(350, "meters")
  6434. },
  6435. ]
  6436. ))
  6437. characterMakers.push(() => makeCharacter(
  6438. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6439. {
  6440. front: {
  6441. height: math.unit(6, "feet"),
  6442. weight: math.unit(200, "lbs"),
  6443. name: "Front",
  6444. image: {
  6445. source: "./media/characters/akari/front.svg",
  6446. extra: 962 / 901,
  6447. bottom: 0.04
  6448. }
  6449. }
  6450. },
  6451. [
  6452. {
  6453. name: "Micro",
  6454. height: math.unit(5, "inches"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(7, "feet")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(140, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/cynosura/front.svg",
  6472. extra: 896 / 847
  6473. }
  6474. },
  6475. back: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(140, "lbs"),
  6478. name: "Back",
  6479. image: {
  6480. source: "./media/characters/cynosura/back.svg",
  6481. extra: 1365 / 1250
  6482. }
  6483. },
  6484. },
  6485. [
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(4, "inches")
  6489. },
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(5.75, "feet"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Tall",
  6497. height: math.unit(10, "feet")
  6498. },
  6499. {
  6500. name: "Big",
  6501. height: math.unit(20, "feet")
  6502. },
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(50, "feet")
  6506. },
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(13 + 2/12, "feet"),
  6514. weight: math.unit(800, "kg"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/gin/front.svg",
  6518. extra: 1312/1191,
  6519. bottom: 45/1357
  6520. }
  6521. },
  6522. mouth: {
  6523. height: math.unit(2.39 * 1.8, "feet"),
  6524. name: "Mouth",
  6525. image: {
  6526. source: "./media/characters/gin/mouth.svg"
  6527. }
  6528. },
  6529. hand: {
  6530. height: math.unit(1.57 * 2.19, "feet"),
  6531. name: "Hand",
  6532. image: {
  6533. source: "./media/characters/gin/hand.svg"
  6534. }
  6535. },
  6536. foot: {
  6537. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6538. name: "Foot",
  6539. image: {
  6540. source: "./media/characters/gin/foot.svg"
  6541. }
  6542. },
  6543. sole: {
  6544. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6545. name: "Sole",
  6546. image: {
  6547. source: "./media/characters/gin/sole.svg"
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Very Small",
  6554. height: math.unit(13 + 2 / 12, "feet")
  6555. },
  6556. {
  6557. name: "Micro",
  6558. height: math.unit(600, "miles")
  6559. },
  6560. {
  6561. name: "Regular",
  6562. height: math.unit(20, "earths"),
  6563. default: true
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(2.2, "solarradii")
  6568. },
  6569. {
  6570. name: "Teramacro",
  6571. height: math.unit(1.2, "galaxies")
  6572. },
  6573. {
  6574. name: "Omegamacro",
  6575. height: math.unit(200, "universes")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6 + 1 / 6, "feet"),
  6584. weight: math.unit(178, "lbs"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/guy/front.svg"
  6588. }
  6589. }
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(6 + 1 / 6, "feet"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Large",
  6599. height: math.unit(25 + 7 / 12, "feet")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(60 + 9 / 12, "feet")
  6604. },
  6605. {
  6606. name: "Macro+",
  6607. height: math.unit(246, "feet")
  6608. },
  6609. {
  6610. name: "Macro++",
  6611. height: math.unit(878, "feet")
  6612. }
  6613. ]
  6614. ))
  6615. characterMakers.push(() => makeCharacter(
  6616. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6617. {
  6618. front: {
  6619. height: math.unit(9, "feet"),
  6620. weight: math.unit(800, "lbs"),
  6621. name: "Front",
  6622. image: {
  6623. source: "./media/characters/tiberius/front.svg",
  6624. extra: 2295 / 2071
  6625. }
  6626. },
  6627. back: {
  6628. height: math.unit(9, "feet"),
  6629. weight: math.unit(800, "lbs"),
  6630. name: "Back",
  6631. image: {
  6632. source: "./media/characters/tiberius/back.svg",
  6633. extra: 2373 / 2160
  6634. }
  6635. },
  6636. },
  6637. [
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(9, "feet"),
  6641. default: true
  6642. }
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6647. {
  6648. front: {
  6649. height: math.unit(6, "feet"),
  6650. weight: math.unit(600, "lbs"),
  6651. name: "Front",
  6652. image: {
  6653. source: "./media/characters/surgo/front.svg",
  6654. extra: 3591 / 2227
  6655. }
  6656. },
  6657. back: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(600, "lbs"),
  6660. name: "Back",
  6661. image: {
  6662. source: "./media/characters/surgo/back.svg",
  6663. extra: 3557 / 2228
  6664. }
  6665. },
  6666. laying: {
  6667. height: math.unit(6 * 0.85, "feet"),
  6668. weight: math.unit(600, "lbs"),
  6669. name: "Laying",
  6670. image: {
  6671. source: "./media/characters/surgo/laying.svg"
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(6, "feet"),
  6679. default: true
  6680. }
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6685. {
  6686. side: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(150, "lbs"),
  6689. name: "Side",
  6690. image: {
  6691. source: "./media/characters/cibus/side.svg",
  6692. extra: 800 / 400
  6693. }
  6694. },
  6695. },
  6696. [
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(6, "feet"),
  6700. default: true
  6701. }
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(240, "lbs"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/nibbles/front.svg"
  6713. }
  6714. },
  6715. side: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(240, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/nibbles/side.svg"
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(9, "feet"),
  6728. default: true
  6729. }
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6734. {
  6735. side: {
  6736. height: math.unit(5 + 1 / 6, "feet"),
  6737. weight: math.unit(130, "lbs"),
  6738. name: "Side",
  6739. image: {
  6740. source: "./media/characters/rikky/side.svg",
  6741. extra: 851 / 801
  6742. }
  6743. },
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(5 + 1 / 6, "feet")
  6749. },
  6750. {
  6751. name: "Macro",
  6752. height: math.unit(152, "feet"),
  6753. default: true
  6754. },
  6755. {
  6756. name: "Megamacro",
  6757. height: math.unit(7, "miles")
  6758. }
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6763. {
  6764. side: {
  6765. height: math.unit(370, "cm"),
  6766. weight: math.unit(350, "lbs"),
  6767. name: "Side",
  6768. image: {
  6769. source: "./media/characters/malfressa/side.svg"
  6770. }
  6771. },
  6772. walking: {
  6773. height: math.unit(370, "cm"),
  6774. weight: math.unit(350, "lbs"),
  6775. name: "Walking",
  6776. image: {
  6777. source: "./media/characters/malfressa/walking.svg"
  6778. }
  6779. },
  6780. feral: {
  6781. height: math.unit(2500, "cm"),
  6782. weight: math.unit(100000, "lbs"),
  6783. name: "Feral",
  6784. image: {
  6785. source: "./media/characters/malfressa/feral.svg",
  6786. extra: 2108 / 837,
  6787. bottom: 0.02
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(370, "cm")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(300, "meters"),
  6799. default: true
  6800. }
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(60, "kg"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/jaro/front.svg",
  6812. extra: 845/817,
  6813. bottom: 45/890
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(60, "kg"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/jaro/back.svg",
  6822. extra: 847/817,
  6823. bottom: 34/881
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Micro",
  6830. height: math.unit(7, "inches")
  6831. },
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5.5, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Minimacro",
  6839. height: math.unit(20, "feet")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(200, "meters")
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(195, "lb"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/rogue/front.svg"
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(90, "feet"),
  6863. default: true
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6869. {
  6870. standing: {
  6871. height: math.unit(5 + 8 / 12, "feet"),
  6872. weight: math.unit(140, "lb"),
  6873. name: "Standing",
  6874. image: {
  6875. source: "./media/characters/piper/standing.svg",
  6876. extra: 1440/1284,
  6877. bottom: 66/1506
  6878. }
  6879. },
  6880. running: {
  6881. height: math.unit(5 + 8 / 12, "feet"),
  6882. weight: math.unit(140, "lb"),
  6883. name: "Running",
  6884. image: {
  6885. source: "./media/characters/piper/running.svg",
  6886. extra: 3948/3655,
  6887. bottom: 0/3948
  6888. }
  6889. },
  6890. sole: {
  6891. height: math.unit(0.81, "feet"),
  6892. weight: math.unit(2, "kg"),
  6893. name: "Sole",
  6894. image: {
  6895. source: "./media/characters/piper/sole.svg"
  6896. }
  6897. },
  6898. nipple: {
  6899. height: math.unit(0.25, "feet"),
  6900. weight: math.unit(1.5, "lb"),
  6901. name: "Nipple",
  6902. image: {
  6903. source: "./media/characters/piper/nipple.svg"
  6904. }
  6905. },
  6906. head: {
  6907. height: math.unit(1.1, "feet"),
  6908. name: "Head",
  6909. image: {
  6910. source: "./media/characters/piper/head.svg"
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(2, "inches")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(5 + 8 / 12, "feet")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(250, "feet"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(7, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(220, "lb"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/gemini/front.svg"
  6943. }
  6944. },
  6945. back: {
  6946. height: math.unit(6, "feet"),
  6947. weight: math.unit(220, "lb"),
  6948. name: "Back",
  6949. image: {
  6950. source: "./media/characters/gemini/back.svg"
  6951. }
  6952. },
  6953. kneeling: {
  6954. height: math.unit(6 / 1.5, "feet"),
  6955. weight: math.unit(220, "lb"),
  6956. name: "Kneeling",
  6957. image: {
  6958. source: "./media/characters/gemini/kneeling.svg",
  6959. bottom: 0.02
  6960. }
  6961. },
  6962. },
  6963. [
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(300, "meters"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Megamacro",
  6971. height: math.unit(6900, "meters")
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6977. {
  6978. anthro: {
  6979. height: math.unit(2.35, "meters"),
  6980. weight: math.unit(73, "kg"),
  6981. name: "Anthro",
  6982. image: {
  6983. source: "./media/characters/alicia/anthro.svg",
  6984. extra: 2571 / 2385,
  6985. bottom: 75 / 2648
  6986. }
  6987. },
  6988. paw: {
  6989. height: math.unit(1.32, "feet"),
  6990. name: "Paw",
  6991. image: {
  6992. source: "./media/characters/alicia/paw.svg"
  6993. }
  6994. },
  6995. feral: {
  6996. height: math.unit(1.69, "meters"),
  6997. weight: math.unit(73, "kg"),
  6998. name: "Feral",
  6999. image: {
  7000. source: "./media/characters/alicia/feral.svg",
  7001. extra: 2123 / 1715,
  7002. bottom: 222 / 2349
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(2.35, "meters")
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(60, "meters"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Megamacro",
  7018. height: math.unit(10000, "kilometers")
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(7, "feet"),
  7027. weight: math.unit(250, "lbs"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/archy/front.svg"
  7031. }
  7032. }
  7033. },
  7034. [
  7035. {
  7036. name: "Micro",
  7037. height: math.unit(1, "inch")
  7038. },
  7039. {
  7040. name: "Shorty",
  7041. height: math.unit(5, "feet")
  7042. },
  7043. {
  7044. name: "Normal",
  7045. height: math.unit(7, "feet")
  7046. },
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(600, "meters"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Megamacro",
  7054. height: math.unit(1, "mile")
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(1.65, "meters"),
  7063. weight: math.unit(74, "kg"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/berri/front.svg",
  7067. extra: 857 / 837,
  7068. bottom: 18 / 877
  7069. }
  7070. },
  7071. bum: {
  7072. height: math.unit(1.46, "feet"),
  7073. name: "Bum",
  7074. image: {
  7075. source: "./media/characters/berri/bum.svg"
  7076. }
  7077. },
  7078. mouth: {
  7079. height: math.unit(0.44, "feet"),
  7080. name: "Mouth",
  7081. image: {
  7082. source: "./media/characters/berri/mouth.svg"
  7083. }
  7084. },
  7085. paw: {
  7086. height: math.unit(0.826, "feet"),
  7087. name: "Paw",
  7088. image: {
  7089. source: "./media/characters/berri/paw.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Normal",
  7096. height: math.unit(1.65, "meters")
  7097. },
  7098. {
  7099. name: "Macro",
  7100. height: math.unit(60, "m"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Megamacro",
  7105. height: math.unit(9.213, "km")
  7106. },
  7107. {
  7108. name: "Planet Eater",
  7109. height: math.unit(489, "megameters")
  7110. },
  7111. {
  7112. name: "Teramacro",
  7113. height: math.unit(2471635000000, "meters")
  7114. },
  7115. {
  7116. name: "Examacro",
  7117. height: math.unit(8.0624e+26, "meters")
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(1.72, "meters"),
  7126. weight: math.unit(68, "kg"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/lexi/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Very Smol",
  7136. height: math.unit(10, "mm")
  7137. },
  7138. {
  7139. name: "Micro",
  7140. height: math.unit(6.8, "cm"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(1.72, "m")
  7146. }
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(1.69, "meters"),
  7154. weight: math.unit(68, "kg"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/martin/front.svg",
  7158. extra: 596 / 581
  7159. }
  7160. }
  7161. },
  7162. [
  7163. {
  7164. name: "Micro",
  7165. height: math.unit(6.85, "cm"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(1.69, "m")
  7171. }
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(1.69, "meters"),
  7179. weight: math.unit(68, "kg"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/juno/front.svg"
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Micro",
  7189. height: math.unit(7, "cm")
  7190. },
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(1.89, "m")
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(353, "meters"),
  7198. default: true
  7199. }
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(1.93, "meters"),
  7207. weight: math.unit(83, "kg"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/samantha/front.svg"
  7211. }
  7212. },
  7213. frontClothed: {
  7214. height: math.unit(1.93, "meters"),
  7215. weight: math.unit(83, "kg"),
  7216. name: "Front (Clothed)",
  7217. image: {
  7218. source: "./media/characters/samantha/front-clothed.svg"
  7219. }
  7220. },
  7221. back: {
  7222. height: math.unit(1.93, "meters"),
  7223. weight: math.unit(83, "kg"),
  7224. name: "Back",
  7225. image: {
  7226. source: "./media/characters/samantha/back.svg"
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(1.93, "m")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(74, "meters"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro+",
  7242. height: math.unit(223, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(8381, "meters"),
  7247. },
  7248. {
  7249. name: "Megamacro+",
  7250. height: math.unit(12000, "kilometers")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(1.92, "meters"),
  7259. weight: math.unit(80, "kg"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/dr-clay/front.svg"
  7263. }
  7264. },
  7265. frontClothed: {
  7266. height: math.unit(1.92, "meters"),
  7267. weight: math.unit(80, "kg"),
  7268. name: "Front (Clothed)",
  7269. image: {
  7270. source: "./media/characters/dr-clay/front-clothed.svg"
  7271. }
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(1.92, "m")
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(214, "meters"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Macro+",
  7286. height: math.unit(12.237, "meters"),
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(557, "megameters"),
  7291. },
  7292. {
  7293. name: "Unimaginable",
  7294. height: math.unit(120e9, "lightyears")
  7295. },
  7296. ]
  7297. ))
  7298. characterMakers.push(() => makeCharacter(
  7299. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7300. {
  7301. front: {
  7302. height: math.unit(2, "meters"),
  7303. weight: math.unit(80, "kg"),
  7304. name: "Front",
  7305. image: {
  7306. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Teramacro",
  7313. height: math.unit(500000, "lightyears"),
  7314. default: true
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7320. {
  7321. crux: {
  7322. height: math.unit(2, "meters"),
  7323. weight: math.unit(150, "kg"),
  7324. name: "Crux",
  7325. image: {
  7326. source: "./media/characters/vemus/crux.svg",
  7327. extra: 1074/936,
  7328. bottom: 23/1097
  7329. }
  7330. },
  7331. skunkTanuki: {
  7332. height: math.unit(2, "meters"),
  7333. weight: math.unit(150, "kg"),
  7334. name: "Skunk-Tanuki",
  7335. image: {
  7336. source: "./media/characters/vemus/skunk-tanuki.svg",
  7337. extra: 926/893,
  7338. bottom: 20/946
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(4, "meters"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Big",
  7350. height: math.unit(8, "meters")
  7351. },
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(100, "meters")
  7355. },
  7356. {
  7357. name: "Macro+",
  7358. height: math.unit(1500, "meters")
  7359. },
  7360. {
  7361. name: "Stellar",
  7362. height: math.unit(14e8, "meters")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(2, "meters"),
  7371. weight: math.unit(70, "kg"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/beherit/front.svg",
  7375. extra: 1234/1109,
  7376. bottom: 55/1289
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(6, "feet")
  7384. },
  7385. {
  7386. name: "Lorg",
  7387. height: math.unit(25, "feet"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Lorger",
  7392. height: math.unit(75, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(200, "meters")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(2, "meters"),
  7405. weight: math.unit(150, "kg"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/everett/front.svg",
  7409. extra: 1017/866,
  7410. bottom: 86/1103
  7411. }
  7412. },
  7413. paw: {
  7414. height: math.unit(2 / 3.6, "meters"),
  7415. name: "Paw",
  7416. image: {
  7417. source: "./media/characters/everett/paw.svg"
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(15, "feet"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Lorg",
  7429. height: math.unit(70, "feet"),
  7430. default: true
  7431. },
  7432. {
  7433. name: "Lorger",
  7434. height: math.unit(250, "feet")
  7435. },
  7436. {
  7437. name: "Macro",
  7438. height: math.unit(500, "meters")
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(2, "meters"),
  7447. weight: math.unit(86, "kg"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/rose/front.svg",
  7451. extra: 1785/1636,
  7452. bottom: 30/1815
  7453. },
  7454. form: "liom",
  7455. default: true
  7456. },
  7457. frontSporty: {
  7458. height: math.unit(2, "meters"),
  7459. weight: math.unit(86, "kg"),
  7460. name: "Front (Sporty)",
  7461. image: {
  7462. source: "./media/characters/rose/front-sporty.svg",
  7463. extra: 350/335,
  7464. bottom: 10/360
  7465. },
  7466. form: "liom"
  7467. },
  7468. frontAlt: {
  7469. height: math.unit(1.6, "meters"),
  7470. weight: math.unit(86, "kg"),
  7471. name: "Front (Alt)",
  7472. image: {
  7473. source: "./media/characters/rose/front-alt.svg",
  7474. extra: 299/283,
  7475. bottom: 3/302
  7476. },
  7477. form: "liom"
  7478. },
  7479. plush: {
  7480. height: math.unit(2, "meters"),
  7481. weight: math.unit(86/3, "kg"),
  7482. name: "Plush",
  7483. image: {
  7484. source: "./media/characters/rose/plush.svg",
  7485. extra: 361/337,
  7486. bottom: 11/372
  7487. },
  7488. form: "plush",
  7489. default: true
  7490. },
  7491. faeStanding: {
  7492. height: math.unit(10, "cm"),
  7493. weight: math.unit(10, "grams"),
  7494. name: "Standing",
  7495. image: {
  7496. source: "./media/characters/rose/fae-standing.svg",
  7497. extra: 1189/1060,
  7498. bottom: 27/1216
  7499. },
  7500. form: "fae",
  7501. default: true
  7502. },
  7503. faeSitting: {
  7504. height: math.unit(5, "cm"),
  7505. weight: math.unit(10, "grams"),
  7506. name: "Sitting",
  7507. image: {
  7508. source: "./media/characters/rose/fae-sitting.svg",
  7509. extra: 737/577,
  7510. bottom: 356/1093
  7511. },
  7512. form: "fae"
  7513. },
  7514. faePaw: {
  7515. height: math.unit(1.35, "cm"),
  7516. name: "Paw",
  7517. image: {
  7518. source: "./media/characters/rose/fae-paw.svg"
  7519. },
  7520. form: "fae"
  7521. },
  7522. },
  7523. [
  7524. {
  7525. name: "True Micro",
  7526. height: math.unit(9, "cm"),
  7527. form: "liom"
  7528. },
  7529. {
  7530. name: "Micro",
  7531. height: math.unit(16, "cm"),
  7532. form: "liom"
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(1.85, "meters"),
  7537. default: true,
  7538. form: "liom"
  7539. },
  7540. {
  7541. name: "Mini-Macro",
  7542. height: math.unit(5, "meters"),
  7543. form: "liom"
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(15, "meters"),
  7548. form: "liom"
  7549. },
  7550. {
  7551. name: "True Macro",
  7552. height: math.unit(40, "meters"),
  7553. form: "liom"
  7554. },
  7555. {
  7556. name: "City Scale",
  7557. height: math.unit(1, "km"),
  7558. form: "liom"
  7559. },
  7560. {
  7561. name: "Plushie",
  7562. height: math.unit(9, "cm"),
  7563. form: "plush",
  7564. default: true
  7565. },
  7566. {
  7567. name: "Fae",
  7568. height: math.unit(10, "cm"),
  7569. form: "fae",
  7570. default: true
  7571. },
  7572. ],
  7573. {
  7574. "liom": {
  7575. name: "Liom"
  7576. },
  7577. "plush": {
  7578. name: "Plush"
  7579. },
  7580. "fae": {
  7581. name: "Fae Fox",
  7582. default: true
  7583. }
  7584. }
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(2, "meters"),
  7591. weight: math.unit(350, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/regal/front.svg"
  7595. }
  7596. },
  7597. back: {
  7598. height: math.unit(2, "meters"),
  7599. weight: math.unit(350, "lbs"),
  7600. name: "Back",
  7601. image: {
  7602. source: "./media/characters/regal/back.svg"
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(350, "feet"),
  7610. default: true
  7611. }
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(4 + 11 / 12, "feet"),
  7619. weight: math.unit(100, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/opal/front.svg"
  7623. }
  7624. },
  7625. frontAlt: {
  7626. height: math.unit(4 + 11 / 12, "feet"),
  7627. weight: math.unit(100, "lbs"),
  7628. name: "Front (Alt)",
  7629. image: {
  7630. source: "./media/characters/opal/front-alt.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Small",
  7637. height: math.unit(4 + 11 / 12, "feet")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(20, "feet"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(120, "feet")
  7647. },
  7648. {
  7649. name: "Megamacro",
  7650. height: math.unit(80, "miles")
  7651. },
  7652. {
  7653. name: "True Size",
  7654. height: math.unit(100000, "lightyears")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(200, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/vector-wuff/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(2.8, "meters")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(450, "meters"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(15, "kilometers")
  7683. }
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(256, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/dannik/front.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(69.57, "meters"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(120, "lbs"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/azura-saharah/front.svg"
  7715. }
  7716. },
  7717. back: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(120, "lbs"),
  7720. name: "Back",
  7721. image: {
  7722. source: "./media/characters/azura-saharah/back.svg"
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(100, "feet"),
  7730. default: true
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7736. {
  7737. side: {
  7738. height: math.unit(5 + 4 / 12, "feet"),
  7739. weight: math.unit(163, "lbs"),
  7740. name: "Side",
  7741. image: {
  7742. source: "./media/characters/kennedy/side.svg"
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Standard Doggo",
  7749. height: math.unit(5 + 4 / 12, "feet")
  7750. },
  7751. {
  7752. name: "Big Doggo",
  7753. height: math.unit(25 + 3 / 12, "feet"),
  7754. default: true
  7755. },
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7760. {
  7761. front: {
  7762. height: math.unit(5 + 5/12, "feet"),
  7763. weight: math.unit(100, "lbs"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/odios-de-lunar/front.svg",
  7767. extra: 1468/1323,
  7768. bottom: 22/1490
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Micro",
  7775. height: math.unit(3, "inches")
  7776. },
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(5.5, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(100, "feet")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7790. {
  7791. back: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(220, "lbs"),
  7794. name: "Back",
  7795. image: {
  7796. source: "./media/characters/mandake/back.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(7, "feet"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(78, "feet")
  7809. },
  7810. {
  7811. name: "Macro+",
  7812. height: math.unit(300, "meters")
  7813. },
  7814. {
  7815. name: "Macro++",
  7816. height: math.unit(2400, "feet")
  7817. },
  7818. {
  7819. name: "Megamacro",
  7820. height: math.unit(5167, "meters")
  7821. },
  7822. {
  7823. name: "Gigamacro",
  7824. height: math.unit(41769, "miles")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(120, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/yozey/front.svg"
  7837. }
  7838. },
  7839. frontAlt: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(120, "lbs"),
  7842. name: "Front (Alt)",
  7843. image: {
  7844. source: "./media/characters/yozey/front-alt.svg"
  7845. }
  7846. },
  7847. side: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(120, "lbs"),
  7850. name: "Side",
  7851. image: {
  7852. source: "./media/characters/yozey/side.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(3, "inches"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(6, "feet")
  7865. }
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(6, "feet"),
  7873. weight: math.unit(103, "lbs"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/valeska-voss/front.svg"
  7877. }
  7878. }
  7879. },
  7880. [
  7881. {
  7882. name: "Mini-Sized Sub",
  7883. height: math.unit(3.1, "inches")
  7884. },
  7885. {
  7886. name: "Mid-Sized Sub",
  7887. height: math.unit(6.2, "inches")
  7888. },
  7889. {
  7890. name: "Full-Sized Sub",
  7891. height: math.unit(9.3, "inches")
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(5 + 2 / 12, "foot"),
  7896. default: true
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(160, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/gene-zeta/front.svg",
  7909. extra: 3006 / 2826,
  7910. bottom: 182 / 3188
  7911. }
  7912. }
  7913. },
  7914. [
  7915. {
  7916. name: "Micro",
  7917. height: math.unit(6, "inches")
  7918. },
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(5 + 11 / 12, "foot"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(140, "feet")
  7927. },
  7928. {
  7929. name: "Supercharged",
  7930. height: math.unit(2500, "feet")
  7931. },
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(350, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/razinox/front.svg",
  7943. extra: 1686 / 1548,
  7944. bottom: 28.2 / 1868
  7945. }
  7946. },
  7947. back: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(350, "lbs"),
  7950. name: "Back",
  7951. image: {
  7952. source: "./media/characters/razinox/back.svg",
  7953. extra: 1660 / 1590,
  7954. bottom: 15 / 1665
  7955. }
  7956. },
  7957. },
  7958. [
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(10 + 8 / 12, "foot")
  7962. },
  7963. {
  7964. name: "Minimacro",
  7965. height: math.unit(15, "foot")
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(60, "foot"),
  7970. default: true
  7971. },
  7972. {
  7973. name: "Megamacro",
  7974. height: math.unit(5, "miles")
  7975. },
  7976. {
  7977. name: "Gigamacro",
  7978. height: math.unit(6000, "miles")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(6, "feet"),
  7987. weight: math.unit(150, "lbs"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/cobalt/front.svg"
  7991. }
  7992. }
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(8 + 1 / 12, "foot")
  7998. },
  7999. {
  8000. name: "Macro",
  8001. height: math.unit(111, "foot"),
  8002. default: true
  8003. },
  8004. {
  8005. name: "Supracosmic",
  8006. height: math.unit(1e42, "feet")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(5, "inches"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/amanda/front.svg",
  8018. extra: 926/791,
  8019. bottom: 38/964
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(5, "inches"),
  8024. name: "Back",
  8025. image: {
  8026. source: "./media/characters/amanda/back.svg",
  8027. extra: 909/805,
  8028. bottom: 43/952
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Micro",
  8035. height: math.unit(5, "inches"),
  8036. default: true
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8042. {
  8043. front: {
  8044. height: math.unit(2.75, "meters"),
  8045. weight: math.unit(1200, "lb"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/teal/front.svg",
  8049. extra: 2463 / 2320,
  8050. bottom: 166 / 2629
  8051. }
  8052. },
  8053. back: {
  8054. height: math.unit(2.75, "meters"),
  8055. weight: math.unit(1200, "lb"),
  8056. name: "Back",
  8057. image: {
  8058. source: "./media/characters/teal/back.svg",
  8059. extra: 2580 / 2489,
  8060. bottom: 151 / 2731
  8061. }
  8062. },
  8063. sitting: {
  8064. height: math.unit(1.9, "meters"),
  8065. weight: math.unit(1200, "lb"),
  8066. name: "Sitting",
  8067. image: {
  8068. source: "./media/characters/teal/sitting.svg",
  8069. extra: 623 / 590,
  8070. bottom: 121 / 744
  8071. }
  8072. },
  8073. standing: {
  8074. height: math.unit(2.75, "meters"),
  8075. weight: math.unit(1200, "lb"),
  8076. name: "Standing",
  8077. image: {
  8078. source: "./media/characters/teal/standing.svg",
  8079. extra: 923 / 893,
  8080. bottom: 60 / 983
  8081. }
  8082. },
  8083. stretching: {
  8084. height: math.unit(3.65, "meters"),
  8085. weight: math.unit(1200, "lb"),
  8086. name: "Stretching",
  8087. image: {
  8088. source: "./media/characters/teal/stretching.svg",
  8089. extra: 1276 / 1244,
  8090. bottom: 0 / 1276
  8091. }
  8092. },
  8093. legged: {
  8094. height: math.unit(1.3, "meters"),
  8095. weight: math.unit(100, "lb"),
  8096. name: "Legged",
  8097. image: {
  8098. source: "./media/characters/teal/legged.svg",
  8099. extra: 462 / 437,
  8100. bottom: 24 / 486
  8101. }
  8102. },
  8103. naga: {
  8104. height: math.unit(5.4, "meters"),
  8105. weight: math.unit(4000, "lb"),
  8106. name: "Naga",
  8107. image: {
  8108. source: "./media/characters/teal/naga.svg",
  8109. extra: 1902 / 1858,
  8110. bottom: 0 / 1902
  8111. }
  8112. },
  8113. hand: {
  8114. height: math.unit(0.52, "meters"),
  8115. name: "Hand",
  8116. image: {
  8117. source: "./media/characters/teal/hand.svg"
  8118. }
  8119. },
  8120. maw: {
  8121. height: math.unit(0.43, "meters"),
  8122. name: "Maw",
  8123. image: {
  8124. source: "./media/characters/teal/maw.svg"
  8125. }
  8126. },
  8127. slit: {
  8128. height: math.unit(0.25, "meters"),
  8129. name: "Slit",
  8130. image: {
  8131. source: "./media/characters/teal/slit.svg"
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(2.75, "meters"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Macro",
  8143. height: math.unit(300, "feet")
  8144. },
  8145. {
  8146. name: "Macro+",
  8147. height: math.unit(2000, "feet")
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8153. {
  8154. frontCat: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(180, "lbs"),
  8157. name: "Front (Cat)",
  8158. image: {
  8159. source: "./media/characters/ravin-amulet/front-cat.svg"
  8160. }
  8161. },
  8162. frontCatAlt: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(180, "lbs"),
  8165. name: "Front (Alt, Cat)",
  8166. image: {
  8167. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8168. }
  8169. },
  8170. frontWerewolf: {
  8171. height: math.unit(6 * 1.2, "feet"),
  8172. weight: math.unit(225, "lbs"),
  8173. name: "Front (Werewolf)",
  8174. image: {
  8175. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8176. }
  8177. },
  8178. backWerewolf: {
  8179. height: math.unit(6 * 1.2, "feet"),
  8180. weight: math.unit(225, "lbs"),
  8181. name: "Back (Werewolf)",
  8182. image: {
  8183. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Nano",
  8190. height: math.unit(1, "micrometer")
  8191. },
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(1, "inch")
  8195. },
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(6, "feet"),
  8199. default: true
  8200. },
  8201. {
  8202. name: "Macro",
  8203. height: math.unit(60, "feet")
  8204. }
  8205. ]
  8206. ))
  8207. characterMakers.push(() => makeCharacter(
  8208. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8209. {
  8210. front: {
  8211. height: math.unit(6, "feet"),
  8212. weight: math.unit(165, "lbs"),
  8213. name: "Front",
  8214. image: {
  8215. source: "./media/characters/fluoresce/front.svg"
  8216. }
  8217. }
  8218. },
  8219. [
  8220. {
  8221. name: "Micro",
  8222. height: math.unit(6, "cm")
  8223. },
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(5 + 7 / 12, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(56, "feet")
  8232. },
  8233. {
  8234. name: "Megamacro",
  8235. height: math.unit(1.9, "miles")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(9 + 6 / 12, "feet"),
  8244. weight: math.unit(523, "lbs"),
  8245. name: "Side",
  8246. image: {
  8247. source: "./media/characters/aurora/side.svg"
  8248. }
  8249. }
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(9 + 6 / 12, "feet")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(96, "feet"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Macro+",
  8263. height: math.unit(243, "feet")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(194, "cm"),
  8272. weight: math.unit(90, "kg"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/ranek/front.svg",
  8276. extra: 1862/1791,
  8277. bottom: 80/1942
  8278. }
  8279. },
  8280. back: {
  8281. height: math.unit(194, "cm"),
  8282. weight: math.unit(90, "kg"),
  8283. name: "Back",
  8284. image: {
  8285. source: "./media/characters/ranek/back.svg",
  8286. extra: 1853/1787,
  8287. bottom: 74/1927
  8288. }
  8289. },
  8290. feral: {
  8291. height: math.unit(30, "cm"),
  8292. weight: math.unit(1.6, "lbs"),
  8293. name: "Feral",
  8294. image: {
  8295. source: "./media/characters/ranek/feral.svg",
  8296. extra: 990/631,
  8297. bottom: 29/1019
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(194, "cm"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(100, "meters")
  8310. },
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(5 + 6 / 12, "feet"),
  8318. weight: math.unit(153, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/andrew-cooper/front.svg"
  8322. }
  8323. },
  8324. },
  8325. [
  8326. {
  8327. name: "Nano",
  8328. height: math.unit(1, "mm")
  8329. },
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(2, "inches")
  8333. },
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(5 + 6 / 12, "feet"),
  8337. default: true
  8338. }
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(6, "feet"),
  8346. weight: math.unit(180, "lbs"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/akane-sato/front.svg",
  8350. extra: 1219 / 1140
  8351. }
  8352. },
  8353. back: {
  8354. height: math.unit(6, "feet"),
  8355. weight: math.unit(180, "lbs"),
  8356. name: "Back",
  8357. image: {
  8358. source: "./media/characters/akane-sato/back.svg",
  8359. extra: 1219 / 1170
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(2.5, "meters")
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(250, "meters"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Megamacro",
  8375. height: math.unit(25, "km")
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(65, "kg"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/rook/front.svg",
  8388. extra: 960 / 950
  8389. }
  8390. }
  8391. },
  8392. [
  8393. {
  8394. name: "Normal",
  8395. height: math.unit(8.8, "feet")
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(88, "feet"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Megamacro",
  8404. height: math.unit(8, "miles")
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(12 + 2 / 12, "feet"),
  8413. weight: math.unit(808, "lbs"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/prodigy/front.svg"
  8417. }
  8418. }
  8419. },
  8420. [
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(12 + 2 / 12, "feet"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Macro",
  8428. height: math.unit(143, "feet")
  8429. },
  8430. {
  8431. name: "Macro+",
  8432. height: math.unit(400, "feet")
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(6, "feet"),
  8441. weight: math.unit(225, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/daniel/front.svg"
  8445. }
  8446. },
  8447. leaning: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(225, "lbs"),
  8450. name: "Leaning",
  8451. image: {
  8452. source: "./media/characters/daniel/leaning.svg"
  8453. }
  8454. },
  8455. },
  8456. [
  8457. {
  8458. name: "Macro",
  8459. height: math.unit(1000, "feet"),
  8460. default: true
  8461. },
  8462. ]
  8463. ))
  8464. characterMakers.push(() => makeCharacter(
  8465. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8466. {
  8467. front: {
  8468. height: math.unit(6, "feet"),
  8469. weight: math.unit(88, "lbs"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/chiros/front.svg",
  8473. extra: 306 / 226
  8474. }
  8475. },
  8476. side: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(88, "lbs"),
  8479. name: "Side",
  8480. image: {
  8481. source: "./media/characters/chiros/side.svg",
  8482. extra: 306 / 226
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(6, "cm"),
  8490. default: true
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(100, "lbs"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/selka/front.svg",
  8503. extra: 947 / 887
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5, "cm"),
  8511. default: true
  8512. },
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8517. {
  8518. front: {
  8519. height: math.unit(8 + 3 / 12, "feet"),
  8520. weight: math.unit(424, "lbs"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/verin/front.svg",
  8524. extra: 1845 / 1550
  8525. }
  8526. },
  8527. frontArmored: {
  8528. height: math.unit(8 + 3 / 12, "feet"),
  8529. weight: math.unit(424, "lbs"),
  8530. name: "Front (Armored)",
  8531. image: {
  8532. source: "./media/characters/verin/front-armor.svg",
  8533. extra: 1845 / 1550,
  8534. bottom: 0.01
  8535. }
  8536. },
  8537. back: {
  8538. height: math.unit(8 + 3 / 12, "feet"),
  8539. weight: math.unit(424, "lbs"),
  8540. name: "Back",
  8541. image: {
  8542. source: "./media/characters/verin/back.svg",
  8543. bottom: 0.1,
  8544. extra: 1
  8545. }
  8546. },
  8547. foot: {
  8548. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8549. name: "Foot",
  8550. image: {
  8551. source: "./media/characters/verin/foot.svg"
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(8 + 3 / 12, "feet")
  8559. },
  8560. {
  8561. name: "Minimacro",
  8562. height: math.unit(21, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(626, "feet")
  8568. },
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8573. {
  8574. front: {
  8575. height: math.unit(2.718, "meters"),
  8576. weight: math.unit(150, "lbs"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/sovrim-terraquian/front.svg",
  8580. extra: 1752/1689,
  8581. bottom: 36/1788
  8582. }
  8583. },
  8584. back: {
  8585. height: math.unit(2.718, "meters"),
  8586. weight: math.unit(150, "lbs"),
  8587. name: "Back",
  8588. image: {
  8589. source: "./media/characters/sovrim-terraquian/back.svg",
  8590. extra: 1698/1657,
  8591. bottom: 58/1756
  8592. }
  8593. },
  8594. tongue: {
  8595. height: math.unit(2.865, "feet"),
  8596. name: "Tongue",
  8597. image: {
  8598. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8599. }
  8600. },
  8601. hand: {
  8602. height: math.unit(1.61, "feet"),
  8603. name: "Hand",
  8604. image: {
  8605. source: "./media/characters/sovrim-terraquian/hand.svg"
  8606. }
  8607. },
  8608. foot: {
  8609. height: math.unit(1.05, "feet"),
  8610. name: "Foot",
  8611. image: {
  8612. source: "./media/characters/sovrim-terraquian/foot.svg"
  8613. }
  8614. },
  8615. footAlt: {
  8616. height: math.unit(0.88, "feet"),
  8617. name: "Foot (Alt)",
  8618. image: {
  8619. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(2, "inches")
  8627. },
  8628. {
  8629. name: "Small",
  8630. height: math.unit(1, "meter")
  8631. },
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(Math.E, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "Macro",
  8639. height: math.unit(20, "meters")
  8640. },
  8641. {
  8642. name: "Macro+",
  8643. height: math.unit(400, "meters")
  8644. },
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8649. {
  8650. front: {
  8651. height: math.unit(7, "feet"),
  8652. weight: math.unit(489, "lbs"),
  8653. name: "Front",
  8654. image: {
  8655. source: "./media/characters/reece-silvermane/front.svg",
  8656. bottom: 0.02,
  8657. extra: 1
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(1.5, "miles"),
  8665. default: true
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(78, "kg"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/kane/front.svg",
  8678. extra: 978 / 899
  8679. }
  8680. },
  8681. },
  8682. [
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(2.1, "m"),
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(1, "km"),
  8690. default: true
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(200, "kg"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/tegon/front.svg",
  8703. bottom: 0.01,
  8704. extra: 1
  8705. }
  8706. },
  8707. },
  8708. [
  8709. {
  8710. name: "Micro",
  8711. height: math.unit(1, "inch")
  8712. },
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(6 + 3 / 12, "feet"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(300, "feet")
  8721. },
  8722. {
  8723. name: "Megamacro",
  8724. height: math.unit(69, "miles")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8730. {
  8731. side: {
  8732. height: math.unit(6, "feet"),
  8733. weight: math.unit(2304, "lbs"),
  8734. name: "Side",
  8735. image: {
  8736. source: "./media/characters/arcturax/side.svg",
  8737. extra: 790 / 376,
  8738. bottom: 0.01
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Micro",
  8745. height: math.unit(2, "inch")
  8746. },
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(6, "feet")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(39, "feet"),
  8754. default: true
  8755. },
  8756. {
  8757. name: "Megamacro",
  8758. height: math.unit(7, "miles")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(6, "feet"),
  8767. weight: math.unit(50, "lbs"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/sentri/front.svg",
  8771. extra: 1750 / 1570,
  8772. bottom: 0.025
  8773. }
  8774. },
  8775. frontAlt: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(50, "lbs"),
  8778. name: "Front (Alt)",
  8779. image: {
  8780. source: "./media/characters/sentri/front-alt.svg",
  8781. extra: 1750 / 1570,
  8782. bottom: 0.025
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(15, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(2500, "feet")
  8795. }
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(5 + 8 / 12, "feet"),
  8803. weight: math.unit(130, "lbs"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/corvin/front.svg",
  8807. extra: 1803 / 1629
  8808. }
  8809. },
  8810. frontShirt: {
  8811. height: math.unit(5 + 8 / 12, "feet"),
  8812. weight: math.unit(130, "lbs"),
  8813. name: "Front (Shirt)",
  8814. image: {
  8815. source: "./media/characters/corvin/front-shirt.svg",
  8816. extra: 1803 / 1629
  8817. }
  8818. },
  8819. frontPoncho: {
  8820. height: math.unit(5 + 8 / 12, "feet"),
  8821. weight: math.unit(130, "lbs"),
  8822. name: "Front (Poncho)",
  8823. image: {
  8824. source: "./media/characters/corvin/front-poncho.svg",
  8825. extra: 1803 / 1629
  8826. }
  8827. },
  8828. side: {
  8829. height: math.unit(5 + 8 / 12, "feet"),
  8830. weight: math.unit(130, "lbs"),
  8831. name: "Side",
  8832. image: {
  8833. source: "./media/characters/corvin/side.svg",
  8834. extra: 1012 / 945
  8835. }
  8836. },
  8837. back: {
  8838. height: math.unit(5 + 8 / 12, "feet"),
  8839. weight: math.unit(130, "lbs"),
  8840. name: "Back",
  8841. image: {
  8842. source: "./media/characters/corvin/back.svg",
  8843. extra: 1803 / 1629
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(3, "inches")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(5 + 8 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Macro",
  8858. height: math.unit(300, "feet"),
  8859. default: true
  8860. },
  8861. {
  8862. name: "Megamacro",
  8863. height: math.unit(500, "miles")
  8864. }
  8865. ]
  8866. ))
  8867. characterMakers.push(() => makeCharacter(
  8868. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8869. {
  8870. front: {
  8871. height: math.unit(6, "feet"),
  8872. weight: math.unit(135, "lbs"),
  8873. name: "Front",
  8874. image: {
  8875. source: "./media/characters/q/front.svg",
  8876. extra: 854 / 752,
  8877. bottom: 0.005
  8878. }
  8879. },
  8880. back: {
  8881. height: math.unit(6, "feet"),
  8882. weight: math.unit(130, "lbs"),
  8883. name: "Back",
  8884. image: {
  8885. source: "./media/characters/q/back.svg",
  8886. extra: 854 / 752
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(90, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Extra Macro",
  8898. height: math.unit(300, "feet"),
  8899. },
  8900. {
  8901. name: "BIG WALF",
  8902. height: math.unit(750, "feet"),
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(3, "feet"),
  8911. weight: math.unit(28, "lbs"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/citrine/front.svg"
  8915. }
  8916. }
  8917. },
  8918. [
  8919. {
  8920. name: "Normal",
  8921. height: math.unit(3, "feet"),
  8922. default: true
  8923. }
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8928. {
  8929. front: {
  8930. height: math.unit(14, "feet"),
  8931. weight: math.unit(1450, "kg"),
  8932. preyCapacity: math.unit(15, "people"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/aura-starwind/front.svg",
  8936. extra: 1440/1327,
  8937. bottom: 11/1451
  8938. }
  8939. },
  8940. side: {
  8941. height: math.unit(14, "feet"),
  8942. weight: math.unit(1450, "kg"),
  8943. preyCapacity: math.unit(15, "people"),
  8944. name: "Side",
  8945. image: {
  8946. source: "./media/characters/aura-starwind/side.svg",
  8947. extra: 1654 / 1497
  8948. }
  8949. },
  8950. taur: {
  8951. height: math.unit(18, "feet"),
  8952. weight: math.unit(5500, "kg"),
  8953. preyCapacity: math.unit(50, "people"),
  8954. name: "Taur",
  8955. image: {
  8956. source: "./media/characters/aura-starwind/taur.svg",
  8957. extra: 1760 / 1650
  8958. }
  8959. },
  8960. feral: {
  8961. height: math.unit(46, "feet"),
  8962. weight: math.unit(25000, "kg"),
  8963. preyCapacity: math.unit(120, "people"),
  8964. name: "Feral",
  8965. image: {
  8966. source: "./media/characters/aura-starwind/feral.svg"
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(14, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(50, "meters")
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(5000, "meters")
  8983. },
  8984. {
  8985. name: "Gigamacro",
  8986. height: math.unit(100000, "kilometers")
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(2 + 7 / 12, "feet"),
  8995. weight: math.unit(32, "lbs"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/rivet/front.svg",
  8999. extra: 1716 / 1658,
  9000. bottom: 0.03
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(0.551, "feet"),
  9005. name: "Rivet's Foot",
  9006. image: {
  9007. source: "./media/characters/rivet/foot.svg"
  9008. },
  9009. rename: true
  9010. }
  9011. },
  9012. [
  9013. {
  9014. name: "Micro",
  9015. height: math.unit(1.5, "inches"),
  9016. },
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(2 + 7 / 12, "feet"),
  9020. default: true
  9021. },
  9022. {
  9023. name: "Macro",
  9024. height: math.unit(85, "feet")
  9025. },
  9026. {
  9027. name: "Megamacro",
  9028. height: math.unit(2.2, "km")
  9029. }
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(5 + 9 / 12, "feet"),
  9037. weight: math.unit(150, "lbs"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/coffee/front.svg",
  9041. extra: 946/880,
  9042. bottom: 66/1012
  9043. }
  9044. },
  9045. foot: {
  9046. height: math.unit(1.29, "feet"),
  9047. name: "Foot",
  9048. image: {
  9049. source: "./media/characters/coffee/foot.svg"
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(2, "inches"),
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 9 / 12, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(800, "feet")
  9066. },
  9067. {
  9068. name: "Megamacro",
  9069. height: math.unit(25, "miles")
  9070. }
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(200, "lbs"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/chari-gal/front.svg",
  9082. extra: 1568 / 1385,
  9083. bottom: 0.047
  9084. }
  9085. },
  9086. gigantamax: {
  9087. height: math.unit(6 * 16, "feet"),
  9088. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9089. name: "Gigantamax",
  9090. image: {
  9091. source: "./media/characters/chari-gal/gigantamax.svg",
  9092. extra: 1124 / 888,
  9093. bottom: 0.03
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(5 + 7 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Macro",
  9104. height: math.unit(200, "feet"),
  9105. default: true
  9106. }
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(150, "lbs"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/nova/front.svg",
  9118. extra: 5000 / 4722,
  9119. bottom: 0.02
  9120. }
  9121. }
  9122. },
  9123. [
  9124. {
  9125. name: "Micro-",
  9126. height: math.unit(0.8, "inches")
  9127. },
  9128. {
  9129. name: "Micro",
  9130. height: math.unit(2, "inches"),
  9131. default: true
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9137. {
  9138. koboldFront: {
  9139. height: math.unit(3 + 1 / 12, "feet"),
  9140. weight: math.unit(21.7, "lbs"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/argent/kobold-front.svg",
  9144. extra: 1471 / 1331,
  9145. bottom: 100.8 / 1575.5
  9146. },
  9147. form: "kobold",
  9148. default: true
  9149. },
  9150. dragonFront: {
  9151. height: math.unit(75, "inches"),
  9152. name: "Front",
  9153. image: {
  9154. source: "./media/characters/argent/dragon-front.svg",
  9155. extra: 1389/1248,
  9156. bottom: 54/1443
  9157. },
  9158. form: "dragon",
  9159. },
  9160. dragonBack: {
  9161. height: math.unit(75, "inches"),
  9162. name: "Back",
  9163. image: {
  9164. source: "./media/characters/argent/dragon-back.svg",
  9165. extra: 1399/1271,
  9166. bottom: 23/1422
  9167. },
  9168. form: "dragon",
  9169. },
  9170. dragonDressed: {
  9171. height: math.unit(75, "inches"),
  9172. name: "Dressed",
  9173. image: {
  9174. source: "./media/characters/argent/dragon-dressed.svg",
  9175. extra: 1350/1215,
  9176. bottom: 26/1376
  9177. },
  9178. form: "dragon"
  9179. },
  9180. dragonHead: {
  9181. height: math.unit(23.5, "inches"),
  9182. name: "Head",
  9183. image: {
  9184. source: "./media/characters/argent/dragon-head.svg"
  9185. },
  9186. form: "dragon",
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Micro",
  9192. height: math.unit(2, "inches"),
  9193. form: "kobold",
  9194. },
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(3 + 1 / 12, "feet"),
  9198. form: "kobold",
  9199. default: true
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(120, "feet"),
  9204. form: "kobold",
  9205. },
  9206. {
  9207. name: "Speck",
  9208. height: math.unit(1, "mm"),
  9209. form: "dragon",
  9210. },
  9211. {
  9212. name: "Tiny",
  9213. height: math.unit(1, "cm"),
  9214. form: "dragon",
  9215. },
  9216. {
  9217. name: "Micro",
  9218. height: math.unit(5, "cm"),
  9219. form: "dragon",
  9220. },
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(75, "inches"),
  9224. form: "dragon",
  9225. default: true
  9226. },
  9227. {
  9228. name: "Extra Tall",
  9229. height: math.unit(9, "feet"),
  9230. form: "dragon",
  9231. },
  9232. {
  9233. name: "Inconvenient",
  9234. height: math.unit(5, "meters"),
  9235. form: "dragon",
  9236. },
  9237. {
  9238. name: "Macro",
  9239. height: math.unit(70, "meters"),
  9240. form: "dragon",
  9241. },
  9242. {
  9243. name: "Macro+",
  9244. height: math.unit(250, "meters"),
  9245. form: "dragon",
  9246. },
  9247. {
  9248. name: "Megamacro",
  9249. height: math.unit(20, "km"),
  9250. form: "dragon",
  9251. },
  9252. {
  9253. name: "Mountainous",
  9254. height: math.unit(100, "km"),
  9255. form: "dragon",
  9256. },
  9257. {
  9258. name: "Continental",
  9259. height: math.unit(2, "megameters"),
  9260. form: "dragon",
  9261. },
  9262. {
  9263. name: "Too Big",
  9264. height: math.unit(900, "megameters"),
  9265. form: "dragon",
  9266. },
  9267. ],
  9268. {
  9269. "kobold": {
  9270. name: "Kobold",
  9271. default: true
  9272. },
  9273. "dragon": {
  9274. name: "Dragon",
  9275. },
  9276. }
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9280. {
  9281. lamp: {
  9282. height: math.unit(7 * 1559 / 989, "feet"),
  9283. name: "Magic Lamp",
  9284. image: {
  9285. source: "./media/characters/mira-al-cul/lamp.svg",
  9286. extra: 1617 / 1559
  9287. }
  9288. },
  9289. front: {
  9290. height: math.unit(7, "feet"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/mira-al-cul/front.svg",
  9294. extra: 1044 / 990
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Heavily Restricted",
  9301. height: math.unit(7 * 1559 / 989, "feet")
  9302. },
  9303. {
  9304. name: "Freshly Freed",
  9305. height: math.unit(50 * 1559 / 989, "feet")
  9306. },
  9307. {
  9308. name: "World Encompassing",
  9309. height: math.unit(10000 * 1559 / 989, "miles")
  9310. },
  9311. {
  9312. name: "Galactic",
  9313. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9314. },
  9315. {
  9316. name: "Palmed Universe",
  9317. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Multiversal Matriarch",
  9322. height: math.unit(8.87e10, "yottameters")
  9323. },
  9324. {
  9325. name: "Void Mother",
  9326. height: math.unit(3.14e110, "yottaparsecs")
  9327. },
  9328. {
  9329. name: "Toying with Transcendence",
  9330. height: math.unit(1e307, "meters")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9336. {
  9337. front: {
  9338. height: math.unit(17 + 1 / 12, "feet"),
  9339. weight: math.unit(476.2 * 5, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/kuro-shi-uchū/front.svg",
  9343. extra: 2329 / 1835,
  9344. bottom: 0.02
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(2, "inches")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(12, "meters")
  9356. },
  9357. {
  9358. name: "Planetary",
  9359. height: math.unit(0.00929, "AU"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Universal",
  9364. height: math.unit(20, "gigaparsecs")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(5 + 2 / 12, "feet"),
  9373. weight: math.unit(120, "lbs"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/katherine/front.svg",
  9377. extra: 2075 / 1969
  9378. }
  9379. },
  9380. dress: {
  9381. height: math.unit(5 + 2 / 12, "feet"),
  9382. weight: math.unit(120, "lbs"),
  9383. name: "Dress",
  9384. image: {
  9385. source: "./media/characters/katherine/dress.svg",
  9386. extra: 2258 / 2064
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Micro",
  9393. height: math.unit(1, "inches"),
  9394. default: true
  9395. },
  9396. {
  9397. name: "Normal",
  9398. height: math.unit(5 + 2 / 12, "feet")
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(100, "meters")
  9403. },
  9404. {
  9405. name: "Megamacro",
  9406. height: math.unit(80, "miles")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(7 + 8 / 12, "feet"),
  9415. weight: math.unit(250, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/yevis/front.svg",
  9419. extra: 1938 / 1755
  9420. }
  9421. }
  9422. },
  9423. [
  9424. {
  9425. name: "Mortal",
  9426. height: math.unit(7 + 8 / 12, "feet")
  9427. },
  9428. {
  9429. name: "Battle",
  9430. height: math.unit(25 + 11 / 12, "feet")
  9431. },
  9432. {
  9433. name: "Wrath",
  9434. height: math.unit(1654 + 11 / 12, "feet")
  9435. },
  9436. {
  9437. name: "Planet Destroyer",
  9438. height: math.unit(12000, "miles")
  9439. },
  9440. {
  9441. name: "Galaxy Conqueror",
  9442. height: math.unit(1.45, "zettameters"),
  9443. default: true
  9444. },
  9445. {
  9446. name: "Universal War",
  9447. height: math.unit(184, "gigaparsecs")
  9448. },
  9449. {
  9450. name: "Eternity War",
  9451. height: math.unit(1.98e55, "yottaparsecs")
  9452. },
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9457. {
  9458. front: {
  9459. height: math.unit(5 + 8 / 12, "feet"),
  9460. weight: math.unit(63, "kg"),
  9461. name: "Front",
  9462. image: {
  9463. source: "./media/characters/xavier/front.svg",
  9464. extra: 944 / 883
  9465. }
  9466. },
  9467. frontStretch: {
  9468. height: math.unit(5 + 8 / 12, "feet"),
  9469. weight: math.unit(63, "kg"),
  9470. name: "Stretching",
  9471. image: {
  9472. source: "./media/characters/xavier/front-stretch.svg",
  9473. extra: 962 / 820
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(5 + 8 / 12, "feet")
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(100, "meters"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "McLargeHuge",
  9489. height: math.unit(10, "miles")
  9490. },
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9495. {
  9496. front: {
  9497. height: math.unit(5 + 5 / 12, "feet"),
  9498. weight: math.unit(150, "lb"),
  9499. name: "Front",
  9500. image: {
  9501. source: "./media/characters/joshii/front.svg",
  9502. extra: 765 / 653,
  9503. bottom: 51 / 816
  9504. }
  9505. },
  9506. foot: {
  9507. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9508. name: "Foot",
  9509. image: {
  9510. source: "./media/characters/joshii/foot.svg"
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(2, "inches")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(5 + 5 / 12, "feet")
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(785, "feet"),
  9526. default: true
  9527. },
  9528. {
  9529. name: "Megamacro",
  9530. height: math.unit(24.5, "miles")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(150, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/goddess-elizabeth/front.svg",
  9543. extra: 1800 / 1525,
  9544. bottom: 0.005
  9545. }
  9546. },
  9547. foot: {
  9548. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9549. name: "Foot",
  9550. image: {
  9551. source: "./media/characters/goddess-elizabeth/foot.svg"
  9552. }
  9553. },
  9554. mouth: {
  9555. height: math.unit(6, "feet"),
  9556. name: "Mouth",
  9557. image: {
  9558. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Micro",
  9565. height: math.unit(12, "feet")
  9566. },
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(80, "miles"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(15000, "parsecs")
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(5 + 9 / 12, "feet"),
  9583. weight: math.unit(144, "lb"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/kara/front.svg"
  9587. }
  9588. },
  9589. feet: {
  9590. height: math.unit(6 / 6.765, "feet"),
  9591. name: "Kara's Feet",
  9592. rename: true,
  9593. image: {
  9594. source: "./media/characters/kara/feet.svg"
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(5 + 9 / 12, "feet")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(174, "feet"),
  9606. default: true
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9612. {
  9613. front: {
  9614. height: math.unit(18, "feet"),
  9615. weight: math.unit(4050, "lb"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/tyrone/front.svg",
  9619. extra: 2405 / 2270,
  9620. bottom: 182 / 2587
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(18, "feet"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(300, "feet")
  9633. },
  9634. {
  9635. name: "Megamacro",
  9636. height: math.unit(15, "km")
  9637. },
  9638. {
  9639. name: "Gigamacro",
  9640. height: math.unit(500, "km")
  9641. },
  9642. {
  9643. name: "Teramacro",
  9644. height: math.unit(0.5, "gigameters")
  9645. },
  9646. {
  9647. name: "Omnimacro",
  9648. height: math.unit(1e252, "yottauniverse")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(7 + 8 / 12, "feet"),
  9657. weight: math.unit(120, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/danny/front.svg",
  9661. extra: 1490 / 1350
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(7 + 8 / 12, "feet"),
  9666. weight: math.unit(120, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/danny/back.svg",
  9670. extra: 1490 / 1350
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(7 + 8 / 12, "feet"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(3.5, "inches"),
  9687. weight: math.unit(19, "grams"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/mallow/front.svg",
  9691. extra: 471 / 431
  9692. }
  9693. },
  9694. back: {
  9695. height: math.unit(3.5, "inches"),
  9696. weight: math.unit(19, "grams"),
  9697. name: "Back",
  9698. image: {
  9699. source: "./media/characters/mallow/back.svg",
  9700. extra: 471 / 431
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Normal",
  9707. height: math.unit(3.5, "inches"),
  9708. default: true
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(9, "feet"),
  9717. weight: math.unit(230, "kg"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/starry-aqua/front.svg"
  9721. }
  9722. },
  9723. back: {
  9724. height: math.unit(9, "feet"),
  9725. weight: math.unit(230, "kg"),
  9726. name: "Back",
  9727. image: {
  9728. source: "./media/characters/starry-aqua/back.svg"
  9729. }
  9730. },
  9731. hand: {
  9732. height: math.unit(9 * 0.1168, "feet"),
  9733. name: "Hand",
  9734. image: {
  9735. source: "./media/characters/starry-aqua/hand.svg"
  9736. }
  9737. },
  9738. foot: {
  9739. height: math.unit(9 * 0.18, "feet"),
  9740. name: "Foot",
  9741. image: {
  9742. source: "./media/characters/starry-aqua/foot.svg"
  9743. }
  9744. }
  9745. },
  9746. [
  9747. {
  9748. name: "Micro",
  9749. height: math.unit(3, "inches")
  9750. },
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(9, "feet")
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(300, "feet"),
  9758. default: true
  9759. },
  9760. {
  9761. name: "Megamacro",
  9762. height: math.unit(3200, "feet")
  9763. }
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(15, "feet"),
  9771. weight: math.unit(5026, "lb"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/luka-towers/front.svg",
  9775. extra: 1269/1133,
  9776. bottom: 51/1320
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(15, "feet"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Minimacro",
  9788. height: math.unit(25, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(320, "feet")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(35000, "feet")
  9797. },
  9798. {
  9799. name: "Gigamacro",
  9800. height: math.unit(4000, "miles")
  9801. },
  9802. {
  9803. name: "Teramacro",
  9804. height: math.unit(15000, "miles")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9810. {
  9811. front: {
  9812. height: math.unit(6, "feet"),
  9813. weight: math.unit(150, "lb"),
  9814. name: "Front",
  9815. image: {
  9816. source: "./media/characters/natalie-nightring/front.svg",
  9817. extra: 1,
  9818. bottom: 0.06
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Uh Oh",
  9825. height: math.unit(0.1, "mm")
  9826. },
  9827. {
  9828. name: "Small",
  9829. height: math.unit(3, "inches")
  9830. },
  9831. {
  9832. name: "Human Scale",
  9833. height: math.unit(6, "feet")
  9834. },
  9835. {
  9836. name: "Librarian",
  9837. height: math.unit(50, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Immense",
  9842. height: math.unit(200, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(180, "lbs"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/danni-rosie/front.svg",
  9855. extra: 1260 / 1128,
  9856. bottom: 0.022
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(2, "inches"),
  9864. default: true
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(5 + 9 / 12, "feet"),
  9873. weight: math.unit(220, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/samantha-kruse/front.svg",
  9877. extra: (985 / 935),
  9878. bottom: 0.03
  9879. }
  9880. },
  9881. frontUndressed: {
  9882. height: math.unit(5 + 9 / 12, "feet"),
  9883. weight: math.unit(220, "lb"),
  9884. name: "Front (Undressed)",
  9885. image: {
  9886. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9887. extra: (973 / 923),
  9888. bottom: 0.025
  9889. }
  9890. },
  9891. fat: {
  9892. height: math.unit(5 + 9 / 12, "feet"),
  9893. weight: math.unit(900, "lb"),
  9894. name: "Front (Fat)",
  9895. image: {
  9896. source: "./media/characters/samantha-kruse/fat.svg",
  9897. extra: 2688 / 2561
  9898. }
  9899. },
  9900. },
  9901. [
  9902. {
  9903. name: "Normal",
  9904. height: math.unit(5 + 9 / 12, "feet"),
  9905. default: true
  9906. }
  9907. ]
  9908. ))
  9909. characterMakers.push(() => makeCharacter(
  9910. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9911. {
  9912. back: {
  9913. height: math.unit(5 + 4 / 12, "feet"),
  9914. weight: math.unit(4963, "lb"),
  9915. name: "Back",
  9916. image: {
  9917. source: "./media/characters/amelia-rosie/back.svg",
  9918. extra: 1113 / 963,
  9919. bottom: 0.01
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Level 0",
  9926. height: math.unit(5 + 4 / 12, "feet")
  9927. },
  9928. {
  9929. name: "Level 1",
  9930. height: math.unit(164597, "feet"),
  9931. default: true
  9932. },
  9933. {
  9934. name: "Level 2",
  9935. height: math.unit(956243, "miles")
  9936. },
  9937. {
  9938. name: "Level 3",
  9939. height: math.unit(29421709423, "miles")
  9940. },
  9941. {
  9942. name: "Level 4",
  9943. height: math.unit(154, "lightyears")
  9944. },
  9945. {
  9946. name: "Level 5",
  9947. height: math.unit(4738272, "lightyears")
  9948. },
  9949. {
  9950. name: "Level 6",
  9951. height: math.unit(145787152896, "lightyears")
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9957. {
  9958. front: {
  9959. height: math.unit(5 + 11 / 12, "feet"),
  9960. weight: math.unit(65, "kg"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/rook-kitara/front.svg",
  9964. extra: 1347 / 1274,
  9965. bottom: 0.005
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Totally Unfair",
  9972. height: math.unit(1.8, "mm")
  9973. },
  9974. {
  9975. name: "Lap Rookie",
  9976. height: math.unit(1.4, "feet")
  9977. },
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(5 + 11 / 12, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "How Did This Happen",
  9985. height: math.unit(80, "miles")
  9986. }
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(7, "feet"),
  9994. weight: math.unit(300, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/pisces/front.svg",
  9998. extra: 2255 / 2115,
  9999. bottom: 0.03
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(7, "feet"),
  10004. weight: math.unit(300, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/pisces/back.svg",
  10008. extra: 2146 / 2055,
  10009. bottom: 0.04
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(7, "feet"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Swimming Pool",
  10021. height: math.unit(12.2, "meters")
  10022. },
  10023. {
  10024. name: "Olympic Swimming Pool",
  10025. height: math.unit(56.3, "meters")
  10026. },
  10027. {
  10028. name: "Lake Superior",
  10029. height: math.unit(93900, "meters")
  10030. },
  10031. {
  10032. name: "Mediterranean Sea",
  10033. height: math.unit(644457, "meters")
  10034. },
  10035. {
  10036. name: "World's Oceans",
  10037. height: math.unit(4567491, "meters")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(2.3, "meters"),
  10046. weight: math.unit(120, "kg"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/zelas/front.svg"
  10050. }
  10051. },
  10052. side: {
  10053. height: math.unit(2.3, "meters"),
  10054. weight: math.unit(120, "kg"),
  10055. name: "Side",
  10056. image: {
  10057. source: "./media/characters/zelas/side.svg"
  10058. }
  10059. },
  10060. back: {
  10061. height: math.unit(2.3, "meters"),
  10062. weight: math.unit(120, "kg"),
  10063. name: "Back",
  10064. image: {
  10065. source: "./media/characters/zelas/back.svg"
  10066. }
  10067. },
  10068. foot: {
  10069. height: math.unit(1.116, "feet"),
  10070. name: "Foot",
  10071. image: {
  10072. source: "./media/characters/zelas/foot.svg"
  10073. }
  10074. },
  10075. },
  10076. [
  10077. {
  10078. name: "Normal",
  10079. height: math.unit(2.3, "meters")
  10080. },
  10081. {
  10082. name: "Macro",
  10083. height: math.unit(30, "meters"),
  10084. default: true
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(1, "inch"),
  10093. weight: math.unit(0.21, "grams"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/talbot/front.svg",
  10097. extra: 594 / 544
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Micro",
  10104. height: math.unit(1, "inch"),
  10105. default: true
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10111. {
  10112. front: {
  10113. height: math.unit(3 + 3 / 12, "feet"),
  10114. weight: math.unit(51.8, "lb"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/fliss/front.svg",
  10118. extra: 840 / 640
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Teeny Tiny",
  10125. height: math.unit(1, "mm")
  10126. },
  10127. {
  10128. name: "Small",
  10129. height: math.unit(1, "inch"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Standard Sylveon",
  10134. height: math.unit(3 + 3 / 12, "feet")
  10135. },
  10136. {
  10137. name: "Large Nuisance",
  10138. height: math.unit(33, "feet")
  10139. },
  10140. {
  10141. name: "City Filler",
  10142. height: math.unit(3000, "feet")
  10143. },
  10144. {
  10145. name: "New Horizon",
  10146. height: math.unit(6000, "miles")
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(5, "cm"),
  10155. weight: math.unit(1.94, "g"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/fleta/front.svg",
  10159. extra: 835 / 803
  10160. }
  10161. },
  10162. back: {
  10163. height: math.unit(5, "cm"),
  10164. weight: math.unit(1.94, "g"),
  10165. name: "Back",
  10166. image: {
  10167. source: "./media/characters/fleta/back.svg",
  10168. extra: 835 / 803
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(5, "cm"),
  10176. default: true
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(6, "feet"),
  10185. weight: math.unit(225, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/dominic/front.svg",
  10189. extra: 1770 / 1620,
  10190. bottom: 0.025
  10191. }
  10192. },
  10193. back: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(225, "lb"),
  10196. name: "Back",
  10197. image: {
  10198. source: "./media/characters/dominic/back.svg",
  10199. extra: 1745 / 1620,
  10200. bottom: 0.065
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Nano",
  10207. height: math.unit(0.1, "mm")
  10208. },
  10209. {
  10210. name: "Micro-",
  10211. height: math.unit(1, "mm")
  10212. },
  10213. {
  10214. name: "Micro",
  10215. height: math.unit(4, "inches")
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(6 + 4 / 12, "feet"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(115, "feet")
  10225. },
  10226. {
  10227. name: "Macro+",
  10228. height: math.unit(955, "feet")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(8990, "feet")
  10233. },
  10234. {
  10235. name: "Gigmacro",
  10236. height: math.unit(9310, "miles")
  10237. },
  10238. {
  10239. name: "Teramacro",
  10240. height: math.unit(1567005010, "miles")
  10241. },
  10242. {
  10243. name: "Examacro",
  10244. height: math.unit(1425, "parsecs")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(400, "feet"),
  10253. weight: math.unit(44444444, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/major-colonel/front.svg"
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(400, "feet"),
  10261. weight: math.unit(44444444, "lb"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/major-colonel/back.svg"
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(400, "feet"),
  10272. default: true
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10278. {
  10279. catFront: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(120, "lb"),
  10282. name: "Front (Cat Side)",
  10283. image: {
  10284. source: "./media/characters/axel-lycan/cat-front.svg",
  10285. extra: 430 / 402,
  10286. bottom: 43 / 472.35
  10287. }
  10288. },
  10289. catBack: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(120, "lb"),
  10292. name: "Back (Cat Side)",
  10293. image: {
  10294. source: "./media/characters/axel-lycan/cat-back.svg",
  10295. extra: 447 / 419,
  10296. bottom: 23.3 / 469
  10297. }
  10298. },
  10299. wolfFront: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(120, "lb"),
  10302. name: "Front (Wolf Side)",
  10303. image: {
  10304. source: "./media/characters/axel-lycan/wolf-front.svg",
  10305. extra: 485 / 456,
  10306. bottom: 19 / 504
  10307. }
  10308. },
  10309. wolfBack: {
  10310. height: math.unit(6, "feet"),
  10311. weight: math.unit(120, "lb"),
  10312. name: "Back (Wolf Side)",
  10313. image: {
  10314. source: "./media/characters/axel-lycan/wolf-back.svg",
  10315. extra: 475 / 438,
  10316. bottom: 39.2 / 514
  10317. }
  10318. },
  10319. },
  10320. [
  10321. {
  10322. name: "Macro",
  10323. height: math.unit(1, "km"),
  10324. default: true
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(5 + 9 / 12, "feet"),
  10333. weight: math.unit(175, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/vanrel-hyena/front.svg",
  10337. extra: 1086 / 1010,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(5 + 9 / 12, "feet"),
  10346. default: true
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(103, "lb"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/abbott-absol/front.svg",
  10359. extra: 2010 / 1842
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Megamicro",
  10366. height: math.unit(0.1, "mm")
  10367. },
  10368. {
  10369. name: "Micro",
  10370. height: math.unit(1, "inch")
  10371. },
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(6, "feet"),
  10375. default: true
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(264, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/hector/front.svg",
  10388. extra: 2280 / 2130,
  10389. bottom: 0.07
  10390. }
  10391. },
  10392. },
  10393. [
  10394. {
  10395. name: "Normal",
  10396. height: math.unit(12.25, "foot"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Macro",
  10401. height: math.unit(160, "feet")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(6, "feet"),
  10410. weight: math.unit(150, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/sal/front.svg",
  10414. extra: 1846 / 1699,
  10415. bottom: 0.04
  10416. }
  10417. },
  10418. },
  10419. [
  10420. {
  10421. name: "Megamacro",
  10422. height: math.unit(10, "miles"),
  10423. default: true
  10424. },
  10425. ]
  10426. ))
  10427. characterMakers.push(() => makeCharacter(
  10428. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10429. {
  10430. front: {
  10431. height: math.unit(3, "meters"),
  10432. weight: math.unit(450, "kg"),
  10433. name: "front",
  10434. image: {
  10435. source: "./media/characters/ranger/front.svg",
  10436. extra: 2401 / 2243,
  10437. bottom: 0.05
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(3, "meters"),
  10445. default: true
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(14, "feet"),
  10454. weight: math.unit(800, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/theresa/front.svg",
  10458. extra: 3575 / 3346,
  10459. bottom: 0.03
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(14, "feet"),
  10467. default: true
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10473. {
  10474. front: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(3, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/ine/front.svg",
  10480. extra: 678 / 539,
  10481. bottom: 0.023
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(2.265, "feet"),
  10489. default: true
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(5, "feet"),
  10498. weight: math.unit(30, "kg"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/vial/front.svg",
  10502. extra: 1365 / 1277,
  10503. bottom: 0.04
  10504. }
  10505. },
  10506. },
  10507. [
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(5, "feet"),
  10511. default: true
  10512. },
  10513. ]
  10514. ))
  10515. characterMakers.push(() => makeCharacter(
  10516. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10517. {
  10518. side: {
  10519. height: math.unit(3.4, "meters"),
  10520. weight: math.unit(1000, "lb"),
  10521. name: "Side",
  10522. image: {
  10523. source: "./media/characters/rovoska/side.svg",
  10524. extra: 4403 / 1515
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Normal",
  10531. height: math.unit(3.4, "meters"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(8, "feet"),
  10541. weight: math.unit(315, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/gunner-rotthbauer/front.svg"
  10545. }
  10546. },
  10547. back: {
  10548. height: math.unit(8, "feet"),
  10549. weight: math.unit(315, "lb"),
  10550. name: "Back",
  10551. image: {
  10552. source: "./media/characters/gunner-rotthbauer/back.svg"
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Micro",
  10559. height: math.unit(3.5, "inches")
  10560. },
  10561. {
  10562. name: "Normal",
  10563. height: math.unit(8, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(250, "feet")
  10569. },
  10570. {
  10571. name: "Megamacro",
  10572. height: math.unit(1, "AU")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(5 + 5 / 12, "feet"),
  10581. weight: math.unit(140, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/allatia/front.svg",
  10585. extra: 1227 / 1180,
  10586. bottom: 0.027
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(5 + 5 / 12, "feet")
  10594. },
  10595. {
  10596. name: "Macro",
  10597. height: math.unit(250, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(8, "miles")
  10603. }
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(6, "feet"),
  10611. weight: math.unit(120, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/tene/front.svg",
  10615. extra: 814/750,
  10616. bottom: 36/850
  10617. }
  10618. },
  10619. stomping: {
  10620. height: math.unit(2.025, "meters"),
  10621. weight: math.unit(120, "lb"),
  10622. name: "Stomping",
  10623. image: {
  10624. source: "./media/characters/tene/stomping.svg",
  10625. extra: 885/821,
  10626. bottom: 15/900
  10627. }
  10628. },
  10629. sitting: {
  10630. height: math.unit(1, "meter"),
  10631. weight: math.unit(120, "lb"),
  10632. name: "Sitting",
  10633. image: {
  10634. source: "./media/characters/tene/sitting.svg",
  10635. extra: 396/366,
  10636. bottom: 79/475
  10637. }
  10638. },
  10639. smiling: {
  10640. height: math.unit(1.2, "feet"),
  10641. name: "Smiling",
  10642. image: {
  10643. source: "./media/characters/tene/smiling.svg",
  10644. extra: 1364/1071,
  10645. bottom: 0/1364
  10646. }
  10647. },
  10648. smug: {
  10649. height: math.unit(1.3, "feet"),
  10650. name: "Smug",
  10651. image: {
  10652. source: "./media/characters/tene/smug.svg",
  10653. extra: 1323/1082,
  10654. bottom: 0/1323
  10655. }
  10656. },
  10657. feral: {
  10658. height: math.unit(3.9, "feet"),
  10659. weight: math.unit(250, "lb"),
  10660. name: "Feral",
  10661. image: {
  10662. source: "./media/characters/tene/feral.svg",
  10663. extra: 717 / 458,
  10664. bottom: 0.179
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(6, "feet")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(300, "feet"),
  10676. default: true
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(5, "miles")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10686. {
  10687. side: {
  10688. height: math.unit(6, "feet"),
  10689. name: "Side",
  10690. image: {
  10691. source: "./media/characters/evander/side.svg",
  10692. extra: 877 / 477
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(0.83, "meters"),
  10700. default: true
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(12, "feet"),
  10709. weight: math.unit(1000, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10713. extra: 1762 / 1611
  10714. }
  10715. },
  10716. back: {
  10717. height: math.unit(12, "feet"),
  10718. weight: math.unit(1000, "lb"),
  10719. name: "Back",
  10720. image: {
  10721. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10722. extra: 1762 / 1611
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(12, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Kaiju",
  10734. height: math.unit(150, "feet")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/zero-alurus/front.svg"
  10747. }
  10748. },
  10749. back: {
  10750. height: math.unit(6, "feet"),
  10751. weight: math.unit(150, "lb"),
  10752. name: "Back",
  10753. image: {
  10754. source: "./media/characters/zero-alurus/back.svg"
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(5 + 10 / 12, "feet")
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(60, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Macro+",
  10770. height: math.unit(450, "feet")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(200, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/mega-shi/front.svg",
  10783. extra: 1279 / 1250,
  10784. bottom: 0.02
  10785. }
  10786. },
  10787. back: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(200, "lb"),
  10790. name: "Back",
  10791. image: {
  10792. source: "./media/characters/mega-shi/back.svg",
  10793. extra: 1279 / 1250,
  10794. bottom: 0.02
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Micro",
  10801. height: math.unit(16 + 6 / 12, "feet")
  10802. },
  10803. {
  10804. name: "Third Dimension",
  10805. height: math.unit(40, "meters")
  10806. },
  10807. {
  10808. name: "Normal",
  10809. height: math.unit(660, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(10, "miles")
  10815. },
  10816. {
  10817. name: "Planetary Launch",
  10818. height: math.unit(500, "miles")
  10819. },
  10820. {
  10821. name: "Interstellar",
  10822. height: math.unit(1e9, "miles")
  10823. },
  10824. {
  10825. name: "Leaving the Universe",
  10826. height: math.unit(1, "gigaparsec")
  10827. },
  10828. {
  10829. name: "Travelling Universes",
  10830. height: math.unit(30e15, "parsecs")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(5 + 4/12, "feet"),
  10839. weight: math.unit(120, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/odyssey/front.svg",
  10843. extra: 1747/1571,
  10844. bottom: 47/1794
  10845. }
  10846. },
  10847. side: {
  10848. height: math.unit(5.1, "feet"),
  10849. weight: math.unit(120, "lb"),
  10850. name: "Side",
  10851. image: {
  10852. source: "./media/characters/odyssey/side.svg",
  10853. extra: 1847/1619,
  10854. bottom: 47/1894
  10855. }
  10856. },
  10857. lounging: {
  10858. height: math.unit(1.464, "feet"),
  10859. weight: math.unit(120, "lb"),
  10860. name: "Lounging",
  10861. image: {
  10862. source: "./media/characters/odyssey/lounging.svg",
  10863. extra: 1235/837,
  10864. bottom: 551/1786
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Normal",
  10871. height: math.unit(5 + 4 / 12, "feet")
  10872. },
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(1, "km")
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(3000, "km")
  10880. },
  10881. {
  10882. name: "Gigamacro",
  10883. height: math.unit(1, "AU"),
  10884. default: true
  10885. },
  10886. {
  10887. name: "Omniversal",
  10888. height: math.unit(100e14, "lightyears")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(300, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/mekuto/front.svg",
  10901. extra: 921 / 832,
  10902. bottom: 0.03
  10903. }
  10904. },
  10905. hand: {
  10906. height: math.unit(6 / 10.24, "feet"),
  10907. name: "Hand",
  10908. image: {
  10909. source: "./media/characters/mekuto/hand.svg"
  10910. }
  10911. },
  10912. foot: {
  10913. height: math.unit(6 / 5.05, "feet"),
  10914. name: "Foot",
  10915. image: {
  10916. source: "./media/characters/mekuto/foot.svg"
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Minimicro",
  10923. height: math.unit(0.2, "inches")
  10924. },
  10925. {
  10926. name: "Micro",
  10927. height: math.unit(1.5, "inches")
  10928. },
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(5 + 11 / 12, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Minimacro",
  10936. height: math.unit(17 + 9 / 12, "feet")
  10937. },
  10938. {
  10939. name: "Macro",
  10940. height: math.unit(177.5, "feet")
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(152, "miles")
  10945. },
  10946. ]
  10947. ))
  10948. characterMakers.push(() => makeCharacter(
  10949. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10950. {
  10951. front: {
  10952. height: math.unit(6.5, "inches"),
  10953. weight: math.unit(13, "oz"),
  10954. name: "Front",
  10955. image: {
  10956. source: "./media/characters/dafydd-tomos/front.svg",
  10957. extra: 2990 / 2603,
  10958. bottom: 0.03
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Micro",
  10965. height: math.unit(6.5, "inches"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/splinter/front.svg",
  10979. extra: 2990 / 2882,
  10980. bottom: 0.04
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/splinter/back.svg",
  10989. extra: 2990 / 2882,
  10990. bottom: 0.04
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(6, "feet")
  10998. },
  10999. {
  11000. name: "Macro",
  11001. height: math.unit(230, "meters"),
  11002. default: true
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(4 + 10 / 12, "feet"),
  11011. weight: math.unit(480, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/snow-gabumon/front.svg",
  11015. extra: 1140 / 963,
  11016. bottom: 0.058
  11017. }
  11018. },
  11019. back: {
  11020. height: math.unit(4 + 10 / 12, "feet"),
  11021. weight: math.unit(480, "lb"),
  11022. name: "Back",
  11023. image: {
  11024. source: "./media/characters/snow-gabumon/back.svg",
  11025. extra: 1115 / 962,
  11026. bottom: 0.041
  11027. }
  11028. },
  11029. frontUndresed: {
  11030. height: math.unit(4 + 10 / 12, "feet"),
  11031. weight: math.unit(480, "lb"),
  11032. name: "Front (Undressed)",
  11033. image: {
  11034. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11035. extra: 1061 / 960,
  11036. bottom: 0.045
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Micro",
  11043. height: math.unit(1, "inch")
  11044. },
  11045. {
  11046. name: "Normal",
  11047. height: math.unit(4 + 10 / 12, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro",
  11052. height: math.unit(200, "feet")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(120, "miles")
  11057. },
  11058. {
  11059. name: "Gigamacro",
  11060. height: math.unit(9800, "miles")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(1.7, "meters"),
  11069. weight: math.unit(140, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/moody/front.svg",
  11073. extra: 3226 / 3007,
  11074. bottom: 0.087
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(1, "mm")
  11082. },
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(1.7, "meters"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Macro",
  11090. height: math.unit(80, "meters")
  11091. },
  11092. {
  11093. name: "Macro+",
  11094. height: math.unit(500, "meters")
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(150, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/zyas/front.svg",
  11107. extra: 1180 / 1120,
  11108. bottom: 0.045
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(10, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(500, "feet")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(5, "miles")
  11125. },
  11126. {
  11127. name: "Teramacro",
  11128. height: math.unit(150000, "miles")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/cuon/front.svg",
  11141. extra: 1390 / 1320,
  11142. bottom: 0.008
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Micro",
  11149. height: math.unit(3, "inches")
  11150. },
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(18 + 9 / 12, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Macro",
  11158. height: math.unit(360, "feet")
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(360, "miles")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(2.4, "meters"),
  11171. weight: math.unit(70, "kg"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/nyanuxk/front.svg",
  11175. extra: 1172 / 1084,
  11176. bottom: 0.065
  11177. }
  11178. },
  11179. side: {
  11180. height: math.unit(2.4, "meters"),
  11181. weight: math.unit(70, "kg"),
  11182. name: "Side",
  11183. image: {
  11184. source: "./media/characters/nyanuxk/side.svg",
  11185. extra: 1190 / 1132,
  11186. bottom: 0.007
  11187. }
  11188. },
  11189. back: {
  11190. height: math.unit(2.4, "meters"),
  11191. weight: math.unit(70, "kg"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/nyanuxk/back.svg",
  11195. extra: 1200 / 1141,
  11196. bottom: 0.015
  11197. }
  11198. },
  11199. foot: {
  11200. height: math.unit(0.52, "meters"),
  11201. name: "Foot",
  11202. image: {
  11203. source: "./media/characters/nyanuxk/foot.svg"
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Micro",
  11210. height: math.unit(2, "cm")
  11211. },
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(2.4, "meters"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Smaller Macro",
  11219. height: math.unit(120, "meters")
  11220. },
  11221. {
  11222. name: "Bigger Macro",
  11223. height: math.unit(1.2, "km")
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(15, "kilometers")
  11228. },
  11229. {
  11230. name: "Gigamacro",
  11231. height: math.unit(2000, "km")
  11232. },
  11233. {
  11234. name: "Teramacro",
  11235. height: math.unit(500000, "km")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11241. {
  11242. side: {
  11243. height: math.unit(6, "feet"),
  11244. name: "Side",
  11245. image: {
  11246. source: "./media/characters/ailbhe/side.svg",
  11247. extra: 757 / 464,
  11248. bottom: 0.041
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(1.07, "meters"),
  11256. default: true
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(6, "feet"),
  11265. weight: math.unit(120, "kg"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/zevulfius/front.svg",
  11269. extra: 965 / 903
  11270. }
  11271. },
  11272. side: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(120, "kg"),
  11275. name: "Side",
  11276. image: {
  11277. source: "./media/characters/zevulfius/side.svg",
  11278. extra: 939 / 900
  11279. }
  11280. },
  11281. back: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(120, "kg"),
  11284. name: "Back",
  11285. image: {
  11286. source: "./media/characters/zevulfius/back.svg",
  11287. extra: 918 / 854,
  11288. bottom: 0.005
  11289. }
  11290. },
  11291. foot: {
  11292. height: math.unit(6 / 3.72, "feet"),
  11293. name: "Foot",
  11294. image: {
  11295. source: "./media/characters/zevulfius/foot.svg"
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(750, "meters")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(20, "km"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Gigamacro",
  11311. height: math.unit(2000, "km")
  11312. },
  11313. {
  11314. name: "Teramacro",
  11315. height: math.unit(250000, "km")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(100, "feet"),
  11324. weight: math.unit(350, "kg"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/rikes/front.svg",
  11328. extra: 1565 / 1483,
  11329. bottom: 0.017
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(100, "feet"),
  11337. default: true
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(8, "feet"),
  11346. weight: math.unit(356, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/adam-silver-mane/front.svg",
  11350. extra: 1036/937,
  11351. bottom: 63/1099
  11352. }
  11353. },
  11354. side: {
  11355. height: math.unit(8, "feet"),
  11356. weight: math.unit(356, "lb"),
  11357. name: "Side",
  11358. image: {
  11359. source: "./media/characters/adam-silver-mane/side.svg",
  11360. extra: 997/901,
  11361. bottom: 59/1056
  11362. }
  11363. },
  11364. frontNsfw: {
  11365. height: math.unit(8, "feet"),
  11366. weight: math.unit(356, "lb"),
  11367. name: "Front (NSFW)",
  11368. image: {
  11369. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11370. extra: 1036/937,
  11371. bottom: 63/1099
  11372. }
  11373. },
  11374. sideNsfw: {
  11375. height: math.unit(8, "feet"),
  11376. weight: math.unit(356, "lb"),
  11377. name: "Side (NSFW)",
  11378. image: {
  11379. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11380. extra: 997/901,
  11381. bottom: 59/1056
  11382. }
  11383. },
  11384. dick: {
  11385. height: math.unit(2.1, "feet"),
  11386. name: "Dick",
  11387. image: {
  11388. source: "./media/characters/adam-silver-mane/dick.svg"
  11389. }
  11390. },
  11391. taur: {
  11392. height: math.unit(16, "feet"),
  11393. weight: math.unit(1500, "kg"),
  11394. name: "Taur",
  11395. image: {
  11396. source: "./media/characters/adam-silver-mane/taur.svg",
  11397. extra: 1713 / 1571,
  11398. bottom: 0.01
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Normal",
  11405. height: math.unit(8, "feet")
  11406. },
  11407. {
  11408. name: "Minimacro",
  11409. height: math.unit(80, "feet")
  11410. },
  11411. {
  11412. name: "MDA",
  11413. height: math.unit(80, "meters")
  11414. },
  11415. {
  11416. name: "Macro",
  11417. height: math.unit(800, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(8000, "feet")
  11423. },
  11424. {
  11425. name: "Gigamacro",
  11426. height: math.unit(800, "miles")
  11427. },
  11428. {
  11429. name: "Teramacro",
  11430. height: math.unit(80000, "miles")
  11431. },
  11432. {
  11433. name: "Celestial",
  11434. height: math.unit(8e6, "miles")
  11435. },
  11436. {
  11437. name: "Star Dragon",
  11438. height: math.unit(800000, "parsecs")
  11439. },
  11440. {
  11441. name: "Godly",
  11442. height: math.unit(800, "teraparsecs")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/ky'owin/front.svg",
  11455. extra: 3888 / 3068,
  11456. bottom: 0.015
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(6 + 8 / 12, "feet")
  11464. },
  11465. {
  11466. name: "Large",
  11467. height: math.unit(68, "feet")
  11468. },
  11469. {
  11470. name: "Macro",
  11471. height: math.unit(132, "feet")
  11472. },
  11473. {
  11474. name: "Macro+",
  11475. height: math.unit(340, "feet")
  11476. },
  11477. {
  11478. name: "Macro++",
  11479. height: math.unit(680, "feet"),
  11480. default: true
  11481. },
  11482. {
  11483. name: "Megamacro",
  11484. height: math.unit(1, "mile")
  11485. },
  11486. {
  11487. name: "Megamacro+",
  11488. height: math.unit(10, "miles")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(4, "feet"),
  11497. weight: math.unit(50, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/mal/front.svg",
  11501. extra: 785 / 724,
  11502. bottom: 0.07
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Micro",
  11509. height: math.unit(4, "inches")
  11510. },
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(4, "feet"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(200, "feet")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11524. {
  11525. front: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/jordan-deware/front.svg",
  11531. extra: 1191 / 1012
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Nano",
  11538. height: math.unit(0.01, "mm")
  11539. },
  11540. {
  11541. name: "Minimicro",
  11542. height: math.unit(1, "mm")
  11543. },
  11544. {
  11545. name: "Micro",
  11546. height: math.unit(0.5, "inches")
  11547. },
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(4, "feet"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Minimacro",
  11555. height: math.unit(40, "meters")
  11556. },
  11557. {
  11558. name: "Small Macro",
  11559. height: math.unit(400, "meters")
  11560. },
  11561. {
  11562. name: "Macro",
  11563. height: math.unit(4, "miles")
  11564. },
  11565. {
  11566. name: "Megamacro",
  11567. height: math.unit(40, "miles")
  11568. },
  11569. {
  11570. name: "Megamacro+",
  11571. height: math.unit(400, "miles")
  11572. },
  11573. {
  11574. name: "Gigamacro",
  11575. height: math.unit(400000, "miles")
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11581. {
  11582. side: {
  11583. height: math.unit(6, "feet"),
  11584. weight: math.unit(150, "lb"),
  11585. name: "Side",
  11586. image: {
  11587. source: "./media/characters/kimiko/side.svg",
  11588. extra: 600 / 358
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(15, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(220, "feet")
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(1450, "feet")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(11500, "feet")
  11609. },
  11610. {
  11611. name: "Gigamacro",
  11612. height: math.unit(9500, "miles")
  11613. },
  11614. {
  11615. name: "Teramacro",
  11616. height: math.unit(2208005005, "miles")
  11617. },
  11618. {
  11619. name: "Examacro",
  11620. height: math.unit(2750, "parsecs")
  11621. },
  11622. {
  11623. name: "Zettamacro",
  11624. height: math.unit(101500, "parsecs")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(70, "kg"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/andrew-sleepy/front.svg"
  11637. }
  11638. },
  11639. side: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(70, "kg"),
  11642. name: "Side",
  11643. image: {
  11644. source: "./media/characters/andrew-sleepy/side.svg"
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Micro",
  11651. height: math.unit(1, "mm"),
  11652. default: true
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/judio/front.svg",
  11665. extra: 1258 / 1110
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(5 + 6 / 12, "feet")
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(1000, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Megamacro",
  11681. height: math.unit(10, "miles")
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11687. {
  11688. frontDressed: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(68, "kg"),
  11691. name: "Front (Dressed)",
  11692. image: {
  11693. source: "./media/characters/nomaxice/front-dressed.svg",
  11694. extra: 1137/824,
  11695. bottom: 74/1211
  11696. }
  11697. },
  11698. frontShorts: {
  11699. height: math.unit(6, "feet"),
  11700. weight: math.unit(68, "kg"),
  11701. name: "Front (Shorts)",
  11702. image: {
  11703. source: "./media/characters/nomaxice/front-shorts.svg",
  11704. extra: 1137/824,
  11705. bottom: 74/1211
  11706. }
  11707. },
  11708. back: {
  11709. height: math.unit(6, "feet"),
  11710. weight: math.unit(68, "kg"),
  11711. name: "Back",
  11712. image: {
  11713. source: "./media/characters/nomaxice/back.svg",
  11714. extra: 822/786,
  11715. bottom: 39/861
  11716. }
  11717. },
  11718. hand: {
  11719. height: math.unit(0.565, "feet"),
  11720. name: "Hand",
  11721. image: {
  11722. source: "./media/characters/nomaxice/hand.svg"
  11723. }
  11724. },
  11725. foot: {
  11726. height: math.unit(1, "feet"),
  11727. name: "Foot",
  11728. image: {
  11729. source: "./media/characters/nomaxice/foot.svg"
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Micro",
  11736. height: math.unit(8, "cm")
  11737. },
  11738. {
  11739. name: "Norm",
  11740. height: math.unit(1.82, "m")
  11741. },
  11742. {
  11743. name: "Norm+",
  11744. height: math.unit(8.8, "feet"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Big",
  11749. height: math.unit(8, "meters")
  11750. },
  11751. {
  11752. name: "Macro",
  11753. height: math.unit(18, "meters")
  11754. },
  11755. {
  11756. name: "Macro+",
  11757. height: math.unit(88, "meters")
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(12, "feet"),
  11766. weight: math.unit(1.5, "tons"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/dydros/front.svg",
  11770. extra: 863 / 800,
  11771. bottom: 0.015
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(12, "feet"),
  11776. weight: math.unit(1.5, "tons"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/dydros/back.svg",
  11780. extra: 900 / 843,
  11781. bottom: 0.005
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(12, "feet"),
  11789. default: true
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(100, "kg"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/riggi/front.svg",
  11802. extra: 5787 / 5303
  11803. }
  11804. },
  11805. hyper: {
  11806. height: math.unit(6 * 5 / 3, "feet"),
  11807. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11808. name: "Hyper",
  11809. image: {
  11810. source: "./media/characters/riggi/hyper.svg",
  11811. extra: 3595 / 3485
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Small Macro",
  11818. height: math.unit(50, "feet")
  11819. },
  11820. {
  11821. name: "Default",
  11822. height: math.unit(200, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Loom",
  11827. height: math.unit(10000, "feet")
  11828. },
  11829. {
  11830. name: "Cruising Altitude",
  11831. height: math.unit(30000, "feet")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(100, "miles")
  11836. },
  11837. {
  11838. name: "Continent Sized",
  11839. height: math.unit(2800, "miles")
  11840. },
  11841. {
  11842. name: "Earth Sized",
  11843. height: math.unit(8000, "miles")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(250, "lb"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/alexi/front.svg",
  11856. extra: 3483 / 3291,
  11857. bottom: 0.04
  11858. }
  11859. },
  11860. back: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(250, "lb"),
  11863. name: "Back",
  11864. image: {
  11865. source: "./media/characters/alexi/back.svg",
  11866. extra: 3533 / 3356,
  11867. bottom: 0.021
  11868. }
  11869. },
  11870. frontTransforming: {
  11871. height: math.unit(8.58, "feet"),
  11872. weight: math.unit(1300, "lb"),
  11873. name: "Transforming",
  11874. image: {
  11875. source: "./media/characters/alexi/front-transforming.svg",
  11876. extra: 437 / 409,
  11877. bottom: 19 / 458.66
  11878. }
  11879. },
  11880. frontTransformed: {
  11881. height: math.unit(12.5, "feet"),
  11882. weight: math.unit(4000, "lb"),
  11883. name: "Transformed",
  11884. image: {
  11885. source: "./media/characters/alexi/front-transformed.svg",
  11886. extra: 639 / 614,
  11887. bottom: 30.55 / 671
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Normal",
  11894. height: math.unit(14, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Minimacro",
  11899. height: math.unit(30, "meters")
  11900. },
  11901. {
  11902. name: "Macro",
  11903. height: math.unit(500, "meters")
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(9000, "km")
  11908. },
  11909. {
  11910. name: "Teramacro",
  11911. height: math.unit(384000, "km")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(150, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/kayroo/front.svg",
  11924. extra: 1153 / 1038,
  11925. bottom: 0.06
  11926. }
  11927. },
  11928. foot: {
  11929. height: math.unit(6, "feet"),
  11930. weight: math.unit(150, "lb"),
  11931. name: "Foot",
  11932. image: {
  11933. source: "./media/characters/kayroo/foot.svg"
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(8, "feet"),
  11941. default: true
  11942. },
  11943. {
  11944. name: "Minimacro",
  11945. height: math.unit(250, "feet")
  11946. },
  11947. {
  11948. name: "Macro",
  11949. height: math.unit(2800, "feet")
  11950. },
  11951. {
  11952. name: "Megamacro",
  11953. height: math.unit(5200, "feet")
  11954. },
  11955. {
  11956. name: "Gigamacro",
  11957. height: math.unit(27000, "feet")
  11958. },
  11959. {
  11960. name: "Omega",
  11961. height: math.unit(45000, "feet")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11967. {
  11968. front: {
  11969. height: math.unit(18, "feet"),
  11970. weight: math.unit(5800, "lb"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/rhys/front.svg",
  11974. extra: 3386 / 3090,
  11975. bottom: 0.07
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(18, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Working Size",
  11987. height: math.unit(200, "feet")
  11988. },
  11989. {
  11990. name: "Demolition Size",
  11991. height: math.unit(2000, "feet")
  11992. },
  11993. {
  11994. name: "Maximum Licensed Size",
  11995. height: math.unit(5, "miles")
  11996. },
  11997. {
  11998. name: "Maximum Observed Size",
  11999. height: math.unit(10, "yottameters")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(250, "lb"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/toto/front.svg",
  12012. extra: 527 / 479,
  12013. bottom: 0.05
  12014. }
  12015. },
  12016. },
  12017. [
  12018. {
  12019. name: "Micro",
  12020. height: math.unit(3, "feet")
  12021. },
  12022. {
  12023. name: "Normal",
  12024. height: math.unit(10, "feet")
  12025. },
  12026. {
  12027. name: "Macro",
  12028. height: math.unit(150, "feet"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(1200, "feet")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "King", species: ["lion"], tags: ["anthro"] },
  12039. {
  12040. back: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Back",
  12044. image: {
  12045. source: "./media/characters/king/back.svg"
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Micro",
  12052. height: math.unit(2, "inches")
  12053. },
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(8, "feet")
  12057. },
  12058. {
  12059. name: "Macro",
  12060. height: math.unit(200, "feet"),
  12061. default: true
  12062. },
  12063. {
  12064. name: "Megamacro",
  12065. height: math.unit(50, "miles")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(11, "feet"),
  12074. weight: math.unit(1400, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/cordite/front.svg",
  12078. extra: 1919/1827,
  12079. bottom: 40/1959
  12080. }
  12081. },
  12082. side: {
  12083. height: math.unit(11, "feet"),
  12084. weight: math.unit(1400, "lb"),
  12085. name: "Side",
  12086. image: {
  12087. source: "./media/characters/cordite/side.svg",
  12088. extra: 1908/1793,
  12089. bottom: 38/1946
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(11, "feet"),
  12094. weight: math.unit(1400, "lb"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/cordite/back.svg",
  12098. extra: 1938/1837,
  12099. bottom: 10/1948
  12100. }
  12101. },
  12102. feral: {
  12103. height: math.unit(2, "feet"),
  12104. weight: math.unit(90, "lb"),
  12105. name: "Feral",
  12106. image: {
  12107. source: "./media/characters/cordite/feral.svg",
  12108. extra: 1260 / 755,
  12109. bottom: 0.05
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(11, "feet"),
  12117. default: true
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12123. {
  12124. front: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(150, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/pianostrong/front.svg",
  12130. extra: 6577 / 6254,
  12131. bottom: 0.02
  12132. }
  12133. },
  12134. side: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Side",
  12138. image: {
  12139. source: "./media/characters/pianostrong/side.svg",
  12140. extra: 6106 / 5730
  12141. }
  12142. },
  12143. back: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(150, "lb"),
  12146. name: "Back",
  12147. image: {
  12148. source: "./media/characters/pianostrong/back.svg",
  12149. extra: 6085 / 5733,
  12150. bottom: 0.01
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(100, "feet")
  12158. },
  12159. {
  12160. name: "Macro+",
  12161. height: math.unit(300, "feet"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Macro++",
  12166. height: math.unit(1000, "feet")
  12167. },
  12168. ]
  12169. ))
  12170. characterMakers.push(() => makeCharacter(
  12171. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12172. {
  12173. front: {
  12174. height: math.unit(6, "feet"),
  12175. weight: math.unit(150, "lb"),
  12176. name: "Front",
  12177. image: {
  12178. source: "./media/characters/kona/front.svg",
  12179. extra: 2960 / 2629,
  12180. bottom: 0.005
  12181. }
  12182. },
  12183. },
  12184. [
  12185. {
  12186. name: "Normal",
  12187. height: math.unit(11 + 8 / 12, "feet")
  12188. },
  12189. {
  12190. name: "Macro",
  12191. height: math.unit(850, "feet"),
  12192. default: true
  12193. },
  12194. {
  12195. name: "Macro+",
  12196. height: math.unit(1.5, "km"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(80, "miles")
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(3500, "miles")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12211. {
  12212. side: {
  12213. height: math.unit(1.9, "meters"),
  12214. weight: math.unit(326, "kg"),
  12215. name: "Side",
  12216. image: {
  12217. source: "./media/characters/levi/side.svg",
  12218. extra: 1704 / 1334,
  12219. bottom: 0.02
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(1.9, "meters"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(20, "meters")
  12232. },
  12233. {
  12234. name: "Macro+",
  12235. height: math.unit(200, "meters")
  12236. },
  12237. {
  12238. name: "Megamacro",
  12239. height: math.unit(2, "km")
  12240. },
  12241. {
  12242. name: "Megamacro+",
  12243. height: math.unit(20, "km")
  12244. },
  12245. {
  12246. name: "Gigamacro",
  12247. height: math.unit(2500, "km")
  12248. },
  12249. {
  12250. name: "Gigamacro+",
  12251. height: math.unit(120000, "km")
  12252. },
  12253. {
  12254. name: "Teramacro",
  12255. height: math.unit(7.77e6, "km")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(6 + 4/12, "feet"),
  12264. weight: math.unit(190, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/bmc/front.svg",
  12268. extra: 1626/1472,
  12269. bottom: 79/1705
  12270. }
  12271. },
  12272. back: {
  12273. height: math.unit(6 + 4/12, "feet"),
  12274. weight: math.unit(190, "lb"),
  12275. name: "Back",
  12276. image: {
  12277. source: "./media/characters/bmc/back.svg",
  12278. extra: 1640/1479,
  12279. bottom: 45/1685
  12280. }
  12281. },
  12282. frontArmor: {
  12283. height: math.unit(6 + 4/12, "feet"),
  12284. weight: math.unit(190, "lb"),
  12285. name: "Front-armor",
  12286. image: {
  12287. source: "./media/characters/bmc/front-armor.svg",
  12288. extra: 1538/1468,
  12289. bottom: 79/1617
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Human-sized",
  12296. height: math.unit(6 + 4 / 12, "feet")
  12297. },
  12298. {
  12299. name: "Interactive Size",
  12300. height: math.unit(25, "feet")
  12301. },
  12302. {
  12303. name: "Small",
  12304. height: math.unit(250, "feet")
  12305. },
  12306. {
  12307. name: "Normal",
  12308. height: math.unit(1250, "feet"),
  12309. default: true
  12310. },
  12311. {
  12312. name: "Good Day",
  12313. height: math.unit(88, "miles")
  12314. },
  12315. {
  12316. name: "Largest Measured Size",
  12317. height: math.unit(105.960, "galaxies")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(20, "feet"),
  12326. weight: math.unit(2016, "kg"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/sven-the-kaiju/front.svg",
  12330. extra: 1277/1250,
  12331. bottom: 35/1312
  12332. }
  12333. },
  12334. mouth: {
  12335. height: math.unit(1.85, "feet"),
  12336. name: "Mouth",
  12337. image: {
  12338. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Fairy",
  12345. height: math.unit(6, "inches")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(20, "feet"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Rampage",
  12354. height: math.unit(200, "feet")
  12355. },
  12356. {
  12357. name: "Archfey Forest Guardian",
  12358. height: math.unit(1, "mile")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(4, "meters"),
  12367. weight: math.unit(2, "tons"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/marik/front.svg",
  12371. extra: 1057 / 1003,
  12372. bottom: 0.08
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(4, "meters"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(20, "meters")
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(50, "km")
  12389. },
  12390. {
  12391. name: "Gigamacro",
  12392. height: math.unit(100, "km")
  12393. },
  12394. {
  12395. name: "Alpha Macro",
  12396. height: math.unit(7.88e7, "yottameters")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(110, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/mel/front.svg",
  12409. extra: 736 / 617,
  12410. bottom: 0.017
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Pico",
  12417. height: math.unit(3, "pm")
  12418. },
  12419. {
  12420. name: "Nano",
  12421. height: math.unit(3, "nm")
  12422. },
  12423. {
  12424. name: "Micro",
  12425. height: math.unit(0.3, "mm"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Micro+",
  12430. height: math.unit(3, "mm")
  12431. },
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(5 + 10.5 / 12, "feet")
  12435. },
  12436. ]
  12437. ))
  12438. characterMakers.push(() => makeCharacter(
  12439. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12440. {
  12441. kaiju: {
  12442. height: math.unit(1.75, "meters"),
  12443. weight: math.unit(55, "kg"),
  12444. name: "Kaiju",
  12445. image: {
  12446. source: "./media/characters/lykonous/kaiju.svg",
  12447. extra: 1055 / 946,
  12448. bottom: 0.135
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(2.5, "meters"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Kaiju Dragon",
  12460. height: math.unit(60, "meters")
  12461. },
  12462. {
  12463. name: "Mega Kaiju",
  12464. height: math.unit(120, "km")
  12465. },
  12466. {
  12467. name: "Giga Kaiju",
  12468. height: math.unit(200, "megameters")
  12469. },
  12470. {
  12471. name: "Terra Kaiju",
  12472. height: math.unit(400, "gigameters")
  12473. },
  12474. {
  12475. name: "Kaiju Dragon God",
  12476. height: math.unit(13000, "exaparsecs")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/blü/front.svg",
  12489. extra: 1883 / 1564,
  12490. bottom: 0.031
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(13, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Big Boi",
  12502. height: math.unit(150, "meters")
  12503. },
  12504. {
  12505. name: "Mini Stomper",
  12506. height: math.unit(300, "meters")
  12507. },
  12508. {
  12509. name: "Macro",
  12510. height: math.unit(1000, "meters")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(11000, "meters")
  12515. },
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(11000, "km")
  12519. },
  12520. {
  12521. name: "Teramacro",
  12522. height: math.unit(420000, "km")
  12523. },
  12524. {
  12525. name: "Examacro",
  12526. height: math.unit(120, "parsecs")
  12527. },
  12528. {
  12529. name: "God Tho",
  12530. height: math.unit(98000000000, "parsecs")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12536. {
  12537. taurFront: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(200, "lb"),
  12540. name: "Taur (Front)",
  12541. image: {
  12542. source: "./media/characters/scales/taur-front.svg",
  12543. extra: 1,
  12544. bottom: 0.05
  12545. }
  12546. },
  12547. taurBack: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(200, "lb"),
  12550. name: "Taur (Back)",
  12551. image: {
  12552. source: "./media/characters/scales/taur-back.svg",
  12553. extra: 1,
  12554. bottom: 0.08
  12555. }
  12556. },
  12557. anthro: {
  12558. height: math.unit(6 * 7 / 12, "feet"),
  12559. weight: math.unit(100, "lb"),
  12560. name: "Anthro",
  12561. image: {
  12562. source: "./media/characters/scales/anthro.svg",
  12563. extra: 1,
  12564. bottom: 0.06
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(150, "lb"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/koragos/front.svg",
  12585. extra: 841 / 794,
  12586. bottom: 0.035
  12587. }
  12588. },
  12589. back: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(150, "lb"),
  12592. name: "Back",
  12593. image: {
  12594. source: "./media/characters/koragos/back.svg",
  12595. extra: 841 / 810,
  12596. bottom: 0.022
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(6 + 11 / 12, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Macro",
  12608. height: math.unit(490, "feet")
  12609. },
  12610. {
  12611. name: "Megamacro",
  12612. height: math.unit(10, "miles")
  12613. },
  12614. {
  12615. name: "Gigamacro",
  12616. height: math.unit(50, "miles")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(250, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/xylrem/front.svg",
  12629. extra: 3323 / 3050,
  12630. bottom: 0.065
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Micro",
  12637. height: math.unit(4, "feet")
  12638. },
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(16, "feet"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(2720, "feet")
  12647. },
  12648. {
  12649. name: "Megamacro",
  12650. height: math.unit(25000, "miles")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(8, "feet"),
  12659. weight: math.unit(250, "kg"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/ikideru/front.svg",
  12663. extra: 930 / 870,
  12664. bottom: 0.087
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(8, "feet"),
  12669. weight: math.unit(250, "kg"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/ikideru/back.svg",
  12673. extra: 919 / 852,
  12674. bottom: 0.055
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Rare",
  12681. height: math.unit(8, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Playful Loom",
  12686. height: math.unit(80, "feet")
  12687. },
  12688. {
  12689. name: "City Leaner",
  12690. height: math.unit(230, "feet")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(2500, "feet")
  12695. },
  12696. {
  12697. name: "Gigamacro",
  12698. height: math.unit(26400, "feet")
  12699. },
  12700. {
  12701. name: "Tectonic Shifter",
  12702. height: math.unit(1.7, "megameters")
  12703. },
  12704. {
  12705. name: "Planet Carer",
  12706. height: math.unit(21, "megameters")
  12707. },
  12708. {
  12709. name: "God",
  12710. height: math.unit(11157.22, "parsecs")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(120, "lb"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/neo/front.svg"
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Micro",
  12729. height: math.unit(2, "inches"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Human Size",
  12734. height: math.unit(5 + 8 / 12, "feet")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(13 + 10 / 12, "feet"),
  12743. weight: math.unit(5320, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/chauncey-chantz/front.svg",
  12747. extra: 1587 / 1435,
  12748. bottom: 0.02
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(13 + 10 / 12, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(45, "feet")
  12761. },
  12762. {
  12763. name: "Megamacro",
  12764. height: math.unit(250, "miles")
  12765. },
  12766. {
  12767. name: "Planetary",
  12768. height: math.unit(10000, "miles")
  12769. },
  12770. {
  12771. name: "Galactic",
  12772. height: math.unit(40000, "parsecs")
  12773. },
  12774. {
  12775. name: "Universal",
  12776. height: math.unit(1, "yottameter")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/epifox/front.svg",
  12789. extra: 1,
  12790. bottom: 0.075
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Micro",
  12797. height: math.unit(6, "inches")
  12798. },
  12799. {
  12800. name: "Normal",
  12801. height: math.unit(12, "feet"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Macro",
  12806. height: math.unit(3810, "feet")
  12807. },
  12808. {
  12809. name: "Megamacro",
  12810. height: math.unit(500, "miles")
  12811. },
  12812. ]
  12813. ))
  12814. characterMakers.push(() => makeCharacter(
  12815. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12816. {
  12817. front: {
  12818. height: math.unit(1.8796, "m"),
  12819. weight: math.unit(230, "lb"),
  12820. name: "Front",
  12821. image: {
  12822. source: "./media/characters/colin-t/front.svg",
  12823. extra: 1272 / 1193,
  12824. bottom: 0.07
  12825. }
  12826. },
  12827. },
  12828. [
  12829. {
  12830. name: "Micro",
  12831. height: math.unit(0.571, "meters")
  12832. },
  12833. {
  12834. name: "Normal",
  12835. height: math.unit(1.8796, "meters"),
  12836. default: true
  12837. },
  12838. {
  12839. name: "Tall",
  12840. height: math.unit(4, "meters")
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(67.241, "meters")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(371.856, "meters")
  12849. },
  12850. {
  12851. name: "Planetary",
  12852. height: math.unit(12631.5689, "km")
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12858. {
  12859. front: {
  12860. height: math.unit(1.85, "meters"),
  12861. weight: math.unit(80, "kg"),
  12862. name: "Front",
  12863. image: {
  12864. source: "./media/characters/matvei/front.svg",
  12865. extra: 614 / 594,
  12866. bottom: 0.01
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(1.85, "meters"),
  12874. default: true
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(5 + 9 / 12, "feet"),
  12883. weight: math.unit(70, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/quincy/front.svg",
  12887. extra: 3041 / 2751
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(5 + 9 / 12, "feet"),
  12892. weight: math.unit(70, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/quincy/back.svg",
  12896. extra: 3041 / 2751
  12897. }
  12898. },
  12899. flying: {
  12900. height: math.unit(5 + 4 / 12, "feet"),
  12901. weight: math.unit(70, "lb"),
  12902. name: "Flying",
  12903. image: {
  12904. source: "./media/characters/quincy/flying.svg",
  12905. extra: 1044 / 930
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Micro",
  12912. height: math.unit(3, "cm")
  12913. },
  12914. {
  12915. name: "Normal",
  12916. height: math.unit(5 + 9 / 12, "feet")
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(200, "meters"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(1000, "meters")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(3 + 11/12, "feet"),
  12934. weight: math.unit(50, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/vanrel/front.svg",
  12938. extra: 1104/949,
  12939. bottom: 52/1156
  12940. }
  12941. },
  12942. back: {
  12943. height: math.unit(3 + 11/12, "feet"),
  12944. weight: math.unit(50, "lb"),
  12945. name: "Back",
  12946. image: {
  12947. source: "./media/characters/vanrel/back.svg",
  12948. extra: 1119/976,
  12949. bottom: 37/1156
  12950. }
  12951. },
  12952. tome: {
  12953. height: math.unit(1.35, "feet"),
  12954. weight: math.unit(10, "lb"),
  12955. name: "Vanrel's Tome",
  12956. rename: true,
  12957. image: {
  12958. source: "./media/characters/vanrel/tome.svg"
  12959. }
  12960. },
  12961. beans: {
  12962. height: math.unit(0.89, "feet"),
  12963. name: "Beans",
  12964. image: {
  12965. source: "./media/characters/vanrel/beans.svg"
  12966. }
  12967. },
  12968. },
  12969. [
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(3 + 11/12, "feet"),
  12973. default: true
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(7 + 5 / 12, "feet"),
  12982. name: "Front",
  12983. image: {
  12984. source: "./media/characters/kuiper-vanrel/front.svg",
  12985. extra: 1219/1169,
  12986. bottom: 69/1288
  12987. }
  12988. },
  12989. back: {
  12990. height: math.unit(7 + 5 / 12, "feet"),
  12991. name: "Back",
  12992. image: {
  12993. source: "./media/characters/kuiper-vanrel/back.svg",
  12994. extra: 1236/1193,
  12995. bottom: 27/1263
  12996. }
  12997. },
  12998. foot: {
  12999. height: math.unit(0.55, "meters"),
  13000. name: "Foot",
  13001. image: {
  13002. source: "./media/characters/kuiper-vanrel/foot.svg",
  13003. }
  13004. },
  13005. battle: {
  13006. height: math.unit(6.824, "feet"),
  13007. name: "Battle",
  13008. image: {
  13009. source: "./media/characters/kuiper-vanrel/battle.svg",
  13010. extra: 1466 / 1327,
  13011. bottom: 29 / 1492.5
  13012. }
  13013. },
  13014. meerkui: {
  13015. height: math.unit(18, "inches"),
  13016. name: "Meerkui",
  13017. image: {
  13018. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13019. extra: 1354/1289,
  13020. bottom: 69/1423
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Normal",
  13027. height: math.unit(7 + 5 / 12, "feet"),
  13028. default: true
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(8 + 5 / 12, "feet"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/keset-vanrel/front.svg",
  13040. extra: 1231/1148,
  13041. bottom: 82/1313
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(8 + 5 / 12, "feet"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/keset-vanrel/back.svg",
  13049. extra: 1240/1174,
  13050. bottom: 33/1273
  13051. }
  13052. },
  13053. hand: {
  13054. height: math.unit(0.6, "meters"),
  13055. name: "Hand",
  13056. image: {
  13057. source: "./media/characters/keset-vanrel/hand.svg"
  13058. }
  13059. },
  13060. foot: {
  13061. height: math.unit(0.94978, "meters"),
  13062. name: "Foot",
  13063. image: {
  13064. source: "./media/characters/keset-vanrel/foot.svg"
  13065. }
  13066. },
  13067. battle: {
  13068. height: math.unit(7.408, "feet"),
  13069. name: "Battle",
  13070. image: {
  13071. source: "./media/characters/keset-vanrel/battle.svg",
  13072. extra: 1890 / 1386,
  13073. bottom: 73.28 / 1970
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(8 + 5 / 12, "feet"),
  13081. default: true
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(6, "feet"),
  13090. weight: math.unit(150, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/neos/front.svg",
  13094. extra: 1696 / 992,
  13095. bottom: 0.14
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(54, "cm"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(100, "m")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(10, "km")
  13112. },
  13113. {
  13114. name: "Megamacro+",
  13115. height: math.unit(100, "km")
  13116. },
  13117. {
  13118. name: "Gigamacro",
  13119. height: math.unit(100, "Mm")
  13120. },
  13121. {
  13122. name: "Teramacro",
  13123. height: math.unit(100, "Gm")
  13124. },
  13125. {
  13126. name: "Examacro",
  13127. height: math.unit(100, "Em")
  13128. },
  13129. {
  13130. name: "Godly",
  13131. height: math.unit(10000, "Ym")
  13132. },
  13133. {
  13134. name: "Beyond Godly",
  13135. height: math.unit(25, "multiverses")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13141. {
  13142. feminine: {
  13143. height: math.unit(5, "feet"),
  13144. weight: math.unit(100, "lb"),
  13145. name: "Feminine",
  13146. image: {
  13147. source: "./media/characters/sammy-mouse/feminine.svg",
  13148. extra: 2526 / 2425,
  13149. bottom: 0.123
  13150. }
  13151. },
  13152. masculine: {
  13153. height: math.unit(5, "feet"),
  13154. weight: math.unit(100, "lb"),
  13155. name: "Masculine",
  13156. image: {
  13157. source: "./media/characters/sammy-mouse/masculine.svg",
  13158. extra: 2526 / 2425,
  13159. bottom: 0.123
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Micro",
  13166. height: math.unit(5, "inches")
  13167. },
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(5, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(60, "feet")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(4, "feet"),
  13184. weight: math.unit(50, "lb"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/kole/front.svg",
  13188. extra: 1423 / 1303,
  13189. bottom: 0.025
  13190. }
  13191. },
  13192. back: {
  13193. height: math.unit(4, "feet"),
  13194. weight: math.unit(50, "lb"),
  13195. name: "Back",
  13196. image: {
  13197. source: "./media/characters/kole/back.svg",
  13198. extra: 1426 / 1280,
  13199. bottom: 0.02
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(4, "feet"),
  13207. default: true
  13208. },
  13209. ]
  13210. ))
  13211. characterMakers.push(() => makeCharacter(
  13212. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13213. {
  13214. front: {
  13215. height: math.unit(2.5, "feet"),
  13216. weight: math.unit(32, "lb"),
  13217. name: "Front",
  13218. image: {
  13219. source: "./media/characters/rufran/front.svg",
  13220. extra: 1313/885,
  13221. bottom: 94/1407
  13222. }
  13223. },
  13224. side: {
  13225. height: math.unit(2.5, "feet"),
  13226. weight: math.unit(32, "lb"),
  13227. name: "Side",
  13228. image: {
  13229. source: "./media/characters/rufran/side.svg",
  13230. extra: 1109/852,
  13231. bottom: 118/1227
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(2.5, "feet"),
  13236. weight: math.unit(32, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/rufran/back.svg",
  13240. extra: 1280/878,
  13241. bottom: 131/1411
  13242. }
  13243. },
  13244. mouth: {
  13245. height: math.unit(1.13, "feet"),
  13246. name: "Mouth",
  13247. image: {
  13248. source: "./media/characters/rufran/mouth.svg"
  13249. }
  13250. },
  13251. foot: {
  13252. height: math.unit(1.33, "feet"),
  13253. name: "Foot",
  13254. image: {
  13255. source: "./media/characters/rufran/foot.svg"
  13256. }
  13257. },
  13258. koboldFront: {
  13259. height: math.unit(2 + 6 / 12, "feet"),
  13260. weight: math.unit(20, "lb"),
  13261. name: "Front (Kobold)",
  13262. image: {
  13263. source: "./media/characters/rufran/kobold-front.svg",
  13264. extra: 2041 / 1839,
  13265. bottom: 0.055
  13266. }
  13267. },
  13268. koboldBack: {
  13269. height: math.unit(2 + 6 / 12, "feet"),
  13270. weight: math.unit(20, "lb"),
  13271. name: "Back (Kobold)",
  13272. image: {
  13273. source: "./media/characters/rufran/kobold-back.svg",
  13274. extra: 2054 / 1839,
  13275. bottom: 0.01
  13276. }
  13277. },
  13278. koboldHand: {
  13279. height: math.unit(0.2166, "meters"),
  13280. name: "Hand (Kobold)",
  13281. image: {
  13282. source: "./media/characters/rufran/kobold-hand.svg"
  13283. }
  13284. },
  13285. koboldFoot: {
  13286. height: math.unit(0.185, "meters"),
  13287. name: "Foot (Kobold)",
  13288. image: {
  13289. source: "./media/characters/rufran/kobold-foot.svg"
  13290. }
  13291. },
  13292. },
  13293. [
  13294. {
  13295. name: "Micro",
  13296. height: math.unit(1, "inch")
  13297. },
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(2 + 6 / 12, "feet"),
  13301. default: true
  13302. },
  13303. {
  13304. name: "Big",
  13305. height: math.unit(60, "feet")
  13306. },
  13307. {
  13308. name: "Macro",
  13309. height: math.unit(325, "feet")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(0.3, "meters"),
  13318. weight: math.unit(3.5, "kg"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/chip/front.svg",
  13322. extra: 748 / 674
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Micro",
  13329. height: math.unit(1, "inch"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13336. {
  13337. side: {
  13338. height: math.unit(2.3, "meters"),
  13339. weight: math.unit(3500, "lb"),
  13340. name: "Side",
  13341. image: {
  13342. source: "./media/characters/torvid/side.svg",
  13343. extra: 1972 / 722,
  13344. bottom: 0.035
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(2.3, "meters"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13358. {
  13359. front: {
  13360. height: math.unit(2, "meters"),
  13361. weight: math.unit(150.5, "kg"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/susan/front.svg",
  13365. extra: 693 / 635,
  13366. bottom: 0.05
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(505, "miles"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/raindrops/front.svg",
  13387. extra: 2655 / 2461,
  13388. bottom: 49 / 2705
  13389. }
  13390. },
  13391. back: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/raindrops/back.svg",
  13397. extra: 2574 / 2400,
  13398. bottom: 65 / 2634
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Micro",
  13405. height: math.unit(6, "inches")
  13406. },
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(6 + 2 / 12, "feet")
  13410. },
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(131, "feet"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Megamacro",
  13418. height: math.unit(15, "miles")
  13419. },
  13420. {
  13421. name: "Gigamacro",
  13422. height: math.unit(4000, "miles")
  13423. },
  13424. {
  13425. name: "Teramacro",
  13426. height: math.unit(315000, "miles")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(2.794, "meters"),
  13435. weight: math.unit(325, "kg"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/tezwa/front.svg",
  13439. extra: 2083 / 1906,
  13440. bottom: 0.031
  13441. }
  13442. },
  13443. foot: {
  13444. height: math.unit(0.687, "meters"),
  13445. name: "Foot",
  13446. image: {
  13447. source: "./media/characters/tezwa/foot.svg"
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(9 + 2 / 12, "feet"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(58, "feet"),
  13464. weight: math.unit(89000, "lb"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/typhus/front.svg",
  13468. extra: 816 / 800,
  13469. bottom: 0.065
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Macro",
  13476. height: math.unit(58, "feet"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(12, "feet"),
  13486. weight: math.unit(6, "tonnes"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/lyra-von-wulf/front.svg",
  13490. extra: 1,
  13491. bottom: 0.10
  13492. }
  13493. },
  13494. frontMecha: {
  13495. height: math.unit(12, "feet"),
  13496. weight: math.unit(12, "tonnes"),
  13497. name: "Front (Mecha)",
  13498. image: {
  13499. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13500. extra: 1,
  13501. bottom: 0.042
  13502. }
  13503. },
  13504. maw: {
  13505. height: math.unit(2.2, "feet"),
  13506. name: "Maw",
  13507. image: {
  13508. source: "./media/characters/lyra-von-wulf/maw.svg"
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Normal",
  13515. height: math.unit(12, "feet"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Classic",
  13520. height: math.unit(50, "feet")
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(500, "feet")
  13525. },
  13526. {
  13527. name: "Megamacro",
  13528. height: math.unit(1, "mile")
  13529. },
  13530. {
  13531. name: "Gigamacro",
  13532. height: math.unit(400, "miles")
  13533. },
  13534. {
  13535. name: "Teramacro",
  13536. height: math.unit(22000, "miles")
  13537. },
  13538. {
  13539. name: "Solarmacro",
  13540. height: math.unit(8600000, "miles")
  13541. },
  13542. {
  13543. name: "Galactic",
  13544. height: math.unit(1057000, "lightyears")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6 + 10 / 12, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/dixon/front.svg",
  13557. extra: 3361 / 3209,
  13558. bottom: 0.01
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Normal",
  13565. height: math.unit(6 + 10 / 12, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Big",
  13570. height: math.unit(12, "meters")
  13571. },
  13572. {
  13573. name: "Macro",
  13574. height: math.unit(500, "meters")
  13575. },
  13576. {
  13577. name: "Megamacro",
  13578. height: math.unit(2, "km")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(185, "cm"),
  13587. weight: math.unit(68, "kg"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/kauko/front.svg",
  13591. extra: 1455 / 1421,
  13592. bottom: 0.03
  13593. }
  13594. },
  13595. back: {
  13596. height: math.unit(185, "cm"),
  13597. weight: math.unit(68, "kg"),
  13598. name: "Back",
  13599. image: {
  13600. source: "./media/characters/kauko/back.svg",
  13601. extra: 1455 / 1421,
  13602. bottom: 0.004
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(185, "cm"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(150, "kg"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/varg/front.svg",
  13623. extra: 1108 / 1018,
  13624. bottom: 0.0375
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(5, "meters")
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(200, "meters")
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(20, "kilometers")
  13640. },
  13641. {
  13642. name: "True Size",
  13643. height: math.unit(211, "km"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Gigamacro",
  13648. height: math.unit(1000, "km")
  13649. },
  13650. {
  13651. name: "Gigamacro+",
  13652. height: math.unit(8000, "km")
  13653. },
  13654. {
  13655. name: "Teramacro",
  13656. height: math.unit(1000000, "km")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(7 + 7 / 12, "feet"),
  13665. weight: math.unit(267, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/dayza/front.svg",
  13669. extra: 1262 / 1200,
  13670. bottom: 0.035
  13671. }
  13672. },
  13673. side: {
  13674. height: math.unit(7 + 7 / 12, "feet"),
  13675. weight: math.unit(267, "lb"),
  13676. name: "Side",
  13677. image: {
  13678. source: "./media/characters/dayza/side.svg",
  13679. extra: 1295 / 1245,
  13680. bottom: 0.05
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(7 + 7 / 12, "feet"),
  13685. weight: math.unit(267, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/dayza/back.svg",
  13689. extra: 1241 / 1170
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(7 + 7 / 12, "feet"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Macro",
  13701. height: math.unit(155, "feet")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6 + 5 / 12, "feet"),
  13710. weight: math.unit(160, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/xanthos/front.svg",
  13714. extra: 1,
  13715. bottom: 0.04
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6 + 5 / 12, "feet"),
  13720. weight: math.unit(160, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/xanthos/back.svg",
  13724. extra: 1,
  13725. bottom: 0.03
  13726. }
  13727. },
  13728. hand: {
  13729. height: math.unit(0.928, "feet"),
  13730. name: "Hand",
  13731. image: {
  13732. source: "./media/characters/xanthos/hand.svg"
  13733. }
  13734. },
  13735. foot: {
  13736. height: math.unit(1.286, "feet"),
  13737. name: "Foot",
  13738. image: {
  13739. source: "./media/characters/xanthos/foot.svg"
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(6 + 5 / 12, "feet"),
  13747. default: true
  13748. },
  13749. {
  13750. name: "Normal+",
  13751. height: math.unit(6, "meters")
  13752. },
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(40, "feet")
  13756. },
  13757. {
  13758. name: "Macro+",
  13759. height: math.unit(200, "meters")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(20, "km")
  13764. },
  13765. {
  13766. name: "Megamacro+",
  13767. height: math.unit(100, "km")
  13768. },
  13769. {
  13770. name: "Gigamacro",
  13771. height: math.unit(200, "megameters")
  13772. },
  13773. {
  13774. name: "Gigamacro+",
  13775. height: math.unit(1.5, "gigameters")
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6 + 3 / 12, "feet"),
  13784. weight: math.unit(215, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/grynn/front.svg",
  13788. extra: 4627 / 4209,
  13789. bottom: 0.047
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Micro",
  13796. height: math.unit(6, "inches")
  13797. },
  13798. {
  13799. name: "Normal",
  13800. height: math.unit(6 + 3 / 12, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Big",
  13805. height: math.unit(104, "feet")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(944, "feet")
  13810. },
  13811. {
  13812. name: "Macro+",
  13813. height: math.unit(9480, "feet")
  13814. },
  13815. {
  13816. name: "Megamacro",
  13817. height: math.unit(78752, "feet")
  13818. },
  13819. {
  13820. name: "Megamacro+",
  13821. height: math.unit(630128, "feet")
  13822. },
  13823. {
  13824. name: "Megamacro++",
  13825. height: math.unit(3150695, "feet")
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(7 + 5 / 12, "feet"),
  13834. weight: math.unit(450, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/mocha-aura/front.svg",
  13838. extra: 1907 / 1817,
  13839. bottom: 0.04
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(7 + 5 / 12, "feet"),
  13844. weight: math.unit(450, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/mocha-aura/back.svg",
  13848. extra: 1900 / 1825,
  13849. bottom: 0.045
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Nano",
  13856. height: math.unit(1, "nm")
  13857. },
  13858. {
  13859. name: "Megamicro",
  13860. height: math.unit(1, "mm")
  13861. },
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(3, "inches")
  13865. },
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(7 + 5 / 12, "feet"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(30, "feet")
  13874. },
  13875. {
  13876. name: "Megamacro",
  13877. height: math.unit(3500, "feet")
  13878. },
  13879. {
  13880. name: "Teramacro",
  13881. height: math.unit(500000, "miles")
  13882. },
  13883. {
  13884. name: "Petamacro",
  13885. height: math.unit(50000000000000000, "parsecs")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(150, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/ilisha-devya/front.svg",
  13898. extra: 1053/1049,
  13899. bottom: 270/1323
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(150, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/ilisha-devya/back.svg",
  13908. extra: 1131/1128,
  13909. bottom: 39/1170
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(500, "feet"),
  13917. default: true
  13918. },
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(10, "miles")
  13922. },
  13923. {
  13924. name: "Gigamacro",
  13925. height: math.unit(100000, "miles")
  13926. },
  13927. {
  13928. name: "Examacro",
  13929. height: math.unit(1e9, "lightyears")
  13930. },
  13931. {
  13932. name: "Omniversal",
  13933. height: math.unit(1e33, "lightyears")
  13934. },
  13935. {
  13936. name: "Beyond Infinite",
  13937. height: math.unit(1e100, "lightyears")
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13943. {
  13944. Side: {
  13945. height: math.unit(6, "feet"),
  13946. weight: math.unit(150, "lb"),
  13947. name: "Side",
  13948. image: {
  13949. source: "./media/characters/mira/side.svg",
  13950. extra: 900 / 799,
  13951. bottom: 0.02
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Human Size",
  13958. height: math.unit(6, "feet")
  13959. },
  13960. {
  13961. name: "Macro",
  13962. height: math.unit(100, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(10, "miles")
  13968. },
  13969. {
  13970. name: "Gigamacro",
  13971. height: math.unit(25000, "miles")
  13972. },
  13973. {
  13974. name: "Teramacro",
  13975. height: math.unit(300, "AU")
  13976. },
  13977. {
  13978. name: "Full Size",
  13979. height: math.unit(4.5e10, "lightyears")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/holly/front.svg",
  13992. extra: 639 / 606
  13993. }
  13994. },
  13995. back: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(150, "lb"),
  13998. name: "Back",
  13999. image: {
  14000. source: "./media/characters/holly/back.svg",
  14001. extra: 623 / 598
  14002. }
  14003. },
  14004. frontWorking: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front (Working)",
  14008. image: {
  14009. source: "./media/characters/holly/front-working.svg",
  14010. extra: 607 / 577,
  14011. bottom: 0.048
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(12 + 3 / 12, "feet"),
  14019. default: true
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/porter/front.svg",
  14032. extra: 1,
  14033. bottom: 0.01
  14034. }
  14035. },
  14036. frontRobes: {
  14037. height: math.unit(6, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Front (Robes)",
  14040. image: {
  14041. source: "./media/characters/porter/front-robes.svg",
  14042. extra: 1.01,
  14043. bottom: 0.01
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(11 + 9 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14057. {
  14058. legendary: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Legendary",
  14062. image: {
  14063. source: "./media/characters/lucy/legendary.svg",
  14064. extra: 1355 / 1100,
  14065. bottom: 0.045
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Legendary",
  14072. height: math.unit(86882 * 2, "miles"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/drusilla/front.svg",
  14086. extra: 678 / 635,
  14087. bottom: 0.03
  14088. }
  14089. },
  14090. back: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Back",
  14094. image: {
  14095. source: "./media/characters/drusilla/back.svg",
  14096. extra: 678 / 635,
  14097. bottom: 0.005
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Macro",
  14104. height: math.unit(100, "feet")
  14105. },
  14106. {
  14107. name: "Canon Height",
  14108. height: math.unit(2000, "feet"),
  14109. default: true
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(180, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/renard-thatch/front.svg",
  14122. extra: 2411 / 2275,
  14123. bottom: 0.01
  14124. }
  14125. },
  14126. frontPosing: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(180, "lb"),
  14129. name: "Front (Posing)",
  14130. image: {
  14131. source: "./media/characters/renard-thatch/front-posing.svg",
  14132. extra: 2381 / 2261,
  14133. bottom: 0.01
  14134. }
  14135. },
  14136. back: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(180, "lb"),
  14139. name: "Back",
  14140. image: {
  14141. source: "./media/characters/renard-thatch/back.svg",
  14142. extra: 2428 / 2288
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Micro",
  14149. height: math.unit(3, "inches")
  14150. },
  14151. {
  14152. name: "Default",
  14153. height: math.unit(6, "feet"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Macro",
  14158. height: math.unit(75, "feet")
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(1450, "feet"),
  14167. weight: math.unit(1.21e6, "tons"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/sekvra/front.svg",
  14171. extra: 1193/1190,
  14172. bottom: 78/1271
  14173. }
  14174. },
  14175. side: {
  14176. height: math.unit(1450, "feet"),
  14177. weight: math.unit(1.21e6, "tons"),
  14178. name: "Side",
  14179. image: {
  14180. source: "./media/characters/sekvra/side.svg",
  14181. extra: 1193/1190,
  14182. bottom: 52/1245
  14183. }
  14184. },
  14185. back: {
  14186. height: math.unit(1450, "feet"),
  14187. weight: math.unit(1.21e6, "tons"),
  14188. name: "Back",
  14189. image: {
  14190. source: "./media/characters/sekvra/back.svg",
  14191. extra: 1219/1216,
  14192. bottom: 21/1240
  14193. }
  14194. },
  14195. frontClothed: {
  14196. height: math.unit(1450, "feet"),
  14197. weight: math.unit(1.21e6, "tons"),
  14198. name: "Front (Clothed)",
  14199. image: {
  14200. source: "./media/characters/sekvra/front-clothed.svg",
  14201. extra: 1192/1189,
  14202. bottom: 79/1271
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(1450, "feet"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Megamacro",
  14214. height: math.unit(15000, "feet")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/carmine/front.svg",
  14227. extra: 1,
  14228. bottom: 0.035
  14229. }
  14230. },
  14231. frontArmor: {
  14232. height: math.unit(6, "feet"),
  14233. weight: math.unit(150, "lb"),
  14234. name: "Front (Armor)",
  14235. image: {
  14236. source: "./media/characters/carmine/front-armor.svg",
  14237. extra: 1,
  14238. bottom: 0.035
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Large",
  14245. height: math.unit(1, "mile")
  14246. },
  14247. {
  14248. name: "Huge",
  14249. height: math.unit(40, "miles"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Colossal",
  14254. height: math.unit(2500, "miles")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(150, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/elyssia/front.svg",
  14267. extra: 2201 / 2035,
  14268. bottom: 0.05
  14269. }
  14270. },
  14271. frontClothed: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Front (Clothed)",
  14275. image: {
  14276. source: "./media/characters/elyssia/front-clothed.svg",
  14277. extra: 2201 / 2035,
  14278. bottom: 0.05
  14279. }
  14280. },
  14281. back: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Back",
  14285. image: {
  14286. source: "./media/characters/elyssia/back.svg",
  14287. extra: 2201 / 2035,
  14288. bottom: 0.013
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Smaller",
  14295. height: math.unit(150, "feet")
  14296. },
  14297. {
  14298. name: "Standard",
  14299. height: math.unit(1400, "feet"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Distracted",
  14304. height: math.unit(15000, "feet")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(7 + 4/12, "feet"),
  14313. weight: math.unit(690, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/geno-maxwell/front.svg",
  14317. extra: 984/856,
  14318. bottom: 87/1071
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(7 + 4/12, "feet"),
  14323. weight: math.unit(690, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/geno-maxwell/back.svg",
  14327. extra: 981/854,
  14328. bottom: 57/1038
  14329. }
  14330. },
  14331. frontCostume: {
  14332. height: math.unit(7 + 4/12, "feet"),
  14333. weight: math.unit(690, "lb"),
  14334. name: "Front (Costume)",
  14335. image: {
  14336. source: "./media/characters/geno-maxwell/front-costume.svg",
  14337. extra: 984/856,
  14338. bottom: 87/1071
  14339. }
  14340. },
  14341. backcostume: {
  14342. height: math.unit(7 + 4/12, "feet"),
  14343. weight: math.unit(690, "lb"),
  14344. name: "Back (Costume)",
  14345. image: {
  14346. source: "./media/characters/geno-maxwell/back-costume.svg",
  14347. extra: 981/854,
  14348. bottom: 57/1038
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Micro",
  14355. height: math.unit(3, "inches")
  14356. },
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(7 + 4 / 12, "feet"),
  14360. default: true
  14361. },
  14362. {
  14363. name: "Macro",
  14364. height: math.unit(220, "feet")
  14365. },
  14366. {
  14367. name: "Megamacro",
  14368. height: math.unit(11, "miles")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(7 + 4/12, "feet"),
  14377. weight: math.unit(750, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/regena-maxwell/front.svg",
  14381. extra: 984/856,
  14382. bottom: 87/1071
  14383. }
  14384. },
  14385. back: {
  14386. height: math.unit(7 + 4/12, "feet"),
  14387. weight: math.unit(750, "lb"),
  14388. name: "Back",
  14389. image: {
  14390. source: "./media/characters/regena-maxwell/back.svg",
  14391. extra: 981/854,
  14392. bottom: 57/1038
  14393. }
  14394. },
  14395. frontCostume: {
  14396. height: math.unit(7 + 4/12, "feet"),
  14397. weight: math.unit(750, "lb"),
  14398. name: "Front (Costume)",
  14399. image: {
  14400. source: "./media/characters/regena-maxwell/front-costume.svg",
  14401. extra: 984/856,
  14402. bottom: 87/1071
  14403. }
  14404. },
  14405. backcostume: {
  14406. height: math.unit(7 + 4/12, "feet"),
  14407. weight: math.unit(750, "lb"),
  14408. name: "Back (Costume)",
  14409. image: {
  14410. source: "./media/characters/regena-maxwell/back-costume.svg",
  14411. extra: 981/854,
  14412. bottom: 57/1038
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(7 + 4 / 12, "feet"),
  14420. default: true
  14421. },
  14422. {
  14423. name: "Macro",
  14424. height: math.unit(220, "feet")
  14425. },
  14426. {
  14427. name: "Megamacro",
  14428. height: math.unit(11, "miles")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(150, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14441. extra: 860 / 690,
  14442. bottom: 0.03
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(1.7, "meters"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(6, "feet"),
  14459. weight: math.unit(150, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/quilly/front.svg",
  14463. extra: 890 / 776
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Gigamacro",
  14470. height: math.unit(404090, "miles"),
  14471. default: true
  14472. },
  14473. ]
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(7 + 8 / 12, "feet"),
  14480. weight: math.unit(350, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/tempest/front.svg",
  14484. extra: 1175 / 1086,
  14485. bottom: 0.02
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Normal",
  14492. height: math.unit(7 + 8 / 12, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14499. {
  14500. side: {
  14501. height: math.unit(4 + 5 / 12, "feet"),
  14502. weight: math.unit(80, "lb"),
  14503. name: "Side",
  14504. image: {
  14505. source: "./media/characters/rodger/side.svg",
  14506. extra: 1235 / 1118
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Micro",
  14513. height: math.unit(1, "inch")
  14514. },
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(4 + 5 / 12, "feet"),
  14518. default: true
  14519. },
  14520. {
  14521. name: "Macro",
  14522. height: math.unit(120, "feet")
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(150, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/danyel/front.svg",
  14535. extra: 1185 / 1123,
  14536. bottom: 0.05
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Shrunken",
  14543. height: math.unit(0.5, "mm")
  14544. },
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(1, "mm"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Upsized",
  14552. height: math.unit(5 + 5 / 12, "feet")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(5 + 6 / 12, "feet"),
  14561. weight: math.unit(200, "lb"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/vivian-bijoux/front.svg",
  14565. extra: 1217/1209,
  14566. bottom: 76/1293
  14567. }
  14568. },
  14569. back: {
  14570. height: math.unit(5 + 6 / 12, "feet"),
  14571. weight: math.unit(200, "lb"),
  14572. name: "Back",
  14573. image: {
  14574. source: "./media/characters/vivian-bijoux/back.svg",
  14575. extra: 1214/1208,
  14576. bottom: 51/1265
  14577. }
  14578. },
  14579. dressed: {
  14580. height: math.unit(5 + 6 / 12, "feet"),
  14581. weight: math.unit(200, "lb"),
  14582. name: "Dressed",
  14583. image: {
  14584. source: "./media/characters/vivian-bijoux/dressed.svg",
  14585. extra: 1217/1209,
  14586. bottom: 76/1293
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(5 + 6 / 12, "feet"),
  14594. default: true
  14595. },
  14596. {
  14597. name: "Bad Dream",
  14598. height: math.unit(500, "feet")
  14599. },
  14600. {
  14601. name: "Nightmare",
  14602. height: math.unit(500, "miles")
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14608. {
  14609. front: {
  14610. height: math.unit(6 + 1 / 12, "feet"),
  14611. weight: math.unit(260, "lb"),
  14612. name: "Front",
  14613. image: {
  14614. source: "./media/characters/zeta/front.svg",
  14615. extra: 1968 / 1889,
  14616. bottom: 0.06
  14617. }
  14618. },
  14619. back: {
  14620. height: math.unit(6 + 1 / 12, "feet"),
  14621. weight: math.unit(260, "lb"),
  14622. name: "Back",
  14623. image: {
  14624. source: "./media/characters/zeta/back.svg",
  14625. extra: 1944 / 1858,
  14626. bottom: 0.03
  14627. }
  14628. },
  14629. hand: {
  14630. height: math.unit(1.112, "feet"),
  14631. name: "Hand",
  14632. image: {
  14633. source: "./media/characters/zeta/hand.svg"
  14634. }
  14635. },
  14636. foot: {
  14637. height: math.unit(1.48, "feet"),
  14638. name: "Foot",
  14639. image: {
  14640. source: "./media/characters/zeta/foot.svg"
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Micro",
  14647. height: math.unit(6, "inches")
  14648. },
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(6 + 1 / 12, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(20, "feet")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6, "feet"),
  14665. weight: math.unit(150, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/jamie-larsen/front.svg",
  14669. extra: 962 / 933,
  14670. bottom: 0.02
  14671. }
  14672. },
  14673. back: {
  14674. height: math.unit(6, "feet"),
  14675. weight: math.unit(150, "lb"),
  14676. name: "Back",
  14677. image: {
  14678. source: "./media/characters/jamie-larsen/back.svg",
  14679. extra: 997 / 946
  14680. }
  14681. },
  14682. },
  14683. [
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(28 + 7 / 12, "feet"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Macro+",
  14691. height: math.unit(180, "feet")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(10, "miles")
  14696. },
  14697. {
  14698. name: "Gigamacro",
  14699. height: math.unit(200000, "miles")
  14700. },
  14701. ]
  14702. ))
  14703. characterMakers.push(() => makeCharacter(
  14704. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14705. {
  14706. front: {
  14707. height: math.unit(6, "feet"),
  14708. weight: math.unit(120, "lb"),
  14709. name: "Front",
  14710. image: {
  14711. source: "./media/characters/vance/front.svg",
  14712. extra: 1980 / 1890,
  14713. bottom: 0.09
  14714. }
  14715. },
  14716. back: {
  14717. height: math.unit(6, "feet"),
  14718. weight: math.unit(120, "lb"),
  14719. name: "Back",
  14720. image: {
  14721. source: "./media/characters/vance/back.svg",
  14722. extra: 2081 / 1994,
  14723. bottom: 0.014
  14724. }
  14725. },
  14726. hand: {
  14727. height: math.unit(0.88, "feet"),
  14728. name: "Hand",
  14729. image: {
  14730. source: "./media/characters/vance/hand.svg"
  14731. }
  14732. },
  14733. foot: {
  14734. height: math.unit(0.64, "feet"),
  14735. name: "Foot",
  14736. image: {
  14737. source: "./media/characters/vance/foot.svg"
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Small",
  14744. height: math.unit(90, "feet"),
  14745. default: true
  14746. },
  14747. {
  14748. name: "Macro",
  14749. height: math.unit(100, "meters")
  14750. },
  14751. {
  14752. name: "Megamacro",
  14753. height: math.unit(15, "miles")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(6, "feet"),
  14762. weight: math.unit(180, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/xochitl/front.svg",
  14766. extra: 2297 / 2261,
  14767. bottom: 0.065
  14768. }
  14769. },
  14770. back: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(180, "lb"),
  14773. name: "Back",
  14774. image: {
  14775. source: "./media/characters/xochitl/back.svg",
  14776. extra: 2386 / 2354,
  14777. bottom: 0.01
  14778. }
  14779. },
  14780. foot: {
  14781. height: math.unit(6 / 5 * 1.15, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Foot",
  14784. image: {
  14785. source: "./media/characters/xochitl/foot.svg"
  14786. }
  14787. },
  14788. },
  14789. [
  14790. {
  14791. name: "Macro",
  14792. height: math.unit(80, "feet")
  14793. },
  14794. {
  14795. name: "Macro+",
  14796. height: math.unit(400, "feet"),
  14797. default: true
  14798. },
  14799. {
  14800. name: "Gigamacro",
  14801. height: math.unit(80000, "miles")
  14802. },
  14803. {
  14804. name: "Gigamacro+",
  14805. height: math.unit(400000, "miles")
  14806. },
  14807. {
  14808. name: "Teramacro",
  14809. height: math.unit(300, "AU")
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(6, "feet"),
  14818. weight: math.unit(150, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/vincent/front.svg",
  14822. extra: 1130 / 1080,
  14823. bottom: 0.055
  14824. }
  14825. },
  14826. beak: {
  14827. height: math.unit(6 * 0.1, "feet"),
  14828. name: "Beak",
  14829. image: {
  14830. source: "./media/characters/vincent/beak.svg"
  14831. }
  14832. },
  14833. hand: {
  14834. height: math.unit(6 * 0.85, "feet"),
  14835. weight: math.unit(150, "lb"),
  14836. name: "Hand",
  14837. image: {
  14838. source: "./media/characters/vincent/hand.svg"
  14839. }
  14840. },
  14841. foot: {
  14842. height: math.unit(6 * 0.19, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Foot",
  14845. image: {
  14846. source: "./media/characters/vincent/foot.svg"
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Base",
  14853. height: math.unit(6 + 5 / 12, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(300, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(2, "miles")
  14863. },
  14864. {
  14865. name: "Gigamacro",
  14866. height: math.unit(1000, "miles")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(2, "meters"),
  14875. weight: math.unit(500, "kg"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/coatl/front.svg",
  14879. extra: 3948 / 3500,
  14880. bottom: 0.082
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(4, "meters")
  14888. },
  14889. {
  14890. name: "Macro",
  14891. height: math.unit(100, "meters"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro+",
  14896. height: math.unit(300, "meters")
  14897. },
  14898. {
  14899. name: "Megamacro",
  14900. height: math.unit(3, "gigameters")
  14901. },
  14902. {
  14903. name: "Megamacro+",
  14904. height: math.unit(300, "terameters")
  14905. },
  14906. {
  14907. name: "Megamacro++",
  14908. height: math.unit(3, "lightyears")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(50, "kg"),
  14918. name: "front",
  14919. image: {
  14920. source: "./media/characters/shiroryu/front.svg",
  14921. extra: 1990 / 1935
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Mortal Mingling",
  14928. height: math.unit(3, "meters")
  14929. },
  14930. {
  14931. name: "Kaiju-ish",
  14932. height: math.unit(250, "meters")
  14933. },
  14934. {
  14935. name: "Somewhat Godly",
  14936. height: math.unit(400, "km"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Planetary",
  14941. height: math.unit(300, "megameters")
  14942. },
  14943. {
  14944. name: "Galaxy-dwarfing",
  14945. height: math.unit(450, "kiloparsecs")
  14946. },
  14947. {
  14948. name: "Universe Eater",
  14949. height: math.unit(150, "gigaparsecs")
  14950. },
  14951. {
  14952. name: "Almost Immeasurable",
  14953. height: math.unit(1.3e266, "yottaparsecs")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/umeko/front.svg",
  14966. extra: 1,
  14967. bottom: 0.019
  14968. }
  14969. },
  14970. frontArmored: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Front (Armored)",
  14974. image: {
  14975. source: "./media/characters/umeko/front-armored.svg",
  14976. extra: 1,
  14977. bottom: 0.021
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(220, "feet"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Guardian Dragon",
  14989. height: math.unit(50, "miles")
  14990. },
  14991. {
  14992. name: "Cosmic",
  14993. height: math.unit(800000, "miles")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/cassidy/front.svg",
  15006. extra: 810/808,
  15007. bottom: 41/851
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Canon Height",
  15014. height: math.unit(120, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro+",
  15019. height: math.unit(400, "feet")
  15020. },
  15021. {
  15022. name: "Macro++",
  15023. height: math.unit(4000, "feet")
  15024. },
  15025. {
  15026. name: "Megamacro",
  15027. height: math.unit(3, "miles")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/isaac/front.svg",
  15040. extra: 896 / 815,
  15041. bottom: 0.11
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Human Size",
  15048. height: math.unit(8, "feet"),
  15049. default: true
  15050. },
  15051. {
  15052. name: "Macro",
  15053. height: math.unit(400, "feet")
  15054. },
  15055. {
  15056. name: "Megamacro",
  15057. height: math.unit(50, "miles")
  15058. },
  15059. {
  15060. name: "Canon Height",
  15061. height: math.unit(200, "AU")
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(72, "kg"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/sleekit/front.svg",
  15074. extra: 4693 / 4487,
  15075. bottom: 0.012
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Minimum Height",
  15082. height: math.unit(10, "meters")
  15083. },
  15084. {
  15085. name: "Smaller",
  15086. height: math.unit(25, "meters")
  15087. },
  15088. {
  15089. name: "Larger",
  15090. height: math.unit(38, "meters"),
  15091. default: true
  15092. },
  15093. {
  15094. name: "Maximum height",
  15095. height: math.unit(100, "meters")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/nillia/front.svg",
  15108. extra: 2195 / 2037,
  15109. bottom: 0.005
  15110. }
  15111. },
  15112. back: {
  15113. height: math.unit(6, "feet"),
  15114. weight: math.unit(150, "lb"),
  15115. name: "Back",
  15116. image: {
  15117. source: "./media/characters/nillia/back.svg",
  15118. extra: 2195 / 2037,
  15119. bottom: 0.005
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Canon Height",
  15126. height: math.unit(489, "feet"),
  15127. default: true
  15128. }
  15129. ]
  15130. ))
  15131. characterMakers.push(() => makeCharacter(
  15132. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15133. {
  15134. front: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(150, "lb"),
  15137. name: "Front",
  15138. image: {
  15139. source: "./media/characters/mesmyriza/front.svg",
  15140. extra: 2067 / 1784,
  15141. bottom: 0.035
  15142. }
  15143. },
  15144. foot: {
  15145. height: math.unit(6 / (250 / 35), "feet"),
  15146. name: "Foot",
  15147. image: {
  15148. source: "./media/characters/mesmyriza/foot.svg"
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Macro",
  15155. height: math.unit(457, "meters"),
  15156. default: true
  15157. },
  15158. {
  15159. name: "Megamacro",
  15160. height: math.unit(8, "megameters")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(250, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/saudade/front.svg",
  15173. extra: 1172 / 1139,
  15174. bottom: 0.035
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Micro",
  15181. height: math.unit(3, "inches")
  15182. },
  15183. {
  15184. name: "Normal",
  15185. height: math.unit(6, "feet"),
  15186. default: true
  15187. },
  15188. {
  15189. name: "Macro",
  15190. height: math.unit(50, "feet")
  15191. },
  15192. {
  15193. name: "Megamacro",
  15194. height: math.unit(2800, "feet")
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15200. {
  15201. front: {
  15202. height: math.unit(5 + 4 / 12, "feet"),
  15203. weight: math.unit(100, "lb"),
  15204. name: "Front",
  15205. image: {
  15206. source: "./media/characters/keireer/front.svg",
  15207. extra: 716 / 666,
  15208. bottom: 0.05
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(5 + 4 / 12, "feet"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(5.5, "feet"),
  15225. weight: math.unit(90, "kg"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/mirja/front.svg",
  15229. extra: 1452/1262,
  15230. bottom: 67/1519
  15231. }
  15232. },
  15233. frontDressed: {
  15234. height: math.unit(5.5, "feet"),
  15235. weight: math.unit(90, "lb"),
  15236. name: "Front (Dressed)",
  15237. image: {
  15238. source: "./media/characters/mirja/dressed.svg",
  15239. extra: 1452/1262,
  15240. bottom: 67/1519
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(90, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/mirja/back.svg",
  15249. extra: 1892/1795,
  15250. bottom: 48/1940
  15251. }
  15252. },
  15253. maw: {
  15254. height: math.unit(1.312, "feet"),
  15255. name: "Maw",
  15256. image: {
  15257. source: "./media/characters/mirja/maw.svg"
  15258. }
  15259. },
  15260. paw: {
  15261. height: math.unit(1.15, "feet"),
  15262. name: "Paw",
  15263. image: {
  15264. source: "./media/characters/mirja/paw.svg"
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "\"Incognito\"",
  15271. height: math.unit(3, "meters")
  15272. },
  15273. {
  15274. name: "Strolling Size",
  15275. height: math.unit(15, "km")
  15276. },
  15277. {
  15278. name: "Larger Strolling Size",
  15279. height: math.unit(400, "km")
  15280. },
  15281. {
  15282. name: "Preferred Size",
  15283. height: math.unit(5000, "km"),
  15284. default: true
  15285. },
  15286. {
  15287. name: "True Size",
  15288. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(15, "feet"),
  15297. weight: math.unit(880, "kg"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/nightraver/front.svg",
  15301. extra: 2444 / 2160,
  15302. bottom: 0.027
  15303. }
  15304. },
  15305. back: {
  15306. height: math.unit(15, "feet"),
  15307. weight: math.unit(880, "kg"),
  15308. name: "Back",
  15309. image: {
  15310. source: "./media/characters/nightraver/back.svg",
  15311. extra: 2309 / 2180,
  15312. bottom: 0.005
  15313. }
  15314. },
  15315. sole: {
  15316. height: math.unit(2.878, "feet"),
  15317. name: "Sole",
  15318. image: {
  15319. source: "./media/characters/nightraver/sole.svg"
  15320. }
  15321. },
  15322. foot: {
  15323. height: math.unit(2.285, "feet"),
  15324. name: "Foot",
  15325. image: {
  15326. source: "./media/characters/nightraver/foot.svg"
  15327. }
  15328. },
  15329. maw: {
  15330. height: math.unit(2.67, "feet"),
  15331. name: "Maw",
  15332. image: {
  15333. source: "./media/characters/nightraver/maw.svg"
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Micro",
  15340. height: math.unit(1, "cm")
  15341. },
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(15, "feet"),
  15345. default: true
  15346. },
  15347. {
  15348. name: "Macro",
  15349. height: math.unit(300, "feet")
  15350. },
  15351. {
  15352. name: "Megamacro",
  15353. height: math.unit(300, "miles")
  15354. },
  15355. {
  15356. name: "Gigamacro",
  15357. height: math.unit(10000, "miles")
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15363. {
  15364. side: {
  15365. height: math.unit(2, "inches"),
  15366. weight: math.unit(5, "grams"),
  15367. name: "Side",
  15368. image: {
  15369. source: "./media/characters/arc/side.svg"
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Micro",
  15376. height: math.unit(2, "inches"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(1.1938, "meters"),
  15386. weight: math.unit(54, "kg"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/nebula-shahar/front.svg",
  15390. extra: 1642 / 1436,
  15391. bottom: 0.06
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Megamicro",
  15398. height: math.unit(0.3, "mm")
  15399. },
  15400. {
  15401. name: "Micro",
  15402. height: math.unit(3, "cm")
  15403. },
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(138, "cm"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Macro",
  15411. height: math.unit(30, "m")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(5.24, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/shayla/front.svg",
  15424. extra: 1512 / 1414,
  15425. bottom: 0.01
  15426. }
  15427. },
  15428. back: {
  15429. height: math.unit(5.24, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Back",
  15432. image: {
  15433. source: "./media/characters/shayla/back.svg",
  15434. extra: 1512 / 1414
  15435. }
  15436. },
  15437. hand: {
  15438. height: math.unit(0.7781496062992126, "feet"),
  15439. name: "Hand",
  15440. image: {
  15441. source: "./media/characters/shayla/hand.svg"
  15442. }
  15443. },
  15444. foot: {
  15445. height: math.unit(1.4206036745406823, "feet"),
  15446. name: "Foot",
  15447. image: {
  15448. source: "./media/characters/shayla/foot.svg"
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Micro",
  15455. height: math.unit(0.32, "feet")
  15456. },
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(5.24, "feet"),
  15460. default: true
  15461. },
  15462. {
  15463. name: "Macro",
  15464. height: math.unit(492.12, "feet")
  15465. },
  15466. {
  15467. name: "Megamacro",
  15468. height: math.unit(186.41, "miles")
  15469. },
  15470. ]
  15471. ))
  15472. characterMakers.push(() => makeCharacter(
  15473. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15474. {
  15475. front: {
  15476. height: math.unit(2.2, "m"),
  15477. weight: math.unit(120, "kg"),
  15478. name: "Front",
  15479. image: {
  15480. source: "./media/characters/pia-jr/front.svg",
  15481. extra: 1000 / 970,
  15482. bottom: 0.035
  15483. }
  15484. },
  15485. hand: {
  15486. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15487. name: "Hand",
  15488. image: {
  15489. source: "./media/characters/pia-jr/hand.svg"
  15490. }
  15491. },
  15492. paw: {
  15493. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15494. name: "Paw",
  15495. image: {
  15496. source: "./media/characters/pia-jr/paw.svg"
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(1.2, "cm")
  15504. },
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(2.2, "m"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(180, "m")
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(420, "km")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(2, "m"),
  15525. weight: math.unit(115, "kg"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/pia-sr/front.svg",
  15529. extra: 760 / 730,
  15530. bottom: 0.015
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(2, "m"),
  15535. weight: math.unit(115, "kg"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/pia-sr/back.svg",
  15539. extra: 760 / 730,
  15540. bottom: 0.01
  15541. }
  15542. },
  15543. hand: {
  15544. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15545. name: "Hand",
  15546. image: {
  15547. source: "./media/characters/pia-sr/hand.svg"
  15548. }
  15549. },
  15550. foot: {
  15551. height: math.unit(1.83, "feet"),
  15552. name: "Foot",
  15553. image: {
  15554. source: "./media/characters/pia-sr/foot.svg"
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Micro",
  15561. height: math.unit(88, "mm")
  15562. },
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(2, "m"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Macro",
  15570. height: math.unit(200, "m")
  15571. },
  15572. {
  15573. name: "Megamacro",
  15574. height: math.unit(420, "km")
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(8 + 2 / 12, "feet"),
  15583. weight: math.unit(300, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/kibibyte/front.svg",
  15587. extra: 2221 / 2098,
  15588. bottom: 0.04
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(8 + 2 / 12, "feet"),
  15596. default: true
  15597. },
  15598. {
  15599. name: "Socialable Macro",
  15600. height: math.unit(50, "feet")
  15601. },
  15602. {
  15603. name: "Macro",
  15604. height: math.unit(300, "feet")
  15605. },
  15606. {
  15607. name: "Megamacro",
  15608. height: math.unit(500, "miles")
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/felix/front.svg",
  15621. extra: 762 / 722,
  15622. bottom: 0.02
  15623. }
  15624. },
  15625. frontClothed: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(150, "lb"),
  15628. name: "Front (Clothed)",
  15629. image: {
  15630. source: "./media/characters/felix/front-clothed.svg",
  15631. extra: 762 / 722,
  15632. bottom: 0.02
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6 + 8 / 12, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(2600, "feet")
  15645. },
  15646. {
  15647. name: "Megamacro",
  15648. height: math.unit(450, "miles")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6 + 1 / 12, "feet"),
  15657. weight: math.unit(250, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/tobo/front.svg",
  15661. extra: 608 / 586,
  15662. bottom: 0.023
  15663. }
  15664. },
  15665. back: {
  15666. height: math.unit(6 + 1 / 12, "feet"),
  15667. weight: math.unit(250, "lb"),
  15668. name: "Back",
  15669. image: {
  15670. source: "./media/characters/tobo/back.svg",
  15671. extra: 608 / 586
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Nano",
  15678. height: math.unit(2, "nm")
  15679. },
  15680. {
  15681. name: "Megamicro",
  15682. height: math.unit(0.1, "mm")
  15683. },
  15684. {
  15685. name: "Micro",
  15686. height: math.unit(1, "inch"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Human-sized",
  15691. height: math.unit(6 + 1 / 12, "feet")
  15692. },
  15693. {
  15694. name: "Macro",
  15695. height: math.unit(250, "feet")
  15696. },
  15697. {
  15698. name: "Megamacro",
  15699. height: math.unit(75, "miles")
  15700. },
  15701. {
  15702. name: "Texas-sized",
  15703. height: math.unit(750, "miles")
  15704. },
  15705. {
  15706. name: "Teramacro",
  15707. height: math.unit(50000, "miles")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(269, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/danny-kapowsky/front.svg",
  15720. extra: 766 / 736,
  15721. bottom: 0.044
  15722. }
  15723. },
  15724. back: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(269, "lb"),
  15727. name: "Back",
  15728. image: {
  15729. source: "./media/characters/danny-kapowsky/back.svg",
  15730. extra: 797 / 760,
  15731. bottom: 0.025
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Macro",
  15738. height: math.unit(150, "feet"),
  15739. default: true
  15740. },
  15741. {
  15742. name: "Macro+",
  15743. height: math.unit(200, "feet")
  15744. },
  15745. {
  15746. name: "Macro++",
  15747. height: math.unit(300, "feet")
  15748. },
  15749. {
  15750. name: "Macro+++",
  15751. height: math.unit(400, "feet")
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15757. {
  15758. side: {
  15759. height: math.unit(6, "feet"),
  15760. weight: math.unit(170, "lb"),
  15761. name: "Side",
  15762. image: {
  15763. source: "./media/characters/finn/side.svg",
  15764. extra: 1953 / 1807,
  15765. bottom: 0.057
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Megamacro",
  15772. height: math.unit(14445, "feet"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(5 + 6 / 12, "feet"),
  15782. weight: math.unit(125, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/roy/front.svg",
  15786. extra: 1,
  15787. bottom: 0.11
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Micro",
  15794. height: math.unit(3, "inches"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 6 / 12, "feet")
  15800. },
  15801. {
  15802. name: "Lesser Macro",
  15803. height: math.unit(60, "feet")
  15804. },
  15805. {
  15806. name: "Greater Macro",
  15807. height: math.unit(120, "feet")
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(6, "feet"),
  15816. weight: math.unit(100, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/aevsivs/front.svg",
  15820. extra: 1,
  15821. bottom: 0.03
  15822. }
  15823. },
  15824. back: {
  15825. height: math.unit(6, "feet"),
  15826. weight: math.unit(100, "lb"),
  15827. name: "Back",
  15828. image: {
  15829. source: "./media/characters/aevsivs/back.svg"
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Micro",
  15836. height: math.unit(2, "inches"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(5, "feet")
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(5 + 7 / 12, "feet"),
  15850. weight: math.unit(159, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/hildegard/front.svg",
  15854. extra: 289 / 269,
  15855. bottom: 7.63 / 297.8
  15856. }
  15857. },
  15858. back: {
  15859. height: math.unit(5 + 7 / 12, "feet"),
  15860. weight: math.unit(159, "lb"),
  15861. name: "Back",
  15862. image: {
  15863. source: "./media/characters/hildegard/back.svg",
  15864. extra: 280 / 260,
  15865. bottom: 2.3 / 282
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(5 + 7 / 12, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15879. {
  15880. bernard: {
  15881. height: math.unit(2 + 7 / 12, "feet"),
  15882. weight: math.unit(66, "lb"),
  15883. name: "Bernard",
  15884. rename: true,
  15885. image: {
  15886. source: "./media/characters/bernard-wilder/bernard.svg",
  15887. extra: 192 / 128,
  15888. bottom: 0.05
  15889. }
  15890. },
  15891. wilder: {
  15892. height: math.unit(5 + 8 / 12, "feet"),
  15893. weight: math.unit(143, "lb"),
  15894. name: "Wilder",
  15895. rename: true,
  15896. image: {
  15897. source: "./media/characters/bernard-wilder/wilder.svg",
  15898. extra: 361 / 312,
  15899. bottom: 0.02
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(2 + 7 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15913. {
  15914. anthro: {
  15915. height: math.unit(6 + 1 / 12, "feet"),
  15916. weight: math.unit(155, "lb"),
  15917. name: "Anthro",
  15918. image: {
  15919. source: "./media/characters/hearth/anthro.svg",
  15920. extra: 1178/1136,
  15921. bottom: 28/1206
  15922. }
  15923. },
  15924. feral: {
  15925. height: math.unit(3.78, "feet"),
  15926. weight: math.unit(35, "kg"),
  15927. name: "Feral",
  15928. image: {
  15929. source: "./media/characters/hearth/feral.svg",
  15930. extra: 153 / 135,
  15931. bottom: 0.03
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6 + 1 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(6, "feet"),
  15948. weight: math.unit(182, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/ingrid/front.svg",
  15952. extra: 294 / 268,
  15953. bottom: 0.027
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(6, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15967. {
  15968. eevee: {
  15969. height: math.unit(2 + 10 / 12, "feet"),
  15970. weight: math.unit(86, "lb"),
  15971. name: "Malgam",
  15972. image: {
  15973. source: "./media/characters/malgam/eevee.svg",
  15974. extra: 952/784,
  15975. bottom: 38/990
  15976. }
  15977. },
  15978. sylveon: {
  15979. height: math.unit(4, "feet"),
  15980. weight: math.unit(101, "lb"),
  15981. name: "Future Malgam",
  15982. rename: true,
  15983. image: {
  15984. source: "./media/characters/malgam/sylveon.svg",
  15985. extra: 371 / 325,
  15986. bottom: 0.015
  15987. }
  15988. },
  15989. gigantamax: {
  15990. height: math.unit(50, "feet"),
  15991. name: "Gigantamax Malgam",
  15992. rename: true,
  15993. image: {
  15994. source: "./media/characters/malgam/gigantamax.svg"
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(2 + 10 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(5 + 11 / 12, "feet"),
  16011. weight: math.unit(188, "lb"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/fleur/front.svg",
  16015. extra: 309 / 283,
  16016. bottom: 0.007
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(5 + 11 / 12, "feet"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(5 + 4 / 12, "feet"),
  16033. weight: math.unit(122, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/jude/front.svg",
  16037. extra: 288 / 273,
  16038. bottom: 0.03
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(5 + 4 / 12, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(5 + 11 / 12, "feet"),
  16055. weight: math.unit(190, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/seara/front.svg",
  16059. extra: 1,
  16060. bottom: 0.05
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(5 + 11 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(16 + 5 / 12, "feet"),
  16077. weight: math.unit(524, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/caspian-lugia/front.svg",
  16081. extra: 1,
  16082. bottom: 0.04
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(16 + 5 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(5 + 7 / 12, "feet"),
  16099. weight: math.unit(170, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/mika/front.svg",
  16103. extra: 1,
  16104. bottom: 0.016
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(5 + 7 / 12, "feet"),
  16112. default: true
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6 + 2 / 12, "feet"),
  16121. weight: math.unit(268, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/sol/front.svg",
  16125. extra: 247 / 231,
  16126. bottom: 0.05
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(6 + 2 / 12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16140. {
  16141. buizel: {
  16142. height: math.unit(2 + 5 / 12, "feet"),
  16143. weight: math.unit(87, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/umiko/buizel.svg",
  16147. extra: 172 / 157,
  16148. bottom: 0.01
  16149. },
  16150. form: "buizel",
  16151. default: true
  16152. },
  16153. floatzel: {
  16154. height: math.unit(5 + 9 / 12, "feet"),
  16155. weight: math.unit(250, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/umiko/floatzel.svg",
  16159. extra: 1076/1006,
  16160. bottom: 15/1091
  16161. },
  16162. form: "floatzel",
  16163. default: true
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(2 + 5 / 12, "feet"),
  16170. form: "buizel",
  16171. default: true
  16172. },
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(5 + 9 / 12, "feet"),
  16176. form: "floatzel",
  16177. default: true
  16178. },
  16179. ],
  16180. {
  16181. "buizel": {
  16182. name: "Buizel"
  16183. },
  16184. "floatzel": {
  16185. name: "Floatzel",
  16186. default: true
  16187. }
  16188. }
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6 + 2 / 12, "feet"),
  16195. weight: math.unit(146, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/iliac/front.svg",
  16199. extra: 389 / 365,
  16200. bottom: 0.035
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(6 + 2 / 12, "feet"),
  16208. default: true
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(170, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/topaz/front.svg",
  16221. extra: 317 / 303,
  16222. bottom: 0.055
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(6, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(5 + 11 / 12, "feet"),
  16239. weight: math.unit(144, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/gabriel/front.svg",
  16243. extra: 285 / 262,
  16244. bottom: 0.004
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(5 + 11 / 12, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16258. {
  16259. side: {
  16260. height: math.unit(6 + 5 / 12, "feet"),
  16261. weight: math.unit(300, "lb"),
  16262. name: "Side",
  16263. image: {
  16264. source: "./media/characters/tempest-suicune/side.svg",
  16265. extra: 195 / 154,
  16266. bottom: 0.04
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(6 + 5 / 12, "feet"),
  16274. default: true
  16275. },
  16276. ]
  16277. ))
  16278. characterMakers.push(() => makeCharacter(
  16279. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16280. {
  16281. front: {
  16282. height: math.unit(7 + 2 / 12, "feet"),
  16283. weight: math.unit(322, "lb"),
  16284. name: "Front",
  16285. image: {
  16286. source: "./media/characters/vulcan/front.svg",
  16287. extra: 154 / 147,
  16288. bottom: 0.04
  16289. }
  16290. },
  16291. },
  16292. [
  16293. {
  16294. name: "Normal",
  16295. height: math.unit(7 + 2 / 12, "feet"),
  16296. default: true
  16297. },
  16298. ]
  16299. ))
  16300. characterMakers.push(() => makeCharacter(
  16301. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16302. {
  16303. front: {
  16304. height: math.unit(5 + 10 / 12, "feet"),
  16305. weight: math.unit(264, "lb"),
  16306. name: "Front",
  16307. image: {
  16308. source: "./media/characters/gault/front.svg",
  16309. extra: 161 / 140,
  16310. bottom: 0.028
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(5 + 10 / 12, "feet"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(150, "lb"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/shard/front.svg",
  16331. extra: 273 / 238,
  16332. bottom: 0.02
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(3 + 6 / 12, "feet"),
  16340. default: true
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(5 + 11 / 12, "feet"),
  16349. weight: math.unit(146, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/ashe/front.svg",
  16353. extra: 400 / 373,
  16354. bottom: 0.01
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(5 + 11 / 12, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16368. {
  16369. front: {
  16370. height: math.unit(5 + 5 / 12, "feet"),
  16371. weight: math.unit(135, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/beatrix/front.svg",
  16375. extra: 392 / 379,
  16376. bottom: 0.01
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(6, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6 + 2/12, "feet"),
  16393. weight: math.unit(135, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/ignatius/front.svg",
  16397. extra: 1380/1259,
  16398. bottom: 27/1407
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(6 + 2/12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(6 + 2 / 12, "feet"),
  16415. weight: math.unit(138, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/mei-li/front.svg",
  16419. extra: 237 / 229,
  16420. bottom: 0.03
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(6 + 2 / 12, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(2 + 4 / 12, "feet"),
  16437. weight: math.unit(62, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/puru/front.svg",
  16441. extra: 206 / 149,
  16442. bottom: 0.06
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(2 + 4 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16456. {
  16457. anthro: {
  16458. height: math.unit(5 + 8/12, "feet"),
  16459. weight: math.unit(200, "lb"),
  16460. energyNeed: math.unit(2000, "kcal"),
  16461. name: "Anthro",
  16462. image: {
  16463. source: "./media/characters/kee/anthro.svg",
  16464. extra: 3251/3184,
  16465. bottom: 250/3501
  16466. }
  16467. },
  16468. taur: {
  16469. height: math.unit(11, "feet"),
  16470. weight: math.unit(500, "lb"),
  16471. energyNeed: math.unit(5000, "kcal"),
  16472. name: "Taur",
  16473. image: {
  16474. source: "./media/characters/kee/taur.svg",
  16475. extra: 1362/1320,
  16476. bottom: 83/1445
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(5 + 8/12, "feet"),
  16484. default: true
  16485. },
  16486. {
  16487. name: "Macro",
  16488. height: math.unit(35, "feet")
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16494. {
  16495. anthro: {
  16496. height: math.unit(7, "feet"),
  16497. weight: math.unit(190, "lb"),
  16498. name: "Anthro",
  16499. image: {
  16500. source: "./media/characters/cobalt-dracha/anthro.svg",
  16501. extra: 231 / 225,
  16502. bottom: 0.04
  16503. }
  16504. },
  16505. feral: {
  16506. height: math.unit(9 + 7 / 12, "feet"),
  16507. weight: math.unit(294, "lb"),
  16508. name: "Feral",
  16509. image: {
  16510. source: "./media/characters/cobalt-dracha/feral.svg",
  16511. extra: 692 / 633,
  16512. bottom: 0.05
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(7, "feet"),
  16520. default: true
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16526. {
  16527. fallen: {
  16528. height: math.unit(11 + 8 / 12, "feet"),
  16529. weight: math.unit(485, "lb"),
  16530. name: "Java (Fallen)",
  16531. rename: true,
  16532. image: {
  16533. source: "./media/characters/java/fallen.svg",
  16534. extra: 226 / 208,
  16535. bottom: 0.005
  16536. }
  16537. },
  16538. godkin: {
  16539. height: math.unit(10 + 6 / 12, "feet"),
  16540. weight: math.unit(328, "lb"),
  16541. name: "Java (Godkin)",
  16542. rename: true,
  16543. image: {
  16544. source: "./media/characters/java/godkin.svg",
  16545. extra: 1104/1068,
  16546. bottom: 36/1140
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(11 + 8 / 12, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(5 + 9 / 12, "feet"),
  16563. weight: math.unit(170, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/purna/front.svg",
  16567. extra: 239 / 229,
  16568. bottom: 0.01
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(5 + 9 / 12, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(5 + 9 / 12, "feet"),
  16585. weight: math.unit(142, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/kuva/front.svg",
  16589. extra: 281 / 271,
  16590. bottom: 0.006
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(5 + 9 / 12, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16604. {
  16605. anthro: {
  16606. height: math.unit(9 + 2 / 12, "feet"),
  16607. weight: math.unit(270, "lb"),
  16608. name: "Anthro",
  16609. image: {
  16610. source: "./media/characters/embra/anthro.svg",
  16611. extra: 200 / 187,
  16612. bottom: 0.02
  16613. }
  16614. },
  16615. feral: {
  16616. height: math.unit(18 + 8 / 12, "feet"),
  16617. weight: math.unit(576, "lb"),
  16618. name: "Feral",
  16619. image: {
  16620. source: "./media/characters/embra/feral.svg",
  16621. extra: 152 / 137,
  16622. bottom: 0.037
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(9 + 2 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16636. {
  16637. anthro: {
  16638. height: math.unit(10 + 9 / 12, "feet"),
  16639. weight: math.unit(224, "lb"),
  16640. name: "Anthro",
  16641. image: {
  16642. source: "./media/characters/grottos/anthro.svg",
  16643. extra: 350 / 332,
  16644. bottom: 0.045
  16645. }
  16646. },
  16647. feral: {
  16648. height: math.unit(20 + 7 / 12, "feet"),
  16649. weight: math.unit(629, "lb"),
  16650. name: "Feral",
  16651. image: {
  16652. source: "./media/characters/grottos/feral.svg",
  16653. extra: 207 / 190,
  16654. bottom: 0.05
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Normal",
  16661. height: math.unit(10 + 9 / 12, "feet"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16668. {
  16669. anthro: {
  16670. height: math.unit(9 + 6 / 12, "feet"),
  16671. weight: math.unit(298, "lb"),
  16672. name: "Anthro",
  16673. image: {
  16674. source: "./media/characters/frifna/anthro.svg",
  16675. extra: 282 / 269,
  16676. bottom: 0.015
  16677. }
  16678. },
  16679. feral: {
  16680. height: math.unit(16 + 2 / 12, "feet"),
  16681. weight: math.unit(624, "lb"),
  16682. name: "Feral",
  16683. image: {
  16684. source: "./media/characters/frifna/feral.svg"
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(9 + 6 / 12, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16698. {
  16699. front: {
  16700. height: math.unit(6 + 2 / 12, "feet"),
  16701. weight: math.unit(168, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/elise/front.svg",
  16705. extra: 276 / 271
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(6 + 2 / 12, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 10 / 12, "feet"),
  16722. weight: math.unit(210, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/glade/front.svg",
  16726. extra: 258 / 247,
  16727. bottom: 0.008
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 10 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16741. {
  16742. front: {
  16743. height: math.unit(5 + 10 / 12, "feet"),
  16744. weight: math.unit(129, "lb"),
  16745. name: "Front",
  16746. image: {
  16747. source: "./media/characters/rina/front.svg",
  16748. extra: 266 / 255,
  16749. bottom: 0.005
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(5 + 10 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6 + 1 / 12, "feet"),
  16766. weight: math.unit(192, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/veronica/front.svg",
  16770. extra: 319 / 309,
  16771. bottom: 0.005
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(6 + 1 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(9 + 3 / 12, "feet"),
  16788. weight: math.unit(1100, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/braxton/front.svg",
  16792. extra: 1057 / 984,
  16793. bottom: 0.05
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(9 + 3 / 12, "feet")
  16801. },
  16802. {
  16803. name: "Giant",
  16804. height: math.unit(300, "feet"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "Macro",
  16809. height: math.unit(700, "feet")
  16810. },
  16811. {
  16812. name: "Megamacro",
  16813. height: math.unit(6000, "feet")
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(6 + 7 / 12, "feet"),
  16822. weight: math.unit(150, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/blue-feyonics/front.svg",
  16826. extra: 1403 / 1306,
  16827. bottom: 0.047
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6 + 7 / 12, "feet"),
  16835. default: true
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(1.8, "meters"),
  16844. weight: math.unit(60, "kg"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/maxwell/front.svg",
  16848. extra: 2060 / 1873
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Micro",
  16855. height: math.unit(1, "mm")
  16856. },
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(1.8, "meter"),
  16860. default: true
  16861. },
  16862. {
  16863. name: "Macro",
  16864. height: math.unit(30, "meters")
  16865. },
  16866. {
  16867. name: "Megamacro",
  16868. height: math.unit(10, "km")
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(6, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/jack/front.svg",
  16881. extra: 1754 / 1640,
  16882. bottom: 0.01
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(80000, "feet"),
  16890. default: true
  16891. },
  16892. {
  16893. name: "Max size",
  16894. height: math.unit(10, "lightyears")
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16900. {
  16901. urban: {
  16902. height: math.unit(5, "feet"),
  16903. weight: math.unit(240, "lb"),
  16904. name: "Urban",
  16905. image: {
  16906. source: "./media/characters/cafat/urban.svg",
  16907. extra: 1223/1126,
  16908. bottom: 205/1428
  16909. }
  16910. },
  16911. summer: {
  16912. height: math.unit(5, "feet"),
  16913. weight: math.unit(240, "lb"),
  16914. name: "Summer",
  16915. image: {
  16916. source: "./media/characters/cafat/summer.svg",
  16917. extra: 1223/1126,
  16918. bottom: 205/1428
  16919. }
  16920. },
  16921. winter: {
  16922. height: math.unit(5, "feet"),
  16923. weight: math.unit(240, "lb"),
  16924. name: "Winter",
  16925. image: {
  16926. source: "./media/characters/cafat/winter.svg",
  16927. extra: 1223/1126,
  16928. bottom: 205/1428
  16929. }
  16930. },
  16931. lingerie: {
  16932. height: math.unit(5, "feet"),
  16933. weight: math.unit(240, "lb"),
  16934. name: "Lingerie",
  16935. image: {
  16936. source: "./media/characters/cafat/lingerie.svg",
  16937. extra: 1223/1126,
  16938. bottom: 205/1428
  16939. }
  16940. },
  16941. upright: {
  16942. height: math.unit(6.3, "feet"),
  16943. weight: math.unit(240, "lb"),
  16944. name: "Upright",
  16945. image: {
  16946. source: "./media/characters/cafat/upright.svg",
  16947. bottom: 0.01
  16948. }
  16949. },
  16950. uprightFull: {
  16951. height: math.unit(6.3, "feet"),
  16952. weight: math.unit(240, "lb"),
  16953. name: "Upright (Full)",
  16954. image: {
  16955. source: "./media/characters/cafat/upright-full.svg",
  16956. bottom: 0.01
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Small",
  16963. height: math.unit(5, "feet"),
  16964. default: true
  16965. },
  16966. {
  16967. name: "Large",
  16968. height: math.unit(13, "feet")
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(150, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/verin-raharra/front.svg",
  16981. extra: 5019 / 4835,
  16982. bottom: 0.023
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(7 + 5 / 12, "feet"),
  16990. default: true
  16991. },
  16992. {
  16993. name: "Upsized",
  16994. height: math.unit(20, "feet")
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(7, "feet"),
  17003. weight: math.unit(230, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/nakata/front.svg",
  17007. extra: 1.005,
  17008. bottom: 0.01
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(7, "feet"),
  17016. default: true
  17017. },
  17018. {
  17019. name: "Big",
  17020. height: math.unit(14, "feet")
  17021. },
  17022. {
  17023. name: "Macro",
  17024. height: math.unit(400, "feet")
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(4.91, "feet"),
  17033. weight: math.unit(100, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/lily/front.svg",
  17037. extra: 1585 / 1415,
  17038. bottom: 0.02
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(4.91, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17052. {
  17053. laying: {
  17054. height: math.unit(4 + 4 / 12, "feet"),
  17055. weight: math.unit(600, "lb"),
  17056. name: "Laying",
  17057. image: {
  17058. source: "./media/characters/sheila/laying.svg",
  17059. extra: 1333 / 1265,
  17060. bottom: 0.16
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(4 + 4 / 12, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17074. {
  17075. front: {
  17076. height: math.unit(6, "feet"),
  17077. weight: math.unit(190, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/sax/front.svg",
  17081. extra: 1187 / 973,
  17082. bottom: 0.042
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Micro",
  17089. height: math.unit(4, "inches"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17096. {
  17097. front: {
  17098. height: math.unit(6, "feet"),
  17099. weight: math.unit(150, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/pandora/front.svg",
  17103. extra: 2720 / 2556,
  17104. bottom: 0.015
  17105. }
  17106. },
  17107. back: {
  17108. height: math.unit(6, "feet"),
  17109. weight: math.unit(150, "lb"),
  17110. name: "Back",
  17111. image: {
  17112. source: "./media/characters/pandora/back.svg",
  17113. extra: 2720 / 2556,
  17114. bottom: 0.01
  17115. }
  17116. },
  17117. beans: {
  17118. height: math.unit(6 / 8, "feet"),
  17119. name: "Beans",
  17120. image: {
  17121. source: "./media/characters/pandora/beans.svg"
  17122. }
  17123. },
  17124. collar: {
  17125. height: math.unit(0.31, "feet"),
  17126. name: "Collar",
  17127. image: {
  17128. source: "./media/characters/pandora/collar.svg"
  17129. }
  17130. },
  17131. skirt: {
  17132. height: math.unit(6, "feet"),
  17133. weight: math.unit(150, "lb"),
  17134. name: "Skirt",
  17135. image: {
  17136. source: "./media/characters/pandora/skirt.svg",
  17137. extra: 1622 / 1525,
  17138. bottom: 0.015
  17139. }
  17140. },
  17141. hoodie: {
  17142. height: math.unit(6, "feet"),
  17143. weight: math.unit(150, "lb"),
  17144. name: "Hoodie",
  17145. image: {
  17146. source: "./media/characters/pandora/hoodie.svg",
  17147. extra: 1622 / 1525,
  17148. bottom: 0.015
  17149. }
  17150. },
  17151. casual: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Casual",
  17155. image: {
  17156. source: "./media/characters/pandora/casual.svg",
  17157. extra: 1622 / 1525,
  17158. bottom: 0.015
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(6, "feet")
  17166. },
  17167. {
  17168. name: "Big Steppy",
  17169. height: math.unit(1, "km"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Galactic Steppy",
  17174. height: math.unit(2, "gigameters")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17180. {
  17181. side: {
  17182. height: math.unit(10, "feet"),
  17183. weight: math.unit(800, "kg"),
  17184. name: "Side",
  17185. image: {
  17186. source: "./media/characters/venio-darcony/side.svg",
  17187. extra: 1373 / 1003,
  17188. bottom: 0.037
  17189. }
  17190. },
  17191. front: {
  17192. height: math.unit(19, "feet"),
  17193. weight: math.unit(800, "kg"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/venio-darcony/front.svg"
  17197. }
  17198. },
  17199. back: {
  17200. height: math.unit(19, "feet"),
  17201. weight: math.unit(800, "kg"),
  17202. name: "Back",
  17203. image: {
  17204. source: "./media/characters/venio-darcony/back.svg"
  17205. }
  17206. },
  17207. sideNsfw: {
  17208. height: math.unit(10, "feet"),
  17209. weight: math.unit(800, "kg"),
  17210. name: "Side (NSFW)",
  17211. image: {
  17212. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17213. extra: 1373 / 1003,
  17214. bottom: 0.037
  17215. }
  17216. },
  17217. frontNsfw: {
  17218. height: math.unit(19, "feet"),
  17219. weight: math.unit(800, "kg"),
  17220. name: "Front (NSFW)",
  17221. image: {
  17222. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17223. }
  17224. },
  17225. backNsfw: {
  17226. height: math.unit(19, "feet"),
  17227. weight: math.unit(800, "kg"),
  17228. name: "Back (NSFW)",
  17229. image: {
  17230. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17231. }
  17232. },
  17233. sideArmored: {
  17234. height: math.unit(10, "feet"),
  17235. weight: math.unit(800, "kg"),
  17236. name: "Side (Armored)",
  17237. image: {
  17238. source: "./media/characters/venio-darcony/side-armored.svg",
  17239. extra: 1373 / 1003,
  17240. bottom: 0.037
  17241. }
  17242. },
  17243. frontArmored: {
  17244. height: math.unit(19, "feet"),
  17245. weight: math.unit(900, "kg"),
  17246. name: "Front (Armored)",
  17247. image: {
  17248. source: "./media/characters/venio-darcony/front-armored.svg"
  17249. }
  17250. },
  17251. backArmored: {
  17252. height: math.unit(19, "feet"),
  17253. weight: math.unit(900, "kg"),
  17254. name: "Back (Armored)",
  17255. image: {
  17256. source: "./media/characters/venio-darcony/back-armored.svg"
  17257. }
  17258. },
  17259. sword: {
  17260. height: math.unit(10, "feet"),
  17261. weight: math.unit(50, "lb"),
  17262. name: "Sword",
  17263. image: {
  17264. source: "./media/characters/venio-darcony/sword.svg"
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(10, "feet")
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(130, "feet"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Macro+",
  17280. height: math.unit(240, "feet")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(6, "feet"),
  17289. weight: math.unit(150, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/veski/front.svg",
  17293. extra: 1299 / 1225,
  17294. bottom: 0.04
  17295. }
  17296. },
  17297. back: {
  17298. height: math.unit(6, "feet"),
  17299. weight: math.unit(150, "lb"),
  17300. name: "Back",
  17301. image: {
  17302. source: "./media/characters/veski/back.svg",
  17303. extra: 1299 / 1225,
  17304. bottom: 0.008
  17305. }
  17306. },
  17307. maw: {
  17308. height: math.unit(1.5 * 1.21, "feet"),
  17309. name: "Maw",
  17310. image: {
  17311. source: "./media/characters/veski/maw.svg"
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Macro",
  17318. height: math.unit(2, "km"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(5 + 7 / 12, "feet"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/isabelle/front.svg",
  17331. extra: 2130 / 1976,
  17332. bottom: 0.05
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Supermicro",
  17339. height: math.unit(10, "micrometers")
  17340. },
  17341. {
  17342. name: "Micro",
  17343. height: math.unit(1, "inch")
  17344. },
  17345. {
  17346. name: "Tiny",
  17347. height: math.unit(5, "inches")
  17348. },
  17349. {
  17350. name: "Standard",
  17351. height: math.unit(5 + 7 / 12, "inches")
  17352. },
  17353. {
  17354. name: "Macro",
  17355. height: math.unit(80, "meters"),
  17356. default: true
  17357. },
  17358. {
  17359. name: "Megamacro",
  17360. height: math.unit(250, "meters")
  17361. },
  17362. {
  17363. name: "Gigamacro",
  17364. height: math.unit(5, "km")
  17365. },
  17366. {
  17367. name: "Cosmic",
  17368. height: math.unit(2.5e6, "miles")
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(6, "feet"),
  17377. weight: math.unit(150, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/hanzo/front.svg",
  17381. extra: 374 / 344,
  17382. bottom: 0.02
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(8, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(7, "feet"),
  17399. weight: math.unit(130, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/anna/front.svg",
  17403. extra: 169 / 145,
  17404. bottom: 0.06
  17405. }
  17406. },
  17407. full: {
  17408. height: math.unit(4.96, "feet"),
  17409. weight: math.unit(220, "lb"),
  17410. name: "Full",
  17411. image: {
  17412. source: "./media/characters/anna/full.svg",
  17413. extra: 138 / 114,
  17414. bottom: 0.15
  17415. }
  17416. },
  17417. tongue: {
  17418. height: math.unit(2.53, "feet"),
  17419. name: "Tongue",
  17420. image: {
  17421. source: "./media/characters/anna/tongue.svg"
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(7, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(7, "feet"),
  17438. weight: math.unit(150, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/ian-corvid/front.svg",
  17442. extra: 150 / 142,
  17443. bottom: 0.02
  17444. }
  17445. },
  17446. back: {
  17447. height: math.unit(7, "feet"),
  17448. weight: math.unit(150, "lb"),
  17449. name: "Back",
  17450. image: {
  17451. source: "./media/characters/ian-corvid/back.svg",
  17452. extra: 150 / 143,
  17453. bottom: 0.01
  17454. }
  17455. },
  17456. stomping: {
  17457. height: math.unit(7, "feet"),
  17458. weight: math.unit(150, "lb"),
  17459. name: "Stomping",
  17460. image: {
  17461. source: "./media/characters/ian-corvid/stomping.svg",
  17462. extra: 76 / 72
  17463. }
  17464. },
  17465. sitting: {
  17466. height: math.unit(7 / 1.8, "feet"),
  17467. weight: math.unit(150, "lb"),
  17468. name: "Sitting",
  17469. image: {
  17470. source: "./media/characters/ian-corvid/sitting.svg",
  17471. extra: 1400 / 1269,
  17472. bottom: 0.15
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Tiny Microw",
  17479. height: math.unit(1, "inch")
  17480. },
  17481. {
  17482. name: "Microw",
  17483. height: math.unit(6, "inches")
  17484. },
  17485. {
  17486. name: "Crow",
  17487. height: math.unit(7 + 1 / 12, "feet"),
  17488. default: true
  17489. },
  17490. {
  17491. name: "Macrow",
  17492. height: math.unit(176, "feet")
  17493. },
  17494. ]
  17495. ))
  17496. characterMakers.push(() => makeCharacter(
  17497. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17498. {
  17499. front: {
  17500. height: math.unit(5 + 7 / 12, "feet"),
  17501. weight: math.unit(147, "lb"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/natalie-kellon/front.svg",
  17505. extra: 1214 / 1141,
  17506. bottom: 0.02
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(1 / 16, "inch")
  17514. },
  17515. {
  17516. name: "Tiny",
  17517. height: math.unit(4, "inches")
  17518. },
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(5 + 7 / 12, "feet"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Amazon",
  17526. height: math.unit(12, "feet")
  17527. },
  17528. {
  17529. name: "Giantess",
  17530. height: math.unit(160, "meters")
  17531. },
  17532. {
  17533. name: "Titaness",
  17534. height: math.unit(800, "meters")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(6, "feet"),
  17543. weight: math.unit(150, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/alluria/front.svg",
  17547. extra: 806 / 738,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. side: {
  17552. height: math.unit(6, "feet"),
  17553. weight: math.unit(150, "lb"),
  17554. name: "Side",
  17555. image: {
  17556. source: "./media/characters/alluria/side.svg",
  17557. extra: 800 / 750,
  17558. }
  17559. },
  17560. back: {
  17561. height: math.unit(6, "feet"),
  17562. weight: math.unit(150, "lb"),
  17563. name: "Back",
  17564. image: {
  17565. source: "./media/characters/alluria/back.svg",
  17566. extra: 806 / 738,
  17567. }
  17568. },
  17569. frontMaid: {
  17570. height: math.unit(6, "feet"),
  17571. weight: math.unit(150, "lb"),
  17572. name: "Front (Maid)",
  17573. image: {
  17574. source: "./media/characters/alluria/front-maid.svg",
  17575. extra: 806 / 738,
  17576. bottom: 0.01
  17577. }
  17578. },
  17579. sideMaid: {
  17580. height: math.unit(6, "feet"),
  17581. weight: math.unit(150, "lb"),
  17582. name: "Side (Maid)",
  17583. image: {
  17584. source: "./media/characters/alluria/side-maid.svg",
  17585. extra: 800 / 750,
  17586. bottom: 0.005
  17587. }
  17588. },
  17589. backMaid: {
  17590. height: math.unit(6, "feet"),
  17591. weight: math.unit(150, "lb"),
  17592. name: "Back (Maid)",
  17593. image: {
  17594. source: "./media/characters/alluria/back-maid.svg",
  17595. extra: 806 / 738,
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Micro",
  17602. height: math.unit(6, "inches"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17609. {
  17610. front: {
  17611. height: math.unit(6, "feet"),
  17612. weight: math.unit(150, "lb"),
  17613. name: "Front",
  17614. image: {
  17615. source: "./media/characters/kyle/front.svg",
  17616. extra: 1069 / 962,
  17617. bottom: 77.228 / 1727.45
  17618. }
  17619. },
  17620. },
  17621. [
  17622. {
  17623. name: "Macro",
  17624. height: math.unit(150, "feet"),
  17625. default: true
  17626. },
  17627. ]
  17628. ))
  17629. characterMakers.push(() => makeCharacter(
  17630. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17631. {
  17632. front: {
  17633. height: math.unit(6, "feet"),
  17634. weight: math.unit(300, "lb"),
  17635. name: "Front",
  17636. image: {
  17637. source: "./media/characters/duncan/front.svg",
  17638. extra: 1650 / 1482,
  17639. bottom: 0.05
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(100, "feet"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17653. {
  17654. front: {
  17655. height: math.unit(5 + 4 / 12, "feet"),
  17656. weight: math.unit(220, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/memory/front.svg",
  17660. extra: 3641 / 3545,
  17661. bottom: 0.03
  17662. }
  17663. },
  17664. back: {
  17665. height: math.unit(5 + 4 / 12, "feet"),
  17666. weight: math.unit(220, "lb"),
  17667. name: "Back",
  17668. image: {
  17669. source: "./media/characters/memory/back.svg",
  17670. extra: 3641 / 3545,
  17671. bottom: 0.025
  17672. }
  17673. },
  17674. frontSkirt: {
  17675. height: math.unit(5 + 4 / 12, "feet"),
  17676. weight: math.unit(220, "lb"),
  17677. name: "Front (Skirt)",
  17678. image: {
  17679. source: "./media/characters/memory/front-skirt.svg",
  17680. extra: 3641 / 3545,
  17681. bottom: 0.03
  17682. }
  17683. },
  17684. frontDress: {
  17685. height: math.unit(5 + 4 / 12, "feet"),
  17686. weight: math.unit(220, "lb"),
  17687. name: "Front (Dress)",
  17688. image: {
  17689. source: "./media/characters/memory/front-dress.svg",
  17690. extra: 3641 / 3545,
  17691. bottom: 0.03
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Micro",
  17698. height: math.unit(6, "inches"),
  17699. default: true
  17700. },
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(5 + 4 / 12, "feet")
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(4 + 11 / 12, "feet"),
  17712. weight: math.unit(100, "lb"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/luno/front.svg",
  17716. extra: 1535 / 1487,
  17717. bottom: 0.03
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Micro",
  17724. height: math.unit(3, "inches")
  17725. },
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(4 + 11 / 12, "feet"),
  17729. default: true
  17730. },
  17731. {
  17732. name: "Macro",
  17733. height: math.unit(300, "feet")
  17734. },
  17735. {
  17736. name: "Megamacro",
  17737. height: math.unit(700, "miles")
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(6 + 2 / 12, "feet"),
  17746. weight: math.unit(170, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/jamesy/front.svg",
  17750. extra: 440 / 382,
  17751. bottom: 0.005
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Micro",
  17758. height: math.unit(3, "inches")
  17759. },
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(6 + 2 / 12, "feet"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(300, "feet")
  17768. },
  17769. {
  17770. name: "Megamacro",
  17771. height: math.unit(700, "miles")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6, "feet"),
  17780. weight: math.unit(160, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/mark/front.svg",
  17784. extra: 3300 / 3100,
  17785. bottom: 136.42 / 3440.47
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Macro",
  17792. height: math.unit(120, "meters")
  17793. },
  17794. {
  17795. name: "Bigger Macro",
  17796. height: math.unit(350, "meters")
  17797. },
  17798. {
  17799. name: "Megamacro",
  17800. height: math.unit(8, "km"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Continental",
  17805. height: math.unit(4550, "km")
  17806. },
  17807. {
  17808. name: "Planetary",
  17809. height: math.unit(65000, "km")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6, "feet"),
  17818. weight: math.unit(400, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/mac/front.svg",
  17822. extra: 1048 / 987.7,
  17823. bottom: 60 / 1107.6,
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Macro",
  17830. height: math.unit(500, "feet"),
  17831. default: true
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(5 + 2 / 12, "feet"),
  17840. weight: math.unit(190, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/bari/front.svg",
  17844. extra: 3156 / 2880,
  17845. bottom: 0.03
  17846. }
  17847. },
  17848. back: {
  17849. height: math.unit(5 + 2 / 12, "feet"),
  17850. weight: math.unit(190, "lb"),
  17851. name: "Back",
  17852. image: {
  17853. source: "./media/characters/bari/back.svg",
  17854. extra: 3260 / 2834,
  17855. bottom: 0.025
  17856. }
  17857. },
  17858. frontPlush: {
  17859. height: math.unit(5 + 2 / 12, "feet"),
  17860. weight: math.unit(190, "lb"),
  17861. name: "Front (Plush)",
  17862. image: {
  17863. source: "./media/characters/bari/front-plush.svg",
  17864. extra: 1112 / 1061,
  17865. bottom: 0.002
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Micro",
  17872. height: math.unit(3, "inches")
  17873. },
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(5 + 2 / 12, "feet"),
  17877. default: true
  17878. },
  17879. {
  17880. name: "Macro",
  17881. height: math.unit(20, "feet")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6 + 1 / 12, "feet"),
  17890. weight: math.unit(275, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/hunter-misha-raven/front.svg"
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Mortal",
  17900. height: math.unit(6 + 1 / 12, "feet")
  17901. },
  17902. {
  17903. name: "Divine",
  17904. height: math.unit(1.12134e34, "parsecs"),
  17905. default: true
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17911. {
  17912. front: {
  17913. height: math.unit(6 + 3 / 12, "feet"),
  17914. weight: math.unit(220, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/max-calore/front.svg",
  17918. extra: 1700 / 1648,
  17919. bottom: 0.01
  17920. }
  17921. },
  17922. back: {
  17923. height: math.unit(6 + 3 / 12, "feet"),
  17924. weight: math.unit(220, "lb"),
  17925. name: "Back",
  17926. image: {
  17927. source: "./media/characters/max-calore/back.svg",
  17928. extra: 1700 / 1648,
  17929. bottom: 0.01
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(6 + 3 / 12, "feet"),
  17937. default: true
  17938. },
  17939. ]
  17940. ))
  17941. characterMakers.push(() => makeCharacter(
  17942. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17943. {
  17944. side: {
  17945. height: math.unit(2 + 8 / 12, "feet"),
  17946. weight: math.unit(99, "lb"),
  17947. name: "Side",
  17948. image: {
  17949. source: "./media/characters/aspen/side.svg",
  17950. extra: 152 / 138,
  17951. bottom: 0.032
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(2 + 8 / 12, "feet"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17965. {
  17966. side: {
  17967. height: math.unit(3 + 2 / 12, "feet"),
  17968. weight: math.unit(224, "lb"),
  17969. name: "Side",
  17970. image: {
  17971. source: "./media/characters/sheila-feral-wolf/side.svg",
  17972. extra: 179 / 166,
  17973. bottom: 0.03
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(3 + 2 / 12, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17987. {
  17988. side: {
  17989. height: math.unit(1 + 9 / 12, "feet"),
  17990. weight: math.unit(38, "lb"),
  17991. name: "Side",
  17992. image: {
  17993. source: "./media/characters/michelle/side.svg",
  17994. extra: 147 / 136.7,
  17995. bottom: 0.03
  17996. }
  17997. },
  17998. },
  17999. [
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(1 + 9 / 12, "feet"),
  18003. default: true
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(1.54, "feet"),
  18012. weight: math.unit(50, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/nino/front.svg"
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(1.54, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(1.49, "feet"),
  18032. weight: math.unit(45, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/viola/front.svg"
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(1.49, "feet"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(6 + 5 / 12, "feet"),
  18052. weight: math.unit(580, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/atlas/front.svg",
  18056. extra: 298.5 / 290,
  18057. bottom: 0.015
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6 + 5 / 12, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18071. {
  18072. side: {
  18073. height: math.unit(15.6, "inches"),
  18074. weight: math.unit(10, "lb"),
  18075. name: "Side",
  18076. image: {
  18077. source: "./media/characters/davy/side.svg",
  18078. extra: 200 / 170,
  18079. bottom: 0.01
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(15.6, "inches"),
  18087. default: true
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18093. {
  18094. side: {
  18095. height: math.unit(4 + 8 / 12, "feet"),
  18096. weight: math.unit(166, "lb"),
  18097. name: "Side",
  18098. image: {
  18099. source: "./media/characters/fiona/side.svg",
  18100. extra: 232 / 220,
  18101. bottom: 0.03
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(4 + 8 / 12, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18115. {
  18116. front: {
  18117. height: math.unit(26, "inches"),
  18118. weight: math.unit(35, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/lyla/front.svg",
  18122. bottom: 0.1
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(3, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18136. {
  18137. side: {
  18138. height: math.unit(1.8, "feet"),
  18139. weight: math.unit(44, "lb"),
  18140. name: "Side",
  18141. image: {
  18142. source: "./media/characters/perseus/side.svg",
  18143. bottom: 0.21
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(1.8, "feet"),
  18151. default: true
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18157. {
  18158. side: {
  18159. height: math.unit(4 + 2 / 12, "feet"),
  18160. weight: math.unit(20, "lb"),
  18161. name: "Side",
  18162. image: {
  18163. source: "./media/characters/remus/side.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(4 + 2 / 12, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(4 + 11 / 12, "feet"),
  18180. weight: math.unit(114, "lb"),
  18181. name: "Front",
  18182. image: {
  18183. source: "./media/characters/raf/front.svg",
  18184. extra: 1504/1339,
  18185. bottom: 26/1530
  18186. }
  18187. },
  18188. side: {
  18189. height: math.unit(4 + 11 / 12, "feet"),
  18190. weight: math.unit(114, "lb"),
  18191. name: "Side",
  18192. image: {
  18193. source: "./media/characters/raf/side.svg",
  18194. extra: 1466/1316,
  18195. bottom: 29/1495
  18196. }
  18197. },
  18198. paw: {
  18199. height: math.unit(1.45, "feet"),
  18200. name: "Paw",
  18201. image: {
  18202. source: "./media/characters/raf/paw.svg"
  18203. },
  18204. extraAttributes: {
  18205. "toeSize": {
  18206. name: "Toe Size",
  18207. power: 2,
  18208. type: "area",
  18209. base: math.unit(0.004, "m^2")
  18210. },
  18211. "padSize": {
  18212. name: "Pad Size",
  18213. power: 2,
  18214. type: "area",
  18215. base: math.unit(0.04, "m^2")
  18216. },
  18217. "footSize": {
  18218. name: "Foot Size",
  18219. power: 2,
  18220. type: "area",
  18221. base: math.unit(0.08, "m^2")
  18222. },
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Micro",
  18229. height: math.unit(2, "inches")
  18230. },
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(4 + 11 / 12, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Macro",
  18238. height: math.unit(70, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(1.5, "meters"),
  18247. weight: math.unit(68, "kg"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/liam-einarr/front.svg",
  18251. extra: 2822 / 2666
  18252. }
  18253. },
  18254. back: {
  18255. height: math.unit(1.5, "meters"),
  18256. weight: math.unit(68, "kg"),
  18257. name: "Back",
  18258. image: {
  18259. source: "./media/characters/liam-einarr/back.svg",
  18260. extra: 2822 / 2666,
  18261. bottom: 0.015
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(1.5, "meters"),
  18269. default: true
  18270. },
  18271. {
  18272. name: "Macro",
  18273. height: math.unit(150, "meters")
  18274. },
  18275. {
  18276. name: "Megamacro",
  18277. height: math.unit(35, "km")
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18283. {
  18284. front: {
  18285. height: math.unit(6, "feet"),
  18286. weight: math.unit(75, "kg"),
  18287. name: "Front",
  18288. image: {
  18289. source: "./media/characters/linda/front.svg",
  18290. extra: 930 / 874,
  18291. bottom: 0.004
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(6, "feet"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(6 + 8 / 12, "feet"),
  18308. weight: math.unit(220, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/caylex/front.svg",
  18312. extra: 821 / 772,
  18313. bottom: 0.07
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(6 + 8 / 12, "feet"),
  18318. weight: math.unit(220, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/caylex/back.svg",
  18322. extra: 821 / 772,
  18323. bottom: 0.022
  18324. }
  18325. },
  18326. hand: {
  18327. height: math.unit(1.25, "feet"),
  18328. name: "Hand",
  18329. image: {
  18330. source: "./media/characters/caylex/hand.svg"
  18331. }
  18332. },
  18333. foot: {
  18334. height: math.unit(1.6, "feet"),
  18335. name: "Foot",
  18336. image: {
  18337. source: "./media/characters/caylex/foot.svg"
  18338. }
  18339. },
  18340. armored: {
  18341. height: math.unit(6 + 8 / 12, "feet"),
  18342. weight: math.unit(250, "lb"),
  18343. name: "Armored",
  18344. image: {
  18345. source: "./media/characters/caylex/armored.svg",
  18346. extra: 1420 / 1310,
  18347. bottom: 0.045
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(6 + 8 / 12, "feet"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Normal+",
  18359. height: math.unit(12, "feet")
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(7 + 6 / 12, "feet"),
  18368. weight: math.unit(288, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/alana/front.svg",
  18372. extra: 679 / 653,
  18373. bottom: 22.5 / 701
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(7 + 6 / 12, "feet")
  18381. },
  18382. {
  18383. name: "Large",
  18384. height: math.unit(50, "feet")
  18385. },
  18386. {
  18387. name: "Macro",
  18388. height: math.unit(100, "feet"),
  18389. default: true
  18390. },
  18391. {
  18392. name: "Macro+",
  18393. height: math.unit(200, "feet")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(6 + 1 / 12, "feet"),
  18402. weight: math.unit(210, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/hasani/front.svg",
  18406. extra: 244 / 232,
  18407. bottom: 0.01
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(6 + 1 / 12, "feet"),
  18412. weight: math.unit(210, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/hasani/back.svg",
  18416. extra: 244 / 232,
  18417. bottom: 0.01
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(6 + 1 / 12, "feet")
  18425. },
  18426. {
  18427. name: "Macro",
  18428. height: math.unit(175, "feet"),
  18429. default: true
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(1.82, "meters"),
  18438. weight: math.unit(140, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/nita/front.svg",
  18442. extra: 2473 / 2363,
  18443. bottom: 0.01
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(1.82, "m")
  18451. },
  18452. {
  18453. name: "Macro",
  18454. height: math.unit(300, "m")
  18455. },
  18456. {
  18457. name: "Mistake Canon",
  18458. height: math.unit(0.5, "miles"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Big Mistake",
  18463. height: math.unit(13, "miles")
  18464. },
  18465. {
  18466. name: "Playing God",
  18467. height: math.unit(2450, "miles")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(4, "feet"),
  18476. weight: math.unit(120, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/shiriko/front.svg",
  18480. extra: 970/934,
  18481. bottom: 5/975
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(4, "feet"),
  18489. default: true
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18495. {
  18496. front: {
  18497. height: math.unit(6, "feet"),
  18498. name: "front",
  18499. image: {
  18500. source: "./media/characters/deja/front.svg",
  18501. extra: 926 / 840,
  18502. bottom: 0.07
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Planck Length",
  18509. height: math.unit(1.6e-35, "meters")
  18510. },
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(30.48, "meters"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Universal",
  18518. height: math.unit(8.8e26, "meters")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18524. {
  18525. side: {
  18526. height: math.unit(8, "feet"),
  18527. weight: math.unit(6300, "lb"),
  18528. name: "Side",
  18529. image: {
  18530. source: "./media/characters/anima/side.svg",
  18531. bottom: 0.035
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(8, "feet"),
  18539. default: true
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(8, "feet"),
  18548. weight: math.unit(350, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/bianca/front.svg",
  18552. extra: 234 / 225,
  18553. bottom: 0.03
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Normal",
  18560. height: math.unit(8, "feet"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(11 + 5/12, "feet"),
  18570. weight: math.unit(1200, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/adinia/front.svg",
  18574. extra: 1767/1641,
  18575. bottom: 44/1811
  18576. },
  18577. extraAttributes: {
  18578. "energyIntake": {
  18579. name: "Energy Intake",
  18580. power: 3,
  18581. type: "energy",
  18582. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18583. },
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(11 + 5/12, "feet"),
  18588. weight: math.unit(1200, "lb"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/adinia/back.svg",
  18592. extra: 1834/1684,
  18593. bottom: 14/1848
  18594. },
  18595. extraAttributes: {
  18596. "energyIntake": {
  18597. name: "Energy Intake",
  18598. power: 3,
  18599. type: "energy",
  18600. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18601. },
  18602. }
  18603. },
  18604. maw: {
  18605. height: math.unit(3.79, "feet"),
  18606. name: "Maw",
  18607. image: {
  18608. source: "./media/characters/adinia/maw.svg"
  18609. }
  18610. },
  18611. rump: {
  18612. height: math.unit(4.6, "feet"),
  18613. name: "Rump",
  18614. image: {
  18615. source: "./media/characters/adinia/rump.svg"
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(11 + 5 / 12, "feet"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18629. {
  18630. front: {
  18631. height: math.unit(3, "meters"),
  18632. weight: math.unit(200, "kg"),
  18633. name: "Front",
  18634. image: {
  18635. source: "./media/characters/lykasa/front.svg",
  18636. extra: 1076 / 976,
  18637. bottom: 0.06
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(3, "meters")
  18645. },
  18646. {
  18647. name: "Kaiju",
  18648. height: math.unit(120, "meters"),
  18649. default: true
  18650. },
  18651. {
  18652. name: "Mega Kaiju",
  18653. height: math.unit(240, "km")
  18654. },
  18655. {
  18656. name: "Giga Kaiju",
  18657. height: math.unit(400, "megameters")
  18658. },
  18659. {
  18660. name: "Tera Kaiju",
  18661. height: math.unit(800, "gigameters")
  18662. },
  18663. {
  18664. name: "Kaiju Dragon Goddess",
  18665. height: math.unit(26, "zettaparsecs")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18671. {
  18672. side: {
  18673. height: math.unit(283 / 124 * 6, "feet"),
  18674. weight: math.unit(35000, "lb"),
  18675. name: "Side",
  18676. image: {
  18677. source: "./media/characters/malfaren/side.svg",
  18678. extra: 1310/529,
  18679. bottom: 24/1334
  18680. }
  18681. },
  18682. front: {
  18683. height: math.unit(22.36, "feet"),
  18684. weight: math.unit(35000, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/malfaren/front.svg",
  18688. extra: 1237/1115,
  18689. bottom: 32/1269
  18690. }
  18691. },
  18692. maw: {
  18693. height: math.unit(6.9, "feet"),
  18694. name: "Maw",
  18695. image: {
  18696. source: "./media/characters/malfaren/maw.svg"
  18697. }
  18698. },
  18699. dick: {
  18700. height: math.unit(6.19, "feet"),
  18701. name: "Dick",
  18702. image: {
  18703. source: "./media/characters/malfaren/dick.svg"
  18704. }
  18705. },
  18706. eye: {
  18707. height: math.unit(0.69, "feet"),
  18708. name: "Eye",
  18709. image: {
  18710. source: "./media/characters/malfaren/eye.svg"
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Big",
  18717. height: math.unit(283 / 162 * 6, "feet"),
  18718. },
  18719. {
  18720. name: "Bigger",
  18721. height: math.unit(283 / 124 * 6, "feet")
  18722. },
  18723. {
  18724. name: "Massive",
  18725. height: math.unit(283 / 92 * 6, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "👀💦",
  18730. height: math.unit(283 / 73 * 6, "feet"),
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(1.7, "m"),
  18739. weight: math.unit(70, "kg"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/kernel/front.svg",
  18743. extra: 222 / 210,
  18744. bottom: 0.007
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Nano",
  18751. height: math.unit(17, "micrometers")
  18752. },
  18753. {
  18754. name: "Micro",
  18755. height: math.unit(1.7, "mm")
  18756. },
  18757. {
  18758. name: "Small",
  18759. height: math.unit(1.7, "cm")
  18760. },
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(1.7, "m"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18770. {
  18771. front: {
  18772. height: math.unit(1.75, "meters"),
  18773. weight: math.unit(65, "kg"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/jayne-folest/front.svg",
  18777. extra: 2115 / 2007,
  18778. bottom: 0.02
  18779. }
  18780. },
  18781. back: {
  18782. height: math.unit(1.75, "meters"),
  18783. weight: math.unit(65, "kg"),
  18784. name: "Back",
  18785. image: {
  18786. source: "./media/characters/jayne-folest/back.svg",
  18787. extra: 2115 / 2007,
  18788. bottom: 0.005
  18789. }
  18790. },
  18791. frontClothed: {
  18792. height: math.unit(1.75, "meters"),
  18793. weight: math.unit(65, "kg"),
  18794. name: "Front (Clothed)",
  18795. image: {
  18796. source: "./media/characters/jayne-folest/front-clothed.svg",
  18797. extra: 2115 / 2007,
  18798. bottom: 0.035
  18799. }
  18800. },
  18801. hand: {
  18802. height: math.unit(1 / 1.260, "feet"),
  18803. name: "Hand",
  18804. image: {
  18805. source: "./media/characters/jayne-folest/hand.svg"
  18806. }
  18807. },
  18808. foot: {
  18809. height: math.unit(1 / 0.918, "feet"),
  18810. name: "Foot",
  18811. image: {
  18812. source: "./media/characters/jayne-folest/foot.svg"
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Micro",
  18819. height: math.unit(4, "cm")
  18820. },
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(1.75, "meters")
  18824. },
  18825. {
  18826. name: "Macro",
  18827. height: math.unit(47.5, "meters"),
  18828. default: true
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(180, "cm"),
  18837. weight: math.unit(70, "kg"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/algier/front.svg",
  18841. extra: 596 / 572,
  18842. bottom: 0.04
  18843. }
  18844. },
  18845. back: {
  18846. height: math.unit(180, "cm"),
  18847. weight: math.unit(70, "kg"),
  18848. name: "Back",
  18849. image: {
  18850. source: "./media/characters/algier/back.svg",
  18851. extra: 596 / 572,
  18852. bottom: 0.025
  18853. }
  18854. },
  18855. frontdressed: {
  18856. height: math.unit(180, "cm"),
  18857. weight: math.unit(150, "kg"),
  18858. name: "Front-dressed",
  18859. image: {
  18860. source: "./media/characters/algier/front-dressed.svg",
  18861. extra: 596 / 572,
  18862. bottom: 0.038
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Micro",
  18869. height: math.unit(5, "cm")
  18870. },
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(180, "cm"),
  18874. default: true
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(64, "m")
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18884. {
  18885. upright: {
  18886. height: math.unit(7, "feet"),
  18887. weight: math.unit(300, "lb"),
  18888. name: "Upright",
  18889. image: {
  18890. source: "./media/characters/pretzel/upright.svg",
  18891. extra: 534 / 522,
  18892. bottom: 0.065
  18893. }
  18894. },
  18895. sprawling: {
  18896. height: math.unit(3.75, "feet"),
  18897. weight: math.unit(300, "lb"),
  18898. name: "Sprawling",
  18899. image: {
  18900. source: "./media/characters/pretzel/sprawling.svg",
  18901. extra: 314 / 281,
  18902. bottom: 0.1
  18903. }
  18904. },
  18905. tongue: {
  18906. height: math.unit(2, "feet"),
  18907. name: "Tongue",
  18908. image: {
  18909. source: "./media/characters/pretzel/tongue.svg"
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(7, "feet"),
  18917. default: true
  18918. },
  18919. {
  18920. name: "Oversized",
  18921. height: math.unit(15, "feet")
  18922. },
  18923. {
  18924. name: "Huge",
  18925. height: math.unit(30, "feet")
  18926. },
  18927. {
  18928. name: "Macro",
  18929. height: math.unit(250, "feet")
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18935. {
  18936. sideFront: {
  18937. height: math.unit(5 + 2 / 12, "feet"),
  18938. weight: math.unit(120, "lb"),
  18939. name: "Front Side",
  18940. image: {
  18941. source: "./media/characters/roxi/side-front.svg",
  18942. extra: 2924 / 2717,
  18943. bottom: 0.08
  18944. }
  18945. },
  18946. sideBack: {
  18947. height: math.unit(5 + 2 / 12, "feet"),
  18948. weight: math.unit(120, "lb"),
  18949. name: "Back Side",
  18950. image: {
  18951. source: "./media/characters/roxi/side-back.svg",
  18952. extra: 2904 / 2693,
  18953. bottom: 0.06
  18954. }
  18955. },
  18956. front: {
  18957. height: math.unit(5 + 2 / 12, "feet"),
  18958. weight: math.unit(120, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/roxi/front.svg",
  18962. extra: 2028 / 1907,
  18963. bottom: 0.01
  18964. }
  18965. },
  18966. frontAlt: {
  18967. height: math.unit(5 + 2 / 12, "feet"),
  18968. weight: math.unit(120, "lb"),
  18969. name: "Front (Alt)",
  18970. image: {
  18971. source: "./media/characters/roxi/front-alt.svg",
  18972. extra: 1828 / 1798,
  18973. bottom: 0.01
  18974. }
  18975. },
  18976. sitting: {
  18977. height: math.unit(2.8, "feet"),
  18978. weight: math.unit(120, "lb"),
  18979. name: "Sitting",
  18980. image: {
  18981. source: "./media/characters/roxi/sitting.svg",
  18982. extra: 2660 / 2462,
  18983. bottom: 0.1
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(5 + 2 / 12, "feet"),
  18991. default: true
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18997. {
  18998. side: {
  18999. height: math.unit(55, "feet"),
  19000. weight: math.unit(153, "tons"),
  19001. name: "Side",
  19002. image: {
  19003. source: "./media/characters/shadow/side.svg",
  19004. extra: 701 / 628,
  19005. bottom: 0.02
  19006. }
  19007. },
  19008. flying: {
  19009. height: math.unit(145, "feet"),
  19010. weight: math.unit(153, "tons"),
  19011. name: "Flying",
  19012. image: {
  19013. source: "./media/characters/shadow/flying.svg"
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(55, "feet"),
  19021. default: true
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(6, "feet"),
  19030. weight: math.unit(200, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/marcie/front.svg",
  19034. extra: 960 / 876,
  19035. bottom: 58 / 1017.87
  19036. }
  19037. },
  19038. },
  19039. [
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(1, "mile"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(7, "feet"),
  19052. weight: math.unit(200, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/kachina/front.svg",
  19056. extra: 1290.68 / 1119,
  19057. bottom: 36.5 / 1327.18
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(7, "feet"),
  19065. default: true
  19066. },
  19067. ]
  19068. ))
  19069. characterMakers.push(() => makeCharacter(
  19070. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19071. {
  19072. looking: {
  19073. height: math.unit(2, "meters"),
  19074. weight: math.unit(300, "kg"),
  19075. name: "Looking",
  19076. image: {
  19077. source: "./media/characters/kash/looking.svg",
  19078. extra: 474 / 344,
  19079. bottom: 0.03
  19080. }
  19081. },
  19082. side: {
  19083. height: math.unit(2, "meters"),
  19084. weight: math.unit(300, "kg"),
  19085. name: "Side",
  19086. image: {
  19087. source: "./media/characters/kash/side.svg",
  19088. extra: 302 / 251,
  19089. bottom: 0.03
  19090. }
  19091. },
  19092. front: {
  19093. height: math.unit(2, "meters"),
  19094. weight: math.unit(300, "kg"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/kash/front.svg",
  19098. extra: 495 / 360,
  19099. bottom: 0.015
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Normal",
  19106. height: math.unit(2, "meters"),
  19107. default: true
  19108. },
  19109. {
  19110. name: "Big",
  19111. height: math.unit(3, "meters")
  19112. },
  19113. {
  19114. name: "Large",
  19115. height: math.unit(5, "meters")
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19121. {
  19122. feeding: {
  19123. height: math.unit(6.7, "feet"),
  19124. weight: math.unit(350, "lb"),
  19125. name: "Feeding",
  19126. image: {
  19127. source: "./media/characters/lalim/feeding.svg",
  19128. }
  19129. },
  19130. },
  19131. [
  19132. {
  19133. name: "Normal",
  19134. height: math.unit(6.7, "feet"),
  19135. default: true
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(9.5, "feet"),
  19144. weight: math.unit(600, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/de'vout/front.svg",
  19148. extra: 1443 / 1328,
  19149. bottom: 0.025
  19150. }
  19151. },
  19152. back: {
  19153. height: math.unit(9.5, "feet"),
  19154. weight: math.unit(600, "lb"),
  19155. name: "Back",
  19156. image: {
  19157. source: "./media/characters/de'vout/back.svg",
  19158. extra: 1443 / 1328
  19159. }
  19160. },
  19161. frontDressed: {
  19162. height: math.unit(9.5, "feet"),
  19163. weight: math.unit(600, "lb"),
  19164. name: "Front (Dressed",
  19165. image: {
  19166. source: "./media/characters/de'vout/front-dressed.svg",
  19167. extra: 1443 / 1328,
  19168. bottom: 0.025
  19169. }
  19170. },
  19171. backDressed: {
  19172. height: math.unit(9.5, "feet"),
  19173. weight: math.unit(600, "lb"),
  19174. name: "Back (Dressed",
  19175. image: {
  19176. source: "./media/characters/de'vout/back-dressed.svg",
  19177. extra: 1443 / 1328
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(9.5, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(8, "feet"),
  19194. weight: math.unit(225, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/talana/front.svg",
  19198. extra: 1410 / 1300,
  19199. bottom: 0.015
  19200. }
  19201. },
  19202. frontDressed: {
  19203. height: math.unit(8, "feet"),
  19204. weight: math.unit(225, "lb"),
  19205. name: "Front (Dressed",
  19206. image: {
  19207. source: "./media/characters/talana/front-dressed.svg",
  19208. extra: 1410 / 1300,
  19209. bottom: 0.015
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(8, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19223. {
  19224. side: {
  19225. height: math.unit(7.2, "feet"),
  19226. weight: math.unit(150, "lb"),
  19227. name: "Side",
  19228. image: {
  19229. source: "./media/characters/xeauvok/side.svg",
  19230. extra: 1975 / 1523,
  19231. bottom: 0.07
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(7.2, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19245. {
  19246. side: {
  19247. height: math.unit(4, "meters"),
  19248. weight: math.unit(2200, "kg"),
  19249. name: "Side",
  19250. image: {
  19251. source: "./media/characters/zara/side.svg",
  19252. extra: 765/744,
  19253. bottom: 156/921
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(4, "meters"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19267. {
  19268. side: {
  19269. height: math.unit(6, "feet"),
  19270. weight: math.unit(150, "lb"),
  19271. name: "Side",
  19272. image: {
  19273. source: "./media/characters/richard-dragon/side.svg",
  19274. extra: 845 / 340,
  19275. bottom: 0.017
  19276. }
  19277. },
  19278. maw: {
  19279. height: math.unit(2.97, "feet"),
  19280. name: "Maw",
  19281. image: {
  19282. source: "./media/characters/richard-dragon/maw.svg"
  19283. }
  19284. },
  19285. },
  19286. [
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(4, "feet"),
  19294. weight: math.unit(100, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/richard-smeargle/front.svg",
  19298. extra: 2952 / 2820,
  19299. bottom: 0.028
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(4, "feet"),
  19307. default: true
  19308. },
  19309. {
  19310. name: "Dynamax",
  19311. height: math.unit(20, "meters")
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(110, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/klay/front.svg",
  19324. extra: 962 / 883,
  19325. bottom: 0.04
  19326. }
  19327. },
  19328. back: {
  19329. height: math.unit(6, "feet"),
  19330. weight: math.unit(110, "lb"),
  19331. name: "Back",
  19332. image: {
  19333. source: "./media/characters/klay/back.svg",
  19334. extra: 962 / 883
  19335. }
  19336. },
  19337. beans: {
  19338. height: math.unit(1.15, "feet"),
  19339. name: "Beans",
  19340. image: {
  19341. source: "./media/characters/klay/beans.svg"
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Micro",
  19348. height: math.unit(6, "inches")
  19349. },
  19350. {
  19351. name: "Mini",
  19352. height: math.unit(3, "feet")
  19353. },
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(6, "feet"),
  19357. default: true
  19358. },
  19359. {
  19360. name: "Big",
  19361. height: math.unit(25, "feet")
  19362. },
  19363. {
  19364. name: "Macro",
  19365. height: math.unit(100, "feet")
  19366. },
  19367. {
  19368. name: "Megamacro",
  19369. height: math.unit(400, "feet")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(6, "feet"),
  19378. weight: math.unit(160, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/marcus/front.svg",
  19382. extra: 734 / 676,
  19383. bottom: 0.03
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Little",
  19390. height: math.unit(6, "feet")
  19391. },
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(110, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(250, "feet")
  19400. },
  19401. {
  19402. name: "Megamacro",
  19403. height: math.unit(1000, "feet")
  19404. },
  19405. ]
  19406. ))
  19407. characterMakers.push(() => makeCharacter(
  19408. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19409. {
  19410. front: {
  19411. height: math.unit(7, "feet"),
  19412. weight: math.unit(275, "lb"),
  19413. name: "Front",
  19414. image: {
  19415. source: "./media/characters/claude-delroute/front.svg",
  19416. extra: 902/827,
  19417. bottom: 26/928
  19418. }
  19419. },
  19420. side: {
  19421. height: math.unit(7, "feet"),
  19422. weight: math.unit(275, "lb"),
  19423. name: "Side",
  19424. image: {
  19425. source: "./media/characters/claude-delroute/side.svg",
  19426. extra: 908/853,
  19427. bottom: 16/924
  19428. }
  19429. },
  19430. back: {
  19431. height: math.unit(7, "feet"),
  19432. weight: math.unit(275, "lb"),
  19433. name: "Back",
  19434. image: {
  19435. source: "./media/characters/claude-delroute/back.svg",
  19436. extra: 911/829,
  19437. bottom: 18/929
  19438. }
  19439. },
  19440. maw: {
  19441. height: math.unit(0.6407, "meters"),
  19442. name: "Maw",
  19443. image: {
  19444. source: "./media/characters/claude-delroute/maw.svg"
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(7, "feet"),
  19452. default: true
  19453. },
  19454. {
  19455. name: "Lorge",
  19456. height: math.unit(20, "feet")
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(8 + 4 / 12, "feet"),
  19465. weight: math.unit(600, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/dragonien/front.svg",
  19469. extra: 100 / 94,
  19470. bottom: 3.3 / 103.3445
  19471. }
  19472. },
  19473. back: {
  19474. height: math.unit(8 + 4 / 12, "feet"),
  19475. weight: math.unit(600, "lb"),
  19476. name: "Back",
  19477. image: {
  19478. source: "./media/characters/dragonien/back.svg",
  19479. extra: 776 / 746,
  19480. bottom: 6.4 / 782.0616
  19481. }
  19482. },
  19483. foot: {
  19484. height: math.unit(1.54, "feet"),
  19485. name: "Foot",
  19486. image: {
  19487. source: "./media/characters/dragonien/foot.svg",
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(8 + 4 / 12, "feet"),
  19495. default: true
  19496. },
  19497. {
  19498. name: "Macro",
  19499. height: math.unit(200, "feet")
  19500. },
  19501. {
  19502. name: "Megamacro",
  19503. height: math.unit(1, "mile")
  19504. },
  19505. {
  19506. name: "Gigamacro",
  19507. height: math.unit(1000, "miles")
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(5 + 2 / 12, "feet"),
  19516. weight: math.unit(110, "lb"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/desta/front.svg",
  19520. extra: 767 / 726,
  19521. bottom: 11.7 / 779
  19522. }
  19523. },
  19524. back: {
  19525. height: math.unit(5 + 2 / 12, "feet"),
  19526. weight: math.unit(110, "lb"),
  19527. name: "Back",
  19528. image: {
  19529. source: "./media/characters/desta/back.svg",
  19530. extra: 777 / 728,
  19531. bottom: 6 / 784
  19532. }
  19533. },
  19534. frontAlt: {
  19535. height: math.unit(5 + 2 / 12, "feet"),
  19536. weight: math.unit(110, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/desta/front-alt.svg",
  19540. extra: 1482 / 1417
  19541. }
  19542. },
  19543. side: {
  19544. height: math.unit(5 + 2 / 12, "feet"),
  19545. weight: math.unit(110, "lb"),
  19546. name: "Side",
  19547. image: {
  19548. source: "./media/characters/desta/side.svg",
  19549. extra: 2579 / 2491,
  19550. bottom: 0.053
  19551. }
  19552. },
  19553. },
  19554. [
  19555. {
  19556. name: "Micro",
  19557. height: math.unit(6, "inches")
  19558. },
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(5 + 2 / 12, "feet"),
  19562. default: true
  19563. },
  19564. {
  19565. name: "Macro",
  19566. height: math.unit(62, "feet")
  19567. },
  19568. {
  19569. name: "Megamacro",
  19570. height: math.unit(1800, "feet")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(10, "feet"),
  19579. weight: math.unit(700, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/storm-alystar/front.svg",
  19583. extra: 2112 / 1898,
  19584. bottom: 0.034
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(3.5, "inches")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(10, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(400, "feet")
  19601. },
  19602. {
  19603. name: "Deific",
  19604. height: math.unit(60, "miles")
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(2.35, "meters"),
  19613. weight: math.unit(119, "kg"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/ilia/front.svg",
  19617. extra: 1285 / 1255,
  19618. bottom: 0.06
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(2.35, "meters")
  19626. },
  19627. {
  19628. name: "Macro",
  19629. height: math.unit(140, "meters"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Megamacro",
  19634. height: math.unit(100, "miles")
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(6 + 5 / 12, "feet"),
  19643. weight: math.unit(190, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/kingdead/front.svg",
  19647. extra: 1228 / 1177
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Micro",
  19654. height: math.unit(7, "inches")
  19655. },
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(6 + 5 / 12, "feet")
  19659. },
  19660. {
  19661. name: "Macro",
  19662. height: math.unit(150, "feet"),
  19663. default: true
  19664. },
  19665. {
  19666. name: "Megamacro",
  19667. height: math.unit(200, "miles")
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(8, "feet"),
  19676. weight: math.unit(600, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/kyrehx/front.svg",
  19680. extra: 1195 / 1095,
  19681. bottom: 0.034
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Micro",
  19688. height: math.unit(2, "inches")
  19689. },
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(8, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(255, "feet")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19706. weight: math.unit(184, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/xang/front.svg",
  19710. extra: 845 / 755
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19718. default: true
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(0.935 * 146, "feet")
  19723. },
  19724. {
  19725. name: "Megamacro",
  19726. height: math.unit(0.935 * 3, "miles")
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19732. {
  19733. frontDressed: {
  19734. height: math.unit(5 + 7 / 12, "feet"),
  19735. weight: math.unit(140, "lb"),
  19736. name: "Front (Dressed)",
  19737. image: {
  19738. source: "./media/characters/doc-weardno/front-dressed.svg",
  19739. extra: 263 / 234
  19740. }
  19741. },
  19742. backDressed: {
  19743. height: math.unit(5 + 7 / 12, "feet"),
  19744. weight: math.unit(140, "lb"),
  19745. name: "Back (Dressed)",
  19746. image: {
  19747. source: "./media/characters/doc-weardno/back-dressed.svg",
  19748. extra: 266 / 238
  19749. }
  19750. },
  19751. front: {
  19752. height: math.unit(5 + 7 / 12, "feet"),
  19753. weight: math.unit(140, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/doc-weardno/front.svg",
  19757. extra: 254 / 233
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(3, "inches")
  19765. },
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(5 + 7 / 12, "feet"),
  19769. default: true
  19770. },
  19771. {
  19772. name: "Macro",
  19773. height: math.unit(25, "feet")
  19774. },
  19775. {
  19776. name: "Megamacro",
  19777. height: math.unit(2, "miles")
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(6 + 2 / 12, "feet"),
  19786. weight: math.unit(153, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/seth-whilst/front.svg",
  19790. bottom: 0.07
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Micro",
  19797. height: math.unit(5, "inches")
  19798. },
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(6 + 2 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(3, "inches"),
  19811. weight: math.unit(8, "grams"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/pocket-jabari/front.svg",
  19815. extra: 1024 / 974,
  19816. bottom: 0.039
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Minimicro",
  19823. height: math.unit(8, "mm")
  19824. },
  19825. {
  19826. name: "Micro",
  19827. height: math.unit(3, "inches"),
  19828. default: true
  19829. },
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(3, "feet")
  19833. },
  19834. ]
  19835. ))
  19836. characterMakers.push(() => makeCharacter(
  19837. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19838. {
  19839. frontDressed: {
  19840. height: math.unit(15, "feet"),
  19841. weight: math.unit(3280, "lb"),
  19842. name: "Front (Dressed)",
  19843. image: {
  19844. source: "./media/characters/sapphy/front-dressed.svg",
  19845. extra: 1951/1654,
  19846. bottom: 194/2145
  19847. },
  19848. form: "anthro",
  19849. default: true
  19850. },
  19851. backDressed: {
  19852. height: math.unit(15, "feet"),
  19853. weight: math.unit(3280, "lb"),
  19854. name: "Back (Dressed)",
  19855. image: {
  19856. source: "./media/characters/sapphy/back-dressed.svg",
  19857. extra: 2058/1918,
  19858. bottom: 125/2183
  19859. },
  19860. form: "anthro"
  19861. },
  19862. frontNude: {
  19863. height: math.unit(15, "feet"),
  19864. weight: math.unit(3280, "lb"),
  19865. name: "Front (Nude)",
  19866. image: {
  19867. source: "./media/characters/sapphy/front-nude.svg",
  19868. extra: 1951/1654,
  19869. bottom: 194/2145
  19870. },
  19871. form: "anthro"
  19872. },
  19873. backNude: {
  19874. height: math.unit(15, "feet"),
  19875. weight: math.unit(3280, "lb"),
  19876. name: "Back (Nude)",
  19877. image: {
  19878. source: "./media/characters/sapphy/back-nude.svg",
  19879. extra: 2058/1918,
  19880. bottom: 125/2183
  19881. },
  19882. form: "anthro"
  19883. },
  19884. full: {
  19885. height: math.unit(15, "feet"),
  19886. weight: math.unit(3280, "lb"),
  19887. name: "Full",
  19888. image: {
  19889. source: "./media/characters/sapphy/full.svg",
  19890. extra: 1396/1317,
  19891. bottom: 44/1440
  19892. },
  19893. form: "anthro"
  19894. },
  19895. dick: {
  19896. height: math.unit(3.8, "feet"),
  19897. name: "Dick",
  19898. image: {
  19899. source: "./media/characters/sapphy/dick.svg"
  19900. },
  19901. form: "anthro"
  19902. },
  19903. feral: {
  19904. height: math.unit(35, "feet"),
  19905. weight: math.unit(160, "tons"),
  19906. name: "Feral",
  19907. image: {
  19908. source: "./media/characters/sapphy/feral.svg",
  19909. extra: 1050/573,
  19910. bottom: 60/1110
  19911. },
  19912. form: "feral",
  19913. default: true
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(15, "feet"),
  19920. form: "anthro"
  19921. },
  19922. {
  19923. name: "Casual Macro",
  19924. height: math.unit(120, "feet"),
  19925. form: "anthro"
  19926. },
  19927. {
  19928. name: "Macro",
  19929. height: math.unit(2150, "feet"),
  19930. default: true,
  19931. form: "anthro"
  19932. },
  19933. {
  19934. name: "Megamacro",
  19935. height: math.unit(8, "miles"),
  19936. form: "anthro"
  19937. },
  19938. {
  19939. name: "Galaxy Mom",
  19940. height: math.unit(6, "megalightyears"),
  19941. form: "anthro"
  19942. },
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(35, "feet"),
  19946. form: "feral",
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(300, "feet"),
  19952. form: "feral"
  19953. },
  19954. {
  19955. name: "Galaxy Mom",
  19956. height: math.unit(10, "megalightyears"),
  19957. form: "feral"
  19958. },
  19959. ],
  19960. {
  19961. "anthro": {
  19962. name: "Anthro",
  19963. default: true
  19964. },
  19965. "feral": {
  19966. name: "Feral"
  19967. }
  19968. }
  19969. ))
  19970. characterMakers.push(() => makeCharacter(
  19971. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  19972. {
  19973. hyenaFront: {
  19974. height: math.unit(6, "feet"),
  19975. weight: math.unit(190, "lb"),
  19976. name: "Front",
  19977. image: {
  19978. source: "./media/characters/kiro/hyena-front.svg",
  19979. extra: 927/839,
  19980. bottom: 91/1018
  19981. },
  19982. form: "hyena",
  19983. default: true
  19984. },
  19985. front: {
  19986. height: math.unit(6, "feet"),
  19987. weight: math.unit(170, "lb"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/kiro/front.svg",
  19991. extra: 1064 / 1012,
  19992. bottom: 0.052
  19993. },
  19994. form: "folf",
  19995. default: true
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(6, "inches"),
  20002. form: "folf"
  20003. },
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(6, "feet"),
  20007. form: "folf",
  20008. default: true
  20009. },
  20010. {
  20011. name: "Macro",
  20012. height: math.unit(72, "feet"),
  20013. form: "folf"
  20014. },
  20015. {
  20016. name: "Micro",
  20017. height: math.unit(6, "inches"),
  20018. form: "hyena"
  20019. },
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(6, "feet"),
  20023. form: "hyena",
  20024. default: true
  20025. },
  20026. {
  20027. name: "Macro",
  20028. height: math.unit(72, "feet"),
  20029. form: "hyena"
  20030. },
  20031. ],
  20032. {
  20033. "hyena": {
  20034. name: "Hyena",
  20035. default: true
  20036. },
  20037. "folf": {
  20038. name: "Folf",
  20039. },
  20040. }
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(5 + 9 / 12, "feet"),
  20047. weight: math.unit(175, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/irishfox/front.svg",
  20051. extra: 1912 / 1680,
  20052. bottom: 0.02
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Nano",
  20059. height: math.unit(1, "mm")
  20060. },
  20061. {
  20062. name: "Micro",
  20063. height: math.unit(2, "inches")
  20064. },
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(5 + 9 / 12, "feet"),
  20068. default: true
  20069. },
  20070. {
  20071. name: "Macro",
  20072. height: math.unit(45, "feet")
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(6 + 1 / 12, "feet"),
  20081. weight: math.unit(75, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/aronai-sieyes/front.svg",
  20085. extra: 1532/1450,
  20086. bottom: 42/1574
  20087. }
  20088. },
  20089. side: {
  20090. height: math.unit(6 + 1 / 12, "feet"),
  20091. weight: math.unit(75, "lb"),
  20092. name: "Side",
  20093. image: {
  20094. source: "./media/characters/aronai-sieyes/side.svg",
  20095. extra: 1422/1365,
  20096. bottom: 148/1570
  20097. }
  20098. },
  20099. back: {
  20100. height: math.unit(6 + 1 / 12, "feet"),
  20101. weight: math.unit(75, "lb"),
  20102. name: "Back",
  20103. image: {
  20104. source: "./media/characters/aronai-sieyes/back.svg",
  20105. extra: 1526/1464,
  20106. bottom: 51/1577
  20107. }
  20108. },
  20109. dressed: {
  20110. height: math.unit(6 + 1 / 12, "feet"),
  20111. weight: math.unit(75, "lb"),
  20112. name: "Dressed",
  20113. image: {
  20114. source: "./media/characters/aronai-sieyes/dressed.svg",
  20115. extra: 1559/1483,
  20116. bottom: 39/1598
  20117. }
  20118. },
  20119. slit: {
  20120. height: math.unit(1.3, "feet"),
  20121. name: "Slit",
  20122. image: {
  20123. source: "./media/characters/aronai-sieyes/slit.svg"
  20124. }
  20125. },
  20126. slitSpread: {
  20127. height: math.unit(0.9, "feet"),
  20128. name: "Slit (Spread)",
  20129. image: {
  20130. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20131. }
  20132. },
  20133. rump: {
  20134. height: math.unit(1.3, "feet"),
  20135. name: "Rump",
  20136. image: {
  20137. source: "./media/characters/aronai-sieyes/rump.svg"
  20138. }
  20139. },
  20140. maw: {
  20141. height: math.unit(1.25, "feet"),
  20142. name: "Maw",
  20143. image: {
  20144. source: "./media/characters/aronai-sieyes/maw.svg"
  20145. }
  20146. },
  20147. feral: {
  20148. height: math.unit(18, "feet"),
  20149. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20150. name: "Feral",
  20151. image: {
  20152. source: "./media/characters/aronai-sieyes/feral.svg",
  20153. extra: 1530 / 1240,
  20154. bottom: 0.035
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Micro",
  20161. height: math.unit(2, "inches")
  20162. },
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(6 + 1 / 12, "feet"),
  20166. default: true
  20167. }
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(12, "feet"),
  20175. weight: math.unit(410, "kg"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/xuna/front.svg",
  20179. extra: 2184 / 1980
  20180. }
  20181. },
  20182. side: {
  20183. height: math.unit(12, "feet"),
  20184. weight: math.unit(410, "kg"),
  20185. name: "Side",
  20186. image: {
  20187. source: "./media/characters/xuna/side.svg",
  20188. extra: 2184 / 1980
  20189. }
  20190. },
  20191. back: {
  20192. height: math.unit(12, "feet"),
  20193. weight: math.unit(410, "kg"),
  20194. name: "Back",
  20195. image: {
  20196. source: "./media/characters/xuna/back.svg",
  20197. extra: 2184 / 1980
  20198. }
  20199. },
  20200. },
  20201. [
  20202. {
  20203. name: "Nano glow",
  20204. height: math.unit(10, "nm")
  20205. },
  20206. {
  20207. name: "Micro floof",
  20208. height: math.unit(0.3, "m")
  20209. },
  20210. {
  20211. name: "Huggable softy boi",
  20212. height: math.unit(3.6576, "m"),
  20213. default: true
  20214. },
  20215. {
  20216. name: "Admirable floof",
  20217. height: math.unit(80, "meters")
  20218. },
  20219. {
  20220. name: "Gentle macro",
  20221. height: math.unit(300, "meters")
  20222. },
  20223. {
  20224. name: "Very careful floof",
  20225. height: math.unit(3200, "meters")
  20226. },
  20227. {
  20228. name: "The mega floof",
  20229. height: math.unit(36000, "meters")
  20230. },
  20231. {
  20232. name: "Giga-fur-Wicker",
  20233. height: math.unit(4800000, "meters")
  20234. },
  20235. {
  20236. name: "Licky world",
  20237. height: math.unit(20000000, "meters")
  20238. },
  20239. {
  20240. name: "Floofy cyan sun",
  20241. height: math.unit(1500000000, "meters")
  20242. },
  20243. {
  20244. name: "Milky Wicker",
  20245. height: math.unit(1000000000000000000000, "meters")
  20246. },
  20247. {
  20248. name: "The observing Wicker",
  20249. height: math.unit(999999999999999999999999999, "meters")
  20250. },
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20255. {
  20256. front: {
  20257. height: math.unit(5 + 9 / 12, "feet"),
  20258. weight: math.unit(150, "lb"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/arokha-sieyes/front.svg",
  20262. extra: 1425 / 1284,
  20263. bottom: 0.05
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(5 + 9 / 12, "feet")
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(30, "meters"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(6, "feet"),
  20284. weight: math.unit(180, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/arokh-sieyes/front.svg",
  20288. extra: 1830 / 1769,
  20289. bottom: 0.01
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(6, "feet")
  20297. },
  20298. {
  20299. name: "Macro",
  20300. height: math.unit(30, "meters"),
  20301. default: true
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20307. {
  20308. side: {
  20309. height: math.unit(13 + 1 / 12, "feet"),
  20310. weight: math.unit(8.5, "tonnes"),
  20311. preyCapacity: math.unit(36, "people"),
  20312. name: "Side",
  20313. image: {
  20314. source: "./media/characters/goldeneye/side.svg",
  20315. extra: 1139/741,
  20316. bottom: 98/1237
  20317. }
  20318. },
  20319. front: {
  20320. height: math.unit(5.1, "feet"),
  20321. weight: math.unit(8.5, "tonnes"),
  20322. preyCapacity: math.unit(36, "people"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/goldeneye/front.svg",
  20326. extra: 635/365,
  20327. bottom: 598/1233
  20328. }
  20329. },
  20330. maw: {
  20331. height: math.unit(6.6, "feet"),
  20332. name: "Maw",
  20333. image: {
  20334. source: "./media/characters/goldeneye/maw.svg"
  20335. }
  20336. },
  20337. headFront: {
  20338. height: math.unit(8, "feet"),
  20339. name: "Head (Front)",
  20340. image: {
  20341. source: "./media/characters/goldeneye/head-front.svg"
  20342. }
  20343. },
  20344. headSide: {
  20345. height: math.unit(6, "feet"),
  20346. name: "Head (Side)",
  20347. image: {
  20348. source: "./media/characters/goldeneye/head-side.svg"
  20349. }
  20350. },
  20351. headBack: {
  20352. height: math.unit(8, "feet"),
  20353. name: "Head (Back)",
  20354. image: {
  20355. source: "./media/characters/goldeneye/head-back.svg"
  20356. }
  20357. },
  20358. paw: {
  20359. height: math.unit(3.4, "feet"),
  20360. name: "Paw",
  20361. image: {
  20362. source: "./media/characters/goldeneye/paw.svg"
  20363. }
  20364. },
  20365. toering: {
  20366. height: math.unit(0.45, "feet"),
  20367. name: "Toering",
  20368. image: {
  20369. source: "./media/characters/goldeneye/toering.svg"
  20370. }
  20371. },
  20372. eyes: {
  20373. height: math.unit(0.5, "feet"),
  20374. name: "Eyes",
  20375. image: {
  20376. source: "./media/characters/goldeneye/eyes.svg"
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(13 + 1 / 12, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20390. {
  20391. front: {
  20392. height: math.unit(6 + 1 / 12, "feet"),
  20393. weight: math.unit(210, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/leonardo-lycheborne/front.svg",
  20397. extra: 776/723,
  20398. bottom: 34/810
  20399. }
  20400. },
  20401. side: {
  20402. height: math.unit(6 + 1 / 12, "feet"),
  20403. weight: math.unit(210, "lb"),
  20404. name: "Side",
  20405. image: {
  20406. source: "./media/characters/leonardo-lycheborne/side.svg",
  20407. extra: 780/728,
  20408. bottom: 12/792
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(6 + 1 / 12, "feet"),
  20413. weight: math.unit(210, "lb"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/leonardo-lycheborne/back.svg",
  20417. extra: 775/721,
  20418. bottom: 17/792
  20419. }
  20420. },
  20421. hand: {
  20422. height: math.unit(1.08, "feet"),
  20423. name: "Hand",
  20424. image: {
  20425. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20426. }
  20427. },
  20428. foot: {
  20429. height: math.unit(1.32, "feet"),
  20430. name: "Foot",
  20431. image: {
  20432. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20433. }
  20434. },
  20435. maw: {
  20436. height: math.unit(1, "feet"),
  20437. name: "Maw",
  20438. image: {
  20439. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20440. }
  20441. },
  20442. were: {
  20443. height: math.unit(20, "feet"),
  20444. weight: math.unit(7800, "lb"),
  20445. name: "Were",
  20446. image: {
  20447. source: "./media/characters/leonardo-lycheborne/were.svg",
  20448. extra: 1224/1165,
  20449. bottom: 72/1296
  20450. }
  20451. },
  20452. feral: {
  20453. height: math.unit(7.5, "feet"),
  20454. weight: math.unit(600, "lb"),
  20455. name: "Feral",
  20456. image: {
  20457. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20458. extra: 797/702,
  20459. bottom: 139/936
  20460. }
  20461. },
  20462. taur: {
  20463. height: math.unit(11, "feet"),
  20464. weight: math.unit(3300, "lb"),
  20465. name: "Taur",
  20466. image: {
  20467. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20468. extra: 1271/1197,
  20469. bottom: 47/1318
  20470. }
  20471. },
  20472. barghest: {
  20473. height: math.unit(11, "feet"),
  20474. weight: math.unit(1300, "lb"),
  20475. name: "Barghest",
  20476. image: {
  20477. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20478. extra: 1291/1204,
  20479. bottom: 37/1328
  20480. }
  20481. },
  20482. dick: {
  20483. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20484. name: "Dick",
  20485. image: {
  20486. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20487. }
  20488. },
  20489. dickWere: {
  20490. height: math.unit((20) / 3.8, "feet"),
  20491. name: "Dick (Were)",
  20492. image: {
  20493. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(6 + 1 / 12, "feet"),
  20501. default: true
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(10, "feet"),
  20510. weight: math.unit(350, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/jet/front.svg",
  20514. extra: 2050 / 1980,
  20515. bottom: 0.013
  20516. }
  20517. },
  20518. back: {
  20519. height: math.unit(10, "feet"),
  20520. weight: math.unit(350, "lb"),
  20521. name: "Back",
  20522. image: {
  20523. source: "./media/characters/jet/back.svg",
  20524. extra: 2050 / 1980,
  20525. bottom: 0.013
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(6, "inches")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(10, "feet"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Macro",
  20541. height: math.unit(100, "feet")
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(15, "feet"),
  20550. weight: math.unit(2800, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/tanarath/front.svg",
  20554. extra: 2392 / 2220,
  20555. bottom: 0.03
  20556. }
  20557. },
  20558. back: {
  20559. height: math.unit(15, "feet"),
  20560. weight: math.unit(2800, "lb"),
  20561. name: "Back",
  20562. image: {
  20563. source: "./media/characters/tanarath/back.svg",
  20564. extra: 2392 / 2220,
  20565. bottom: 0.03
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(15, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(7 + 1 / 12, "feet"),
  20582. weight: math.unit(175, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/patty-cattybatty/front.svg",
  20586. extra: 908 / 874,
  20587. bottom: 0.025
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Micro",
  20594. height: math.unit(1, "inch")
  20595. },
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(7 + 1 / 12, "feet")
  20599. },
  20600. {
  20601. name: "Mini Macro",
  20602. height: math.unit(155, "feet")
  20603. },
  20604. {
  20605. name: "Macro",
  20606. height: math.unit(1077, "feet")
  20607. },
  20608. {
  20609. name: "Mega Macro",
  20610. height: math.unit(47650, "feet"),
  20611. default: true
  20612. },
  20613. {
  20614. name: "Giga Macro",
  20615. height: math.unit(440, "miles")
  20616. },
  20617. {
  20618. name: "Tera Macro",
  20619. height: math.unit(8700, "miles")
  20620. },
  20621. {
  20622. name: "Planetary Macro",
  20623. height: math.unit(32700, "miles")
  20624. },
  20625. {
  20626. name: "Solar Macro",
  20627. height: math.unit(550000, "miles")
  20628. },
  20629. {
  20630. name: "Celestial Macro",
  20631. height: math.unit(2.5, "AU")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(4 + 5 / 12, "feet"),
  20640. weight: math.unit(90, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/cappu/front.svg",
  20644. extra: 1247 / 1152,
  20645. bottom: 0.012
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(4 + 5 / 12, "feet"),
  20653. default: true
  20654. },
  20655. ]
  20656. ))
  20657. characterMakers.push(() => makeCharacter(
  20658. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20659. {
  20660. frontDressed: {
  20661. height: math.unit(70, "cm"),
  20662. weight: math.unit(6, "kg"),
  20663. name: "Front (Dressed)",
  20664. image: {
  20665. source: "./media/characters/sebi/front-dressed.svg",
  20666. extra: 713.5 / 686.5,
  20667. bottom: 0.003
  20668. }
  20669. },
  20670. front: {
  20671. height: math.unit(70, "cm"),
  20672. weight: math.unit(5, "kg"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/sebi/front.svg",
  20676. extra: 713.5 / 686.5,
  20677. bottom: 0.003
  20678. }
  20679. }
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(70, "cm"),
  20685. default: true
  20686. },
  20687. {
  20688. name: "Macro",
  20689. height: math.unit(8, "meters")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(6, "feet"),
  20698. weight: math.unit(150, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/typhek/front.svg",
  20702. extra: 1948 / 1929,
  20703. bottom: 0.025
  20704. }
  20705. },
  20706. side: {
  20707. height: math.unit(6, "feet"),
  20708. weight: math.unit(150, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/typhek/side.svg",
  20712. extra: 2034 / 2010,
  20713. bottom: 0.003
  20714. }
  20715. },
  20716. back: {
  20717. height: math.unit(6, "feet"),
  20718. weight: math.unit(150, "lb"),
  20719. name: "Back",
  20720. image: {
  20721. source: "./media/characters/typhek/back.svg",
  20722. extra: 2005 / 1978,
  20723. bottom: 0.004
  20724. }
  20725. },
  20726. palm: {
  20727. height: math.unit(1.2, "feet"),
  20728. name: "Palm",
  20729. image: {
  20730. source: "./media/characters/typhek/palm.svg"
  20731. }
  20732. },
  20733. fist: {
  20734. height: math.unit(1.1, "feet"),
  20735. name: "Fist",
  20736. image: {
  20737. source: "./media/characters/typhek/fist.svg"
  20738. }
  20739. },
  20740. foot: {
  20741. height: math.unit(1.57, "feet"),
  20742. name: "Foot",
  20743. image: {
  20744. source: "./media/characters/typhek/foot.svg"
  20745. }
  20746. },
  20747. sole: {
  20748. height: math.unit(2.05, "feet"),
  20749. name: "Sole",
  20750. image: {
  20751. source: "./media/characters/typhek/sole.svg"
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Macro",
  20758. height: math.unit(40, "stories"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Megamacro",
  20763. height: math.unit(1, "mile")
  20764. },
  20765. {
  20766. name: "Gigamacro",
  20767. height: math.unit(4000, "solarradii")
  20768. },
  20769. {
  20770. name: "Universal",
  20771. height: math.unit(1.1, "universes")
  20772. }
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20777. {
  20778. side: {
  20779. height: math.unit(5 + 7 / 12, "feet"),
  20780. weight: math.unit(150, "lb"),
  20781. name: "Side",
  20782. image: {
  20783. source: "./media/characters/kassy/side.svg",
  20784. extra: 1280 / 1225,
  20785. bottom: 0.002
  20786. }
  20787. },
  20788. front: {
  20789. height: math.unit(5 + 7 / 12, "feet"),
  20790. weight: math.unit(150, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/kassy/front.svg",
  20794. extra: 1280 / 1225,
  20795. bottom: 0.025
  20796. }
  20797. },
  20798. back: {
  20799. height: math.unit(5 + 7 / 12, "feet"),
  20800. weight: math.unit(150, "lb"),
  20801. name: "Back",
  20802. image: {
  20803. source: "./media/characters/kassy/back.svg",
  20804. extra: 1280 / 1225,
  20805. bottom: 0.002
  20806. }
  20807. },
  20808. foot: {
  20809. height: math.unit(1.266, "feet"),
  20810. name: "Foot",
  20811. image: {
  20812. source: "./media/characters/kassy/foot.svg"
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 7 / 12, "feet")
  20820. },
  20821. {
  20822. name: "Macro",
  20823. height: math.unit(137, "feet"),
  20824. default: true
  20825. },
  20826. {
  20827. name: "Megamacro",
  20828. height: math.unit(1, "mile")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(6 + 1 / 12, "feet"),
  20837. weight: math.unit(200, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/neil/front.svg",
  20841. extra: 1326 / 1250,
  20842. bottom: 0.023
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(6 + 1 / 12, "feet"),
  20850. default: true
  20851. },
  20852. {
  20853. name: "Macro",
  20854. height: math.unit(200, "feet")
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20860. {
  20861. front: {
  20862. height: math.unit(5 + 9 / 12, "feet"),
  20863. weight: math.unit(190, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/atticus/front.svg",
  20867. extra: 2934 / 2785,
  20868. bottom: 0.025
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(5 + 9 / 12, "feet"),
  20876. default: true
  20877. },
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(180, "feet")
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20886. {
  20887. side: {
  20888. height: math.unit(9, "feet"),
  20889. weight: math.unit(650, "lb"),
  20890. name: "Side",
  20891. image: {
  20892. source: "./media/characters/milo/side.svg",
  20893. extra: 2644 / 2310,
  20894. bottom: 0.032
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(9, "feet"),
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(300, "feet")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20912. {
  20913. side: {
  20914. height: math.unit(8, "meters"),
  20915. weight: math.unit(90000, "kg"),
  20916. name: "Side",
  20917. image: {
  20918. source: "./media/characters/ijzer/side.svg",
  20919. extra: 2756 / 1600,
  20920. bottom: 0.01
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Small",
  20927. height: math.unit(3, "meters")
  20928. },
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(8, "meters"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Normal+",
  20936. height: math.unit(10, "meters")
  20937. },
  20938. {
  20939. name: "Bigger",
  20940. height: math.unit(24, "meters")
  20941. },
  20942. {
  20943. name: "Huge",
  20944. height: math.unit(80, "meters")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(6 + 2 / 12, "feet"),
  20953. weight: math.unit(153, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/luca-cervicum/front.svg",
  20957. extra: 370 / 327,
  20958. bottom: 0.015
  20959. }
  20960. },
  20961. back: {
  20962. height: math.unit(6 + 2 / 12, "feet"),
  20963. weight: math.unit(153, "lb"),
  20964. name: "Back",
  20965. image: {
  20966. source: "./media/characters/luca-cervicum/back.svg",
  20967. extra: 367 / 333,
  20968. bottom: 0.005
  20969. }
  20970. },
  20971. frontGear: {
  20972. height: math.unit(6 + 2 / 12, "feet"),
  20973. weight: math.unit(173, "lb"),
  20974. name: "Front (Gear)",
  20975. image: {
  20976. source: "./media/characters/luca-cervicum/front-gear.svg",
  20977. extra: 377 / 333,
  20978. bottom: 0.006
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(6 + 2 / 12, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(6 + 1 / 12, "feet"),
  20995. weight: math.unit(304, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/oliver/front.svg",
  20999. extra: 157 / 143,
  21000. bottom: 0.08
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(6 + 1 / 12, "feet"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(5 + 7 / 12, "feet"),
  21017. weight: math.unit(140, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/shane/front.svg",
  21021. extra: 304 / 289,
  21022. bottom: 0.005
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(5 + 7 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5 + 9 / 12, "feet"),
  21039. weight: math.unit(178, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/shin/front.svg",
  21043. extra: 159 / 151,
  21044. bottom: 0.015
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5 + 9 / 12, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(5 + 10 / 12, "feet"),
  21061. weight: math.unit(168, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/xerxes/front.svg",
  21065. extra: 282 / 260,
  21066. bottom: 0.045
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Normal",
  21073. height: math.unit(5 + 10 / 12, "feet"),
  21074. default: true
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21080. {
  21081. front: {
  21082. height: math.unit(6 + 7 / 12, "feet"),
  21083. weight: math.unit(208, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/chaska/front.svg",
  21087. extra: 332 / 319,
  21088. bottom: 0.015
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(6 + 7 / 12, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(5 + 8 / 12, "feet"),
  21105. weight: math.unit(208, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/enuk/front.svg",
  21109. extra: 437 / 406,
  21110. bottom: 0.02
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(5 + 8 / 12, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(5 + 10 / 12, "feet"),
  21127. weight: math.unit(252, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/bruun/front.svg",
  21131. extra: 197 / 187,
  21132. bottom: 0.012
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(5 + 10 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(6 + 10 / 12, "feet"),
  21149. weight: math.unit(255, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/alexeev/front.svg",
  21153. extra: 213 / 200,
  21154. bottom: 0.05
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(6 + 10 / 12, "feet"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21168. {
  21169. front: {
  21170. height: math.unit(2 + 8 / 12, "feet"),
  21171. weight: math.unit(22, "lb"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/evelyn/front.svg",
  21175. extra: 208 / 180
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(2 + 8 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(5 + 9 / 12, "feet"),
  21192. weight: math.unit(139, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/inca/front.svg",
  21196. extra: 294 / 291,
  21197. bottom: 0.03
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(5 + 9 / 12, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(6 + 3 / 12, "feet"),
  21214. weight: math.unit(185, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/mera/front.svg",
  21218. extra: 291 / 277,
  21219. bottom: 0.03
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(6 + 3 / 12, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(6 + 7 / 12, "feet"),
  21236. weight: math.unit(160, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/ceres/front.svg",
  21240. extra: 1023 / 950,
  21241. bottom: 0.027
  21242. }
  21243. },
  21244. back: {
  21245. height: math.unit(6 + 7 / 12, "feet"),
  21246. weight: math.unit(160, "lb"),
  21247. name: "Back",
  21248. image: {
  21249. source: "./media/characters/ceres/back.svg",
  21250. extra: 1023 / 950
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(6 + 7 / 12, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(5 + 10 / 12, "feet"),
  21267. weight: math.unit(150, "lb"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/kris/front.svg",
  21271. extra: 885 / 803,
  21272. bottom: 0.03
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(5 + 10 / 12, "feet"),
  21280. default: true
  21281. },
  21282. ]
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(7, "feet"),
  21289. weight: math.unit(120, "kg"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/taluthus/front.svg",
  21293. extra: 903 / 833,
  21294. bottom: 0.015
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(7, "feet"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Macro",
  21306. height: math.unit(300, "feet")
  21307. },
  21308. ]
  21309. ))
  21310. characterMakers.push(() => makeCharacter(
  21311. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21312. {
  21313. front: {
  21314. height: math.unit(5 + 9 / 12, "feet"),
  21315. weight: math.unit(145, "lb"),
  21316. name: "Front",
  21317. image: {
  21318. source: "./media/characters/dawn/front.svg",
  21319. extra: 2094 / 2016,
  21320. bottom: 0.025
  21321. }
  21322. },
  21323. back: {
  21324. height: math.unit(5 + 9 / 12, "feet"),
  21325. weight: math.unit(160, "lb"),
  21326. name: "Back",
  21327. image: {
  21328. source: "./media/characters/dawn/back.svg",
  21329. extra: 2112 / 2080,
  21330. bottom: 0.005
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(6 + 7 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21344. {
  21345. anthro: {
  21346. height: math.unit(8 + 3 / 12, "feet"),
  21347. weight: math.unit(450, "lb"),
  21348. name: "Anthro",
  21349. image: {
  21350. source: "./media/characters/arador/anthro.svg",
  21351. extra: 1835 / 1718,
  21352. bottom: 0.025
  21353. }
  21354. },
  21355. feral: {
  21356. height: math.unit(4, "feet"),
  21357. weight: math.unit(200, "lb"),
  21358. name: "Feral",
  21359. image: {
  21360. source: "./media/characters/arador/feral.svg",
  21361. extra: 1683 / 1514,
  21362. bottom: 0.07
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(8 + 3 / 12, "feet")
  21370. },
  21371. {
  21372. name: "Macro",
  21373. height: math.unit(82.5, "feet"),
  21374. default: true
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(5 + 10 / 12, "feet"),
  21383. weight: math.unit(125, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/dharsi/front.svg",
  21387. extra: 716 / 630,
  21388. bottom: 0.035
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Nano",
  21395. height: math.unit(100, "nm")
  21396. },
  21397. {
  21398. name: "Micro",
  21399. height: math.unit(2, "inches")
  21400. },
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(5 + 10 / 12, "feet"),
  21404. default: true
  21405. },
  21406. {
  21407. name: "Macro",
  21408. height: math.unit(1000, "feet")
  21409. },
  21410. {
  21411. name: "Megamacro",
  21412. height: math.unit(10, "miles")
  21413. },
  21414. {
  21415. name: "Gigamacro",
  21416. height: math.unit(3000, "miles")
  21417. },
  21418. {
  21419. name: "Teramacro",
  21420. height: math.unit(500000, "miles")
  21421. },
  21422. {
  21423. name: "Teramacro+",
  21424. height: math.unit(30, "galaxies")
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(6, "feet"),
  21433. weight: math.unit(150, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/deathy/front.svg",
  21437. extra: 1552 / 1463,
  21438. bottom: 0.025
  21439. }
  21440. },
  21441. side: {
  21442. height: math.unit(6, "feet"),
  21443. weight: math.unit(150, "lb"),
  21444. name: "Side",
  21445. image: {
  21446. source: "./media/characters/deathy/side.svg",
  21447. extra: 1604 / 1455,
  21448. bottom: 0.025
  21449. }
  21450. },
  21451. back: {
  21452. height: math.unit(6, "feet"),
  21453. weight: math.unit(150, "lb"),
  21454. name: "Back",
  21455. image: {
  21456. source: "./media/characters/deathy/back.svg",
  21457. extra: 1580 / 1463,
  21458. bottom: 0.005
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Micro",
  21465. height: math.unit(5, "millimeters")
  21466. },
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(6 + 5 / 12, "feet"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21476. {
  21477. front: {
  21478. height: math.unit(16, "feet"),
  21479. weight: math.unit(4000, "lb"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/juniper/front.svg",
  21483. bottom: 0.04
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(16, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(6, "feet"),
  21500. weight: math.unit(150, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/hipster/front.svg",
  21504. extra: 1312 / 1209,
  21505. bottom: 0.025
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(6, "feet"),
  21510. weight: math.unit(150, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/hipster/back.svg",
  21514. extra: 1281 / 1196,
  21515. bottom: 0.01
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Micro",
  21522. height: math.unit(1, "mm")
  21523. },
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(4, "inches"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(500, "feet")
  21532. },
  21533. {
  21534. name: "Megamacro",
  21535. height: math.unit(1000, "miles")
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(6, "feet"),
  21544. weight: math.unit(150, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/tendirmuldr/front.svg",
  21548. extra: 1878 / 1772,
  21549. bottom: 0.015
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Megamacro",
  21556. height: math.unit(1500, "miles"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21563. {
  21564. front: {
  21565. height: math.unit(14, "feet"),
  21566. weight: math.unit(12000, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/mort/front.svg",
  21570. extra: 365 / 318,
  21571. bottom: 0.01
  21572. }
  21573. },
  21574. side: {
  21575. height: math.unit(14, "feet"),
  21576. weight: math.unit(12000, "lb"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/mort/side.svg",
  21580. extra: 365 / 318,
  21581. bottom: 0.052
  21582. },
  21583. default: true
  21584. },
  21585. back: {
  21586. height: math.unit(14, "feet"),
  21587. weight: math.unit(12000, "lb"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/mort/back.svg",
  21591. extra: 371 / 332,
  21592. bottom: 0.18
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(14, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21606. {
  21607. front: {
  21608. height: math.unit(8, "feet"),
  21609. weight: math.unit(1, "ton"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/lycoa/front.svg",
  21613. extra: 1836/1728,
  21614. bottom: 81/1917
  21615. }
  21616. },
  21617. back: {
  21618. height: math.unit(8, "feet"),
  21619. weight: math.unit(1, "ton"),
  21620. name: "Back",
  21621. image: {
  21622. source: "./media/characters/lycoa/back.svg",
  21623. extra: 1785/1720,
  21624. bottom: 91/1876
  21625. }
  21626. },
  21627. head: {
  21628. height: math.unit(1.6243, "feet"),
  21629. name: "Head",
  21630. image: {
  21631. source: "./media/characters/lycoa/head.svg",
  21632. extra: 1011/782,
  21633. bottom: 0/1011
  21634. }
  21635. },
  21636. tailmaw: {
  21637. height: math.unit(1.9, "feet"),
  21638. name: "Tailmaw",
  21639. image: {
  21640. source: "./media/characters/lycoa/tailmaw.svg"
  21641. }
  21642. },
  21643. tentacles: {
  21644. height: math.unit(2.1, "feet"),
  21645. name: "Tentacles",
  21646. image: {
  21647. source: "./media/characters/lycoa/tentacles.svg"
  21648. }
  21649. },
  21650. dick: {
  21651. height: math.unit(1.73, "feet"),
  21652. name: "Dick",
  21653. image: {
  21654. source: "./media/characters/lycoa/dick.svg"
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(8, "feet"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Macro",
  21666. height: math.unit(30, "feet")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21672. {
  21673. front: {
  21674. height: math.unit(4 + 2 / 12, "feet"),
  21675. weight: math.unit(70, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/naldara/front.svg",
  21679. extra: 1664/1387,
  21680. bottom: 81/1745
  21681. },
  21682. form: "anthro",
  21683. default: true
  21684. },
  21685. naga: {
  21686. height: math.unit(20, "feet"),
  21687. weight: math.unit(15000, "kg"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/naldara/naga.svg",
  21691. extra: 1590/1396,
  21692. bottom: 285/1875
  21693. },
  21694. form: "naga",
  21695. default: true
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(4 + 2 / 12, "feet"),
  21702. form: "anthro",
  21703. default: true
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(20, "feet"),
  21708. form: "naga",
  21709. default: true
  21710. },
  21711. ],
  21712. {
  21713. "anthro": {
  21714. name: "Anthro",
  21715. default: true
  21716. },
  21717. "naga": {
  21718. name: "Naga"
  21719. }
  21720. }
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(13 + 7 / 12, "feet"),
  21727. weight: math.unit(1500, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/briar/front.svg",
  21731. extra: 1223/1157,
  21732. bottom: 123/1346
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(13 + 7 / 12, "feet"),
  21740. default: true
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21746. {
  21747. side: {
  21748. height: math.unit(16, "feet"),
  21749. weight: math.unit(500, "lb"),
  21750. name: "Side",
  21751. image: {
  21752. source: "./media/characters/vanguard/side.svg",
  21753. extra: 1022/914,
  21754. bottom: 30/1052
  21755. }
  21756. },
  21757. sideAlt: {
  21758. height: math.unit(10, "feet"),
  21759. weight: math.unit(500, "lb"),
  21760. name: "Side (Alt)",
  21761. image: {
  21762. source: "./media/characters/vanguard/side-alt.svg",
  21763. extra: 502 / 425,
  21764. bottom: 0.087
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(17.71, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(7.5, "feet"),
  21781. weight: math.unit(2, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/artemis/work-safe-front.svg",
  21785. extra: 1192 / 1075,
  21786. bottom: 0.07
  21787. },
  21788. form: "work-safe",
  21789. default: true
  21790. },
  21791. frontNsfw: {
  21792. height: math.unit(7.5, "feet"),
  21793. weight: math.unit(2, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/artemis/calibrating-front.svg",
  21797. extra: 1192 / 1075,
  21798. bottom: 0.07
  21799. },
  21800. form: "calibrating",
  21801. default: true
  21802. },
  21803. frontNsfwer: {
  21804. height: math.unit(7.5, "feet"),
  21805. weight: math.unit(2, "lb"),
  21806. name: "Front",
  21807. image: {
  21808. source: "./media/characters/artemis/oversize-load-front.svg",
  21809. extra: 1192 / 1075,
  21810. bottom: 0.07
  21811. },
  21812. form: "oversize-load",
  21813. default: true
  21814. },
  21815. side: {
  21816. height: math.unit(7.5, "feet"),
  21817. weight: math.unit(2, "lb"),
  21818. name: "Side",
  21819. image: {
  21820. source: "./media/characters/artemis/work-safe-side.svg",
  21821. extra: 1192 / 1075,
  21822. bottom: 0.07
  21823. },
  21824. form: "work-safe"
  21825. },
  21826. sideNsfw: {
  21827. height: math.unit(7.5, "feet"),
  21828. weight: math.unit(2, "lb"),
  21829. name: "Side",
  21830. image: {
  21831. source: "./media/characters/artemis/calibrating-side.svg",
  21832. extra: 1192 / 1075,
  21833. bottom: 0.07
  21834. },
  21835. form: "calibrating"
  21836. },
  21837. sideNsfwer: {
  21838. height: math.unit(7.5, "feet"),
  21839. weight: math.unit(2, "lb"),
  21840. name: "Side",
  21841. image: {
  21842. source: "./media/characters/artemis/oversize-load-side.svg",
  21843. extra: 1192 / 1075,
  21844. bottom: 0.07
  21845. },
  21846. form: "oversize-load"
  21847. },
  21848. maw: {
  21849. height: math.unit(1.1, "feet"),
  21850. name: "Maw",
  21851. image: {
  21852. source: "./media/characters/artemis/maw.svg"
  21853. },
  21854. form: "work-safe"
  21855. },
  21856. stomach: {
  21857. height: math.unit(0.95, "feet"),
  21858. name: "Stomach",
  21859. image: {
  21860. source: "./media/characters/artemis/stomach.svg"
  21861. },
  21862. form: "work-safe"
  21863. },
  21864. dickCanine: {
  21865. height: math.unit(1, "feet"),
  21866. name: "Dick (Canine)",
  21867. image: {
  21868. source: "./media/characters/artemis/dick-canine.svg"
  21869. },
  21870. form: "calibrating"
  21871. },
  21872. dickEquine: {
  21873. height: math.unit(0.85, "feet"),
  21874. name: "Dick (Equine)",
  21875. image: {
  21876. source: "./media/characters/artemis/dick-equine.svg"
  21877. },
  21878. form: "calibrating"
  21879. },
  21880. dickExotic: {
  21881. height: math.unit(0.85, "feet"),
  21882. name: "Dick (Exotic)",
  21883. image: {
  21884. source: "./media/characters/artemis/dick-exotic.svg"
  21885. },
  21886. form: "calibrating"
  21887. },
  21888. dickCanineBigger: {
  21889. height: math.unit(1 * 1.33, "feet"),
  21890. name: "Dick (Canine)",
  21891. image: {
  21892. source: "./media/characters/artemis/dick-canine.svg"
  21893. },
  21894. form: "oversize-load"
  21895. },
  21896. dickEquineBigger: {
  21897. height: math.unit(0.85 * 1.33, "feet"),
  21898. name: "Dick (Equine)",
  21899. image: {
  21900. source: "./media/characters/artemis/dick-equine.svg"
  21901. },
  21902. form: "oversize-load"
  21903. },
  21904. dickExoticBigger: {
  21905. height: math.unit(0.85 * 1.33, "feet"),
  21906. name: "Dick (Exotic)",
  21907. image: {
  21908. source: "./media/characters/artemis/dick-exotic.svg"
  21909. },
  21910. form: "oversize-load"
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(7.5, "feet"),
  21917. form: "work-safe",
  21918. default: true
  21919. },
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(7.5, "feet"),
  21923. form: "calibrating",
  21924. default: true
  21925. },
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(7.5, "feet"),
  21929. form: "oversize-load",
  21930. default: true
  21931. },
  21932. {
  21933. name: "Enlarged",
  21934. height: math.unit(12, "feet"),
  21935. form: "work-safe",
  21936. },
  21937. {
  21938. name: "Enlarged",
  21939. height: math.unit(12, "feet"),
  21940. form: "calibrating",
  21941. },
  21942. {
  21943. name: "Enlarged",
  21944. height: math.unit(12, "feet"),
  21945. form: "oversize-load",
  21946. },
  21947. ],
  21948. {
  21949. "work-safe": {
  21950. name: "Work-Safe",
  21951. default: true
  21952. },
  21953. "calibrating": {
  21954. name: "Calibrating"
  21955. },
  21956. "oversize-load": {
  21957. name: "Oversize Load"
  21958. }
  21959. }
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(5 + 3 / 12, "feet"),
  21966. weight: math.unit(160, "lb"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/kira/front.svg",
  21970. extra: 906 / 786,
  21971. bottom: 0.01
  21972. }
  21973. },
  21974. back: {
  21975. height: math.unit(5 + 3 / 12, "feet"),
  21976. weight: math.unit(160, "lb"),
  21977. name: "Back",
  21978. image: {
  21979. source: "./media/characters/kira/back.svg",
  21980. extra: 882 / 757,
  21981. bottom: 0.005
  21982. }
  21983. },
  21984. frontDressed: {
  21985. height: math.unit(5 + 3 / 12, "feet"),
  21986. weight: math.unit(160, "lb"),
  21987. name: "Front (Dressed)",
  21988. image: {
  21989. source: "./media/characters/kira/front-dressed.svg",
  21990. extra: 906 / 786,
  21991. bottom: 0.01
  21992. }
  21993. },
  21994. beans: {
  21995. height: math.unit(0.92, "feet"),
  21996. name: "Beans",
  21997. image: {
  21998. source: "./media/characters/kira/beans.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(5 + 3 / 12, "feet"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(5 + 4 / 12, "feet"),
  22015. weight: math.unit(145, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/scramble/front.svg",
  22019. extra: 763 / 727,
  22020. bottom: 0.05
  22021. }
  22022. },
  22023. back: {
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. weight: math.unit(145, "lb"),
  22026. name: "Back",
  22027. image: {
  22028. source: "./media/characters/scramble/back.svg",
  22029. extra: 826 / 737,
  22030. bottom: 0.002
  22031. }
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(5 + 4 / 12, "feet"),
  22038. default: true
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22044. {
  22045. side: {
  22046. height: math.unit(6 + 2 / 12, "feet"),
  22047. weight: math.unit(190, "lb"),
  22048. name: "Side",
  22049. image: {
  22050. source: "./media/characters/biscuit/side.svg",
  22051. extra: 858 / 791,
  22052. bottom: 0.044
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(6 + 2 / 12, "feet"),
  22060. default: true
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(5 + 2 / 12, "feet"),
  22069. weight: math.unit(120, "lb"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/poffin/front.svg",
  22073. extra: 786 / 680,
  22074. bottom: 0.005
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(5 + 2 / 12, "feet"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(6 + 3 / 12, "feet"),
  22091. weight: math.unit(519, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/dhari/front.svg",
  22095. extra: 1048 / 946,
  22096. bottom: 0.015
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(6 + 3 / 12, "feet"),
  22101. weight: math.unit(519, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/dhari/back.svg",
  22105. extra: 1048 / 931,
  22106. bottom: 0.005
  22107. }
  22108. },
  22109. frontDressed: {
  22110. height: math.unit(6 + 3 / 12, "feet"),
  22111. weight: math.unit(519, "lb"),
  22112. name: "Front (Dressed)",
  22113. image: {
  22114. source: "./media/characters/dhari/front-dressed.svg",
  22115. extra: 1713 / 1546,
  22116. bottom: 0.02
  22117. }
  22118. },
  22119. backDressed: {
  22120. height: math.unit(6 + 3 / 12, "feet"),
  22121. weight: math.unit(519, "lb"),
  22122. name: "Back (Dressed)",
  22123. image: {
  22124. source: "./media/characters/dhari/back-dressed.svg",
  22125. extra: 1699 / 1537,
  22126. bottom: 0.01
  22127. }
  22128. },
  22129. maw: {
  22130. height: math.unit(0.95, "feet"),
  22131. name: "Maw",
  22132. image: {
  22133. source: "./media/characters/dhari/maw.svg"
  22134. }
  22135. },
  22136. wereFront: {
  22137. height: math.unit(12 + 8 / 12, "feet"),
  22138. weight: math.unit(4000, "lb"),
  22139. name: "Front (Were)",
  22140. image: {
  22141. source: "./media/characters/dhari/were-front.svg",
  22142. extra: 1065 / 969,
  22143. bottom: 0.015
  22144. }
  22145. },
  22146. wereBack: {
  22147. height: math.unit(12 + 8 / 12, "feet"),
  22148. weight: math.unit(4000, "lb"),
  22149. name: "Back (Were)",
  22150. image: {
  22151. source: "./media/characters/dhari/were-back.svg",
  22152. extra: 1065 / 969,
  22153. bottom: 0.012
  22154. }
  22155. },
  22156. wereMaw: {
  22157. height: math.unit(0.625, "meters"),
  22158. name: "Maw (Were)",
  22159. image: {
  22160. source: "./media/characters/dhari/were-maw.svg"
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(6 + 3 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22174. {
  22175. anthro: {
  22176. height: math.unit(5 + 7 / 12, "feet"),
  22177. weight: math.unit(175, "lb"),
  22178. name: "Anthro",
  22179. image: {
  22180. source: "./media/characters/rena-dyne/anthro.svg",
  22181. extra: 1849 / 1785,
  22182. bottom: 0.005
  22183. }
  22184. },
  22185. taur: {
  22186. height: math.unit(15 + 6 / 12, "feet"),
  22187. weight: math.unit(8000, "lb"),
  22188. name: "Taur",
  22189. image: {
  22190. source: "./media/characters/rena-dyne/taur.svg",
  22191. extra: 2315 / 2234,
  22192. bottom: 0.033
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(5 + 7 / 12, "feet"),
  22200. default: true
  22201. },
  22202. ]
  22203. ))
  22204. characterMakers.push(() => makeCharacter(
  22205. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22206. {
  22207. front: {
  22208. height: math.unit(8, "feet"),
  22209. weight: math.unit(600, "lb"),
  22210. name: "Front",
  22211. image: {
  22212. source: "./media/characters/weremeep/front.svg",
  22213. extra: 970/849,
  22214. bottom: 7/977
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(8, "feet"),
  22222. default: true
  22223. },
  22224. {
  22225. name: "Lorg",
  22226. height: math.unit(12, "feet")
  22227. },
  22228. {
  22229. name: "Oh Lawd She Comin'",
  22230. height: math.unit(20, "feet")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22236. {
  22237. front: {
  22238. height: math.unit(4, "feet"),
  22239. weight: math.unit(90, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/reza/front.svg",
  22243. extra: 1183 / 1111,
  22244. bottom: 0.017
  22245. }
  22246. },
  22247. back: {
  22248. height: math.unit(4, "feet"),
  22249. weight: math.unit(90, "lb"),
  22250. name: "Back",
  22251. image: {
  22252. source: "./media/characters/reza/back.svg",
  22253. extra: 1183 / 1111,
  22254. bottom: 0.01
  22255. }
  22256. },
  22257. drake: {
  22258. height: math.unit(30, "feet"),
  22259. weight: math.unit(246960, "lb"),
  22260. name: "Drake",
  22261. image: {
  22262. source: "./media/characters/reza/drake.svg",
  22263. extra: 2350 / 2024,
  22264. bottom: 60.7 / 2403
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(4, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22278. {
  22279. side: {
  22280. height: math.unit(15, "feet"),
  22281. weight: math.unit(14, "tons"),
  22282. name: "Side",
  22283. image: {
  22284. source: "./media/characters/athea/side.svg",
  22285. extra: 960 / 540,
  22286. bottom: 0.003
  22287. }
  22288. },
  22289. sitting: {
  22290. height: math.unit(6 * 2.85, "feet"),
  22291. weight: math.unit(14, "tons"),
  22292. name: "Sitting",
  22293. image: {
  22294. source: "./media/characters/athea/sitting.svg",
  22295. extra: 621 / 581,
  22296. bottom: 0.075
  22297. }
  22298. },
  22299. maw: {
  22300. height: math.unit(7.59498031496063, "feet"),
  22301. name: "Maw",
  22302. image: {
  22303. source: "./media/characters/athea/maw.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Lap Cat",
  22310. height: math.unit(2.5, "feet")
  22311. },
  22312. {
  22313. name: "Minimacro",
  22314. height: math.unit(15, "feet"),
  22315. default: true
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(120, "feet")
  22320. },
  22321. {
  22322. name: "Macro+",
  22323. height: math.unit(640, "feet")
  22324. },
  22325. {
  22326. name: "Colossus",
  22327. height: math.unit(2.2, "miles")
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(8 + 8 / 12, "feet"),
  22336. weight: math.unit(130, "kg"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/seroko/front.svg",
  22340. extra: 1385 / 1280,
  22341. bottom: 0.025
  22342. }
  22343. },
  22344. back: {
  22345. height: math.unit(8 + 8 / 12, "feet"),
  22346. weight: math.unit(130, "kg"),
  22347. name: "Back",
  22348. image: {
  22349. source: "./media/characters/seroko/back.svg",
  22350. extra: 1369 / 1238,
  22351. bottom: 0.018
  22352. }
  22353. },
  22354. frontDressed: {
  22355. height: math.unit(8 + 8 / 12, "feet"),
  22356. weight: math.unit(130, "kg"),
  22357. name: "Front (Dressed)",
  22358. image: {
  22359. source: "./media/characters/seroko/front-dressed.svg",
  22360. extra: 1366 / 1275,
  22361. bottom: 0.03
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(8 + 8 / 12, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5.5, "feet"),
  22378. weight: math.unit(160, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/quatzi/front.svg",
  22382. extra: 2346 / 2242,
  22383. bottom: 0.015
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5.5, "feet"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Big",
  22395. height: math.unit(7.7, "feet")
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(5 + 11 / 12, "feet"),
  22404. weight: math.unit(180, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/sen/front.svg",
  22408. extra: 1321 / 1254,
  22409. bottom: 0.015
  22410. }
  22411. },
  22412. side: {
  22413. height: math.unit(5 + 11 / 12, "feet"),
  22414. weight: math.unit(180, "lb"),
  22415. name: "Side",
  22416. image: {
  22417. source: "./media/characters/sen/side.svg",
  22418. extra: 1321 / 1254,
  22419. bottom: 0.007
  22420. }
  22421. },
  22422. back: {
  22423. height: math.unit(5 + 11 / 12, "feet"),
  22424. weight: math.unit(180, "lb"),
  22425. name: "Back",
  22426. image: {
  22427. source: "./media/characters/sen/back.svg",
  22428. extra: 1321 / 1254
  22429. }
  22430. },
  22431. },
  22432. [
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(5 + 11 / 12, "feet"),
  22436. default: true
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(166.6, "cm"),
  22445. weight: math.unit(66.6, "kg"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/fruity/front.svg",
  22449. extra: 1510 / 1386,
  22450. bottom: 0.04
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(166.6, "cm"),
  22455. weight: math.unit(66.6, "lb"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/fruity/back.svg",
  22459. extra: 1563 / 1435,
  22460. bottom: 0.005
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Normal",
  22467. height: math.unit(166.6, "cm"),
  22468. default: true
  22469. },
  22470. {
  22471. name: "Demonic",
  22472. height: math.unit(166.6, "feet")
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22478. {
  22479. side: {
  22480. height: math.unit(10, "feet"),
  22481. weight: math.unit(500, "lb"),
  22482. name: "Side",
  22483. image: {
  22484. source: "./media/characters/zost/side.svg",
  22485. extra: 2870/2533,
  22486. bottom: 252/3122
  22487. }
  22488. },
  22489. mawFront: {
  22490. height: math.unit(1.08, "meters"),
  22491. name: "Maw (Front)",
  22492. image: {
  22493. source: "./media/characters/zost/maw-front.svg"
  22494. }
  22495. },
  22496. mawSide: {
  22497. height: math.unit(2.66, "feet"),
  22498. name: "Maw (Side)",
  22499. image: {
  22500. source: "./media/characters/zost/maw-side.svg"
  22501. }
  22502. },
  22503. wingspan: {
  22504. height: math.unit(7.4, "feet"),
  22505. name: "Wingspan",
  22506. image: {
  22507. source: "./media/characters/zost/wingspan.svg"
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(10, "feet"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(5 + 4 / 12, "feet"),
  22524. weight: math.unit(120, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/luci/front.svg",
  22528. extra: 1985 / 1884,
  22529. bottom: 0.04
  22530. }
  22531. },
  22532. back: {
  22533. height: math.unit(5 + 4 / 12, "feet"),
  22534. weight: math.unit(120, "lb"),
  22535. name: "Back",
  22536. image: {
  22537. source: "./media/characters/luci/back.svg",
  22538. extra: 1892 / 1791,
  22539. bottom: 0.002
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(5 + 4 / 12, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(1500, "feet"),
  22556. weight: math.unit(3.8e6, "tons"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/2th/front.svg",
  22560. extra: 3489 / 3350,
  22561. bottom: 0.1
  22562. }
  22563. },
  22564. foot: {
  22565. height: math.unit(461, "feet"),
  22566. name: "Foot",
  22567. image: {
  22568. source: "./media/characters/2th/foot.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "\"Micro\"",
  22575. height: math.unit(15 + 7 / 12, "feet")
  22576. },
  22577. {
  22578. name: "Normal",
  22579. height: math.unit(1500, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Macro",
  22584. height: math.unit(5000, "feet")
  22585. },
  22586. {
  22587. name: "Megamacro",
  22588. height: math.unit(15, "miles")
  22589. },
  22590. {
  22591. name: "Gigamacro",
  22592. height: math.unit(4000, "miles")
  22593. },
  22594. {
  22595. name: "Galactic",
  22596. height: math.unit(50, "AU")
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22602. {
  22603. front: {
  22604. height: math.unit(5 + 6 / 12, "feet"),
  22605. weight: math.unit(220, "lb"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/amethyst/front.svg",
  22609. extra: 2078 / 2040,
  22610. bottom: 0.045
  22611. }
  22612. },
  22613. back: {
  22614. height: math.unit(5 + 6 / 12, "feet"),
  22615. weight: math.unit(220, "lb"),
  22616. name: "Back",
  22617. image: {
  22618. source: "./media/characters/amethyst/back.svg",
  22619. extra: 2021 / 1989,
  22620. bottom: 0.02
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(5 + 6 / 12, "feet"),
  22628. default: true
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22634. {
  22635. front: {
  22636. height: math.unit(4 + 11 / 12, "feet"),
  22637. weight: math.unit(120, "lb"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/yumi-akiyama/front.svg",
  22641. extra: 1327 / 1235,
  22642. bottom: 0.02
  22643. }
  22644. },
  22645. back: {
  22646. height: math.unit(4 + 11 / 12, "feet"),
  22647. weight: math.unit(120, "lb"),
  22648. name: "Back",
  22649. image: {
  22650. source: "./media/characters/yumi-akiyama/back.svg",
  22651. extra: 1287 / 1245,
  22652. bottom: 0.002
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Galactic",
  22659. height: math.unit(50, "galaxies"),
  22660. default: true
  22661. },
  22662. {
  22663. name: "Universal",
  22664. height: math.unit(100, "universes")
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(8, "feet"),
  22673. weight: math.unit(500, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/rifter-yrmori/front.svg",
  22677. extra: 1180 / 1125,
  22678. bottom: 0.02
  22679. }
  22680. },
  22681. back: {
  22682. height: math.unit(8, "feet"),
  22683. weight: math.unit(500, "lb"),
  22684. name: "Back",
  22685. image: {
  22686. source: "./media/characters/rifter-yrmori/back.svg",
  22687. extra: 1190 / 1145,
  22688. bottom: 0.001
  22689. }
  22690. },
  22691. wings: {
  22692. height: math.unit(7.75, "feet"),
  22693. weight: math.unit(500, "lb"),
  22694. name: "Wings",
  22695. image: {
  22696. source: "./media/characters/rifter-yrmori/wings.svg",
  22697. extra: 1357 / 1285
  22698. }
  22699. },
  22700. maw: {
  22701. height: math.unit(0.8, "feet"),
  22702. name: "Maw",
  22703. image: {
  22704. source: "./media/characters/rifter-yrmori/maw.svg"
  22705. }
  22706. },
  22707. mawfront: {
  22708. height: math.unit(1.45, "feet"),
  22709. name: "Maw (Front)",
  22710. image: {
  22711. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(8, "feet"),
  22719. default: true
  22720. },
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(42, "meters")
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22729. {
  22730. were: {
  22731. height: math.unit(25 + 6 / 12, "feet"),
  22732. weight: math.unit(10000, "lb"),
  22733. name: "Were",
  22734. image: {
  22735. source: "./media/characters/tahajin/were.svg",
  22736. extra: 801 / 770,
  22737. bottom: 0.042
  22738. }
  22739. },
  22740. aquatic: {
  22741. height: math.unit(6 + 4 / 12, "feet"),
  22742. weight: math.unit(160, "lb"),
  22743. name: "Aquatic",
  22744. image: {
  22745. source: "./media/characters/tahajin/aquatic.svg",
  22746. extra: 572 / 542,
  22747. bottom: 0.04
  22748. }
  22749. },
  22750. chow: {
  22751. height: math.unit(8 + 11 / 12, "feet"),
  22752. weight: math.unit(450, "lb"),
  22753. name: "Chow",
  22754. image: {
  22755. source: "./media/characters/tahajin/chow.svg",
  22756. extra: 660 / 640,
  22757. bottom: 0.015
  22758. }
  22759. },
  22760. demiNaga: {
  22761. height: math.unit(6 + 8 / 12, "feet"),
  22762. weight: math.unit(300, "lb"),
  22763. name: "Demi Naga",
  22764. image: {
  22765. source: "./media/characters/tahajin/demi-naga.svg",
  22766. extra: 643 / 615,
  22767. bottom: 0.1
  22768. }
  22769. },
  22770. data: {
  22771. height: math.unit(5, "inches"),
  22772. weight: math.unit(0.1, "lb"),
  22773. name: "Data",
  22774. image: {
  22775. source: "./media/characters/tahajin/data.svg"
  22776. }
  22777. },
  22778. fluu: {
  22779. height: math.unit(5 + 7 / 12, "feet"),
  22780. weight: math.unit(140, "lb"),
  22781. name: "Fluu",
  22782. image: {
  22783. source: "./media/characters/tahajin/fluu.svg",
  22784. extra: 628 / 592,
  22785. bottom: 0.02
  22786. }
  22787. },
  22788. starWarrior: {
  22789. height: math.unit(4 + 5 / 12, "feet"),
  22790. weight: math.unit(50, "lb"),
  22791. name: "Star Warrior",
  22792. image: {
  22793. source: "./media/characters/tahajin/star-warrior.svg"
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(25 + 6 / 12, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(8, "feet"),
  22810. weight: math.unit(350, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/gabira/front.svg",
  22814. extra: 1261/1154,
  22815. bottom: 51/1312
  22816. }
  22817. },
  22818. back: {
  22819. height: math.unit(8, "feet"),
  22820. weight: math.unit(350, "lb"),
  22821. name: "Back",
  22822. image: {
  22823. source: "./media/characters/gabira/back.svg",
  22824. extra: 1265/1163,
  22825. bottom: 46/1311
  22826. }
  22827. },
  22828. head: {
  22829. height: math.unit(2.85, "feet"),
  22830. name: "Head",
  22831. image: {
  22832. source: "./media/characters/gabira/head.svg"
  22833. }
  22834. },
  22835. },
  22836. [
  22837. {
  22838. name: "Normal",
  22839. height: math.unit(8, "feet"),
  22840. default: true
  22841. },
  22842. ]
  22843. ))
  22844. characterMakers.push(() => makeCharacter(
  22845. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22846. {
  22847. front: {
  22848. height: math.unit(5 + 3 / 12, "feet"),
  22849. weight: math.unit(137, "lb"),
  22850. name: "Front",
  22851. image: {
  22852. source: "./media/characters/sasha-katraine/front.svg",
  22853. extra: 1745/1694,
  22854. bottom: 37/1782
  22855. }
  22856. },
  22857. back: {
  22858. height: math.unit(5 + 3 / 12, "feet"),
  22859. weight: math.unit(137, "lb"),
  22860. name: "Back",
  22861. image: {
  22862. source: "./media/characters/sasha-katraine/back.svg",
  22863. extra: 1776/1699,
  22864. bottom: 26/1802
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Micro",
  22871. height: math.unit(5, "inches")
  22872. },
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(5 + 3 / 12, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22882. {
  22883. side: {
  22884. height: math.unit(4, "inches"),
  22885. weight: math.unit(200, "grams"),
  22886. name: "Side",
  22887. image: {
  22888. source: "./media/characters/der/side.svg",
  22889. extra: 719 / 400,
  22890. bottom: 30.6 / 749.9187
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Micro",
  22897. height: math.unit(4, "inches"),
  22898. default: true
  22899. },
  22900. ]
  22901. ))
  22902. characterMakers.push(() => makeCharacter(
  22903. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22904. {
  22905. side: {
  22906. height: math.unit(30, "meters"),
  22907. weight: math.unit(700, "tonnes"),
  22908. name: "Side",
  22909. image: {
  22910. source: "./media/characters/fixerdragon/side.svg",
  22911. extra: (1293.0514 - 116.03) / 1106.86,
  22912. bottom: 116.03 / 1293.0514
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Planck",
  22919. height: math.unit(1.6e-35, "meters")
  22920. },
  22921. {
  22922. name: "Micro",
  22923. height: math.unit(0.4, "meters")
  22924. },
  22925. {
  22926. name: "Normal",
  22927. height: math.unit(30, "meters"),
  22928. default: true
  22929. },
  22930. {
  22931. name: "Megamacro",
  22932. height: math.unit(1.2, "megameters")
  22933. },
  22934. {
  22935. name: "Teramacro",
  22936. height: math.unit(130, "terameters")
  22937. },
  22938. {
  22939. name: "Yottamacro",
  22940. height: math.unit(6200, "yottameters")
  22941. },
  22942. ]
  22943. ));
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(8, "feet"),
  22949. weight: math.unit(250, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/kite/front.svg",
  22953. extra: 2796 / 2659,
  22954. bottom: 0.002
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(8, "feet"),
  22962. default: true
  22963. },
  22964. {
  22965. name: "Macro",
  22966. height: math.unit(360, "feet")
  22967. },
  22968. {
  22969. name: "Megamacro",
  22970. height: math.unit(1500, "feet")
  22971. },
  22972. ]
  22973. ))
  22974. characterMakers.push(() => makeCharacter(
  22975. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22976. {
  22977. front: {
  22978. height: math.unit(5 + 11/12, "feet"),
  22979. weight: math.unit(170, "lb"),
  22980. name: "Front",
  22981. image: {
  22982. source: "./media/characters/poojawa-vynar/front.svg",
  22983. extra: 1735/1585,
  22984. bottom: 96/1831
  22985. }
  22986. },
  22987. back: {
  22988. height: math.unit(5 + 11/12, "feet"),
  22989. weight: math.unit(170, "lb"),
  22990. name: "Back",
  22991. image: {
  22992. source: "./media/characters/poojawa-vynar/back.svg",
  22993. extra: 1749/1607,
  22994. bottom: 28/1777
  22995. }
  22996. },
  22997. male: {
  22998. height: math.unit(5 + 11/12, "feet"),
  22999. weight: math.unit(170, "lb"),
  23000. name: "Male",
  23001. image: {
  23002. source: "./media/characters/poojawa-vynar/male.svg",
  23003. extra: 1855/1713,
  23004. bottom: 63/1918
  23005. }
  23006. },
  23007. taur: {
  23008. height: math.unit(5 + 11/12, "feet"),
  23009. weight: math.unit(170, "lb"),
  23010. name: "Taur",
  23011. image: {
  23012. source: "./media/characters/poojawa-vynar/taur.svg",
  23013. extra: 1151/1059,
  23014. bottom: 356/1507
  23015. }
  23016. },
  23017. frontDressed: {
  23018. height: math.unit(5 + 11/12, "feet"),
  23019. weight: math.unit(170, "lb"),
  23020. name: "Front (Dressed)",
  23021. image: {
  23022. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23023. extra: 1735/1585,
  23024. bottom: 96/1831
  23025. }
  23026. },
  23027. backDressed: {
  23028. height: math.unit(5 + 11/12, "feet"),
  23029. weight: math.unit(170, "lb"),
  23030. name: "Back (Dressed)",
  23031. image: {
  23032. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23033. extra: 1749/1607,
  23034. bottom: 28/1777
  23035. }
  23036. },
  23037. maleDressed: {
  23038. height: math.unit(5 + 11/12, "feet"),
  23039. weight: math.unit(170, "lb"),
  23040. name: "Male (Dressed)",
  23041. image: {
  23042. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23043. extra: 1855/1713,
  23044. bottom: 63/1918
  23045. }
  23046. },
  23047. taurDressed: {
  23048. height: math.unit(5 + 11/12, "feet"),
  23049. weight: math.unit(170, "lb"),
  23050. name: "Taur (Dressed)",
  23051. image: {
  23052. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23053. extra: 1151/1059,
  23054. bottom: 356/1507
  23055. }
  23056. },
  23057. maw: {
  23058. height: math.unit(1.46, "feet"),
  23059. name: "Maw",
  23060. image: {
  23061. source: "./media/characters/poojawa-vynar/maw.svg"
  23062. }
  23063. },
  23064. head: {
  23065. height: math.unit(2.34, "feet"),
  23066. name: "Head",
  23067. image: {
  23068. source: "./media/characters/poojawa-vynar/head.svg"
  23069. }
  23070. },
  23071. paw: {
  23072. height: math.unit(1.61, "feet"),
  23073. name: "Paw",
  23074. image: {
  23075. source: "./media/characters/poojawa-vynar/paw.svg"
  23076. }
  23077. },
  23078. pawToering: {
  23079. height: math.unit(1.72, "feet"),
  23080. name: "Paw (Toering)",
  23081. image: {
  23082. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23083. }
  23084. },
  23085. toering: {
  23086. height: math.unit(2.9, "inches"),
  23087. name: "Toering",
  23088. image: {
  23089. source: "./media/characters/poojawa-vynar/toering.svg"
  23090. }
  23091. },
  23092. shaft: {
  23093. height: math.unit(0.625, "feet"),
  23094. name: "Shaft",
  23095. image: {
  23096. source: "./media/characters/poojawa-vynar/shaft.svg"
  23097. }
  23098. },
  23099. spade: {
  23100. height: math.unit(0.42, "feet"),
  23101. name: "Spade",
  23102. image: {
  23103. source: "./media/characters/poojawa-vynar/spade.svg"
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Shortstack",
  23110. height: math.unit(4, "feet")
  23111. },
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(5 + 11 / 12, "feet"),
  23115. default: true
  23116. },
  23117. {
  23118. name: "Tauric",
  23119. height: math.unit(4, "meters")
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(293, "meters"),
  23128. weight: math.unit(70400, "tons"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/violette/front.svg",
  23132. extra: 1227 / 1180,
  23133. bottom: 0.005
  23134. }
  23135. },
  23136. back: {
  23137. height: math.unit(293, "meters"),
  23138. weight: math.unit(70400, "tons"),
  23139. name: "Back",
  23140. image: {
  23141. source: "./media/characters/violette/back.svg",
  23142. extra: 1227 / 1180,
  23143. bottom: 0.005
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(293, "meters"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(1050, "feet"),
  23160. weight: math.unit(200000, "tons"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/alessandra/front.svg",
  23164. extra: 960 / 912,
  23165. bottom: 0.06
  23166. }
  23167. },
  23168. },
  23169. [
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(1050, "feet")
  23173. },
  23174. {
  23175. name: "Macro+",
  23176. height: math.unit(900, "meters"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(5, "feet"),
  23186. weight: math.unit(187, "lb"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/person/front.svg",
  23190. extra: 3087 / 2945,
  23191. bottom: 91 / 3181
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Micro",
  23198. height: math.unit(3, "inches")
  23199. },
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(5, "feet"),
  23203. default: true
  23204. },
  23205. {
  23206. name: "Macro",
  23207. height: math.unit(90, "feet")
  23208. },
  23209. {
  23210. name: "Max Size",
  23211. height: math.unit(280, "feet")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(4.5, "meters"),
  23220. weight: math.unit(3200, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/ty/front.svg",
  23224. extra: 1038 / 960,
  23225. bottom: 31.156 / 1068
  23226. }
  23227. },
  23228. back: {
  23229. height: math.unit(4.5, "meters"),
  23230. weight: math.unit(3200, "lb"),
  23231. name: "Back",
  23232. image: {
  23233. source: "./media/characters/ty/back.svg",
  23234. extra: 1044 / 966,
  23235. bottom: 7.48 / 1049
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(4.5, "meters"),
  23243. default: true
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(5 + 4 / 12, "feet"),
  23252. weight: math.unit(115, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/rocky/front.svg",
  23256. extra: 1012 / 975,
  23257. bottom: 54 / 1066
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(5 + 4 / 12, "feet"),
  23265. default: true
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23271. {
  23272. upright: {
  23273. height: math.unit(6, "meters"),
  23274. weight: math.unit(4000, "kg"),
  23275. name: "Upright",
  23276. image: {
  23277. source: "./media/characters/ruin/upright.svg",
  23278. extra: 668 / 661,
  23279. bottom: 42 / 799.8396
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(6, "meters"),
  23287. default: true
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(5, "feet"),
  23296. weight: math.unit(106, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/robin/front.svg",
  23300. extra: 862 / 799,
  23301. bottom: 42.4 / 914.8856
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Normal",
  23308. height: math.unit(5, "feet"),
  23309. default: true
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23315. {
  23316. side: {
  23317. height: math.unit(3, "feet"),
  23318. weight: math.unit(225, "lb"),
  23319. name: "Side",
  23320. image: {
  23321. source: "./media/characters/saian/side.svg",
  23322. extra: 566 / 356,
  23323. bottom: 79.7 / 643
  23324. }
  23325. },
  23326. maw: {
  23327. height: math.unit(2.85, "feet"),
  23328. name: "Maw",
  23329. image: {
  23330. source: "./media/characters/saian/maw.svg"
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Normal",
  23337. height: math.unit(3, "feet"),
  23338. default: true
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23344. {
  23345. side: {
  23346. height: math.unit(8, "feet"),
  23347. weight: math.unit(300, "lb"),
  23348. name: "Side",
  23349. image: {
  23350. source: "./media/characters/equus-silvermane/side.svg",
  23351. extra: 2176 / 2050,
  23352. bottom: 65.7 / 2245
  23353. }
  23354. },
  23355. front: {
  23356. height: math.unit(8, "feet"),
  23357. weight: math.unit(300, "lb"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/equus-silvermane/front.svg",
  23361. extra: 4633 / 4400,
  23362. bottom: 71.3 / 4706.915
  23363. }
  23364. },
  23365. sideStepping: {
  23366. height: math.unit(8, "feet"),
  23367. weight: math.unit(300, "lb"),
  23368. name: "Side (Stepping)",
  23369. image: {
  23370. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23371. extra: 1968 / 1860,
  23372. bottom: 16.4 / 1989
  23373. }
  23374. },
  23375. },
  23376. [
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(8, "feet")
  23380. },
  23381. {
  23382. name: "Minimacro",
  23383. height: math.unit(75, "feet"),
  23384. default: true
  23385. },
  23386. {
  23387. name: "Macro",
  23388. height: math.unit(150, "feet")
  23389. },
  23390. {
  23391. name: "Macro+",
  23392. height: math.unit(1000, "feet")
  23393. },
  23394. {
  23395. name: "Megamacro",
  23396. height: math.unit(1, "mile")
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23402. {
  23403. side: {
  23404. height: math.unit(20, "feet"),
  23405. weight: math.unit(30000, "kg"),
  23406. name: "Side",
  23407. image: {
  23408. source: "./media/characters/windar/side.svg",
  23409. extra: 1491 / 1248,
  23410. bottom: 82.56 / 1568
  23411. }
  23412. },
  23413. },
  23414. [
  23415. {
  23416. name: "Normal",
  23417. height: math.unit(20, "feet"),
  23418. default: true
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23424. {
  23425. side: {
  23426. height: math.unit(15.66, "feet"),
  23427. weight: math.unit(150, "lb"),
  23428. name: "Side",
  23429. image: {
  23430. source: "./media/characters/melody/side.svg",
  23431. extra: 1097 / 944,
  23432. bottom: 11.8 / 1109
  23433. }
  23434. },
  23435. sideOutfit: {
  23436. height: math.unit(15.66, "feet"),
  23437. weight: math.unit(150, "lb"),
  23438. name: "Side (Outfit)",
  23439. image: {
  23440. source: "./media/characters/melody/side-outfit.svg",
  23441. extra: 1097 / 944,
  23442. bottom: 11.8 / 1109
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Normal",
  23449. height: math.unit(15.66, "feet"),
  23450. default: true
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23456. {
  23457. armoredFront: {
  23458. height: math.unit(8, "feet"),
  23459. weight: math.unit(325, "lb"),
  23460. name: "Front",
  23461. image: {
  23462. source: "./media/characters/windera/armored-front.svg",
  23463. extra: 1830/1598,
  23464. bottom: 151/1981
  23465. },
  23466. form: "armored",
  23467. default: true
  23468. },
  23469. macroFront: {
  23470. height: math.unit(70, "feet"),
  23471. weight: math.unit(315453, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/windera/macro-front.svg",
  23475. extra: 963/883,
  23476. bottom: 23/986
  23477. },
  23478. form: "macro",
  23479. default: true
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(8, "feet"),
  23486. default: true,
  23487. form: "armored"
  23488. },
  23489. {
  23490. name: "Normal",
  23491. height: math.unit(70, "feet"),
  23492. default: true,
  23493. form: "macro"
  23494. },
  23495. ],
  23496. {
  23497. "armored": {
  23498. name: "Armored",
  23499. default: true
  23500. },
  23501. "macro": {
  23502. name: "Macro",
  23503. },
  23504. }
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23508. {
  23509. front: {
  23510. height: math.unit(28.75, "feet"),
  23511. weight: math.unit(2000, "kg"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/sonear/front.svg",
  23515. extra: 1041.1 / 964.9,
  23516. bottom: 53.7 / 1096.6
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(28.75, "feet"),
  23524. default: true
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23530. {
  23531. side: {
  23532. height: math.unit(25.5, "feet"),
  23533. weight: math.unit(23000, "kg"),
  23534. name: "Side",
  23535. image: {
  23536. source: "./media/characters/kanara/side.svg"
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(25.5, "feet"),
  23544. default: true
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23550. {
  23551. side: {
  23552. height: math.unit(10, "feet"),
  23553. weight: math.unit(1000, "kg"),
  23554. name: "Side",
  23555. image: {
  23556. source: "./media/characters/ereus/side.svg",
  23557. extra: 1157 / 959,
  23558. bottom: 153 / 1312.5
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(10, "feet"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23572. {
  23573. side: {
  23574. height: math.unit(4.5, "feet"),
  23575. weight: math.unit(500, "lb"),
  23576. name: "Side",
  23577. image: {
  23578. source: "./media/characters/e-ter/side.svg",
  23579. extra: 1550 / 1248,
  23580. bottom: 146 / 1694
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(4.5, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23594. {
  23595. side: {
  23596. height: math.unit(9.7, "feet"),
  23597. weight: math.unit(4000, "kg"),
  23598. name: "Side",
  23599. image: {
  23600. source: "./media/characters/yamie/side.svg"
  23601. }
  23602. },
  23603. },
  23604. [
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(9.7, "feet"),
  23608. default: true
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23614. {
  23615. front: {
  23616. height: math.unit(50, "feet"),
  23617. weight: math.unit(50000, "kg"),
  23618. name: "Front",
  23619. image: {
  23620. source: "./media/characters/anders/front.svg",
  23621. extra: 570 / 539,
  23622. bottom: 14.7 / 586.7
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Large",
  23629. height: math.unit(50, "feet")
  23630. },
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(2000, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Megamacro",
  23638. height: math.unit(12, "miles")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(7 + 2 / 12, "feet"),
  23647. weight: math.unit(300, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/reban/front.svg",
  23651. extra: 1287/1212,
  23652. bottom: 148/1435
  23653. }
  23654. },
  23655. head: {
  23656. height: math.unit(1.95, "feet"),
  23657. name: "Head",
  23658. image: {
  23659. source: "./media/characters/reban/head.svg"
  23660. }
  23661. },
  23662. maw: {
  23663. height: math.unit(0.95, "feet"),
  23664. name: "Maw",
  23665. image: {
  23666. source: "./media/characters/reban/maw.svg"
  23667. }
  23668. },
  23669. foot: {
  23670. height: math.unit(1.65, "feet"),
  23671. name: "Foot",
  23672. image: {
  23673. source: "./media/characters/reban/foot.svg"
  23674. }
  23675. },
  23676. dick: {
  23677. height: math.unit(7 / 5, "feet"),
  23678. name: "Dick",
  23679. image: {
  23680. source: "./media/characters/reban/dick.svg"
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Natural Height",
  23687. height: math.unit(7 + 2 / 12, "feet")
  23688. },
  23689. {
  23690. name: "Macro",
  23691. height: math.unit(500, "feet"),
  23692. default: true
  23693. },
  23694. {
  23695. name: "Canon Height",
  23696. height: math.unit(50, "AU")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(6, "feet"),
  23705. weight: math.unit(150, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/terrance-keayes/front.svg",
  23709. extra: 1.005,
  23710. bottom: 151 / 1615
  23711. }
  23712. },
  23713. side: {
  23714. height: math.unit(6, "feet"),
  23715. weight: math.unit(150, "lb"),
  23716. name: "Side",
  23717. image: {
  23718. source: "./media/characters/terrance-keayes/side.svg",
  23719. extra: 1.005,
  23720. bottom: 129.4 / 1544
  23721. }
  23722. },
  23723. back: {
  23724. height: math.unit(6, "feet"),
  23725. weight: math.unit(150, "lb"),
  23726. name: "Back",
  23727. image: {
  23728. source: "./media/characters/terrance-keayes/back.svg",
  23729. extra: 1.005,
  23730. bottom: 58.4 / 1557.3
  23731. }
  23732. },
  23733. dick: {
  23734. height: math.unit(6 * 0.208, "feet"),
  23735. name: "Dick",
  23736. image: {
  23737. source: "./media/characters/terrance-keayes/dick.svg"
  23738. }
  23739. },
  23740. },
  23741. [
  23742. {
  23743. name: "Canon Height",
  23744. height: math.unit(35, "miles"),
  23745. default: true
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23751. {
  23752. front: {
  23753. height: math.unit(6, "feet"),
  23754. weight: math.unit(150, "lb"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/ofelia/front.svg",
  23758. extra: 1130/1117,
  23759. bottom: 91/1221
  23760. }
  23761. },
  23762. back: {
  23763. height: math.unit(6, "feet"),
  23764. weight: math.unit(150, "lb"),
  23765. name: "Back",
  23766. image: {
  23767. source: "./media/characters/ofelia/back.svg",
  23768. extra: 1172/1159,
  23769. bottom: 28/1200
  23770. }
  23771. },
  23772. maw: {
  23773. height: math.unit(1, "feet"),
  23774. name: "Maw",
  23775. image: {
  23776. source: "./media/characters/ofelia/maw.svg"
  23777. }
  23778. },
  23779. foot: {
  23780. height: math.unit(1.949, "feet"),
  23781. name: "Foot",
  23782. image: {
  23783. source: "./media/characters/ofelia/foot.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Canon Height",
  23790. height: math.unit(2000, "miles"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(6, "feet"),
  23800. weight: math.unit(150, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/samuel/front.svg",
  23804. extra: 265 / 258,
  23805. bottom: 2 / 266.1566
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Macro",
  23812. height: math.unit(100, "feet"),
  23813. default: true
  23814. },
  23815. {
  23816. name: "Full Size",
  23817. height: math.unit(1000, "miles")
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(6, "feet"),
  23826. weight: math.unit(300, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/beishir-kiel/front.svg",
  23830. extra: 569 / 547,
  23831. bottom: 41.9 / 609
  23832. }
  23833. },
  23834. maw: {
  23835. height: math.unit(6 * 0.202, "feet"),
  23836. name: "Maw",
  23837. image: {
  23838. source: "./media/characters/beishir-kiel/maw.svg"
  23839. }
  23840. },
  23841. },
  23842. [
  23843. {
  23844. name: "Macro",
  23845. height: math.unit(300, "feet"),
  23846. default: true
  23847. },
  23848. ]
  23849. ))
  23850. characterMakers.push(() => makeCharacter(
  23851. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23852. {
  23853. front: {
  23854. height: math.unit(5 + 7/12, "feet"),
  23855. weight: math.unit(120, "lb"),
  23856. name: "Front",
  23857. image: {
  23858. source: "./media/characters/logan-grey/front.svg",
  23859. extra: 1836/1738,
  23860. bottom: 108/1944
  23861. }
  23862. },
  23863. back: {
  23864. height: math.unit(5 + 7/12, "feet"),
  23865. weight: math.unit(120, "lb"),
  23866. name: "Back",
  23867. image: {
  23868. source: "./media/characters/logan-grey/back.svg",
  23869. extra: 1880/1794,
  23870. bottom: 24/1904
  23871. }
  23872. },
  23873. frontSfw: {
  23874. height: math.unit(5 + 7/12, "feet"),
  23875. weight: math.unit(120, "lb"),
  23876. name: "Front (SFW)",
  23877. image: {
  23878. source: "./media/characters/logan-grey/front-sfw.svg",
  23879. extra: 1836/1738,
  23880. bottom: 108/1944
  23881. }
  23882. },
  23883. backSfw: {
  23884. height: math.unit(5 + 7/12, "feet"),
  23885. weight: math.unit(120, "lb"),
  23886. name: "Back (SFW)",
  23887. image: {
  23888. source: "./media/characters/logan-grey/back-sfw.svg",
  23889. extra: 1880/1794,
  23890. bottom: 24/1904
  23891. }
  23892. },
  23893. hands: {
  23894. height: math.unit(0.84, "feet"),
  23895. name: "Hands",
  23896. image: {
  23897. source: "./media/characters/logan-grey/hands.svg"
  23898. }
  23899. },
  23900. paws: {
  23901. height: math.unit(0.72, "feet"),
  23902. name: "Paws",
  23903. image: {
  23904. source: "./media/characters/logan-grey/paws.svg"
  23905. }
  23906. },
  23907. cock: {
  23908. height: math.unit(1.45, "feet"),
  23909. name: "Cock",
  23910. image: {
  23911. source: "./media/characters/logan-grey/cock.svg"
  23912. }
  23913. },
  23914. cockAlt: {
  23915. height: math.unit(1.437, "feet"),
  23916. name: "Cock (alt)",
  23917. image: {
  23918. source: "./media/characters/logan-grey/cock-alt.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(5 + 8 / 12, "feet")
  23926. },
  23927. {
  23928. name: "The 500 Foot Femboy",
  23929. height: math.unit(500, "feet"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Megmacro",
  23934. height: math.unit(20, "miles")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(8 + 2 / 12, "feet"),
  23943. weight: math.unit(275, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/draganta/front.svg",
  23947. extra: 1177 / 1135,
  23948. bottom: 33.46 / 1212.1
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(8 + 6 / 12, "feet"),
  23956. default: true
  23957. },
  23958. {
  23959. name: "Macro",
  23960. height: math.unit(150, "feet")
  23961. },
  23962. {
  23963. name: "Megamacro",
  23964. height: math.unit(1000, "miles")
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(1.72, "m"),
  23973. weight: math.unit(80, "lb"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/voski/front.svg",
  23977. extra: 2076.22 / 2022.4,
  23978. bottom: 102.7 / 2177.3866
  23979. }
  23980. },
  23981. frontFlaccid: {
  23982. height: math.unit(1.72, "m"),
  23983. weight: math.unit(80, "lb"),
  23984. name: "Front (Flaccid)",
  23985. image: {
  23986. source: "./media/characters/voski/front-flaccid.svg",
  23987. extra: 2076.22 / 2022.4,
  23988. bottom: 102.7 / 2177.3866
  23989. }
  23990. },
  23991. frontErect: {
  23992. height: math.unit(1.72, "m"),
  23993. weight: math.unit(80, "lb"),
  23994. name: "Front (Erect)",
  23995. image: {
  23996. source: "./media/characters/voski/front-erect.svg",
  23997. extra: 2076.22 / 2022.4,
  23998. bottom: 102.7 / 2177.3866
  23999. }
  24000. },
  24001. back: {
  24002. height: math.unit(1.72, "m"),
  24003. weight: math.unit(80, "lb"),
  24004. name: "Back",
  24005. image: {
  24006. source: "./media/characters/voski/back.svg",
  24007. extra: 2104 / 2051,
  24008. bottom: 10.45 / 2113.63
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(1.72, "m")
  24016. },
  24017. {
  24018. name: "Macro",
  24019. height: math.unit(55, "m"),
  24020. default: true
  24021. },
  24022. {
  24023. name: "Macro+",
  24024. height: math.unit(300, "m")
  24025. },
  24026. {
  24027. name: "Macro++",
  24028. height: math.unit(700, "m")
  24029. },
  24030. {
  24031. name: "Macro+++",
  24032. height: math.unit(4500, "m")
  24033. },
  24034. {
  24035. name: "Macro++++",
  24036. height: math.unit(45, "km")
  24037. },
  24038. {
  24039. name: "Macro+++++",
  24040. height: math.unit(1220, "km")
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(2.3, "m"),
  24049. weight: math.unit(304, "kg"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/icowom-lee/front.svg",
  24053. extra: 985 / 955,
  24054. bottom: 25.4 / 1012
  24055. }
  24056. },
  24057. fronttentacles: {
  24058. height: math.unit(2.3, "m"),
  24059. weight: math.unit(304, "kg"),
  24060. name: "Front-tentacles",
  24061. image: {
  24062. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24063. extra: 985 / 955,
  24064. bottom: 25.4 / 1012
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(2.3, "m"),
  24069. weight: math.unit(304, "kg"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/icowom-lee/back.svg",
  24073. extra: 975 / 954,
  24074. bottom: 9.5 / 985
  24075. }
  24076. },
  24077. backtentacles: {
  24078. height: math.unit(2.3, "m"),
  24079. weight: math.unit(304, "kg"),
  24080. name: "Back-tentacles",
  24081. image: {
  24082. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24083. extra: 975 / 954,
  24084. bottom: 9.5 / 985
  24085. }
  24086. },
  24087. frontDressed: {
  24088. height: math.unit(2.3, "m"),
  24089. weight: math.unit(304, "kg"),
  24090. name: "Front (Dressed)",
  24091. image: {
  24092. source: "./media/characters/icowom-lee/front-dressed.svg",
  24093. extra: 3076 / 2933,
  24094. bottom: 51.4 / 3125.1889
  24095. }
  24096. },
  24097. rump: {
  24098. height: math.unit(0.776, "meters"),
  24099. name: "Rump",
  24100. image: {
  24101. source: "./media/characters/icowom-lee/rump.svg"
  24102. }
  24103. },
  24104. genitals: {
  24105. height: math.unit(0.78, "meters"),
  24106. name: "Genitals",
  24107. image: {
  24108. source: "./media/characters/icowom-lee/genitals.svg"
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(2.3, "meters"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(94, "meters"),
  24121. default: true
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(22, "meters"),
  24130. weight: math.unit(21000, "kg"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/shock-diamond/front.svg",
  24134. extra: 2204 / 2053,
  24135. bottom: 65 / 2239.47
  24136. }
  24137. },
  24138. frontNude: {
  24139. height: math.unit(22, "meters"),
  24140. weight: math.unit(21000, "kg"),
  24141. name: "Front (Nude)",
  24142. image: {
  24143. source: "./media/characters/shock-diamond/front-nude.svg",
  24144. extra: 2514 / 2285,
  24145. bottom: 13 / 2527.56
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Normal",
  24152. height: math.unit(3, "meters")
  24153. },
  24154. {
  24155. name: "Macro",
  24156. height: math.unit(22, "meters"),
  24157. default: true
  24158. },
  24159. ]
  24160. ))
  24161. characterMakers.push(() => makeCharacter(
  24162. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24163. {
  24164. front: {
  24165. height: math.unit(5 + 4/12, "feet"),
  24166. weight: math.unit(125, "lb"),
  24167. name: "Front",
  24168. image: {
  24169. source: "./media/characters/rory/front.svg",
  24170. extra: 1790/1681,
  24171. bottom: 66/1856
  24172. }
  24173. },
  24174. back: {
  24175. height: math.unit(5 + 4/12, "feet"),
  24176. weight: math.unit(125, "lb"),
  24177. name: "Back",
  24178. image: {
  24179. source: "./media/characters/rory/back.svg",
  24180. extra: 1805/1690,
  24181. bottom: 56/1861
  24182. }
  24183. },
  24184. frontDressed: {
  24185. height: math.unit(5 + 4/12, "feet"),
  24186. weight: math.unit(125, "lb"),
  24187. name: "Front (Dressed)",
  24188. image: {
  24189. source: "./media/characters/rory/front-dressed.svg",
  24190. extra: 1790/1681,
  24191. bottom: 66/1856
  24192. }
  24193. },
  24194. backDressed: {
  24195. height: math.unit(5 + 4/12, "feet"),
  24196. weight: math.unit(125, "lb"),
  24197. name: "Back (Dressed)",
  24198. image: {
  24199. source: "./media/characters/rory/back-dressed.svg",
  24200. extra: 1805/1690,
  24201. bottom: 56/1861
  24202. }
  24203. },
  24204. frontNsfw: {
  24205. height: math.unit(5 + 4/12, "feet"),
  24206. weight: math.unit(125, "lb"),
  24207. name: "Front (NSFW)",
  24208. image: {
  24209. source: "./media/characters/rory/front-nsfw.svg",
  24210. extra: 1790/1681,
  24211. bottom: 66/1856
  24212. }
  24213. },
  24214. backNsfw: {
  24215. height: math.unit(5 + 4/12, "feet"),
  24216. weight: math.unit(125, "lb"),
  24217. name: "Back (NSFW)",
  24218. image: {
  24219. source: "./media/characters/rory/back-nsfw.svg",
  24220. extra: 1805/1690,
  24221. bottom: 56/1861
  24222. }
  24223. },
  24224. dick: {
  24225. height: math.unit(0.8, "feet"),
  24226. name: "Dick",
  24227. image: {
  24228. source: "./media/characters/rory/dick.svg"
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Micro",
  24235. height: math.unit(3, "inches")
  24236. },
  24237. {
  24238. name: "Normal",
  24239. height: math.unit(5 + 4/12, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Macro",
  24244. height: math.unit(90, "feet")
  24245. },
  24246. {
  24247. name: "Supercharged",
  24248. height: math.unit(270, "feet")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(5 + 9 / 12, "feet"),
  24257. weight: math.unit(190, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/sprisk/front.svg",
  24261. extra: 1225 / 1180,
  24262. bottom: 42.7 / 1266.4
  24263. }
  24264. },
  24265. frontNsfw: {
  24266. height: math.unit(5 + 9 / 12, "feet"),
  24267. weight: math.unit(190, "lb"),
  24268. name: "Front (NSFW)",
  24269. image: {
  24270. source: "./media/characters/sprisk/front-nsfw.svg",
  24271. extra: 1225 / 1180,
  24272. bottom: 42.7 / 1266.4
  24273. }
  24274. },
  24275. back: {
  24276. height: math.unit(5 + 9 / 12, "feet"),
  24277. weight: math.unit(190, "lb"),
  24278. name: "Back",
  24279. image: {
  24280. source: "./media/characters/sprisk/back.svg",
  24281. extra: 1247 / 1200,
  24282. bottom: 5.6 / 1253.04
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Tiny",
  24289. height: math.unit(2, "inches")
  24290. },
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(5 + 9 / 12, "feet"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Mini Macro",
  24298. height: math.unit(18, "feet")
  24299. },
  24300. {
  24301. name: "Macro",
  24302. height: math.unit(100, "feet")
  24303. },
  24304. {
  24305. name: "MACRO",
  24306. height: math.unit(50, "miles")
  24307. },
  24308. {
  24309. name: "M A C R O",
  24310. height: math.unit(300, "miles")
  24311. },
  24312. ]
  24313. ))
  24314. characterMakers.push(() => makeCharacter(
  24315. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24316. {
  24317. side: {
  24318. height: math.unit(15.6, "meters"),
  24319. weight: math.unit(700000, "kg"),
  24320. name: "Side",
  24321. image: {
  24322. source: "./media/characters/bunsen/side.svg",
  24323. extra: 1644 / 358
  24324. }
  24325. },
  24326. foot: {
  24327. height: math.unit(1.611 * 1644 / 358, "meter"),
  24328. name: "Foot",
  24329. image: {
  24330. source: "./media/characters/bunsen/foot.svg"
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Small",
  24337. height: math.unit(10, "feet")
  24338. },
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(15.6, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(4 + 11 / 12, "feet"),
  24351. weight: math.unit(140, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/sesh/front.svg",
  24355. extra: 3420 / 3231,
  24356. bottom: 72 / 3949.5
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Normal",
  24363. height: math.unit(4 + 11 / 12, "feet")
  24364. },
  24365. {
  24366. name: "Grown",
  24367. height: math.unit(15, "feet"),
  24368. default: true
  24369. },
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(1500, "feet")
  24373. },
  24374. {
  24375. name: "Megamacro",
  24376. height: math.unit(30, "miles")
  24377. },
  24378. {
  24379. name: "Continental",
  24380. height: math.unit(3000, "miles")
  24381. },
  24382. {
  24383. name: "Gravity Mass",
  24384. height: math.unit(300000, "miles")
  24385. },
  24386. {
  24387. name: "Planet Buster",
  24388. height: math.unit(30000000, "miles")
  24389. },
  24390. {
  24391. name: "Big",
  24392. height: math.unit(3000000000, "miles")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24398. {
  24399. front: {
  24400. height: math.unit(9, "feet"),
  24401. weight: math.unit(350, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/pepper/front.svg",
  24405. extra: 1448 / 1312,
  24406. bottom: 9.4 / 1457.88
  24407. }
  24408. },
  24409. back: {
  24410. height: math.unit(9, "feet"),
  24411. weight: math.unit(350, "lb"),
  24412. name: "Back",
  24413. image: {
  24414. source: "./media/characters/pepper/back.svg",
  24415. extra: 1423 / 1300,
  24416. bottom: 4.6 / 1429
  24417. }
  24418. },
  24419. maw: {
  24420. height: math.unit(0.932, "feet"),
  24421. name: "Maw",
  24422. image: {
  24423. source: "./media/characters/pepper/maw.svg"
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(9, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(6, "feet"),
  24440. weight: math.unit(150, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/maelstrom/front.svg",
  24444. extra: 2100 / 1883,
  24445. bottom: 94 / 2196.7
  24446. }
  24447. },
  24448. },
  24449. [
  24450. {
  24451. name: "Less Kaiju",
  24452. height: math.unit(200, "feet")
  24453. },
  24454. {
  24455. name: "Kaiju",
  24456. height: math.unit(400, "feet"),
  24457. default: true
  24458. },
  24459. {
  24460. name: "Kaiju-er",
  24461. height: math.unit(600, "feet")
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24467. {
  24468. front: {
  24469. height: math.unit(6 + 5 / 12, "feet"),
  24470. weight: math.unit(180, "lb"),
  24471. name: "Front",
  24472. image: {
  24473. source: "./media/characters/lexir/front.svg",
  24474. extra: 180 / 172,
  24475. bottom: 12 / 192
  24476. }
  24477. },
  24478. back: {
  24479. height: math.unit(6 + 5 / 12, "feet"),
  24480. weight: math.unit(180, "lb"),
  24481. name: "Back",
  24482. image: {
  24483. source: "./media/characters/lexir/back.svg",
  24484. extra: 1273/1201,
  24485. bottom: 39/1312
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Very Smal",
  24492. height: math.unit(1, "nm")
  24493. },
  24494. {
  24495. name: "Normal",
  24496. height: math.unit(6 + 5 / 12, "feet"),
  24497. default: true
  24498. },
  24499. {
  24500. name: "Macro",
  24501. height: math.unit(1, "mile")
  24502. },
  24503. {
  24504. name: "Megamacro",
  24505. height: math.unit(50, "miles")
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(1.5, "meters"),
  24514. weight: math.unit(100, "lb"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/maksio/front.svg",
  24518. extra: 1549 / 1531,
  24519. bottom: 123.7 / 1674.5429
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(1.5, "meters"),
  24524. weight: math.unit(100, "lb"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/maksio/back.svg",
  24528. extra: 1541 / 1509,
  24529. bottom: 97 / 1639
  24530. }
  24531. },
  24532. hand: {
  24533. height: math.unit(0.621, "feet"),
  24534. name: "Hand",
  24535. image: {
  24536. source: "./media/characters/maksio/hand.svg"
  24537. }
  24538. },
  24539. foot: {
  24540. height: math.unit(1.611, "feet"),
  24541. name: "Foot",
  24542. image: {
  24543. source: "./media/characters/maksio/foot.svg"
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Shrunken",
  24550. height: math.unit(10, "cm")
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(150, "cm"),
  24555. default: true
  24556. },
  24557. ]
  24558. ))
  24559. characterMakers.push(() => makeCharacter(
  24560. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24561. {
  24562. front: {
  24563. height: math.unit(100, "feet"),
  24564. name: "Front",
  24565. image: {
  24566. source: "./media/characters/erza-bear/front.svg",
  24567. extra: 2449 / 2390,
  24568. bottom: 46 / 2494
  24569. }
  24570. },
  24571. back: {
  24572. height: math.unit(100, "feet"),
  24573. name: "Back",
  24574. image: {
  24575. source: "./media/characters/erza-bear/back.svg",
  24576. extra: 2489 / 2430,
  24577. bottom: 85.4 / 2480
  24578. }
  24579. },
  24580. tail: {
  24581. height: math.unit(42, "feet"),
  24582. name: "Tail",
  24583. image: {
  24584. source: "./media/characters/erza-bear/tail.svg"
  24585. }
  24586. },
  24587. tongue: {
  24588. height: math.unit(8, "feet"),
  24589. name: "Tongue",
  24590. image: {
  24591. source: "./media/characters/erza-bear/tongue.svg"
  24592. }
  24593. },
  24594. dick: {
  24595. height: math.unit(10.5, "feet"),
  24596. name: "Dick",
  24597. image: {
  24598. source: "./media/characters/erza-bear/dick.svg"
  24599. }
  24600. },
  24601. dickVertical: {
  24602. height: math.unit(16.9, "feet"),
  24603. name: "Dick (Vertical)",
  24604. image: {
  24605. source: "./media/characters/erza-bear/dick-vertical.svg"
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Macro",
  24612. height: math.unit(100, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(172, "cm"),
  24622. weight: math.unit(73, "kg"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/violet-flor/front.svg",
  24626. extra: 1530 / 1442,
  24627. bottom: 61.9 / 1588.8
  24628. }
  24629. },
  24630. back: {
  24631. height: math.unit(180, "cm"),
  24632. weight: math.unit(73, "kg"),
  24633. name: "Back",
  24634. image: {
  24635. source: "./media/characters/violet-flor/back.svg",
  24636. extra: 1692 / 1630,
  24637. bottom: 20 / 1712
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(172, "cm"),
  24645. default: true
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(6, "feet"),
  24654. weight: math.unit(220, "lb"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/lynn-rhea/front.svg",
  24658. extra: 310 / 273
  24659. }
  24660. },
  24661. back: {
  24662. height: math.unit(6, "feet"),
  24663. weight: math.unit(220, "lb"),
  24664. name: "Back",
  24665. image: {
  24666. source: "./media/characters/lynn-rhea/back.svg",
  24667. extra: 310 / 273
  24668. }
  24669. },
  24670. dicks: {
  24671. height: math.unit(0.9, "feet"),
  24672. name: "Dicks",
  24673. image: {
  24674. source: "./media/characters/lynn-rhea/dicks.svg"
  24675. }
  24676. },
  24677. slit: {
  24678. height: math.unit(0.4, "feet"),
  24679. name: "Slit",
  24680. image: {
  24681. source: "./media/characters/lynn-rhea/slit.svg"
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Micro",
  24688. height: math.unit(1, "inch")
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(60, "feet"),
  24693. default: true
  24694. },
  24695. {
  24696. name: "Megamacro",
  24697. height: math.unit(2, "miles")
  24698. },
  24699. {
  24700. name: "Gigamacro",
  24701. height: math.unit(3, "earths")
  24702. },
  24703. {
  24704. name: "Galactic",
  24705. height: math.unit(0.8, "galaxies")
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24711. {
  24712. front: {
  24713. height: math.unit(1600, "feet"),
  24714. weight: math.unit(85758785169, "kg"),
  24715. name: "Front",
  24716. image: {
  24717. source: "./media/characters/valathos/front.svg",
  24718. extra: 1451 / 1339
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Macro",
  24725. height: math.unit(1600, "feet"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(7 + 5 / 12, "feet"),
  24735. weight: math.unit(300, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/azula/front.svg",
  24739. extra: 3208 / 2880,
  24740. bottom: 80.2 / 3277
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(7 + 5 / 12, "feet"),
  24745. weight: math.unit(300, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/azula/back.svg",
  24749. extra: 3169 / 2822,
  24750. bottom: 150.6 / 3321
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(7 + 5 / 12, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Big",
  24762. height: math.unit(20, "feet")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(5 + 1 / 12, "feet"),
  24771. weight: math.unit(110, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/rupert/front.svg",
  24775. extra: 1549 / 1495,
  24776. bottom: 54.2 / 1604.4
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(5 + 1 / 12, "feet"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24790. {
  24791. front: {
  24792. height: math.unit(8 + 4 / 12, "feet"),
  24793. weight: math.unit(350, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/sheera-castellar/front.svg",
  24797. extra: 1957 / 1894,
  24798. bottom: 26.97 / 1975.017
  24799. }
  24800. },
  24801. side: {
  24802. height: math.unit(8 + 4 / 12, "feet"),
  24803. weight: math.unit(350, "lb"),
  24804. name: "Side",
  24805. image: {
  24806. source: "./media/characters/sheera-castellar/side.svg",
  24807. extra: 1957 / 1894
  24808. }
  24809. },
  24810. back: {
  24811. height: math.unit(8 + 4 / 12, "feet"),
  24812. weight: math.unit(350, "lb"),
  24813. name: "Back",
  24814. image: {
  24815. source: "./media/characters/sheera-castellar/back.svg",
  24816. extra: 1957 / 1894
  24817. }
  24818. },
  24819. angled: {
  24820. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24821. weight: math.unit(350, "lb"),
  24822. name: "Angled",
  24823. image: {
  24824. source: "./media/characters/sheera-castellar/angled.svg",
  24825. extra: 1807 / 1707,
  24826. bottom: 68 / 1875
  24827. }
  24828. },
  24829. genitals: {
  24830. height: math.unit(2.2, "feet"),
  24831. name: "Genitals",
  24832. image: {
  24833. source: "./media/characters/sheera-castellar/genitals.svg"
  24834. }
  24835. },
  24836. taur: {
  24837. height: math.unit(10 + 6/12, "feet"),
  24838. name: "Taur",
  24839. image: {
  24840. source: "./media/characters/sheera-castellar/taur.svg",
  24841. extra: 2017/1909,
  24842. bottom: 185/2202
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Normal",
  24849. height: math.unit(8 + 4 / 12, "feet")
  24850. },
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(150, "feet"),
  24854. default: true
  24855. },
  24856. {
  24857. name: "Macro+",
  24858. height: math.unit(800, "feet")
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(6, "feet"),
  24867. weight: math.unit(150, "lb"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/jaipur/front.svg",
  24871. extra: 3860 / 3731,
  24872. bottom: 287 / 4140
  24873. }
  24874. },
  24875. back: {
  24876. height: math.unit(6, "feet"),
  24877. weight: math.unit(150, "lb"),
  24878. name: "Back",
  24879. image: {
  24880. source: "./media/characters/jaipur/back.svg",
  24881. extra: 1637/1561,
  24882. bottom: 154/1791
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(1.85, "meters"),
  24890. default: true
  24891. },
  24892. {
  24893. name: "Macro",
  24894. height: math.unit(150, "meters")
  24895. },
  24896. {
  24897. name: "Macro+",
  24898. height: math.unit(0.5, "miles")
  24899. },
  24900. {
  24901. name: "Macro++",
  24902. height: math.unit(2.5, "miles")
  24903. },
  24904. {
  24905. name: "Macro+++",
  24906. height: math.unit(12, "miles")
  24907. },
  24908. {
  24909. name: "Macro++++",
  24910. height: math.unit(120, "miles")
  24911. },
  24912. {
  24913. name: "Macro+++++",
  24914. height: math.unit(1200, "miles")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(6, "feet"),
  24923. weight: math.unit(150, "lb"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/sheila-wolf/front.svg",
  24927. extra: 1931 / 1808,
  24928. bottom: 29.5 / 1960
  24929. }
  24930. },
  24931. dick: {
  24932. height: math.unit(1.464, "feet"),
  24933. name: "Dick",
  24934. image: {
  24935. source: "./media/characters/sheila-wolf/dick.svg"
  24936. }
  24937. },
  24938. muzzle: {
  24939. height: math.unit(0.513, "feet"),
  24940. name: "Muzzle",
  24941. image: {
  24942. source: "./media/characters/sheila-wolf/muzzle.svg"
  24943. }
  24944. },
  24945. },
  24946. [
  24947. {
  24948. name: "Macro",
  24949. height: math.unit(70, "feet"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(32, "meters"),
  24959. weight: math.unit(300000, "kg"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/almor/front.svg",
  24963. extra: 1408 / 1322,
  24964. bottom: 94.6 / 1506.5
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Macro",
  24971. height: math.unit(32, "meters"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(7, "feet"),
  24981. weight: math.unit(200, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/silver/front.svg",
  24985. extra: 472.1 / 450.5,
  24986. bottom: 26.5 / 499.424
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(7, "feet"),
  24994. default: true
  24995. },
  24996. {
  24997. name: "Macro",
  24998. height: math.unit(800, "feet")
  24999. },
  25000. {
  25001. name: "Megamacro",
  25002. height: math.unit(250, "miles")
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25008. {
  25009. front: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(150, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/pliskin/front.svg",
  25015. extra: 1469 / 1359,
  25016. bottom: 70 / 1540
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Micro",
  25023. height: math.unit(3, "inches")
  25024. },
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(5 + 11 / 12, "feet"),
  25028. default: true
  25029. },
  25030. {
  25031. name: "Macro",
  25032. height: math.unit(120, "feet")
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(6, "feet"),
  25041. weight: math.unit(150, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/sammy/front.svg",
  25045. extra: 1193 / 1089,
  25046. bottom: 30.5 / 1226
  25047. }
  25048. },
  25049. },
  25050. [
  25051. {
  25052. name: "Macro",
  25053. height: math.unit(1700, "feet"),
  25054. default: true
  25055. },
  25056. {
  25057. name: "Examacro",
  25058. height: math.unit(2.5e9, "lightyears")
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(21, "meters"),
  25067. weight: math.unit(12, "tonnes"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/kuru/front.svg",
  25071. extra: 4301 / 3785,
  25072. bottom: 371.3 / 4691
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Macro",
  25079. height: math.unit(21, "meters"),
  25080. default: true
  25081. },
  25082. ]
  25083. ))
  25084. characterMakers.push(() => makeCharacter(
  25085. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25086. {
  25087. front: {
  25088. height: math.unit(23, "meters"),
  25089. weight: math.unit(12.2, "tonnes"),
  25090. name: "Front",
  25091. image: {
  25092. source: "./media/characters/rakka/front.svg",
  25093. extra: 4670 / 4169,
  25094. bottom: 301 / 4968.7
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(23, "meters"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(6, "feet"),
  25111. weight: math.unit(150, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/rhys-feline/front.svg",
  25115. extra: 2488 / 2308,
  25116. bottom: 35.67 / 2519.19
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Really Small",
  25123. height: math.unit(1, "nm")
  25124. },
  25125. {
  25126. name: "Micro",
  25127. height: math.unit(4, "inches")
  25128. },
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(4 + 10 / 12, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(100, "feet")
  25137. },
  25138. {
  25139. name: "Megamacto",
  25140. height: math.unit(50, "miles")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25146. {
  25147. side: {
  25148. height: math.unit(30, "feet"),
  25149. weight: math.unit(35000, "kg"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/alydar/side.svg",
  25153. extra: 234 / 222,
  25154. bottom: 6.5 / 241
  25155. }
  25156. },
  25157. front: {
  25158. height: math.unit(30, "feet"),
  25159. weight: math.unit(35000, "kg"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/alydar/front.svg",
  25163. extra: 223.37 / 210.2,
  25164. bottom: 22.3 / 246.76
  25165. }
  25166. },
  25167. top: {
  25168. height: math.unit(64.54, "feet"),
  25169. weight: math.unit(35000, "kg"),
  25170. name: "Top",
  25171. image: {
  25172. source: "./media/characters/alydar/top.svg"
  25173. }
  25174. },
  25175. anthro: {
  25176. height: math.unit(30, "feet"),
  25177. weight: math.unit(9000, "kg"),
  25178. name: "Anthro",
  25179. image: {
  25180. source: "./media/characters/alydar/anthro.svg",
  25181. extra: 432 / 421,
  25182. bottom: 7.18 / 440
  25183. }
  25184. },
  25185. maw: {
  25186. height: math.unit(11.693, "feet"),
  25187. name: "Maw",
  25188. image: {
  25189. source: "./media/characters/alydar/maw.svg"
  25190. }
  25191. },
  25192. head: {
  25193. height: math.unit(11.693, "feet"),
  25194. name: "Head",
  25195. image: {
  25196. source: "./media/characters/alydar/head.svg"
  25197. }
  25198. },
  25199. headAlt: {
  25200. height: math.unit(12.861, "feet"),
  25201. name: "Head (Alt)",
  25202. image: {
  25203. source: "./media/characters/alydar/head-alt.svg"
  25204. }
  25205. },
  25206. wing: {
  25207. height: math.unit(20.712, "feet"),
  25208. name: "Wing",
  25209. image: {
  25210. source: "./media/characters/alydar/wing.svg"
  25211. }
  25212. },
  25213. wingFeather: {
  25214. height: math.unit(9.662, "feet"),
  25215. name: "Wing Feather",
  25216. image: {
  25217. source: "./media/characters/alydar/wing-feather.svg"
  25218. }
  25219. },
  25220. countourFeather: {
  25221. height: math.unit(4.154, "feet"),
  25222. name: "Contour Feather",
  25223. image: {
  25224. source: "./media/characters/alydar/contour-feather.svg"
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Diplomatic",
  25231. height: math.unit(13, "feet"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Small",
  25236. height: math.unit(30, "feet")
  25237. },
  25238. {
  25239. name: "Normal",
  25240. height: math.unit(95, "feet"),
  25241. default: true
  25242. },
  25243. {
  25244. name: "Large",
  25245. height: math.unit(285, "feet")
  25246. },
  25247. {
  25248. name: "Incomprehensible",
  25249. height: math.unit(450, "megameters")
  25250. },
  25251. ]
  25252. ))
  25253. characterMakers.push(() => makeCharacter(
  25254. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25255. {
  25256. side: {
  25257. height: math.unit(11, "feet"),
  25258. weight: math.unit(1750, "kg"),
  25259. name: "Side",
  25260. image: {
  25261. source: "./media/characters/selicia/side.svg",
  25262. extra: 440 / 396,
  25263. bottom: 24.8 / 465.979
  25264. }
  25265. },
  25266. maw: {
  25267. height: math.unit(4.665, "feet"),
  25268. name: "Maw",
  25269. image: {
  25270. source: "./media/characters/selicia/maw.svg"
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Normal",
  25277. height: math.unit(11, "feet"),
  25278. default: true
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25284. {
  25285. side: {
  25286. height: math.unit(2 + 6 / 12, "feet"),
  25287. weight: math.unit(30, "lb"),
  25288. name: "Side",
  25289. image: {
  25290. source: "./media/characters/layla/side.svg",
  25291. extra: 244 / 188,
  25292. bottom: 18.2 / 262.1
  25293. }
  25294. },
  25295. back: {
  25296. height: math.unit(2 + 6 / 12, "feet"),
  25297. weight: math.unit(30, "lb"),
  25298. name: "Back",
  25299. image: {
  25300. source: "./media/characters/layla/back.svg",
  25301. extra: 308 / 241.5,
  25302. bottom: 8.9 / 316.8
  25303. }
  25304. },
  25305. cumming: {
  25306. height: math.unit(2 + 6 / 12, "feet"),
  25307. weight: math.unit(30, "lb"),
  25308. name: "Cumming",
  25309. image: {
  25310. source: "./media/characters/layla/cumming.svg",
  25311. extra: 342 / 279,
  25312. bottom: 595 / 938
  25313. }
  25314. },
  25315. dickFlaccid: {
  25316. height: math.unit(2.595, "feet"),
  25317. name: "Flaccid Genitals",
  25318. image: {
  25319. source: "./media/characters/layla/dick-flaccid.svg"
  25320. }
  25321. },
  25322. dickErect: {
  25323. height: math.unit(2.359, "feet"),
  25324. name: "Erect Genitals",
  25325. image: {
  25326. source: "./media/characters/layla/dick-erect.svg"
  25327. }
  25328. },
  25329. dragon: {
  25330. height: math.unit(40, "feet"),
  25331. name: "Dragon",
  25332. image: {
  25333. source: "./media/characters/layla/dragon.svg",
  25334. extra: 610/535,
  25335. bottom: 367/977
  25336. }
  25337. },
  25338. taur: {
  25339. height: math.unit(30, "feet"),
  25340. name: "Taur",
  25341. image: {
  25342. source: "./media/characters/layla/taur.svg",
  25343. extra: 1268/1199,
  25344. bottom: 112/1380
  25345. }
  25346. },
  25347. },
  25348. [
  25349. {
  25350. name: "Micro",
  25351. height: math.unit(1, "inch")
  25352. },
  25353. {
  25354. name: "Small",
  25355. height: math.unit(1, "foot")
  25356. },
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(2 + 6 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(200, "feet")
  25365. },
  25366. {
  25367. name: "Megamacro",
  25368. height: math.unit(1000, "miles")
  25369. },
  25370. {
  25371. name: "Planetary",
  25372. height: math.unit(8000, "miles")
  25373. },
  25374. {
  25375. name: "True Layla",
  25376. height: math.unit(200000 * 7, "multiverses")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25382. {
  25383. back: {
  25384. height: math.unit(10.5, "feet"),
  25385. weight: math.unit(800, "lb"),
  25386. name: "Back",
  25387. image: {
  25388. source: "./media/characters/knox/back.svg",
  25389. extra: 1486 / 1089,
  25390. bottom: 107 / 1601.4
  25391. }
  25392. },
  25393. side: {
  25394. height: math.unit(10.5, "feet"),
  25395. weight: math.unit(800, "lb"),
  25396. name: "Side",
  25397. image: {
  25398. source: "./media/characters/knox/side.svg",
  25399. extra: 244 / 218,
  25400. bottom: 14 / 260
  25401. }
  25402. },
  25403. },
  25404. [
  25405. {
  25406. name: "Compact",
  25407. height: math.unit(10.5, "feet"),
  25408. default: true
  25409. },
  25410. {
  25411. name: "Dynamax",
  25412. height: math.unit(210, "feet")
  25413. },
  25414. {
  25415. name: "Full Macro",
  25416. height: math.unit(850, "feet")
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(28, "feet"),
  25425. weight: math.unit(10500, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/kayda/front.svg",
  25429. extra: 1536 / 1428,
  25430. bottom: 68.7 / 1603
  25431. }
  25432. },
  25433. back: {
  25434. height: math.unit(28, "feet"),
  25435. weight: math.unit(10500, "lb"),
  25436. name: "Back",
  25437. image: {
  25438. source: "./media/characters/kayda/back.svg",
  25439. extra: 1557 / 1464,
  25440. bottom: 39.5 / 1597.49
  25441. }
  25442. },
  25443. dick: {
  25444. height: math.unit(3.858, "feet"),
  25445. name: "Dick",
  25446. image: {
  25447. source: "./media/characters/kayda/dick.svg"
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Macro",
  25454. height: math.unit(28, "feet"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(10 + 11 / 12, "feet"),
  25464. weight: math.unit(1400, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/brian/front.svg",
  25468. extra: 737 / 692,
  25469. bottom: 55.4 / 785
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(10 + 11 / 12, "feet"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(5 + 8 / 12, "feet"),
  25486. weight: math.unit(140, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/khemri/front.svg",
  25490. extra: 4780 / 4059,
  25491. bottom: 80.1 / 4859.25
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Micro",
  25498. height: math.unit(6, "inches")
  25499. },
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(5 + 8 / 12, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25509. {
  25510. front: {
  25511. height: math.unit(13, "feet"),
  25512. weight: math.unit(1700, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/felix-braveheart/front.svg",
  25516. extra: 1222 / 1157,
  25517. bottom: 53.2 / 1280
  25518. }
  25519. },
  25520. back: {
  25521. height: math.unit(13, "feet"),
  25522. weight: math.unit(1700, "lb"),
  25523. name: "Back",
  25524. image: {
  25525. source: "./media/characters/felix-braveheart/back.svg",
  25526. extra: 1277 / 1203,
  25527. bottom: 50.2 / 1327
  25528. }
  25529. },
  25530. feral: {
  25531. height: math.unit(6, "feet"),
  25532. weight: math.unit(400, "lb"),
  25533. name: "Feral",
  25534. image: {
  25535. source: "./media/characters/felix-braveheart/feral.svg",
  25536. extra: 682 / 625,
  25537. bottom: 6.9 / 688
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(13, "feet"),
  25545. default: true
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25551. {
  25552. side: {
  25553. height: math.unit(5 + 11 / 12, "feet"),
  25554. weight: math.unit(1400, "lb"),
  25555. name: "Side",
  25556. image: {
  25557. source: "./media/characters/shadow-blade/side.svg",
  25558. extra: 1726 / 1267,
  25559. bottom: 58.4 / 1785
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(5 + 11 / 12, "feet"),
  25567. default: true
  25568. },
  25569. ]
  25570. ))
  25571. characterMakers.push(() => makeCharacter(
  25572. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25573. {
  25574. front: {
  25575. height: math.unit(1 + 6 / 12, "feet"),
  25576. weight: math.unit(25, "lb"),
  25577. name: "Front",
  25578. image: {
  25579. source: "./media/characters/karla-halldor/front.svg",
  25580. extra: 1459 / 1383,
  25581. bottom: 12 / 1472
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(1 + 6 / 12, "feet"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(6 + 2 / 12, "feet"),
  25598. weight: math.unit(160, "lb"),
  25599. name: "Front",
  25600. image: {
  25601. source: "./media/characters/ariam/front.svg",
  25602. extra: 1073/976,
  25603. bottom: 52/1125
  25604. }
  25605. },
  25606. back: {
  25607. height: math.unit(6 + 2/12, "feet"),
  25608. weight: math.unit(160, "lb"),
  25609. name: "Back",
  25610. image: {
  25611. source: "./media/characters/ariam/back.svg",
  25612. extra: 1103/1023,
  25613. bottom: 9/1112
  25614. }
  25615. },
  25616. dressed: {
  25617. height: math.unit(6 + 2/12, "feet"),
  25618. weight: math.unit(160, "lb"),
  25619. name: "Dressed",
  25620. image: {
  25621. source: "./media/characters/ariam/dressed.svg",
  25622. extra: 1099/1009,
  25623. bottom: 25/1124
  25624. }
  25625. },
  25626. squatting: {
  25627. height: math.unit(4.1, "feet"),
  25628. weight: math.unit(160, "lb"),
  25629. name: "Squatting",
  25630. image: {
  25631. source: "./media/characters/ariam/squatting.svg",
  25632. extra: 2617 / 2112,
  25633. bottom: 61.2 / 2681,
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(6 + 2 / 12, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Normal+",
  25645. height: math.unit(4, "meters")
  25646. },
  25647. {
  25648. name: "Macro",
  25649. height: math.unit(50, "meters")
  25650. },
  25651. {
  25652. name: "Macro+",
  25653. height: math.unit(100, "meters")
  25654. },
  25655. {
  25656. name: "Megamacro",
  25657. height: math.unit(20, "km")
  25658. },
  25659. {
  25660. name: "Caretaker",
  25661. height: math.unit(444, "megameters")
  25662. },
  25663. ]
  25664. ))
  25665. characterMakers.push(() => makeCharacter(
  25666. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25667. {
  25668. front: {
  25669. height: math.unit(1.67, "meters"),
  25670. weight: math.unit(140, "lb"),
  25671. name: "Front",
  25672. image: {
  25673. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25674. extra: 438 / 410,
  25675. bottom: 0.75 / 439
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Shrunken",
  25682. height: math.unit(7.6, "cm")
  25683. },
  25684. {
  25685. name: "Human Scale",
  25686. height: math.unit(1.67, "meters")
  25687. },
  25688. {
  25689. name: "Wolxi Scale",
  25690. height: math.unit(36.7, "meters"),
  25691. default: true
  25692. },
  25693. ]
  25694. ))
  25695. characterMakers.push(() => makeCharacter(
  25696. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25697. {
  25698. front: {
  25699. height: math.unit(1.73, "meters"),
  25700. weight: math.unit(240, "lb"),
  25701. name: "Front",
  25702. image: {
  25703. source: "./media/characters/izue-two-mothers/front.svg",
  25704. extra: 469 / 437,
  25705. bottom: 1.24 / 470.6
  25706. }
  25707. },
  25708. },
  25709. [
  25710. {
  25711. name: "Shrunken",
  25712. height: math.unit(7.86, "cm")
  25713. },
  25714. {
  25715. name: "Human Scale",
  25716. height: math.unit(1.73, "meters")
  25717. },
  25718. {
  25719. name: "Wolxi Scale",
  25720. height: math.unit(38, "meters"),
  25721. default: true
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25727. {
  25728. front: {
  25729. height: math.unit(1.55, "meters"),
  25730. weight: math.unit(120, "lb"),
  25731. name: "Front",
  25732. image: {
  25733. source: "./media/characters/teeku-love-shack/front.svg",
  25734. extra: 387 / 362,
  25735. bottom: 1.51 / 388
  25736. }
  25737. },
  25738. },
  25739. [
  25740. {
  25741. name: "Shrunken",
  25742. height: math.unit(7, "cm")
  25743. },
  25744. {
  25745. name: "Human Scale",
  25746. height: math.unit(1.55, "meters")
  25747. },
  25748. {
  25749. name: "Wolxi Scale",
  25750. height: math.unit(34.1, "meters"),
  25751. default: true
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(1.83, "meters"),
  25760. weight: math.unit(135, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/dejma-the-red/front.svg",
  25764. extra: 480 / 458,
  25765. bottom: 1.8 / 482
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Shrunken",
  25772. height: math.unit(8.3, "cm")
  25773. },
  25774. {
  25775. name: "Human Scale",
  25776. height: math.unit(1.83, "meters")
  25777. },
  25778. {
  25779. name: "Wolxi Scale",
  25780. height: math.unit(40, "meters"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(1.78, "meters"),
  25790. weight: math.unit(65, "kg"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/aki/front.svg",
  25794. extra: 452 / 415
  25795. }
  25796. },
  25797. frontNsfw: {
  25798. height: math.unit(1.78, "meters"),
  25799. weight: math.unit(65, "kg"),
  25800. name: "Front (NSFW)",
  25801. image: {
  25802. source: "./media/characters/aki/front-nsfw.svg",
  25803. extra: 452 / 415
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(1.78, "meters"),
  25808. weight: math.unit(65, "kg"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/aki/back.svg",
  25812. extra: 452 / 415
  25813. }
  25814. },
  25815. rump: {
  25816. height: math.unit(2.05, "feet"),
  25817. name: "Rump",
  25818. image: {
  25819. source: "./media/characters/aki/rump.svg"
  25820. }
  25821. },
  25822. dick: {
  25823. height: math.unit(0.95, "feet"),
  25824. name: "Dick",
  25825. image: {
  25826. source: "./media/characters/aki/dick.svg"
  25827. }
  25828. },
  25829. },
  25830. [
  25831. {
  25832. name: "Micro",
  25833. height: math.unit(15, "cm")
  25834. },
  25835. {
  25836. name: "Normal",
  25837. height: math.unit(178, "cm"),
  25838. default: true
  25839. },
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(214, "m")
  25843. },
  25844. {
  25845. name: "Macro+",
  25846. height: math.unit(534, "m")
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25852. {
  25853. front: {
  25854. height: math.unit(5 + 5 / 12, "feet"),
  25855. weight: math.unit(120, "lb"),
  25856. name: "Front",
  25857. image: {
  25858. source: "./media/characters/ari/front.svg",
  25859. extra: 1550/1471,
  25860. bottom: 39/1589
  25861. }
  25862. },
  25863. },
  25864. [
  25865. {
  25866. name: "Normal",
  25867. height: math.unit(5 + 5 / 12, "feet")
  25868. },
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(100, "feet"),
  25872. default: true
  25873. },
  25874. {
  25875. name: "Megamacro",
  25876. height: math.unit(100, "miles")
  25877. },
  25878. {
  25879. name: "Gigamacro",
  25880. height: math.unit(80000, "miles")
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25886. {
  25887. side: {
  25888. height: math.unit(9, "feet"),
  25889. weight: math.unit(400, "kg"),
  25890. name: "Side",
  25891. image: {
  25892. source: "./media/characters/bolt/side.svg",
  25893. extra: 1126 / 896,
  25894. bottom: 60 / 1187.3,
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Micro",
  25901. height: math.unit(5, "inches")
  25902. },
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(9, "feet"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Macro",
  25910. height: math.unit(700, "feet")
  25911. },
  25912. {
  25913. name: "Max Size",
  25914. height: math.unit(1.52e22, "yottameters")
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(4.3, "meters"),
  25923. weight: math.unit(3, "tons"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/draekon-sylviar/front.svg",
  25927. extra: 2072/1512,
  25928. bottom: 74/2146
  25929. }
  25930. },
  25931. back: {
  25932. height: math.unit(4.3, "meters"),
  25933. weight: math.unit(3, "tons"),
  25934. name: "Back",
  25935. image: {
  25936. source: "./media/characters/draekon-sylviar/back.svg",
  25937. extra: 1639/1483,
  25938. bottom: 41/1680
  25939. }
  25940. },
  25941. feral: {
  25942. height: math.unit(1.15, "meters"),
  25943. weight: math.unit(3, "tons"),
  25944. name: "Feral",
  25945. image: {
  25946. source: "./media/characters/draekon-sylviar/feral.svg",
  25947. extra: 1033/395,
  25948. bottom: 130/1163
  25949. }
  25950. },
  25951. maw: {
  25952. height: math.unit(1.3, "meters"),
  25953. name: "Maw",
  25954. image: {
  25955. source: "./media/characters/draekon-sylviar/maw.svg"
  25956. }
  25957. },
  25958. mawSeparated: {
  25959. height: math.unit(1.53, "meters"),
  25960. name: "Separated Maw",
  25961. image: {
  25962. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25963. }
  25964. },
  25965. tail: {
  25966. height: math.unit(1.15, "meters"),
  25967. name: "Tail",
  25968. image: {
  25969. source: "./media/characters/draekon-sylviar/tail.svg"
  25970. }
  25971. },
  25972. tailDick: {
  25973. height: math.unit(1.15, "meters"),
  25974. name: "Tail (Dick)",
  25975. image: {
  25976. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25977. }
  25978. },
  25979. tailDickSeparated: {
  25980. height: math.unit(1.19, "meters"),
  25981. name: "Tail (Separated Dick)",
  25982. image: {
  25983. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25984. }
  25985. },
  25986. slit: {
  25987. height: math.unit(1, "meters"),
  25988. name: "Slit",
  25989. image: {
  25990. source: "./media/characters/draekon-sylviar/slit.svg"
  25991. }
  25992. },
  25993. dick: {
  25994. height: math.unit(1.15, "meters"),
  25995. name: "Dick",
  25996. image: {
  25997. source: "./media/characters/draekon-sylviar/dick.svg"
  25998. }
  25999. },
  26000. dickSeparated: {
  26001. height: math.unit(1.1, "meters"),
  26002. name: "Separated Dick",
  26003. image: {
  26004. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26005. }
  26006. },
  26007. sheath: {
  26008. height: math.unit(1.15, "meters"),
  26009. name: "Sheath",
  26010. image: {
  26011. source: "./media/characters/draekon-sylviar/sheath.svg"
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Small",
  26018. height: math.unit(4.53 / 2, "meters"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Normal",
  26023. height: math.unit(4.53, "meters"),
  26024. default: true
  26025. },
  26026. {
  26027. name: "Large",
  26028. height: math.unit(4.53 * 2, "meters"),
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26034. {
  26035. front: {
  26036. height: math.unit(6 + 2 / 12, "feet"),
  26037. weight: math.unit(180, "lb"),
  26038. name: "Front",
  26039. image: {
  26040. source: "./media/characters/brawler/front.svg",
  26041. extra: 3301 / 3027,
  26042. bottom: 138 / 3439
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Normal",
  26049. height: math.unit(6 + 2 / 12, "feet"),
  26050. default: true
  26051. },
  26052. ]
  26053. ))
  26054. characterMakers.push(() => makeCharacter(
  26055. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26056. {
  26057. front: {
  26058. height: math.unit(11, "feet"),
  26059. weight: math.unit(1000, "lb"),
  26060. name: "Front",
  26061. image: {
  26062. source: "./media/characters/alex/front.svg",
  26063. bottom: 44.5 / 620
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Micro",
  26070. height: math.unit(5, "inches")
  26071. },
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(11, "feet"),
  26075. default: true
  26076. },
  26077. {
  26078. name: "Macro",
  26079. height: math.unit(9.5e9, "feet")
  26080. },
  26081. {
  26082. name: "Max Size",
  26083. height: math.unit(1.4e283, "yottameters")
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26089. {
  26090. female: {
  26091. height: math.unit(29.9, "m"),
  26092. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26093. name: "Female",
  26094. image: {
  26095. source: "./media/characters/zenari/female.svg",
  26096. extra: 3281.6 / 3217,
  26097. bottom: 72.2 / 3353
  26098. }
  26099. },
  26100. male: {
  26101. height: math.unit(27.7, "m"),
  26102. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26103. name: "Male",
  26104. image: {
  26105. source: "./media/characters/zenari/male.svg",
  26106. extra: 3008 / 2991,
  26107. bottom: 54.6 / 3069
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Macro",
  26114. height: math.unit(29.7, "meters"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26121. {
  26122. female: {
  26123. height: math.unit(23.8, "m"),
  26124. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26125. name: "Female",
  26126. image: {
  26127. source: "./media/characters/mactarian/female.svg",
  26128. extra: 2662 / 2569,
  26129. bottom: 73 / 2736
  26130. }
  26131. },
  26132. male: {
  26133. height: math.unit(23.8, "m"),
  26134. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26135. name: "Male",
  26136. image: {
  26137. source: "./media/characters/mactarian/male.svg",
  26138. extra: 2673 / 2600,
  26139. bottom: 76 / 2750
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Macro",
  26146. height: math.unit(23.8, "meters"),
  26147. default: true
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26153. {
  26154. female: {
  26155. height: math.unit(19.3, "m"),
  26156. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26157. name: "Female",
  26158. image: {
  26159. source: "./media/characters/umok/female.svg",
  26160. extra: 2186 / 2078,
  26161. bottom: 87 / 2277
  26162. }
  26163. },
  26164. male: {
  26165. height: math.unit(19.5, "m"),
  26166. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26167. name: "Male",
  26168. image: {
  26169. source: "./media/characters/umok/male.svg",
  26170. extra: 2233 / 2140,
  26171. bottom: 24.4 / 2258
  26172. }
  26173. },
  26174. },
  26175. [
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(19.3, "meters"),
  26179. default: true
  26180. },
  26181. ]
  26182. ))
  26183. characterMakers.push(() => makeCharacter(
  26184. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26185. {
  26186. female: {
  26187. height: math.unit(26.15, "m"),
  26188. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26189. name: "Female",
  26190. image: {
  26191. source: "./media/characters/joraxian/female.svg",
  26192. extra: 2912 / 2824,
  26193. bottom: 36 / 2956
  26194. }
  26195. },
  26196. male: {
  26197. height: math.unit(25.4, "m"),
  26198. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26199. name: "Male",
  26200. image: {
  26201. source: "./media/characters/joraxian/male.svg",
  26202. extra: 2877 / 2721,
  26203. bottom: 82 / 2967
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Macro",
  26210. height: math.unit(26.15, "meters"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26217. {
  26218. female: {
  26219. height: math.unit(21.6, "m"),
  26220. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26221. name: "Female",
  26222. image: {
  26223. source: "./media/characters/sthara/female.svg",
  26224. extra: 2516 / 2347,
  26225. bottom: 21.5 / 2537
  26226. }
  26227. },
  26228. male: {
  26229. height: math.unit(24, "m"),
  26230. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26231. name: "Male",
  26232. image: {
  26233. source: "./media/characters/sthara/male.svg",
  26234. extra: 2732 / 2607,
  26235. bottom: 23 / 2732
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(21.6, "meters"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(6 + 4 / 12, "feet"),
  26252. weight: math.unit(175, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/luka-bryzant/front.svg",
  26256. extra: 311 / 289,
  26257. bottom: 4 / 315
  26258. }
  26259. },
  26260. back: {
  26261. height: math.unit(6 + 4 / 12, "feet"),
  26262. weight: math.unit(175, "lb"),
  26263. name: "Back",
  26264. image: {
  26265. source: "./media/characters/luka-bryzant/back.svg",
  26266. extra: 311 / 289,
  26267. bottom: 3.8 / 313.7
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Micro",
  26274. height: math.unit(10, "inches")
  26275. },
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(6 + 4 / 12, "feet"),
  26279. default: true
  26280. },
  26281. {
  26282. name: "Large",
  26283. height: math.unit(12, "feet")
  26284. },
  26285. ]
  26286. ))
  26287. characterMakers.push(() => makeCharacter(
  26288. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26289. {
  26290. front: {
  26291. height: math.unit(5 + 7 / 12, "feet"),
  26292. weight: math.unit(185, "lb"),
  26293. name: "Front",
  26294. image: {
  26295. source: "./media/characters/aman-aquila/front.svg",
  26296. extra: 1013 / 976,
  26297. bottom: 45.6 / 1057
  26298. }
  26299. },
  26300. side: {
  26301. height: math.unit(5 + 7 / 12, "feet"),
  26302. weight: math.unit(185, "lb"),
  26303. name: "Side",
  26304. image: {
  26305. source: "./media/characters/aman-aquila/side.svg",
  26306. extra: 1054 / 1011,
  26307. bottom: 15 / 1070
  26308. }
  26309. },
  26310. back: {
  26311. height: math.unit(5 + 7 / 12, "feet"),
  26312. weight: math.unit(185, "lb"),
  26313. name: "Back",
  26314. image: {
  26315. source: "./media/characters/aman-aquila/back.svg",
  26316. extra: 1026 / 970,
  26317. bottom: 12 / 1039
  26318. }
  26319. },
  26320. head: {
  26321. height: math.unit(1.211, "feet"),
  26322. name: "Head",
  26323. image: {
  26324. source: "./media/characters/aman-aquila/head.svg",
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Minimicro",
  26331. height: math.unit(0.057, "inches")
  26332. },
  26333. {
  26334. name: "Micro",
  26335. height: math.unit(7, "inches")
  26336. },
  26337. {
  26338. name: "Mini",
  26339. height: math.unit(3 + 7 / 12, "feet")
  26340. },
  26341. {
  26342. name: "Normal",
  26343. height: math.unit(5 + 7 / 12, "feet"),
  26344. default: true
  26345. },
  26346. {
  26347. name: "Macro",
  26348. height: math.unit(157 + 7 / 12, "feet")
  26349. },
  26350. {
  26351. name: "Megamacro",
  26352. height: math.unit(1557 + 7 / 12, "feet")
  26353. },
  26354. {
  26355. name: "Gigamacro",
  26356. height: math.unit(15557 + 7 / 12, "feet")
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(3 + 2 / 12, "inches"),
  26365. weight: math.unit(0.3, "ounces"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/hiphae/front.svg",
  26369. extra: 1931 / 1683,
  26370. bottom: 24 / 1955
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(3 + 1 / 2, "inches"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(5 + 10 / 12, "feet"),
  26387. weight: math.unit(165, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/nicky/front.svg",
  26391. extra: 3144 / 2886,
  26392. bottom: 45.6 / 3192
  26393. }
  26394. },
  26395. back: {
  26396. height: math.unit(5 + 10 / 12, "feet"),
  26397. weight: math.unit(165, "lb"),
  26398. name: "Back",
  26399. image: {
  26400. source: "./media/characters/nicky/back.svg",
  26401. extra: 3055 / 2804,
  26402. bottom: 28.4 / 3087
  26403. }
  26404. },
  26405. frontclothed: {
  26406. height: math.unit(5 + 10 / 12, "feet"),
  26407. weight: math.unit(165, "lb"),
  26408. name: "Front-clothed",
  26409. image: {
  26410. source: "./media/characters/nicky/front-clothed.svg",
  26411. extra: 3184.9 / 2926.9,
  26412. bottom: 86.5 / 3239.9
  26413. }
  26414. },
  26415. foot: {
  26416. height: math.unit(1.16, "feet"),
  26417. name: "Foot",
  26418. image: {
  26419. source: "./media/characters/nicky/foot.svg"
  26420. }
  26421. },
  26422. feet: {
  26423. height: math.unit(1.34, "feet"),
  26424. name: "Feet",
  26425. image: {
  26426. source: "./media/characters/nicky/feet.svg"
  26427. }
  26428. },
  26429. maw: {
  26430. height: math.unit(0.9, "feet"),
  26431. name: "Maw",
  26432. image: {
  26433. source: "./media/characters/nicky/maw.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(5 + 10 / 12, "feet"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(60, "feet")
  26446. },
  26447. {
  26448. name: "Megamacro",
  26449. height: math.unit(1, "mile")
  26450. },
  26451. ]
  26452. ))
  26453. characterMakers.push(() => makeCharacter(
  26454. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26455. {
  26456. side: {
  26457. height: math.unit(10, "feet"),
  26458. weight: math.unit(600, "lb"),
  26459. name: "Side",
  26460. image: {
  26461. source: "./media/characters/blair/side.svg",
  26462. bottom: 16.6 / 475,
  26463. extra: 458 / 431
  26464. }
  26465. },
  26466. },
  26467. [
  26468. {
  26469. name: "Micro",
  26470. height: math.unit(8, "inches")
  26471. },
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(10, "feet"),
  26475. default: true
  26476. },
  26477. {
  26478. name: "Macro",
  26479. height: math.unit(180, "feet")
  26480. },
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(5 + 4 / 12, "feet"),
  26488. weight: math.unit(125, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/fisher/front.svg",
  26492. extra: 444 / 390,
  26493. bottom: 2 / 444.8
  26494. }
  26495. },
  26496. },
  26497. [
  26498. {
  26499. name: "Micro",
  26500. height: math.unit(4, "inches")
  26501. },
  26502. {
  26503. name: "Normal",
  26504. height: math.unit(5 + 4 / 12, "feet"),
  26505. default: true
  26506. },
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(100, "feet")
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26515. {
  26516. front: {
  26517. height: math.unit(6.71, "feet"),
  26518. weight: math.unit(200, "lb"),
  26519. preyCapacity: math.unit(1000000, "people"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/gliss/front.svg",
  26523. extra: 2347 / 2231,
  26524. bottom: 113 / 2462
  26525. }
  26526. },
  26527. hammerspaceSize: {
  26528. height: math.unit(6.71 * 717, "feet"),
  26529. weight: math.unit(200, "lb"),
  26530. preyCapacity: math.unit(1000000, "people"),
  26531. name: "Hammerspace Size",
  26532. image: {
  26533. source: "./media/characters/gliss/front.svg",
  26534. extra: 2347 / 2231,
  26535. bottom: 113 / 2462
  26536. }
  26537. },
  26538. },
  26539. [
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(6.71, "feet"),
  26543. default: true
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26549. {
  26550. side: {
  26551. height: math.unit(1.44, "m"),
  26552. weight: math.unit(80, "kg"),
  26553. name: "Side",
  26554. image: {
  26555. source: "./media/characters/dune-anderson/side.svg",
  26556. bottom: 49 / 1426
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Wolf-sized",
  26563. height: math.unit(1.44, "meters")
  26564. },
  26565. {
  26566. name: "Normal",
  26567. height: math.unit(5.05, "meters"),
  26568. default: true
  26569. },
  26570. {
  26571. name: "Big",
  26572. height: math.unit(14.4, "meters")
  26573. },
  26574. {
  26575. name: "Huge",
  26576. height: math.unit(144, "meters")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26582. {
  26583. front: {
  26584. height: math.unit(7, "feet"),
  26585. weight: math.unit(425, "lb"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/hind/front.svg",
  26589. extra: 2091 / 1860,
  26590. bottom: 129 / 2220
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(7, "feet"),
  26595. weight: math.unit(425, "lb"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/hind/back.svg",
  26599. extra: 2091 / 1860,
  26600. bottom: 24.6 / 2309
  26601. }
  26602. },
  26603. tail: {
  26604. height: math.unit(2.8, "feet"),
  26605. name: "Tail",
  26606. image: {
  26607. source: "./media/characters/hind/tail.svg"
  26608. }
  26609. },
  26610. head: {
  26611. height: math.unit(2.55, "feet"),
  26612. name: "Head",
  26613. image: {
  26614. source: "./media/characters/hind/head.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "XS",
  26621. height: math.unit(0.7, "feet")
  26622. },
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(7, "feet"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "XL",
  26630. height: math.unit(70, "feet")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(2.1, "meters"),
  26639. weight: math.unit(150, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/tharquench-sizestealer/front.svg",
  26643. extra: 1605/1470,
  26644. bottom: 36/1641
  26645. }
  26646. },
  26647. frontAlt: {
  26648. height: math.unit(2.1, "meters"),
  26649. weight: math.unit(150, "lb"),
  26650. name: "Front (Alt)",
  26651. image: {
  26652. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26653. extra: 2318 / 2063,
  26654. bottom: 93.4 / 2410
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Nano",
  26661. height: math.unit(1, "mm")
  26662. },
  26663. {
  26664. name: "Micro",
  26665. height: math.unit(1, "cm")
  26666. },
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(2.1, "meters"),
  26670. default: true
  26671. },
  26672. ]
  26673. ))
  26674. characterMakers.push(() => makeCharacter(
  26675. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26676. {
  26677. front: {
  26678. height: math.unit(7 + 5 / 12, "feet"),
  26679. weight: math.unit(357, "lb"),
  26680. name: "Front",
  26681. image: {
  26682. source: "./media/characters/solex-draconov/front.svg",
  26683. extra: 1993 / 1865,
  26684. bottom: 117 / 2111
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Natural Height",
  26691. height: math.unit(7 + 5 / 12, "feet"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Macro",
  26696. height: math.unit(350, "feet")
  26697. },
  26698. {
  26699. name: "Macro+",
  26700. height: math.unit(1000, "feet")
  26701. },
  26702. {
  26703. name: "Megamacro",
  26704. height: math.unit(20, "km")
  26705. },
  26706. {
  26707. name: "Megamacro+",
  26708. height: math.unit(1000, "km")
  26709. },
  26710. {
  26711. name: "Gigamacro",
  26712. height: math.unit(2.5, "Gm")
  26713. },
  26714. {
  26715. name: "Teramacro",
  26716. height: math.unit(15, "Tm")
  26717. },
  26718. {
  26719. name: "Galactic",
  26720. height: math.unit(30, "Zm")
  26721. },
  26722. {
  26723. name: "Universal",
  26724. height: math.unit(21000, "Ym")
  26725. },
  26726. {
  26727. name: "Omniversal",
  26728. height: math.unit(9.861e50, "Ym")
  26729. },
  26730. {
  26731. name: "Existential",
  26732. height: math.unit(1e300, "meters")
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26738. {
  26739. side: {
  26740. height: math.unit(25, "feet"),
  26741. weight: math.unit(90000, "lb"),
  26742. name: "Side",
  26743. image: {
  26744. source: "./media/characters/mandarax/side.svg",
  26745. extra: 614 / 332,
  26746. bottom: 55 / 630
  26747. }
  26748. },
  26749. lounging: {
  26750. height: math.unit(15.4, "feet"),
  26751. weight: math.unit(90000, "lb"),
  26752. name: "Lounging",
  26753. image: {
  26754. source: "./media/characters/mandarax/lounging.svg",
  26755. extra: 817/609,
  26756. bottom: 685/1502
  26757. }
  26758. },
  26759. head: {
  26760. height: math.unit(11.4, "feet"),
  26761. name: "Head",
  26762. image: {
  26763. source: "./media/characters/mandarax/head.svg"
  26764. }
  26765. },
  26766. belly: {
  26767. height: math.unit(33, "feet"),
  26768. name: "Belly",
  26769. preyCapacity: math.unit(500, "people"),
  26770. image: {
  26771. source: "./media/characters/mandarax/belly.svg"
  26772. }
  26773. },
  26774. dick: {
  26775. height: math.unit(8.46, "feet"),
  26776. name: "Dick",
  26777. image: {
  26778. source: "./media/characters/mandarax/dick.svg"
  26779. }
  26780. },
  26781. top: {
  26782. height: math.unit(28, "meters"),
  26783. name: "Top",
  26784. image: {
  26785. source: "./media/characters/mandarax/top.svg"
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(25, "feet"),
  26793. default: true
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(5, "feet"),
  26802. weight: math.unit(90, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/pixil/front.svg",
  26806. extra: 2000 / 1618,
  26807. bottom: 12.3 / 2011
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Normal",
  26814. height: math.unit(5, "feet"),
  26815. default: true
  26816. },
  26817. {
  26818. name: "Megamacro",
  26819. height: math.unit(10, "miles"),
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(7 + 2 / 12, "feet"),
  26828. weight: math.unit(200, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/angel/front.svg",
  26832. extra: 1830 / 1737,
  26833. bottom: 22.6 / 1854,
  26834. }
  26835. },
  26836. },
  26837. [
  26838. {
  26839. name: "Normal",
  26840. height: math.unit(7 + 2 / 12, "feet"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Macro",
  26845. height: math.unit(1000, "feet")
  26846. },
  26847. {
  26848. name: "Megamacro",
  26849. height: math.unit(2, "miles")
  26850. },
  26851. {
  26852. name: "Gigamacro",
  26853. height: math.unit(20, "earths")
  26854. },
  26855. ]
  26856. ))
  26857. characterMakers.push(() => makeCharacter(
  26858. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26859. {
  26860. front: {
  26861. height: math.unit(5, "feet"),
  26862. weight: math.unit(180, "lb"),
  26863. name: "Front",
  26864. image: {
  26865. source: "./media/characters/mekana/front.svg",
  26866. extra: 1671 / 1605,
  26867. bottom: 3.5 / 1691
  26868. }
  26869. },
  26870. side: {
  26871. height: math.unit(5, "feet"),
  26872. weight: math.unit(180, "lb"),
  26873. name: "Side",
  26874. image: {
  26875. source: "./media/characters/mekana/side.svg",
  26876. extra: 1671 / 1605,
  26877. bottom: 3.5 / 1691
  26878. }
  26879. },
  26880. back: {
  26881. height: math.unit(5, "feet"),
  26882. weight: math.unit(180, "lb"),
  26883. name: "Back",
  26884. image: {
  26885. source: "./media/characters/mekana/back.svg",
  26886. extra: 1671 / 1605,
  26887. bottom: 3.5 / 1691
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(5, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(4 + 6 / 12, "feet"),
  26904. weight: math.unit(80, "lb"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/pixie/front.svg",
  26908. extra: 1924 / 1825,
  26909. bottom: 22.4 / 1946
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(4 + 6 / 12, "feet"),
  26917. default: true
  26918. },
  26919. {
  26920. name: "Macro",
  26921. height: math.unit(40, "feet")
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(2.1, "meters"),
  26930. weight: math.unit(200, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/the-lascivious/front.svg",
  26934. extra: 1 / 0.893,
  26935. bottom: 3.5 / 573.7
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Human Scale",
  26942. height: math.unit(2.1, "meters")
  26943. },
  26944. {
  26945. name: "Wolxi Scale",
  26946. height: math.unit(46.2, "m"),
  26947. default: true
  26948. },
  26949. {
  26950. name: "Boinker of Buildings",
  26951. height: math.unit(10, "km")
  26952. },
  26953. {
  26954. name: "Shagger of Skyscrapers",
  26955. height: math.unit(40, "km")
  26956. },
  26957. {
  26958. name: "Banger of Boroughs",
  26959. height: math.unit(4000, "km")
  26960. },
  26961. {
  26962. name: "Screwer of States",
  26963. height: math.unit(100000, "km")
  26964. },
  26965. {
  26966. name: "Pounder of Planets",
  26967. height: math.unit(2000000, "km")
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(6, "feet"),
  26976. weight: math.unit(150, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/aj/front.svg",
  26980. extra: 2039 / 1562,
  26981. bottom: 40 / 2079
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Normal",
  26988. height: math.unit(11 + 6 / 12, "feet"),
  26989. default: true
  26990. },
  26991. {
  26992. name: "Megamacro",
  26993. height: math.unit(60, "megameters")
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26999. {
  27000. side: {
  27001. height: math.unit(31 + 8 / 12, "feet"),
  27002. weight: math.unit(75000, "kg"),
  27003. name: "Side",
  27004. image: {
  27005. source: "./media/characters/koros/side.svg",
  27006. extra: 1442 / 1297,
  27007. bottom: 122.7 / 1562
  27008. }
  27009. },
  27010. dicksKingsCrown: {
  27011. height: math.unit(6, "feet"),
  27012. name: "Dicks (King's Crown)",
  27013. image: {
  27014. source: "./media/characters/koros/dicks-kings-crown.svg"
  27015. }
  27016. },
  27017. dicksTailSet: {
  27018. height: math.unit(3, "feet"),
  27019. name: "Dicks (Tail Set)",
  27020. image: {
  27021. source: "./media/characters/koros/dicks-tail-set.svg"
  27022. }
  27023. },
  27024. dickCumming: {
  27025. height: math.unit(7.98, "feet"),
  27026. name: "Dick (Cumming)",
  27027. image: {
  27028. source: "./media/characters/koros/dick-cumming.svg"
  27029. }
  27030. },
  27031. dicksBack: {
  27032. height: math.unit(5.9, "feet"),
  27033. name: "Dicks (Back)",
  27034. image: {
  27035. source: "./media/characters/koros/dicks-back.svg"
  27036. }
  27037. },
  27038. dicksFront: {
  27039. height: math.unit(3.72, "feet"),
  27040. name: "Dicks (Front)",
  27041. image: {
  27042. source: "./media/characters/koros/dicks-front.svg"
  27043. }
  27044. },
  27045. dicksPeeking: {
  27046. height: math.unit(3.0, "feet"),
  27047. name: "Dicks (Peeking)",
  27048. image: {
  27049. source: "./media/characters/koros/dicks-peeking.svg"
  27050. }
  27051. },
  27052. eye: {
  27053. height: math.unit(1.7, "feet"),
  27054. name: "Eye",
  27055. image: {
  27056. source: "./media/characters/koros/eye.svg"
  27057. }
  27058. },
  27059. headFront: {
  27060. height: math.unit(11.69, "feet"),
  27061. name: "Head (Front)",
  27062. image: {
  27063. source: "./media/characters/koros/head-front.svg"
  27064. }
  27065. },
  27066. headSide: {
  27067. height: math.unit(14, "feet"),
  27068. name: "Head (Side)",
  27069. image: {
  27070. source: "./media/characters/koros/head-side.svg"
  27071. }
  27072. },
  27073. leg: {
  27074. height: math.unit(17, "feet"),
  27075. name: "Leg",
  27076. image: {
  27077. source: "./media/characters/koros/leg.svg"
  27078. }
  27079. },
  27080. mawSide: {
  27081. height: math.unit(12.8, "feet"),
  27082. name: "Maw (Side)",
  27083. image: {
  27084. source: "./media/characters/koros/maw-side.svg"
  27085. }
  27086. },
  27087. mawSpitting: {
  27088. height: math.unit(17, "feet"),
  27089. name: "Maw (Spitting)",
  27090. image: {
  27091. source: "./media/characters/koros/maw-spitting.svg"
  27092. }
  27093. },
  27094. slit: {
  27095. height: math.unit(2.8, "feet"),
  27096. name: "Slit",
  27097. image: {
  27098. source: "./media/characters/koros/slit.svg"
  27099. }
  27100. },
  27101. stomach: {
  27102. height: math.unit(6.8, "feet"),
  27103. preyCapacity: math.unit(20, "people"),
  27104. name: "Stomach",
  27105. image: {
  27106. source: "./media/characters/koros/stomach.svg"
  27107. }
  27108. },
  27109. wingspanBottom: {
  27110. height: math.unit(114, "feet"),
  27111. name: "Wingspan (Bottom)",
  27112. image: {
  27113. source: "./media/characters/koros/wingspan-bottom.svg"
  27114. }
  27115. },
  27116. wingspanTop: {
  27117. height: math.unit(104, "feet"),
  27118. name: "Wingspan (Top)",
  27119. image: {
  27120. source: "./media/characters/koros/wingspan-top.svg"
  27121. }
  27122. },
  27123. },
  27124. [
  27125. {
  27126. name: "Normal",
  27127. height: math.unit(31 + 8 / 12, "feet"),
  27128. default: true
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(18 + 5 / 12, "feet"),
  27137. weight: math.unit(3750, "kg"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/vexx/front.svg",
  27141. extra: 426 / 396,
  27142. bottom: 31.5 / 458
  27143. }
  27144. },
  27145. maw: {
  27146. height: math.unit(6, "feet"),
  27147. name: "Maw",
  27148. image: {
  27149. source: "./media/characters/vexx/maw.svg"
  27150. }
  27151. },
  27152. },
  27153. [
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(18 + 5 / 12, "feet"),
  27157. default: true
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(17 + 6 / 12, "feet"),
  27166. weight: math.unit(150, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/baadra/front.svg",
  27170. extra: 1694/1553,
  27171. bottom: 179/1873
  27172. }
  27173. },
  27174. frontAlt: {
  27175. height: math.unit(17 + 6 / 12, "feet"),
  27176. weight: math.unit(150, "lb"),
  27177. name: "Front (Alt)",
  27178. image: {
  27179. source: "./media/characters/baadra/front-alt.svg",
  27180. extra: 3137 / 2890,
  27181. bottom: 168.4 / 3305
  27182. }
  27183. },
  27184. back: {
  27185. height: math.unit(17 + 6 / 12, "feet"),
  27186. weight: math.unit(150, "lb"),
  27187. name: "Back",
  27188. image: {
  27189. source: "./media/characters/baadra/back.svg",
  27190. extra: 3142 / 2890,
  27191. bottom: 220 / 3371
  27192. }
  27193. },
  27194. head: {
  27195. height: math.unit(5.45, "feet"),
  27196. name: "Head",
  27197. image: {
  27198. source: "./media/characters/baadra/head.svg"
  27199. }
  27200. },
  27201. headAngry: {
  27202. height: math.unit(4.95, "feet"),
  27203. name: "Head (Angry)",
  27204. image: {
  27205. source: "./media/characters/baadra/head-angry.svg"
  27206. }
  27207. },
  27208. headOpen: {
  27209. height: math.unit(6, "feet"),
  27210. name: "Head (Open)",
  27211. image: {
  27212. source: "./media/characters/baadra/head-open.svg"
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(17 + 6 / 12, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(7 + 3 / 12, "feet"),
  27229. weight: math.unit(180, "lb"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/juri/front.svg",
  27233. extra: 1401 / 1237,
  27234. bottom: 18.5 / 1418
  27235. }
  27236. },
  27237. side: {
  27238. height: math.unit(7 + 3 / 12, "feet"),
  27239. weight: math.unit(180, "lb"),
  27240. name: "Side",
  27241. image: {
  27242. source: "./media/characters/juri/side.svg",
  27243. extra: 1424 / 1242,
  27244. bottom: 18.5 / 1447
  27245. }
  27246. },
  27247. sitting: {
  27248. height: math.unit(6, "feet"),
  27249. weight: math.unit(180, "lb"),
  27250. name: "Sitting",
  27251. image: {
  27252. source: "./media/characters/juri/sitting.svg",
  27253. extra: 1270 / 1143,
  27254. bottom: 100 / 1343
  27255. }
  27256. },
  27257. back: {
  27258. height: math.unit(7 + 3 / 12, "feet"),
  27259. weight: math.unit(180, "lb"),
  27260. name: "Back",
  27261. image: {
  27262. source: "./media/characters/juri/back.svg",
  27263. extra: 1377 / 1240,
  27264. bottom: 23.7 / 1405
  27265. }
  27266. },
  27267. maw: {
  27268. height: math.unit(2.8, "feet"),
  27269. name: "Maw",
  27270. image: {
  27271. source: "./media/characters/juri/maw.svg"
  27272. }
  27273. },
  27274. stomach: {
  27275. height: math.unit(0.89, "feet"),
  27276. preyCapacity: math.unit(4, "liters"),
  27277. name: "Stomach",
  27278. image: {
  27279. source: "./media/characters/juri/stomach.svg"
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Normal",
  27286. height: math.unit(7 + 3 / 12, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27293. {
  27294. fox: {
  27295. height: math.unit(5 + 6 / 12, "feet"),
  27296. weight: math.unit(140, "lb"),
  27297. name: "Fox",
  27298. image: {
  27299. source: "./media/characters/maxene-sita/fox.svg",
  27300. extra: 146 / 138,
  27301. bottom: 2.1 / 148.19
  27302. }
  27303. },
  27304. foxLaying: {
  27305. height: math.unit(1.70, "feet"),
  27306. weight: math.unit(140, "lb"),
  27307. name: "Fox (Laying)",
  27308. image: {
  27309. source: "./media/characters/maxene-sita/fox-laying.svg",
  27310. extra: 910 / 572,
  27311. bottom: 71 / 981
  27312. }
  27313. },
  27314. kitsune: {
  27315. height: math.unit(10, "feet"),
  27316. weight: math.unit(800, "lb"),
  27317. name: "Kitsune",
  27318. image: {
  27319. source: "./media/characters/maxene-sita/kitsune.svg",
  27320. extra: 185 / 176,
  27321. bottom: 4.7 / 189.9
  27322. }
  27323. },
  27324. hellhound: {
  27325. height: math.unit(10, "feet"),
  27326. weight: math.unit(700, "lb"),
  27327. name: "Hellhound",
  27328. image: {
  27329. source: "./media/characters/maxene-sita/hellhound.svg",
  27330. extra: 1600 / 1545,
  27331. bottom: 81 / 1681
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(5 + 6 / 12, "feet"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27345. {
  27346. front: {
  27347. height: math.unit(3 + 4 / 12, "feet"),
  27348. weight: math.unit(70, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/maia/front.svg",
  27352. extra: 227 / 219.5,
  27353. bottom: 40 / 267
  27354. }
  27355. },
  27356. back: {
  27357. height: math.unit(3 + 4 / 12, "feet"),
  27358. weight: math.unit(70, "lb"),
  27359. name: "Back",
  27360. image: {
  27361. source: "./media/characters/maia/back.svg",
  27362. extra: 237 / 225
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(3 + 4 / 12, "feet"),
  27370. default: true
  27371. },
  27372. ]
  27373. ))
  27374. characterMakers.push(() => makeCharacter(
  27375. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27376. {
  27377. front: {
  27378. height: math.unit(5 + 10 / 12, "feet"),
  27379. weight: math.unit(197, "lb"),
  27380. name: "Front",
  27381. image: {
  27382. source: "./media/characters/jabaro/front.svg",
  27383. extra: 225 / 216,
  27384. bottom: 5.06 / 230
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(5 + 10 / 12, "feet"),
  27389. weight: math.unit(197, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/jabaro/back.svg",
  27393. extra: 225 / 219,
  27394. bottom: 1.9 / 227
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(5 + 10 / 12, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(5 + 8 / 12, "feet"),
  27411. weight: math.unit(139, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/risa/front.svg",
  27415. extra: 270 / 260,
  27416. bottom: 11.2 / 282
  27417. }
  27418. },
  27419. back: {
  27420. height: math.unit(5 + 8 / 12, "feet"),
  27421. weight: math.unit(139, "lb"),
  27422. name: "Back",
  27423. image: {
  27424. source: "./media/characters/risa/back.svg",
  27425. extra: 264 / 255,
  27426. bottom: 4 / 268
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(5 + 8 / 12, "feet"),
  27434. default: true
  27435. },
  27436. ]
  27437. ))
  27438. characterMakers.push(() => makeCharacter(
  27439. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27440. {
  27441. front: {
  27442. height: math.unit(2 + 11 / 12, "feet"),
  27443. weight: math.unit(30, "lb"),
  27444. name: "Front",
  27445. image: {
  27446. source: "./media/characters/weatley/front.svg",
  27447. bottom: 10.7 / 414,
  27448. extra: 403.5 / 362
  27449. }
  27450. },
  27451. back: {
  27452. height: math.unit(2 + 11 / 12, "feet"),
  27453. weight: math.unit(30, "lb"),
  27454. name: "Back",
  27455. image: {
  27456. source: "./media/characters/weatley/back.svg",
  27457. bottom: 10.7 / 414,
  27458. extra: 403.5 / 362
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(2 + 11 / 12, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(5 + 2 / 12, "feet"),
  27475. weight: math.unit(50, "kg"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/mercury-crescent/front.svg",
  27479. extra: 1088 / 1033,
  27480. bottom: 18.9 / 1109
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(5 + 2 / 12, "feet"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(2, "feet"),
  27497. weight: math.unit(15, "kg"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/diamond-jones/front.svg",
  27501. extra: 727/723,
  27502. bottom: 46/773
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(2, "feet"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(3, "feet"),
  27519. weight: math.unit(30, "kg"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/sweet-bit/front.svg",
  27523. extra: 675 / 567,
  27524. bottom: 27.7 / 703
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(3, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27538. {
  27539. side: {
  27540. height: math.unit(9.178, "feet"),
  27541. weight: math.unit(500, "lb"),
  27542. name: "Side",
  27543. image: {
  27544. source: "./media/characters/umbrazen/side.svg",
  27545. extra: 1730 / 1473,
  27546. bottom: 34.6 / 1765
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(9.178, "feet"),
  27554. default: true
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(10, "feet"),
  27563. weight: math.unit(750, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/arlist/front.svg",
  27567. extra: 961 / 778,
  27568. bottom: 6.2 / 986
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(10, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(5 + 1 / 12, "feet"),
  27585. weight: math.unit(110, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/aradel/front.svg",
  27589. extra: 324 / 303,
  27590. bottom: 3.6 / 329.4
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(5 + 1 / 12, "feet"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27604. {
  27605. dressed: {
  27606. height: math.unit(3 + 8 / 12, "feet"),
  27607. weight: math.unit(50, "lb"),
  27608. name: "Dressed",
  27609. image: {
  27610. source: "./media/characters/serryn/dressed.svg",
  27611. extra: 1792 / 1656,
  27612. bottom: 43.5 / 1840
  27613. }
  27614. },
  27615. nude: {
  27616. height: math.unit(3 + 8 / 12, "feet"),
  27617. weight: math.unit(50, "lb"),
  27618. name: "Nude",
  27619. image: {
  27620. source: "./media/characters/serryn/nude.svg",
  27621. extra: 1792 / 1656,
  27622. bottom: 43.5 / 1840
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(3 + 8 / 12, "feet"),
  27630. default: true
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(7 + 10 / 12, "feet"),
  27639. weight: math.unit(255, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/xavier-thyme/front.svg",
  27643. extra: 3733 / 3642,
  27644. bottom: 131 / 3869
  27645. }
  27646. },
  27647. frontRaven: {
  27648. height: math.unit(7 + 10 / 12, "feet"),
  27649. weight: math.unit(255, "lb"),
  27650. name: "Front (Raven)",
  27651. image: {
  27652. source: "./media/characters/xavier-thyme/front-raven.svg",
  27653. extra: 4385 / 3642,
  27654. bottom: 131 / 4517
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(7 + 10 / 12, "feet"),
  27662. default: true
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(1.6, "m"),
  27671. weight: math.unit(50, "kg"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/kiki/front.svg",
  27675. extra: 4682 / 3610,
  27676. bottom: 115 / 4777
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(1.6, "meters"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(50, "m"),
  27693. weight: math.unit(500, "tonnes"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/ryoko/front.svg",
  27697. extra: 4632 / 3926,
  27698. bottom: 193 / 4823
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(50, "meters"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(30, "m"),
  27715. weight: math.unit(22, "tonnes"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/elio/front.svg",
  27719. extra: 4582 / 3720,
  27720. bottom: 236 / 4828
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(30, "meters"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(6 + 3 / 12, "feet"),
  27737. weight: math.unit(120, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/azura/front.svg",
  27741. extra: 1149 / 1135,
  27742. bottom: 45 / 1194
  27743. }
  27744. },
  27745. frontClothed: {
  27746. height: math.unit(6 + 3 / 12, "feet"),
  27747. weight: math.unit(120, "lb"),
  27748. name: "Front (Clothed)",
  27749. image: {
  27750. source: "./media/characters/azura/front-clothed.svg",
  27751. extra: 1149 / 1135,
  27752. bottom: 45 / 1194
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(6 + 3 / 12, "feet"),
  27760. default: true
  27761. },
  27762. {
  27763. name: "Macro",
  27764. height: math.unit(20 + 6 / 12, "feet")
  27765. },
  27766. {
  27767. name: "Megamacro",
  27768. height: math.unit(12, "miles")
  27769. },
  27770. {
  27771. name: "Gigamacro",
  27772. height: math.unit(10000, "miles")
  27773. },
  27774. {
  27775. name: "Teramacro",
  27776. height: math.unit(900000, "miles")
  27777. },
  27778. ]
  27779. ))
  27780. characterMakers.push(() => makeCharacter(
  27781. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27782. {
  27783. front: {
  27784. height: math.unit(12, "feet"),
  27785. weight: math.unit(1, "ton"),
  27786. capacity: math.unit(660000, "gallons"),
  27787. name: "Front",
  27788. image: {
  27789. source: "./media/characters/zeus/front.svg",
  27790. extra: 5005 / 4717,
  27791. bottom: 363 / 5388
  27792. }
  27793. },
  27794. },
  27795. [
  27796. {
  27797. name: "Normal",
  27798. height: math.unit(12, "feet")
  27799. },
  27800. {
  27801. name: "Preferred Size",
  27802. height: math.unit(0.5, "miles"),
  27803. default: true
  27804. },
  27805. {
  27806. name: "Giga Horse",
  27807. height: math.unit(300, "miles")
  27808. },
  27809. {
  27810. name: "Riding Planets",
  27811. height: math.unit(30, "megameters")
  27812. },
  27813. {
  27814. name: "Cosmic Giant",
  27815. height: math.unit(3, "zettameters")
  27816. },
  27817. {
  27818. name: "Breeding God",
  27819. height: math.unit(9.92e22, "yottameters")
  27820. },
  27821. ]
  27822. ))
  27823. characterMakers.push(() => makeCharacter(
  27824. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27825. {
  27826. side: {
  27827. height: math.unit(9, "feet"),
  27828. weight: math.unit(1500, "kg"),
  27829. name: "Side",
  27830. image: {
  27831. source: "./media/characters/fang/side.svg",
  27832. extra: 924 / 866,
  27833. bottom: 47.5 / 972.3
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Normal",
  27840. height: math.unit(9, "feet"),
  27841. default: true
  27842. },
  27843. {
  27844. name: "Macro",
  27845. height: math.unit(75 + 6 / 12, "feet")
  27846. },
  27847. {
  27848. name: "Teramacro",
  27849. height: math.unit(50000, "miles")
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(10, "feet"),
  27858. weight: math.unit(2, "tons"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/rekhit/front.svg",
  27862. extra: 2796 / 2590,
  27863. bottom: 225 / 3022
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(10, "feet"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Macro",
  27875. height: math.unit(500, "feet")
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(7 + 6.451 / 12, "feet"),
  27884. weight: math.unit(310, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/dahlia-verrick/front.svg",
  27888. extra: 1488 / 1365,
  27889. bottom: 6.2 / 1495
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(7 + 6.451 / 12, "feet"),
  27894. weight: math.unit(310, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/dahlia-verrick/back.svg",
  27898. extra: 1472 / 1351,
  27899. bottom: 5.28 / 1477
  27900. }
  27901. },
  27902. frontBusiness: {
  27903. height: math.unit(7 + 6.451 / 12, "feet"),
  27904. weight: math.unit(200, "lb"),
  27905. name: "Front (Business)",
  27906. image: {
  27907. source: "./media/characters/dahlia-verrick/front-business.svg",
  27908. extra: 1478 / 1381,
  27909. bottom: 5.5 / 1484
  27910. }
  27911. },
  27912. frontCasual: {
  27913. height: math.unit(7 + 6.451 / 12, "feet"),
  27914. weight: math.unit(200, "lb"),
  27915. name: "Front (Casual)",
  27916. image: {
  27917. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27918. extra: 1478 / 1381,
  27919. bottom: 5.5 / 1484
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Travel-Sized",
  27926. height: math.unit(7.45, "inches")
  27927. },
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(7 + 6.451 / 12, "feet"),
  27931. default: true
  27932. },
  27933. {
  27934. name: "Hitting the Town",
  27935. height: math.unit(37 + 8 / 12, "feet")
  27936. },
  27937. {
  27938. name: "Stomp in the Suburbs",
  27939. height: math.unit(964 + 9.728 / 12, "feet")
  27940. },
  27941. {
  27942. name: "Sit on the City",
  27943. height: math.unit(61747 + 10.592 / 12, "feet")
  27944. },
  27945. {
  27946. name: "Glomp the Globe",
  27947. height: math.unit(252919327 + 4.832 / 12, "feet")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(6 + 4 / 12, "feet"),
  27956. weight: math.unit(320, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/balina-mahigan/front.svg",
  27960. extra: 447 / 428,
  27961. bottom: 18 / 466
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(6 + 4 / 12, "feet"),
  27966. weight: math.unit(320, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/balina-mahigan/back.svg",
  27970. extra: 445 / 428,
  27971. bottom: 4.07 / 448
  27972. }
  27973. },
  27974. arm: {
  27975. height: math.unit(1.88, "feet"),
  27976. name: "Arm",
  27977. image: {
  27978. source: "./media/characters/balina-mahigan/arm.svg"
  27979. }
  27980. },
  27981. backPort: {
  27982. height: math.unit(0.685, "feet"),
  27983. name: "Back Port",
  27984. image: {
  27985. source: "./media/characters/balina-mahigan/back-port.svg"
  27986. }
  27987. },
  27988. hoofpaw: {
  27989. height: math.unit(1.41, "feet"),
  27990. name: "Hoofpaw",
  27991. image: {
  27992. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27993. }
  27994. },
  27995. leftHandBack: {
  27996. height: math.unit(0.938, "feet"),
  27997. name: "Left Hand (Back)",
  27998. image: {
  27999. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28000. }
  28001. },
  28002. leftHandFront: {
  28003. height: math.unit(0.938, "feet"),
  28004. name: "Left Hand (Front)",
  28005. image: {
  28006. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28007. }
  28008. },
  28009. rightHandBack: {
  28010. height: math.unit(0.95, "feet"),
  28011. name: "Right Hand (Back)",
  28012. image: {
  28013. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28014. }
  28015. },
  28016. rightHandFront: {
  28017. height: math.unit(0.95, "feet"),
  28018. name: "Right Hand (Front)",
  28019. image: {
  28020. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(6 + 4 / 12, "feet"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(6, "feet"),
  28037. weight: math.unit(320, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/balina-mejeri/front.svg",
  28041. extra: 517 / 488,
  28042. bottom: 44.2 / 561
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Normal",
  28049. height: math.unit(6 + 4 / 12, "feet")
  28050. },
  28051. {
  28052. name: "Business",
  28053. height: math.unit(155, "feet"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28060. {
  28061. kneeling: {
  28062. height: math.unit(6 + 4 / 12, "feet"),
  28063. weight: math.unit(300 * 20, "lb"),
  28064. name: "Kneeling",
  28065. image: {
  28066. source: "./media/characters/balbarian/kneeling.svg",
  28067. extra: 922 / 862,
  28068. bottom: 42.4 / 965
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(6 + 4 / 12, "feet")
  28076. },
  28077. {
  28078. name: "Treasured",
  28079. height: math.unit(18 + 9 / 12, "feet"),
  28080. default: true
  28081. },
  28082. {
  28083. name: "Macro",
  28084. height: math.unit(900, "feet")
  28085. },
  28086. ]
  28087. ))
  28088. characterMakers.push(() => makeCharacter(
  28089. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28090. {
  28091. front: {
  28092. height: math.unit(6 + 4 / 12, "feet"),
  28093. weight: math.unit(325, "lb"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/balina-amarini/front.svg",
  28097. extra: 415 / 403,
  28098. bottom: 19 / 433.4
  28099. }
  28100. },
  28101. back: {
  28102. height: math.unit(6 + 4 / 12, "feet"),
  28103. weight: math.unit(325, "lb"),
  28104. name: "Back",
  28105. image: {
  28106. source: "./media/characters/balina-amarini/back.svg",
  28107. extra: 415 / 403,
  28108. bottom: 13.5 / 432
  28109. }
  28110. },
  28111. overdrive: {
  28112. height: math.unit(6 + 4 / 12, "feet"),
  28113. weight: math.unit(400, "lb"),
  28114. name: "Overdrive",
  28115. image: {
  28116. source: "./media/characters/balina-amarini/overdrive.svg",
  28117. extra: 269 / 259,
  28118. bottom: 12 / 282
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Boom",
  28125. height: math.unit(9 + 10 / 12, "feet"),
  28126. default: true
  28127. },
  28128. {
  28129. name: "Macro",
  28130. height: math.unit(280, "feet")
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28136. {
  28137. goddess: {
  28138. height: math.unit(600, "feet"),
  28139. weight: math.unit(2000000, "tons"),
  28140. name: "Goddess",
  28141. image: {
  28142. source: "./media/characters/lady-kubwa/goddess.svg",
  28143. extra: 1240.5 / 1223,
  28144. bottom: 22 / 1263
  28145. }
  28146. },
  28147. goddesser: {
  28148. height: math.unit(900, "feet"),
  28149. weight: math.unit(20000000, "lb"),
  28150. name: "Goddess-er",
  28151. image: {
  28152. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28153. extra: 899 / 888,
  28154. bottom: 12.6 / 912
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Macro",
  28161. height: math.unit(600, "feet"),
  28162. default: true
  28163. },
  28164. {
  28165. name: "Megamacro",
  28166. height: math.unit(250, "miles")
  28167. },
  28168. ]
  28169. ))
  28170. characterMakers.push(() => makeCharacter(
  28171. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28172. {
  28173. front: {
  28174. height: math.unit(7 + 7 / 12, "feet"),
  28175. weight: math.unit(250, "lb"),
  28176. name: "Front",
  28177. image: {
  28178. source: "./media/characters/tala-grovehorn/front.svg",
  28179. extra: 2636 / 2525,
  28180. bottom: 147 / 2781
  28181. }
  28182. },
  28183. back: {
  28184. height: math.unit(7 + 7 / 12, "feet"),
  28185. weight: math.unit(250, "lb"),
  28186. name: "Back",
  28187. image: {
  28188. source: "./media/characters/tala-grovehorn/back.svg",
  28189. extra: 2635 / 2539,
  28190. bottom: 100 / 2732.8
  28191. }
  28192. },
  28193. mouth: {
  28194. height: math.unit(1.15, "feet"),
  28195. name: "Mouth",
  28196. image: {
  28197. source: "./media/characters/tala-grovehorn/mouth.svg"
  28198. }
  28199. },
  28200. dick: {
  28201. height: math.unit(2.36, "feet"),
  28202. name: "Dick",
  28203. image: {
  28204. source: "./media/characters/tala-grovehorn/dick.svg"
  28205. }
  28206. },
  28207. slit: {
  28208. height: math.unit(0.61, "feet"),
  28209. name: "Slit",
  28210. image: {
  28211. source: "./media/characters/tala-grovehorn/slit.svg"
  28212. }
  28213. },
  28214. },
  28215. [
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28220. {
  28221. front: {
  28222. height: math.unit(7 + 7 / 12, "feet"),
  28223. weight: math.unit(225, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/epona/front.svg",
  28227. extra: 2445 / 2290,
  28228. bottom: 251 / 2696
  28229. }
  28230. },
  28231. back: {
  28232. height: math.unit(7 + 7 / 12, "feet"),
  28233. weight: math.unit(225, "lb"),
  28234. name: "Back",
  28235. image: {
  28236. source: "./media/characters/epona/back.svg",
  28237. extra: 2546 / 2408,
  28238. bottom: 44 / 2589
  28239. }
  28240. },
  28241. genitals: {
  28242. height: math.unit(1.5, "feet"),
  28243. name: "Genitals",
  28244. image: {
  28245. source: "./media/characters/epona/genitals.svg"
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(7 + 7 / 12, "feet"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(7, "feet"),
  28262. weight: math.unit(518, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/avia-bloodbourn/front.svg",
  28266. extra: 1466 / 1350,
  28267. bottom: 65 / 1527
  28268. }
  28269. },
  28270. },
  28271. [
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28276. {
  28277. front: {
  28278. height: math.unit(9.35, "feet"),
  28279. weight: math.unit(600, "lb"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/amera/front.svg",
  28283. extra: 891 / 818,
  28284. bottom: 30 / 922.7
  28285. }
  28286. },
  28287. back: {
  28288. height: math.unit(9.35, "feet"),
  28289. weight: math.unit(600, "lb"),
  28290. name: "Back",
  28291. image: {
  28292. source: "./media/characters/amera/back.svg",
  28293. extra: 876 / 824,
  28294. bottom: 6.8 / 884
  28295. }
  28296. },
  28297. dick: {
  28298. height: math.unit(2.14, "feet"),
  28299. name: "Dick",
  28300. image: {
  28301. source: "./media/characters/amera/dick.svg"
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(9.35, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28315. {
  28316. kneeling: {
  28317. height: math.unit(3 + 4 / 12, "feet"),
  28318. weight: math.unit(90, "lb"),
  28319. name: "Kneeling",
  28320. image: {
  28321. source: "./media/characters/rosewen/kneeling.svg",
  28322. extra: 1835 / 1571,
  28323. bottom: 27.7 / 1862
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(3 + 4 / 12, "feet"),
  28331. default: true
  28332. },
  28333. ]
  28334. ))
  28335. characterMakers.push(() => makeCharacter(
  28336. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28337. {
  28338. front: {
  28339. height: math.unit(5 + 10 / 12, "feet"),
  28340. weight: math.unit(200, "lb"),
  28341. name: "Front",
  28342. image: {
  28343. source: "./media/characters/sabah/front.svg",
  28344. extra: 849 / 763,
  28345. bottom: 33.9 / 881
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(5 + 10 / 12, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28359. {
  28360. front: {
  28361. height: math.unit(3 + 5 / 12, "feet"),
  28362. weight: math.unit(40, "kg"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/purple-flame/front.svg",
  28366. extra: 1577 / 1412,
  28367. bottom: 97 / 1694
  28368. }
  28369. },
  28370. frontDressed: {
  28371. height: math.unit(3 + 5 / 12, "feet"),
  28372. weight: math.unit(40, "kg"),
  28373. name: "Front (Dressed)",
  28374. image: {
  28375. source: "./media/characters/purple-flame/front-dressed.svg",
  28376. extra: 1577 / 1412,
  28377. bottom: 97 / 1694
  28378. }
  28379. },
  28380. headphones: {
  28381. height: math.unit(0.85, "feet"),
  28382. name: "Headphones",
  28383. image: {
  28384. source: "./media/characters/purple-flame/headphones.svg"
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Really Small",
  28391. height: math.unit(5, "cm")
  28392. },
  28393. {
  28394. name: "Micro",
  28395. height: math.unit(1 + 5 / 12, "feet")
  28396. },
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(3 + 5 / 12, "feet"),
  28400. default: true
  28401. },
  28402. {
  28403. name: "Minimacro",
  28404. height: math.unit(125, "feet")
  28405. },
  28406. {
  28407. name: "Macro",
  28408. height: math.unit(0.5, "miles")
  28409. },
  28410. {
  28411. name: "Megamacro",
  28412. height: math.unit(50, "miles")
  28413. },
  28414. {
  28415. name: "Gigantic",
  28416. height: math.unit(750, "miles")
  28417. },
  28418. {
  28419. name: "Planetary",
  28420. height: math.unit(15000, "miles")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(14, "feet"),
  28429. weight: math.unit(959, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/arsenal/front.svg",
  28433. extra: 2357 / 2157,
  28434. bottom: 93 / 2458
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(14, "feet"),
  28442. default: true
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(6, "feet"),
  28451. weight: math.unit(150, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/adira/front.svg",
  28455. extra: 1078 / 1029,
  28456. bottom: 87 / 1166
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Micro",
  28463. height: math.unit(4, "inches"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(50, "feet")
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(16, "feet"),
  28477. weight: math.unit(1000, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/grim/front.svg",
  28481. extra: 622 / 614,
  28482. bottom: 18.1 / 642
  28483. }
  28484. },
  28485. back: {
  28486. height: math.unit(16, "feet"),
  28487. weight: math.unit(1000, "lb"),
  28488. name: "Back",
  28489. image: {
  28490. source: "./media/characters/grim/back.svg",
  28491. extra: 610.6 / 602,
  28492. bottom: 40.8 / 652
  28493. }
  28494. },
  28495. hunched: {
  28496. height: math.unit(9.75, "feet"),
  28497. weight: math.unit(1000, "lb"),
  28498. name: "Hunched",
  28499. image: {
  28500. source: "./media/characters/grim/hunched.svg",
  28501. extra: 304 / 297,
  28502. bottom: 35.4 / 394
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(16, "feet"),
  28510. default: true
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(2.3, "meters"),
  28519. weight: math.unit(300, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/sinja/front-sfw.svg",
  28523. extra: 1393 / 1294,
  28524. bottom: 70 / 1463
  28525. }
  28526. },
  28527. frontNsfw: {
  28528. height: math.unit(2.3, "meters"),
  28529. weight: math.unit(300, "lb"),
  28530. name: "Front (NSFW)",
  28531. image: {
  28532. source: "./media/characters/sinja/front-nsfw.svg",
  28533. extra: 1393 / 1294,
  28534. bottom: 70 / 1463
  28535. }
  28536. },
  28537. back: {
  28538. height: math.unit(2.3, "meters"),
  28539. weight: math.unit(300, "lb"),
  28540. name: "Back",
  28541. image: {
  28542. source: "./media/characters/sinja/back.svg",
  28543. extra: 1393 / 1294,
  28544. bottom: 70 / 1463
  28545. }
  28546. },
  28547. head: {
  28548. height: math.unit(1.771, "feet"),
  28549. name: "Head",
  28550. image: {
  28551. source: "./media/characters/sinja/head.svg"
  28552. }
  28553. },
  28554. slit: {
  28555. height: math.unit(0.8, "feet"),
  28556. name: "Slit",
  28557. image: {
  28558. source: "./media/characters/sinja/slit.svg"
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(2.3, "meters")
  28566. },
  28567. {
  28568. name: "Macro",
  28569. height: math.unit(91, "meters"),
  28570. default: true
  28571. },
  28572. {
  28573. name: "Megamacro",
  28574. height: math.unit(91440, "meters")
  28575. },
  28576. {
  28577. name: "Gigamacro",
  28578. height: math.unit(60960000, "meters")
  28579. },
  28580. {
  28581. name: "Teramacro",
  28582. height: math.unit(9144000000, "meters")
  28583. },
  28584. ]
  28585. ))
  28586. characterMakers.push(() => makeCharacter(
  28587. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28588. {
  28589. front: {
  28590. height: math.unit(1.7, "meters"),
  28591. weight: math.unit(130, "lb"),
  28592. name: "Front",
  28593. image: {
  28594. source: "./media/characters/kyu/front.svg",
  28595. extra: 415 / 395,
  28596. bottom: 5 / 420
  28597. }
  28598. },
  28599. head: {
  28600. height: math.unit(1.75, "feet"),
  28601. name: "Head",
  28602. image: {
  28603. source: "./media/characters/kyu/head.svg"
  28604. }
  28605. },
  28606. foot: {
  28607. height: math.unit(0.81, "feet"),
  28608. name: "Foot",
  28609. image: {
  28610. source: "./media/characters/kyu/foot.svg"
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(1.7, "meters")
  28618. },
  28619. {
  28620. name: "Macro",
  28621. height: math.unit(131, "feet"),
  28622. default: true
  28623. },
  28624. {
  28625. name: "Megamacro",
  28626. height: math.unit(91440, "meters")
  28627. },
  28628. {
  28629. name: "Gigamacro",
  28630. height: math.unit(60960000, "meters")
  28631. },
  28632. {
  28633. name: "Teramacro",
  28634. height: math.unit(9144000000, "meters")
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(7 + 1 / 12, "feet"),
  28643. weight: math.unit(250, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/joey/front.svg",
  28647. extra: 1791 / 1537,
  28648. bottom: 28 / 1816
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Micro",
  28655. height: math.unit(3, "inches")
  28656. },
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(7 + 1 / 12, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(165, "cm"),
  28669. weight: math.unit(140, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/sam-evans/front.svg",
  28673. extra: 3417 / 3230,
  28674. bottom: 41.3 / 3417
  28675. }
  28676. },
  28677. frontSixTails: {
  28678. height: math.unit(165, "cm"),
  28679. weight: math.unit(140, "lb"),
  28680. name: "Front-six-tails",
  28681. image: {
  28682. source: "./media/characters/sam-evans/front-six-tails.svg",
  28683. extra: 3417 / 3230,
  28684. bottom: 41.3 / 3417
  28685. }
  28686. },
  28687. back: {
  28688. height: math.unit(165, "cm"),
  28689. weight: math.unit(140, "lb"),
  28690. name: "Back",
  28691. image: {
  28692. source: "./media/characters/sam-evans/back.svg",
  28693. extra: 3227 / 3032,
  28694. bottom: 6.8 / 3234
  28695. }
  28696. },
  28697. face: {
  28698. height: math.unit(0.68, "feet"),
  28699. name: "Face",
  28700. image: {
  28701. source: "./media/characters/sam-evans/face.svg"
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(165, "cm"),
  28709. default: true
  28710. },
  28711. {
  28712. name: "Macro",
  28713. height: math.unit(100, "meters")
  28714. },
  28715. {
  28716. name: "Macro+",
  28717. height: math.unit(800, "meters")
  28718. },
  28719. {
  28720. name: "Macro++",
  28721. height: math.unit(3, "km")
  28722. },
  28723. {
  28724. name: "Macro+++",
  28725. height: math.unit(30, "km")
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(10, "feet"),
  28734. weight: math.unit(750, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/juliet-a/front.svg",
  28738. extra: 1766 / 1720,
  28739. bottom: 43 / 1809
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(10, "feet"),
  28744. weight: math.unit(750, "lb"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/juliet-a/back.svg",
  28748. extra: 1781 / 1734,
  28749. bottom: 35 / 1810,
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(10, "feet"),
  28757. default: true
  28758. },
  28759. {
  28760. name: "Dragon Form",
  28761. height: math.unit(250, "feet")
  28762. },
  28763. {
  28764. name: "Macro",
  28765. height: math.unit(1000, "feet")
  28766. },
  28767. {
  28768. name: "Megamacro",
  28769. height: math.unit(10000, "feet")
  28770. }
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28775. {
  28776. regular: {
  28777. height: math.unit(7 + 3 / 12, "feet"),
  28778. weight: math.unit(260, "lb"),
  28779. name: "Regular",
  28780. image: {
  28781. source: "./media/characters/wild/regular.svg",
  28782. extra: 97.45 / 92,
  28783. bottom: 6.8 / 104.3
  28784. }
  28785. },
  28786. biggums: {
  28787. height: math.unit(8 + 6 / 12, "feet"),
  28788. weight: math.unit(425, "lb"),
  28789. name: "Biggums",
  28790. image: {
  28791. source: "./media/characters/wild/biggums.svg",
  28792. extra: 97.45 / 92,
  28793. bottom: 7.5 / 132.34
  28794. }
  28795. },
  28796. mawRegular: {
  28797. height: math.unit(1.24, "feet"),
  28798. name: "Maw (Regular)",
  28799. image: {
  28800. source: "./media/characters/wild/maw.svg"
  28801. }
  28802. },
  28803. mawBiggums: {
  28804. height: math.unit(1.47, "feet"),
  28805. name: "Maw (Biggums)",
  28806. image: {
  28807. source: "./media/characters/wild/maw.svg"
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(7 + 3 / 12, "feet"),
  28815. default: true
  28816. },
  28817. ]
  28818. ))
  28819. characterMakers.push(() => makeCharacter(
  28820. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28821. {
  28822. front: {
  28823. height: math.unit(2.5, "meters"),
  28824. weight: math.unit(200, "kg"),
  28825. name: "Front",
  28826. image: {
  28827. source: "./media/characters/vidar/front.svg",
  28828. extra: 2994 / 2795,
  28829. bottom: 56 / 3061
  28830. }
  28831. },
  28832. back: {
  28833. height: math.unit(2.5, "meters"),
  28834. weight: math.unit(200, "kg"),
  28835. name: "Back",
  28836. image: {
  28837. source: "./media/characters/vidar/back.svg",
  28838. extra: 3131 / 2928,
  28839. bottom: 13.5 / 3141.5
  28840. }
  28841. },
  28842. feral: {
  28843. height: math.unit(2.5, "meters"),
  28844. weight: math.unit(2000, "kg"),
  28845. name: "Feral",
  28846. image: {
  28847. source: "./media/characters/vidar/feral.svg",
  28848. extra: 2790 / 1765,
  28849. bottom: 6 / 2796
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(2.5, "meters"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(100, "meters")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(5 + 9 / 12, "feet"),
  28870. weight: math.unit(120, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/ash/front.svg",
  28874. extra: 2189 / 1961,
  28875. bottom: 5.2 / 2194
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(5 + 9 / 12, "feet"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(9, "feet"),
  28892. weight: math.unit(10000, "lb"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/gygabite/front.svg",
  28896. bottom: 31.7 / 537.8,
  28897. extra: 505 / 370
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(9, "feet"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(12, "feet"),
  28914. weight: math.unit(4000, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/p0tat0/front.svg",
  28918. extra: 1065 / 921,
  28919. bottom: 55.7 / 1121.25
  28920. }
  28921. },
  28922. },
  28923. [
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(12, "feet"),
  28927. default: true
  28928. },
  28929. ]
  28930. ))
  28931. characterMakers.push(() => makeCharacter(
  28932. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28933. {
  28934. side: {
  28935. height: math.unit(6.5, "feet"),
  28936. weight: math.unit(800, "lb"),
  28937. name: "Side",
  28938. image: {
  28939. source: "./media/characters/dusk/side.svg",
  28940. extra: 615 / 373,
  28941. bottom: 53 / 664
  28942. }
  28943. },
  28944. sitting: {
  28945. height: math.unit(7, "feet"),
  28946. weight: math.unit(800, "lb"),
  28947. name: "Sitting",
  28948. image: {
  28949. source: "./media/characters/dusk/sitting.svg",
  28950. extra: 753 / 425,
  28951. bottom: 33 / 774
  28952. }
  28953. },
  28954. head: {
  28955. height: math.unit(6.1, "feet"),
  28956. name: "Head",
  28957. image: {
  28958. source: "./media/characters/dusk/head.svg"
  28959. }
  28960. },
  28961. },
  28962. [
  28963. {
  28964. name: "Normal",
  28965. height: math.unit(7, "feet"),
  28966. default: true
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28972. {
  28973. front: {
  28974. height: math.unit(15, "feet"),
  28975. weight: math.unit(7000, "lb"),
  28976. name: "Front",
  28977. image: {
  28978. source: "./media/characters/jay-direwolf/front.svg",
  28979. extra: 1810 / 1732,
  28980. bottom: 66 / 1892
  28981. }
  28982. },
  28983. },
  28984. [
  28985. {
  28986. name: "Normal",
  28987. height: math.unit(15, "feet"),
  28988. default: true
  28989. },
  28990. ]
  28991. ))
  28992. characterMakers.push(() => makeCharacter(
  28993. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28994. {
  28995. front: {
  28996. height: math.unit(4 + 9 / 12, "feet"),
  28997. weight: math.unit(130, "lb"),
  28998. name: "Front",
  28999. image: {
  29000. source: "./media/characters/anchovie/front.svg",
  29001. extra: 382 / 350,
  29002. bottom: 25 / 409
  29003. }
  29004. },
  29005. back: {
  29006. height: math.unit(4 + 9 / 12, "feet"),
  29007. weight: math.unit(130, "lb"),
  29008. name: "Back",
  29009. image: {
  29010. source: "./media/characters/anchovie/back.svg",
  29011. extra: 385 / 352,
  29012. bottom: 16.6 / 402
  29013. }
  29014. },
  29015. frontDressed: {
  29016. height: math.unit(4 + 9 / 12, "feet"),
  29017. weight: math.unit(130, "lb"),
  29018. name: "Front (Dressed)",
  29019. image: {
  29020. source: "./media/characters/anchovie/front-dressed.svg",
  29021. extra: 382 / 350,
  29022. bottom: 25 / 409
  29023. }
  29024. },
  29025. backDressed: {
  29026. height: math.unit(4 + 9 / 12, "feet"),
  29027. weight: math.unit(130, "lb"),
  29028. name: "Back (Dressed)",
  29029. image: {
  29030. source: "./media/characters/anchovie/back-dressed.svg",
  29031. extra: 385 / 352,
  29032. bottom: 16.6 / 402
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Micro",
  29039. height: math.unit(6.4, "inches")
  29040. },
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(4 + 9 / 12, "feet"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(2, "meters"),
  29053. weight: math.unit(180, "lb"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/acidrenamon/front.svg",
  29057. extra: 987 / 890,
  29058. bottom: 22.8 / 1009
  29059. }
  29060. },
  29061. back: {
  29062. height: math.unit(2, "meters"),
  29063. weight: math.unit(180, "lb"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/acidrenamon/back.svg",
  29067. extra: 983 / 891,
  29068. bottom: 8.4 / 992
  29069. }
  29070. },
  29071. head: {
  29072. height: math.unit(1.92, "feet"),
  29073. name: "Head",
  29074. image: {
  29075. source: "./media/characters/acidrenamon/head.svg"
  29076. }
  29077. },
  29078. rump: {
  29079. height: math.unit(1.72, "feet"),
  29080. name: "Rump",
  29081. image: {
  29082. source: "./media/characters/acidrenamon/rump.svg"
  29083. }
  29084. },
  29085. tail: {
  29086. height: math.unit(4.2, "feet"),
  29087. name: "Tail",
  29088. image: {
  29089. source: "./media/characters/acidrenamon/tail.svg"
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(2, "meters"),
  29097. default: true
  29098. },
  29099. {
  29100. name: "Minimacro",
  29101. height: math.unit(7, "meters")
  29102. },
  29103. {
  29104. name: "Macro",
  29105. height: math.unit(200, "meters")
  29106. },
  29107. {
  29108. name: "Gigamacro",
  29109. height: math.unit(0.2, "earths")
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(152, "feet"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/kenzie-lee/front.svg",
  29121. extra: 1869/1774,
  29122. bottom: 128/1997
  29123. }
  29124. },
  29125. side: {
  29126. height: math.unit(86, "feet"),
  29127. name: "Side",
  29128. image: {
  29129. source: "./media/characters/kenzie-lee/side.svg",
  29130. extra: 930/815,
  29131. bottom: 177/1107
  29132. }
  29133. },
  29134. paw: {
  29135. height: math.unit(15, "feet"),
  29136. name: "Paw",
  29137. image: {
  29138. source: "./media/characters/kenzie-lee/paw.svg"
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Kenzie Flea",
  29145. height: math.unit(2, "mm"),
  29146. default: true
  29147. },
  29148. {
  29149. name: "Micro",
  29150. height: math.unit(2, "inches")
  29151. },
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(152, "feet")
  29155. },
  29156. {
  29157. name: "Megamacro",
  29158. height: math.unit(7, "miles")
  29159. },
  29160. {
  29161. name: "Gigamacro",
  29162. height: math.unit(8000, "miles")
  29163. },
  29164. ]
  29165. ))
  29166. characterMakers.push(() => makeCharacter(
  29167. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29168. {
  29169. front: {
  29170. height: math.unit(6, "feet"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/withers/front.svg",
  29174. extra: 1935/1760,
  29175. bottom: 72/2007
  29176. }
  29177. },
  29178. back: {
  29179. height: math.unit(6, "feet"),
  29180. name: "Back",
  29181. image: {
  29182. source: "./media/characters/withers/back.svg",
  29183. extra: 1944/1792,
  29184. bottom: 12/1956
  29185. }
  29186. },
  29187. dressed: {
  29188. height: math.unit(6, "feet"),
  29189. name: "Dressed",
  29190. image: {
  29191. source: "./media/characters/withers/dressed.svg",
  29192. extra: 1937/1765,
  29193. bottom: 73/2010
  29194. }
  29195. },
  29196. phase1: {
  29197. height: math.unit(1.1, "feet"),
  29198. name: "Phase 1",
  29199. image: {
  29200. source: "./media/characters/withers/phase-1.svg",
  29201. extra: 1885/1232,
  29202. bottom: 0/1885
  29203. }
  29204. },
  29205. phase2: {
  29206. height: math.unit(1.05, "feet"),
  29207. name: "Phase 2",
  29208. image: {
  29209. source: "./media/characters/withers/phase-2.svg",
  29210. extra: 1792/1090,
  29211. bottom: 0/1792
  29212. }
  29213. },
  29214. partyWipe: {
  29215. height: math.unit(1.1, "feet"),
  29216. name: "Party Wipe",
  29217. image: {
  29218. source: "./media/characters/withers/party-wipe.svg",
  29219. extra: 1864/1207,
  29220. bottom: 0/1864
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Macro",
  29227. height: math.unit(167, "feet"),
  29228. default: true
  29229. },
  29230. {
  29231. name: "Megamacro",
  29232. height: math.unit(15, "miles")
  29233. }
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(6 + 7 / 12, "feet"),
  29241. weight: math.unit(250, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/nemoskii/front.svg",
  29245. extra: 2270 / 1734,
  29246. bottom: 86 / 2354
  29247. }
  29248. },
  29249. back: {
  29250. height: math.unit(6 + 7 / 12, "feet"),
  29251. weight: math.unit(250, "lb"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/nemoskii/back.svg",
  29255. extra: 1845 / 1788,
  29256. bottom: 10.5 / 1852
  29257. }
  29258. },
  29259. head: {
  29260. height: math.unit(1.31, "feet"),
  29261. name: "Head",
  29262. image: {
  29263. source: "./media/characters/nemoskii/head.svg"
  29264. }
  29265. },
  29266. },
  29267. [
  29268. {
  29269. name: "Micro",
  29270. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29271. },
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(6 + 7 / 12, "feet"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "Macro",
  29279. height: math.unit((6 + 7 / 12) * 150, "feet")
  29280. },
  29281. {
  29282. name: "Macro+",
  29283. height: math.unit((6 + 7 / 12) * 500, "feet")
  29284. },
  29285. {
  29286. name: "Megamacro",
  29287. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(1, "mile"),
  29296. weight: math.unit(265261.9, "lb"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/shui/front.svg",
  29300. extra: 1633 / 1564,
  29301. bottom: 91.5 / 1726
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Macro",
  29308. height: math.unit(1, "mile"),
  29309. default: true
  29310. },
  29311. ]
  29312. ))
  29313. characterMakers.push(() => makeCharacter(
  29314. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29315. {
  29316. front: {
  29317. height: math.unit(12 + 6 / 12, "feet"),
  29318. weight: math.unit(1342, "lb"),
  29319. name: "Front",
  29320. image: {
  29321. source: "./media/characters/arokh-takakura/front.svg",
  29322. extra: 1089 / 1043,
  29323. bottom: 77.4 / 1176.7
  29324. }
  29325. },
  29326. back: {
  29327. height: math.unit(12 + 6 / 12, "feet"),
  29328. weight: math.unit(1342, "lb"),
  29329. name: "Back",
  29330. image: {
  29331. source: "./media/characters/arokh-takakura/back.svg",
  29332. extra: 1046 / 1019,
  29333. bottom: 102 / 1150
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Big",
  29340. height: math.unit(12 + 6 / 12, "feet"),
  29341. default: true
  29342. },
  29343. ]
  29344. ))
  29345. characterMakers.push(() => makeCharacter(
  29346. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29347. {
  29348. front: {
  29349. height: math.unit(5 + 6 / 12, "feet"),
  29350. weight: math.unit(150, "lb"),
  29351. name: "Front",
  29352. image: {
  29353. source: "./media/characters/theo/front.svg",
  29354. extra: 1184 / 1131,
  29355. bottom: 7.4 / 1191
  29356. }
  29357. },
  29358. },
  29359. [
  29360. {
  29361. name: "Micro",
  29362. height: math.unit(5, "inches")
  29363. },
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(5 + 6 / 12, "feet"),
  29367. default: true
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(5 + 9 / 12, "feet"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/cecelia-swift/front.svg",
  29380. extra: 502 / 484,
  29381. bottom: 23 / 523
  29382. }
  29383. },
  29384. back: {
  29385. height: math.unit(5 + 9 / 12, "feet"),
  29386. weight: math.unit(130, "lb"),
  29387. name: "Back",
  29388. image: {
  29389. source: "./media/characters/cecelia-swift/back.svg",
  29390. extra: 499 / 485,
  29391. bottom: 12 / 511
  29392. }
  29393. },
  29394. head: {
  29395. height: math.unit(0.90, "feet"),
  29396. name: "Head",
  29397. image: {
  29398. source: "./media/characters/cecelia-swift/head.svg"
  29399. }
  29400. },
  29401. rump: {
  29402. height: math.unit(1.75, "feet"),
  29403. name: "Rump",
  29404. image: {
  29405. source: "./media/characters/cecelia-swift/rump.svg"
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Normal",
  29412. height: math.unit(5 + 9 / 12, "feet"),
  29413. default: true
  29414. },
  29415. {
  29416. name: "Big",
  29417. height: math.unit(50, "feet")
  29418. },
  29419. {
  29420. name: "Macro",
  29421. height: math.unit(100, "feet")
  29422. },
  29423. {
  29424. name: "Macro+",
  29425. height: math.unit(500, "feet")
  29426. },
  29427. {
  29428. name: "Macro++",
  29429. height: math.unit(1000, "feet")
  29430. },
  29431. ]
  29432. ))
  29433. characterMakers.push(() => makeCharacter(
  29434. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29435. {
  29436. front: {
  29437. height: math.unit(6, "feet"),
  29438. weight: math.unit(150, "lb"),
  29439. name: "Front",
  29440. image: {
  29441. source: "./media/characters/kaunan/front.svg",
  29442. extra: 2890 / 2523,
  29443. bottom: 49 / 2939
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(150, "feet"),
  29451. default: true
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29457. {
  29458. dressed: {
  29459. height: math.unit(175, "cm"),
  29460. weight: math.unit(60, "kg"),
  29461. name: "Dressed",
  29462. image: {
  29463. source: "./media/characters/fei/dressed.svg",
  29464. extra: 1402/1278,
  29465. bottom: 27/1429
  29466. }
  29467. },
  29468. nude: {
  29469. height: math.unit(175, "cm"),
  29470. weight: math.unit(60, "kg"),
  29471. name: "Nude",
  29472. image: {
  29473. source: "./media/characters/fei/nude.svg",
  29474. extra: 1402/1278,
  29475. bottom: 27/1429
  29476. }
  29477. },
  29478. heels: {
  29479. height: math.unit(0.466, "feet"),
  29480. name: "Heels",
  29481. image: {
  29482. source: "./media/characters/fei/heels.svg",
  29483. extra: 156/152,
  29484. bottom: 28/184
  29485. }
  29486. },
  29487. },
  29488. [
  29489. {
  29490. name: "Mortal",
  29491. height: math.unit(175, "cm")
  29492. },
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(3500, "m")
  29496. },
  29497. {
  29498. name: "Stroll",
  29499. height: math.unit(18.4, "km"),
  29500. default: true
  29501. },
  29502. {
  29503. name: "Showoff",
  29504. height: math.unit(175, "km")
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(7, "feet"),
  29513. weight: math.unit(1000, "kg"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/edrax/front.svg",
  29517. extra: 2838 / 2550,
  29518. bottom: 130 / 2968
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Small",
  29525. height: math.unit(7, "feet")
  29526. },
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(1500, "meters")
  29530. },
  29531. {
  29532. name: "Mega",
  29533. height: math.unit(12000000, "km"),
  29534. default: true
  29535. },
  29536. {
  29537. name: "Megamacro",
  29538. height: math.unit(10600000, "lightyears")
  29539. },
  29540. {
  29541. name: "Hypermacro",
  29542. height: math.unit(256, "yottameters")
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(10, "feet"),
  29551. weight: math.unit(750, "lb"),
  29552. name: "Front",
  29553. image: {
  29554. source: "./media/characters/clove/front.svg",
  29555. extra: 1918/1751,
  29556. bottom: 52/1970
  29557. }
  29558. },
  29559. back: {
  29560. height: math.unit(10, "feet"),
  29561. weight: math.unit(750, "lb"),
  29562. name: "Back",
  29563. image: {
  29564. source: "./media/characters/clove/back.svg",
  29565. extra: 1912/1747,
  29566. bottom: 50/1962
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "Normal",
  29573. height: math.unit(10, "feet"),
  29574. default: true
  29575. },
  29576. ]
  29577. ))
  29578. characterMakers.push(() => makeCharacter(
  29579. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29580. {
  29581. front: {
  29582. height: math.unit(4, "feet"),
  29583. weight: math.unit(50, "lb"),
  29584. name: "Front",
  29585. image: {
  29586. source: "./media/characters/alex-rabbit/front.svg",
  29587. extra: 507 / 458,
  29588. bottom: 18.5 / 527
  29589. }
  29590. },
  29591. back: {
  29592. height: math.unit(4, "feet"),
  29593. weight: math.unit(50, "lb"),
  29594. name: "Back",
  29595. image: {
  29596. source: "./media/characters/alex-rabbit/back.svg",
  29597. extra: 502 / 460,
  29598. bottom: 18.9 / 521
  29599. }
  29600. },
  29601. },
  29602. [
  29603. {
  29604. name: "Normal",
  29605. height: math.unit(4, "feet"),
  29606. default: true
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(1 + 3 / 12, "feet"),
  29615. weight: math.unit(80, "lb"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/zander-rose/front.svg",
  29619. extra: 916 / 797,
  29620. bottom: 17 / 933
  29621. }
  29622. },
  29623. back: {
  29624. height: math.unit(1 + 3 / 12, "feet"),
  29625. weight: math.unit(80, "lb"),
  29626. name: "Back",
  29627. image: {
  29628. source: "./media/characters/zander-rose/back.svg",
  29629. extra: 903 / 779,
  29630. bottom: 31 / 934
  29631. }
  29632. },
  29633. },
  29634. [
  29635. {
  29636. name: "Normal",
  29637. height: math.unit(1 + 3 / 12, "feet"),
  29638. default: true
  29639. },
  29640. ]
  29641. ))
  29642. characterMakers.push(() => makeCharacter(
  29643. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29644. {
  29645. anthro: {
  29646. height: math.unit(6, "feet"),
  29647. weight: math.unit(150, "lb"),
  29648. name: "Anthro",
  29649. image: {
  29650. source: "./media/characters/razz/anthro.svg",
  29651. extra: 1437 / 1343,
  29652. bottom: 48 / 1485
  29653. }
  29654. },
  29655. feral: {
  29656. height: math.unit(6, "feet"),
  29657. weight: math.unit(150, "lb"),
  29658. name: "Feral",
  29659. image: {
  29660. source: "./media/characters/razz/feral.svg",
  29661. extra: 2569 / 1385,
  29662. bottom: 95 / 2664
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(6, "feet"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(9 + 4 / 12, "feet"),
  29679. weight: math.unit(500, "lb"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/morrigan/front.svg",
  29683. extra: 2707 / 2579,
  29684. bottom: 156 / 2863
  29685. }
  29686. },
  29687. },
  29688. [
  29689. {
  29690. name: "Normal",
  29691. height: math.unit(9 + 4 / 12, "feet"),
  29692. default: true
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29698. {
  29699. front: {
  29700. height: math.unit(5, "stories"),
  29701. weight: math.unit(4000, "lb"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/jenene/front.svg",
  29705. extra: 1780 / 1710,
  29706. bottom: 57 / 1837
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(5, "stories"),
  29714. default: true
  29715. },
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29720. {
  29721. taurSfw: {
  29722. height: math.unit(10, "meters"),
  29723. weight: math.unit(17500, "kg"),
  29724. name: "Taur",
  29725. image: {
  29726. source: "./media/characters/faey/taur-sfw.svg",
  29727. extra: 1200 / 968,
  29728. bottom: 41 / 1241
  29729. }
  29730. },
  29731. chestmaw: {
  29732. height: math.unit(2.01, "meters"),
  29733. name: "Chestmaw",
  29734. image: {
  29735. source: "./media/characters/faey/chestmaw.svg"
  29736. }
  29737. },
  29738. foot: {
  29739. height: math.unit(2.43, "meters"),
  29740. name: "Foot",
  29741. image: {
  29742. source: "./media/characters/faey/foot.svg"
  29743. }
  29744. },
  29745. jaws: {
  29746. height: math.unit(1.66, "meters"),
  29747. name: "Jaws",
  29748. image: {
  29749. source: "./media/characters/faey/jaws.svg"
  29750. }
  29751. },
  29752. tongues: {
  29753. height: math.unit(2.01, "meters"),
  29754. name: "Tongues",
  29755. image: {
  29756. source: "./media/characters/faey/tongues.svg"
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Small",
  29763. height: math.unit(10, "meters"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Big",
  29768. height: math.unit(500000, "km")
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(7, "feet"),
  29777. weight: math.unit(275, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/roku/front.svg",
  29781. extra: 903 / 878,
  29782. bottom: 37 / 940
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Normal",
  29789. height: math.unit(7, "feet"),
  29790. default: true
  29791. },
  29792. {
  29793. name: "Macro",
  29794. height: math.unit(500, "feet")
  29795. },
  29796. {
  29797. name: "Megamacro",
  29798. height: math.unit(200, "miles")
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(6 + 2 / 12, "feet"),
  29807. weight: math.unit(150, "lb"),
  29808. name: "Front",
  29809. image: {
  29810. source: "./media/characters/lira/front.svg",
  29811. extra: 1727 / 1605,
  29812. bottom: 26 / 1753
  29813. }
  29814. },
  29815. back: {
  29816. height: math.unit(6 + 2 / 12, "feet"),
  29817. weight: math.unit(150, "lb"),
  29818. name: "Back",
  29819. image: {
  29820. source: "./media/characters/lira/back.svg",
  29821. extra: 1713/1621,
  29822. bottom: 20/1733
  29823. }
  29824. },
  29825. hand: {
  29826. height: math.unit(0.75, "feet"),
  29827. name: "Hand",
  29828. image: {
  29829. source: "./media/characters/lira/hand.svg"
  29830. }
  29831. },
  29832. maw: {
  29833. height: math.unit(0.65, "feet"),
  29834. name: "Maw",
  29835. image: {
  29836. source: "./media/characters/lira/maw.svg"
  29837. }
  29838. },
  29839. pawDigi: {
  29840. height: math.unit(1.6, "feet"),
  29841. name: "Paw Digi",
  29842. image: {
  29843. source: "./media/characters/lira/paw-digi.svg"
  29844. }
  29845. },
  29846. pawPlanti: {
  29847. height: math.unit(1.4, "feet"),
  29848. name: "Paw Planti",
  29849. image: {
  29850. source: "./media/characters/lira/paw-planti.svg"
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Normal",
  29857. height: math.unit(6 + 2 / 12, "feet"),
  29858. default: true
  29859. },
  29860. {
  29861. name: "Macro",
  29862. height: math.unit(100, "feet")
  29863. },
  29864. {
  29865. name: "Macro²",
  29866. height: math.unit(1600, "feet")
  29867. },
  29868. {
  29869. name: "Planetary",
  29870. height: math.unit(20, "earths")
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(6, "feet"),
  29879. weight: math.unit(150, "lb"),
  29880. name: "Front",
  29881. image: {
  29882. source: "./media/characters/hadjet/front.svg",
  29883. extra: 1480 / 1346,
  29884. bottom: 26 / 1506
  29885. }
  29886. },
  29887. frontNsfw: {
  29888. height: math.unit(6, "feet"),
  29889. weight: math.unit(150, "lb"),
  29890. name: "Front (NSFW)",
  29891. image: {
  29892. source: "./media/characters/hadjet/front-nsfw.svg",
  29893. extra: 1440 / 1358,
  29894. bottom: 52 / 1492
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Macro",
  29901. height: math.unit(10, "stories"),
  29902. default: true
  29903. },
  29904. {
  29905. name: "Megamacro",
  29906. height: math.unit(1.5, "miles")
  29907. },
  29908. {
  29909. name: "Megamacro+",
  29910. height: math.unit(5, "miles")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29916. {
  29917. side: {
  29918. height: math.unit(106, "feet"),
  29919. weight: math.unit(500, "tonnes"),
  29920. name: "Side",
  29921. image: {
  29922. source: "./media/characters/kodran/side.svg",
  29923. extra: 553 / 480,
  29924. bottom: 33 / 586
  29925. }
  29926. },
  29927. front: {
  29928. height: math.unit(132, "feet"),
  29929. weight: math.unit(500, "tonnes"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/kodran/front.svg",
  29933. extra: 667 / 643,
  29934. bottom: 42 / 709
  29935. }
  29936. },
  29937. flying: {
  29938. height: math.unit(350, "feet"),
  29939. weight: math.unit(500, "tonnes"),
  29940. name: "Flying",
  29941. image: {
  29942. source: "./media/characters/kodran/flying.svg"
  29943. }
  29944. },
  29945. foot: {
  29946. height: math.unit(33, "feet"),
  29947. name: "Foot",
  29948. image: {
  29949. source: "./media/characters/kodran/foot.svg"
  29950. }
  29951. },
  29952. footFront: {
  29953. height: math.unit(19, "feet"),
  29954. name: "Foot (Front)",
  29955. image: {
  29956. source: "./media/characters/kodran/foot-front.svg",
  29957. extra: 261 / 261,
  29958. bottom: 91 / 352
  29959. }
  29960. },
  29961. headFront: {
  29962. height: math.unit(53, "feet"),
  29963. name: "Head (Front)",
  29964. image: {
  29965. source: "./media/characters/kodran/head-front.svg"
  29966. }
  29967. },
  29968. headSide: {
  29969. height: math.unit(65, "feet"),
  29970. name: "Head (Side)",
  29971. image: {
  29972. source: "./media/characters/kodran/head-side.svg"
  29973. }
  29974. },
  29975. throat: {
  29976. height: math.unit(79, "feet"),
  29977. name: "Throat",
  29978. image: {
  29979. source: "./media/characters/kodran/throat.svg"
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Large",
  29986. height: math.unit(106, "feet"),
  29987. default: true
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29993. {
  29994. side: {
  29995. height: math.unit(11, "feet"),
  29996. weight: math.unit(150, "lb"),
  29997. name: "Side",
  29998. image: {
  29999. source: "./media/characters/pyxaron/side.svg",
  30000. extra: 305 / 195,
  30001. bottom: 17 / 322
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Normal",
  30008. height: math.unit(11, "feet"),
  30009. default: true
  30010. },
  30011. ]
  30012. ))
  30013. characterMakers.push(() => makeCharacter(
  30014. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30015. {
  30016. front: {
  30017. height: math.unit(6, "feet"),
  30018. weight: math.unit(150, "lb"),
  30019. name: "Front",
  30020. image: {
  30021. source: "./media/characters/meep/front.svg",
  30022. extra: 88 / 80,
  30023. bottom: 6 / 94
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Fun Sized",
  30030. height: math.unit(2, "inches"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Friend Sized",
  30035. height: math.unit(8, "inches")
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(15, "feet"),
  30044. weight: math.unit(2500, "lb"),
  30045. name: "Front",
  30046. image: {
  30047. source: "./media/characters/holly-rabbit/front.svg",
  30048. extra: 1433 / 1233,
  30049. bottom: 125 / 1558
  30050. }
  30051. },
  30052. dick: {
  30053. height: math.unit(4.6, "feet"),
  30054. name: "Dick",
  30055. image: {
  30056. source: "./media/characters/holly-rabbit/dick.svg"
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(15, "feet"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(250, "feet")
  30069. },
  30070. {
  30071. name: "Macro+",
  30072. height: math.unit(2500, "feet")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(3.02, "meters"),
  30081. weight: math.unit(500, "kg"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/drena/front.svg",
  30085. extra: 282 / 243,
  30086. bottom: 8 / 290
  30087. }
  30088. },
  30089. side: {
  30090. height: math.unit(3.02, "meters"),
  30091. weight: math.unit(500, "kg"),
  30092. name: "Side",
  30093. image: {
  30094. source: "./media/characters/drena/side.svg",
  30095. extra: 280 / 245,
  30096. bottom: 10 / 290
  30097. }
  30098. },
  30099. back: {
  30100. height: math.unit(3.02, "meters"),
  30101. weight: math.unit(500, "kg"),
  30102. name: "Back",
  30103. image: {
  30104. source: "./media/characters/drena/back.svg",
  30105. extra: 278 / 243,
  30106. bottom: 2 / 280
  30107. }
  30108. },
  30109. foot: {
  30110. height: math.unit(0.75, "meters"),
  30111. name: "Foot",
  30112. image: {
  30113. source: "./media/characters/drena/foot.svg"
  30114. }
  30115. },
  30116. maw: {
  30117. height: math.unit(0.82, "meters"),
  30118. name: "Maw",
  30119. image: {
  30120. source: "./media/characters/drena/maw.svg"
  30121. }
  30122. },
  30123. eating: {
  30124. height: math.unit(0.75, "meters"),
  30125. name: "Eating",
  30126. image: {
  30127. source: "./media/characters/drena/eating.svg"
  30128. }
  30129. },
  30130. rump: {
  30131. height: math.unit(0.93, "meters"),
  30132. name: "Rump",
  30133. image: {
  30134. source: "./media/characters/drena/rump.svg"
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Normal",
  30141. height: math.unit(3.02, "meters"),
  30142. default: true
  30143. },
  30144. ]
  30145. ))
  30146. characterMakers.push(() => makeCharacter(
  30147. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30148. {
  30149. front: {
  30150. height: math.unit(6 + 4 / 12, "feet"),
  30151. weight: math.unit(250, "lb"),
  30152. name: "Front",
  30153. image: {
  30154. source: "./media/characters/remmyzilla/front.svg",
  30155. extra: 4033 / 3588,
  30156. bottom: 123 / 4156
  30157. }
  30158. },
  30159. back: {
  30160. height: math.unit(6 + 4 / 12, "feet"),
  30161. weight: math.unit(250, "lb"),
  30162. name: "Back",
  30163. image: {
  30164. source: "./media/characters/remmyzilla/back.svg",
  30165. extra: 2687 / 2555,
  30166. bottom: 48 / 2735
  30167. }
  30168. },
  30169. paw: {
  30170. height: math.unit(1.73, "feet"),
  30171. name: "Paw",
  30172. image: {
  30173. source: "./media/characters/remmyzilla/paw.svg"
  30174. },
  30175. extraAttributes: {
  30176. "toeSize": {
  30177. name: "Toe Size",
  30178. power: 2,
  30179. type: "area",
  30180. base: math.unit(0.0035, "m^2")
  30181. },
  30182. "padSize": {
  30183. name: "Pad Size",
  30184. power: 2,
  30185. type: "area",
  30186. base: math.unit(0.015, "m^2")
  30187. },
  30188. "pawsize": {
  30189. name: "Paw Size",
  30190. power: 2,
  30191. type: "area",
  30192. base: math.unit(0.072, "m^2")
  30193. },
  30194. }
  30195. },
  30196. maw: {
  30197. height: math.unit(1.73, "feet"),
  30198. name: "Maw",
  30199. image: {
  30200. source: "./media/characters/remmyzilla/maw.svg"
  30201. }
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Normal",
  30207. height: math.unit(6 + 4 / 12, "feet")
  30208. },
  30209. {
  30210. name: "Minimacro",
  30211. height: math.unit(12 + 8 / 12, "feet")
  30212. },
  30213. {
  30214. name: "Normal",
  30215. height: math.unit(640, "feet"),
  30216. default: true
  30217. },
  30218. {
  30219. name: "Megamacro",
  30220. height: math.unit(6400, "feet")
  30221. },
  30222. {
  30223. name: "Gigamacro",
  30224. height: math.unit(64000, "miles")
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(2.5, "meters"),
  30233. weight: math.unit(300, "lb"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/lawrence/front.svg",
  30237. extra: 357 / 335,
  30238. bottom: 30 / 387
  30239. }
  30240. },
  30241. back: {
  30242. height: math.unit(2.5, "meters"),
  30243. weight: math.unit(300, "lb"),
  30244. name: "Back",
  30245. image: {
  30246. source: "./media/characters/lawrence/back.svg",
  30247. extra: 357 / 338,
  30248. bottom: 16 / 373
  30249. }
  30250. },
  30251. head: {
  30252. height: math.unit(0.9, "meter"),
  30253. name: "Head",
  30254. image: {
  30255. source: "./media/characters/lawrence/head.svg"
  30256. }
  30257. },
  30258. maw: {
  30259. height: math.unit(0.7, "meter"),
  30260. name: "Maw",
  30261. image: {
  30262. source: "./media/characters/lawrence/maw.svg"
  30263. }
  30264. },
  30265. footBottom: {
  30266. height: math.unit(0.5, "meter"),
  30267. name: "Foot (Bottom)",
  30268. image: {
  30269. source: "./media/characters/lawrence/foot-bottom.svg"
  30270. }
  30271. },
  30272. footTop: {
  30273. height: math.unit(0.5, "meter"),
  30274. name: "Foot (Top)",
  30275. image: {
  30276. source: "./media/characters/lawrence/foot-top.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(2.5, "meters"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Macro",
  30288. height: math.unit(95, "meters")
  30289. },
  30290. {
  30291. name: "Megamacro",
  30292. height: math.unit(150, "km")
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30298. {
  30299. front: {
  30300. height: math.unit(4.2, "meters"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/sydney/front.svg",
  30304. extra: 1323 / 1277,
  30305. bottom: 111 / 1434
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(4.2, "meters"),
  30313. default: true
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30319. {
  30320. back: {
  30321. height: math.unit(201, "feet"),
  30322. name: "Back",
  30323. image: {
  30324. source: "./media/characters/jessica/back.svg",
  30325. extra: 273 / 259,
  30326. bottom: 7 / 280
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(201, "feet"),
  30334. default: true
  30335. },
  30336. {
  30337. name: "Megamacro",
  30338. height: math.unit(8, "miles")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30344. {
  30345. side: {
  30346. height: math.unit(5.6, "m"),
  30347. weight: math.unit(8000, "kg"),
  30348. name: "Side",
  30349. image: {
  30350. source: "./media/characters/victoria/side.svg",
  30351. extra: 1542/1229,
  30352. bottom: 124/1666
  30353. }
  30354. },
  30355. maw: {
  30356. height: math.unit(7.14, "feet"),
  30357. name: "Maw",
  30358. image: {
  30359. source: "./media/characters/victoria/maw.svg"
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(5.6, "m"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30373. {
  30374. front: {
  30375. height: math.unit(5 + 6 / 12, "feet"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/cat/front.svg",
  30379. extra: 1449/1295,
  30380. bottom: 34/1483
  30381. },
  30382. form: "cat",
  30383. default: true
  30384. },
  30385. back: {
  30386. height: math.unit(5 + 6 / 12, "feet"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/cat/back.svg",
  30390. extra: 1466/1301,
  30391. bottom: 19/1485
  30392. },
  30393. form: "cat"
  30394. },
  30395. taur: {
  30396. height: math.unit(7, "feet"),
  30397. name: "Taur",
  30398. image: {
  30399. source: "./media/characters/cat/taur.svg",
  30400. extra: 1389/1233,
  30401. bottom: 83/1472
  30402. },
  30403. form: "taur",
  30404. default: true
  30405. },
  30406. lucarioFront: {
  30407. height: math.unit(4, "feet"),
  30408. name: "Lucario (Front)",
  30409. image: {
  30410. source: "./media/characters/cat/lucario-front.svg",
  30411. extra: 1149/1019,
  30412. bottom: 84/1233
  30413. },
  30414. form: "lucario",
  30415. default: true
  30416. },
  30417. lucarioBack: {
  30418. height: math.unit(4, "feet"),
  30419. name: "Lucario (Back)",
  30420. image: {
  30421. source: "./media/characters/cat/lucario-back.svg",
  30422. extra: 1190/1059,
  30423. bottom: 33/1223
  30424. },
  30425. form: "lucario"
  30426. },
  30427. megaLucario: {
  30428. height: math.unit(4, "feet"),
  30429. name: "Mega Lucario",
  30430. image: {
  30431. source: "./media/characters/cat/mega-lucario.svg",
  30432. extra: 1515 / 1319,
  30433. bottom: 63 / 1578
  30434. },
  30435. form: "lucario"
  30436. },
  30437. nickit: {
  30438. height: math.unit(2, "feet"),
  30439. name: "Nickit",
  30440. image: {
  30441. source: "./media/characters/cat/nickit.svg",
  30442. extra: 1980 / 1585,
  30443. bottom: 102 / 2082
  30444. },
  30445. form: "nickit",
  30446. default: true
  30447. },
  30448. lopunnyFront: {
  30449. height: math.unit(5, "feet"),
  30450. name: "Lopunny (Front)",
  30451. image: {
  30452. source: "./media/characters/cat/lopunny-front.svg",
  30453. extra: 1782 / 1469,
  30454. bottom: 38 / 1820
  30455. },
  30456. form: "lopunny",
  30457. default: true
  30458. },
  30459. lopunnyBack: {
  30460. height: math.unit(5, "feet"),
  30461. name: "Lopunny (Back)",
  30462. image: {
  30463. source: "./media/characters/cat/lopunny-back.svg",
  30464. extra: 1660 / 1490,
  30465. bottom: 25 / 1685
  30466. },
  30467. form: "lopunny"
  30468. },
  30469. },
  30470. [
  30471. {
  30472. name: "Really small",
  30473. height: math.unit(1, "nm")
  30474. },
  30475. {
  30476. name: "Micro",
  30477. height: math.unit(5, "inches")
  30478. },
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(5 + 6 / 12, "feet"),
  30482. default: true
  30483. },
  30484. {
  30485. name: "Macro",
  30486. height: math.unit(50, "feet")
  30487. },
  30488. {
  30489. name: "Macro+",
  30490. height: math.unit(150, "feet")
  30491. },
  30492. {
  30493. name: "Megamacro",
  30494. height: math.unit(100, "miles")
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(63.4, "meters"),
  30503. weight: math.unit(3.28349e+6, "kilograms"),
  30504. name: "Front",
  30505. image: {
  30506. source: "./media/characters/kirina-violet/front.svg",
  30507. extra: 2812 / 2725,
  30508. bottom: 0 / 2812
  30509. }
  30510. },
  30511. back: {
  30512. height: math.unit(63.4, "meters"),
  30513. weight: math.unit(3.28349e+6, "kilograms"),
  30514. name: "Back",
  30515. image: {
  30516. source: "./media/characters/kirina-violet/back.svg",
  30517. extra: 2812 / 2725,
  30518. bottom: 0 / 2812
  30519. }
  30520. },
  30521. mouth: {
  30522. height: math.unit(4.35, "meters"),
  30523. name: "Mouth",
  30524. image: {
  30525. source: "./media/characters/kirina-violet/mouth.svg"
  30526. }
  30527. },
  30528. paw: {
  30529. height: math.unit(5.6, "meters"),
  30530. name: "Paw",
  30531. image: {
  30532. source: "./media/characters/kirina-violet/paw.svg"
  30533. }
  30534. },
  30535. tail: {
  30536. height: math.unit(18, "meters"),
  30537. name: "Tail",
  30538. image: {
  30539. source: "./media/characters/kirina-violet/tail.svg"
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Macro",
  30546. height: math.unit(63.4, "meters"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30553. {
  30554. front: {
  30555. height: math.unit(75, "feet"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/cat-gigachu/front.svg",
  30559. extra: 1239/1027,
  30560. bottom: 32/1271
  30561. }
  30562. },
  30563. back: {
  30564. height: math.unit(75, "feet"),
  30565. name: "Back",
  30566. image: {
  30567. source: "./media/characters/cat-gigachu/back.svg",
  30568. extra: 1229/1030,
  30569. bottom: 9/1238
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Dynamax",
  30576. height: math.unit(75, "feet"),
  30577. default: true
  30578. },
  30579. ]
  30580. ))
  30581. characterMakers.push(() => makeCharacter(
  30582. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30583. {
  30584. front: {
  30585. height: math.unit(6, "feet"),
  30586. weight: math.unit(150, "lb"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/sfaiyan/front.svg",
  30590. extra: 999 / 978,
  30591. bottom: 5 / 1004
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(1.82, "meters")
  30599. },
  30600. {
  30601. name: "Giant",
  30602. height: math.unit(2.27, "km"),
  30603. default: true
  30604. },
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30609. {
  30610. front: {
  30611. height: math.unit(179, "cm"),
  30612. weight: math.unit(100, "kg"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/raunehkeli/front.svg",
  30616. extra: 1934 / 1926,
  30617. bottom: 0 / 1934
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Normal",
  30624. height: math.unit(179, "cm")
  30625. },
  30626. {
  30627. name: "Maximum",
  30628. height: math.unit(575, "meters"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(6, "feet"),
  30638. weight: math.unit(150, "lb"),
  30639. name: "Front",
  30640. image: {
  30641. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30642. extra: 2625 / 2518,
  30643. bottom: 60 / 2685
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(6 + 2 / 12, "feet")
  30651. },
  30652. {
  30653. name: "Macro",
  30654. height: math.unit(1180, "feet"),
  30655. default: true
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(5 + 6 / 12, "feet"),
  30664. weight: math.unit(108, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/lilith-zott/front.svg",
  30668. extra: 2510 / 2238,
  30669. bottom: 100 / 2610
  30670. }
  30671. },
  30672. frontDressed: {
  30673. height: math.unit(5 + 6 / 12, "feet"),
  30674. weight: math.unit(108, "lb"),
  30675. name: "Front (Dressed)",
  30676. image: {
  30677. source: "./media/characters/lilith-zott/front-dressed.svg",
  30678. extra: 2510 / 2238,
  30679. bottom: 100 / 2610
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Normal",
  30686. height: math.unit(5 + 6 / 12, "feet")
  30687. },
  30688. {
  30689. name: "Macro",
  30690. height: math.unit(1030, "feet"),
  30691. default: true
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(6, "feet"),
  30700. weight: math.unit(150, "lb"),
  30701. name: "Front",
  30702. image: {
  30703. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30704. extra: 2567 / 2435,
  30705. bottom: 39 / 2606
  30706. }
  30707. },
  30708. frontSuper: {
  30709. height: math.unit(6, "feet"),
  30710. name: "Front (Super)",
  30711. image: {
  30712. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30713. extra: 2567 / 2435,
  30714. bottom: 39 / 2606
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Normal",
  30721. height: math.unit(5 + 10 / 12, "feet")
  30722. },
  30723. {
  30724. name: "Macro",
  30725. height: math.unit(1100, "feet"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(100, "miles"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/sona/front.svg",
  30738. extra: 2433 / 2201,
  30739. bottom: 53 / 2486
  30740. }
  30741. },
  30742. foot: {
  30743. height: math.unit(16.1, "miles"),
  30744. name: "Foot",
  30745. image: {
  30746. source: "./media/characters/sona/foot.svg"
  30747. }
  30748. },
  30749. },
  30750. [
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(100, "miles"),
  30754. default: true
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(150, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/bailey/front.svg",
  30767. extra: 1778 / 1724,
  30768. bottom: 30 / 1808
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Micro",
  30775. height: math.unit(4, "inches")
  30776. },
  30777. {
  30778. name: "Normal",
  30779. height: math.unit(5 + 5 / 12, "feet"),
  30780. default: true
  30781. },
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(250, "feet")
  30785. },
  30786. {
  30787. name: "Megamacro",
  30788. height: math.unit(100, "miles")
  30789. },
  30790. ]
  30791. ))
  30792. characterMakers.push(() => makeCharacter(
  30793. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30794. {
  30795. front: {
  30796. height: math.unit(5 + 2 / 12, "feet"),
  30797. weight: math.unit(120, "lb"),
  30798. name: "Front",
  30799. image: {
  30800. source: "./media/characters/snaps/front.svg",
  30801. extra: 2370 / 2177,
  30802. bottom: 48 / 2418
  30803. }
  30804. },
  30805. back: {
  30806. height: math.unit(5 + 2 / 12, "feet"),
  30807. weight: math.unit(120, "lb"),
  30808. name: "Back",
  30809. image: {
  30810. source: "./media/characters/snaps/back.svg",
  30811. extra: 2408 / 2258,
  30812. bottom: 15 / 2423
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Micro",
  30819. height: math.unit(9, "inches")
  30820. },
  30821. {
  30822. name: "Normal",
  30823. height: math.unit(5 + 2 / 12, "feet"),
  30824. default: true
  30825. },
  30826. {
  30827. name: "Mini Macro",
  30828. height: math.unit(10, "feet")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(1.8, "meters"),
  30837. weight: math.unit(85, "kg"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/azteck/front.svg",
  30841. extra: 2815 / 2625,
  30842. bottom: 89 / 2904
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(1.8, "meters"),
  30847. weight: math.unit(85, "kg"),
  30848. name: "Back",
  30849. image: {
  30850. source: "./media/characters/azteck/back.svg",
  30851. extra: 2856 / 2648,
  30852. bottom: 85 / 2941
  30853. }
  30854. },
  30855. frontDressed: {
  30856. height: math.unit(1.8, "meters"),
  30857. weight: math.unit(85, "kg"),
  30858. name: "Front (Dressed)",
  30859. image: {
  30860. source: "./media/characters/azteck/front-dressed.svg",
  30861. extra: 2147 / 2003,
  30862. bottom: 68 / 2215
  30863. }
  30864. },
  30865. head: {
  30866. height: math.unit(0.47, "meters"),
  30867. weight: math.unit(85, "kg"),
  30868. name: "Head",
  30869. image: {
  30870. source: "./media/characters/azteck/head.svg"
  30871. }
  30872. },
  30873. },
  30874. [
  30875. {
  30876. name: "Bite sized",
  30877. height: math.unit(16, "cm")
  30878. },
  30879. {
  30880. name: "Normal",
  30881. height: math.unit(1.8, "meters"),
  30882. default: true
  30883. },
  30884. ]
  30885. ))
  30886. characterMakers.push(() => makeCharacter(
  30887. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30888. {
  30889. front: {
  30890. height: math.unit(6, "feet"),
  30891. weight: math.unit(150, "lb"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/pidge/front.svg",
  30895. extra: 1936/1820,
  30896. bottom: 0/1936
  30897. }
  30898. },
  30899. back: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(150, "lb"),
  30902. name: "Back",
  30903. image: {
  30904. source: "./media/characters/pidge/back.svg",
  30905. extra: 1938/1843,
  30906. bottom: 0/1938
  30907. }
  30908. },
  30909. casual: {
  30910. height: math.unit(6, "feet"),
  30911. weight: math.unit(150, "lb"),
  30912. name: "Casual",
  30913. image: {
  30914. source: "./media/characters/pidge/casual.svg",
  30915. extra: 1936/1820,
  30916. bottom: 0/1936
  30917. }
  30918. },
  30919. tech: {
  30920. height: math.unit(6, "feet"),
  30921. weight: math.unit(150, "lb"),
  30922. name: "Tech",
  30923. image: {
  30924. source: "./media/characters/pidge/tech.svg",
  30925. extra: 1802/1682,
  30926. bottom: 0/1802
  30927. }
  30928. },
  30929. head: {
  30930. height: math.unit(1.61, "feet"),
  30931. name: "Head",
  30932. image: {
  30933. source: "./media/characters/pidge/head.svg"
  30934. }
  30935. },
  30936. collar: {
  30937. height: math.unit(0.82, "feet"),
  30938. name: "Collar",
  30939. image: {
  30940. source: "./media/characters/pidge/collar.svg"
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Macro",
  30947. height: math.unit(2, "mile"),
  30948. default: true
  30949. },
  30950. {
  30951. name: "PUPPY",
  30952. height: math.unit(20, "miles")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30958. {
  30959. front: {
  30960. height: math.unit(6, "feet"),
  30961. weight: math.unit(150, "lb"),
  30962. name: "Front",
  30963. image: {
  30964. source: "./media/characters/en/front.svg",
  30965. extra: 1697 / 1563,
  30966. bottom: 103 / 1800
  30967. }
  30968. },
  30969. back: {
  30970. height: math.unit(6, "feet"),
  30971. weight: math.unit(150, "lb"),
  30972. name: "Back",
  30973. image: {
  30974. source: "./media/characters/en/back.svg",
  30975. extra: 1700 / 1570,
  30976. bottom: 51 / 1751
  30977. }
  30978. },
  30979. frontDressed: {
  30980. height: math.unit(6, "feet"),
  30981. weight: math.unit(150, "lb"),
  30982. name: "Front (Dressed)",
  30983. image: {
  30984. source: "./media/characters/en/front-dressed.svg",
  30985. extra: 1697 / 1563,
  30986. bottom: 103 / 1800
  30987. }
  30988. },
  30989. backDressed: {
  30990. height: math.unit(6, "feet"),
  30991. weight: math.unit(150, "lb"),
  30992. name: "Back (Dressed)",
  30993. image: {
  30994. source: "./media/characters/en/back-dressed.svg",
  30995. extra: 1700 / 1570,
  30996. bottom: 51 / 1751
  30997. }
  30998. },
  30999. },
  31000. [
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(210, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(6, "feet"),
  31013. weight: math.unit(150, "lb"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/haze-orris/front.svg",
  31017. extra: 3975 / 3525,
  31018. bottom: 137 / 4112
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Micro",
  31025. height: math.unit(150, "mm"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(6, "feet"),
  31035. weight: math.unit(150, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/casselene-yaro/front.svg",
  31039. extra: 4721 / 4541,
  31040. bottom: 82 / 4803
  31041. }
  31042. },
  31043. back: {
  31044. height: math.unit(6, "feet"),
  31045. weight: math.unit(150, "lb"),
  31046. name: "Back",
  31047. image: {
  31048. source: "./media/characters/casselene-yaro/back.svg",
  31049. extra: 4569 / 4377,
  31050. bottom: 69 / 4638
  31051. }
  31052. },
  31053. dressed: {
  31054. height: math.unit(6, "feet"),
  31055. weight: math.unit(150, "lb"),
  31056. name: "Dressed",
  31057. image: {
  31058. source: "./media/characters/casselene-yaro/dressed.svg",
  31059. extra: 4721 / 4541,
  31060. bottom: 82 / 4803
  31061. }
  31062. },
  31063. maw: {
  31064. height: math.unit(1, "feet"),
  31065. name: "Maw",
  31066. image: {
  31067. source: "./media/characters/casselene-yaro/maw.svg"
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Macro",
  31074. height: math.unit(190, "feet"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(10, "feet"),
  31084. weight: math.unit(15015, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/platine/front.svg",
  31088. extra: 1741/1650,
  31089. bottom: 84/1825
  31090. }
  31091. },
  31092. side: {
  31093. height: math.unit(10, "feet"),
  31094. weight: math.unit(15015, "lb"),
  31095. name: "Side",
  31096. image: {
  31097. source: "./media/characters/platine/side.svg",
  31098. extra: 1790/1705,
  31099. bottom: 29/1819
  31100. }
  31101. },
  31102. },
  31103. [
  31104. {
  31105. name: "Normal",
  31106. height: math.unit(10, "feet"),
  31107. default: true
  31108. },
  31109. {
  31110. name: "Macro",
  31111. height: math.unit(100, "feet")
  31112. },
  31113. {
  31114. name: "Megamacro",
  31115. height: math.unit(1000, "feet")
  31116. },
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(15 + 5 / 12, "feet"),
  31124. weight: math.unit(4600, "lb"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/neapolitan-ananassa/front.svg",
  31128. extra: 2903 / 2736,
  31129. bottom: 0 / 2903
  31130. }
  31131. },
  31132. side: {
  31133. height: math.unit(15 + 5 / 12, "feet"),
  31134. weight: math.unit(4600, "lb"),
  31135. name: "Side",
  31136. image: {
  31137. source: "./media/characters/neapolitan-ananassa/side.svg",
  31138. extra: 2925 / 2719,
  31139. bottom: 0 / 2925
  31140. }
  31141. },
  31142. back: {
  31143. height: math.unit(15 + 5 / 12, "feet"),
  31144. weight: math.unit(4600, "lb"),
  31145. name: "Back",
  31146. image: {
  31147. source: "./media/characters/neapolitan-ananassa/back.svg",
  31148. extra: 2903 / 2736,
  31149. bottom: 0 / 2903
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Normal",
  31156. height: math.unit(15 + 5 / 12, "feet"),
  31157. default: true
  31158. },
  31159. {
  31160. name: "Post-Millenium",
  31161. height: math.unit(35 + 5 / 12, "feet")
  31162. },
  31163. {
  31164. name: "Post-Era",
  31165. height: math.unit(450 + 5 / 12, "feet")
  31166. },
  31167. ]
  31168. ))
  31169. characterMakers.push(() => makeCharacter(
  31170. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31171. {
  31172. front: {
  31173. height: math.unit(300, "meters"),
  31174. weight: math.unit(125000, "tonnes"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/pazuzu/front.svg",
  31178. extra: 877 / 794,
  31179. bottom: 47 / 924
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Macro",
  31186. height: math.unit(300, "meters"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31193. {
  31194. side: {
  31195. height: math.unit(10 + 7 / 12, "feet"),
  31196. weight: math.unit(2.5, "tons"),
  31197. name: "Side",
  31198. image: {
  31199. source: "./media/characters/aasha/side.svg",
  31200. extra: 1345 / 1245,
  31201. bottom: 111 / 1456
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(10 + 7 / 12, "feet"),
  31206. weight: math.unit(2.5, "tons"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/aasha/back.svg",
  31210. extra: 1133 / 1057,
  31211. bottom: 257 / 1390
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(10 + 7 / 12, "feet"),
  31219. default: true
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(6 + 3 / 12, "feet"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/nevan/front.svg",
  31231. extra: 704 / 704,
  31232. bottom: 28 / 732
  31233. }
  31234. },
  31235. back: {
  31236. height: math.unit(6 + 3 / 12, "feet"),
  31237. name: "Back",
  31238. image: {
  31239. source: "./media/characters/nevan/back.svg",
  31240. extra: 714 / 714,
  31241. bottom: 21 / 735
  31242. }
  31243. },
  31244. frontFlaccid: {
  31245. height: math.unit(6 + 3 / 12, "feet"),
  31246. name: "Front (Flaccid)",
  31247. image: {
  31248. source: "./media/characters/nevan/front-flaccid.svg",
  31249. extra: 704 / 704,
  31250. bottom: 28 / 732
  31251. }
  31252. },
  31253. frontErect: {
  31254. height: math.unit(6 + 3 / 12, "feet"),
  31255. name: "Front (Erect)",
  31256. image: {
  31257. source: "./media/characters/nevan/front-erect.svg",
  31258. extra: 704 / 704,
  31259. bottom: 28 / 732
  31260. }
  31261. },
  31262. backFlaccid: {
  31263. height: math.unit(6 + 3 / 12, "feet"),
  31264. name: "Back (Flaccid)",
  31265. image: {
  31266. source: "./media/characters/nevan/back-flaccid.svg",
  31267. extra: 714 / 714,
  31268. bottom: 21 / 735
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Normal",
  31275. height: math.unit(6 + 3 / 12, "feet"),
  31276. default: true
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(4, "feet"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/arhan/front.svg",
  31288. extra: 3368 / 3133,
  31289. bottom: 0 / 3368
  31290. }
  31291. },
  31292. side: {
  31293. height: math.unit(4, "feet"),
  31294. name: "Side",
  31295. image: {
  31296. source: "./media/characters/arhan/side.svg",
  31297. extra: 3347 / 3105,
  31298. bottom: 0 / 3347
  31299. }
  31300. },
  31301. tongue: {
  31302. height: math.unit(1.42, "feet"),
  31303. name: "Tongue",
  31304. image: {
  31305. source: "./media/characters/arhan/tongue.svg"
  31306. }
  31307. },
  31308. head: {
  31309. height: math.unit(0.85, "feet"),
  31310. name: "Head",
  31311. image: {
  31312. source: "./media/characters/arhan/head.svg"
  31313. }
  31314. },
  31315. },
  31316. [
  31317. {
  31318. name: "Normal",
  31319. height: math.unit(4, "feet"),
  31320. default: true
  31321. },
  31322. ]
  31323. ))
  31324. characterMakers.push(() => makeCharacter(
  31325. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31326. {
  31327. front: {
  31328. height: math.unit(5 + 7.5 / 12, "feet"),
  31329. weight: math.unit(120, "lb"),
  31330. name: "Front",
  31331. image: {
  31332. source: "./media/characters/digi-duncan/front.svg",
  31333. extra: 330 / 326,
  31334. bottom: 16 / 346
  31335. }
  31336. },
  31337. side: {
  31338. height: math.unit(5 + 7.5 / 12, "feet"),
  31339. weight: math.unit(120, "lb"),
  31340. name: "Side",
  31341. image: {
  31342. source: "./media/characters/digi-duncan/side.svg",
  31343. extra: 341 / 337,
  31344. bottom: 1 / 342
  31345. }
  31346. },
  31347. back: {
  31348. height: math.unit(5 + 7.5 / 12, "feet"),
  31349. weight: math.unit(120, "lb"),
  31350. name: "Back",
  31351. image: {
  31352. source: "./media/characters/digi-duncan/back.svg",
  31353. extra: 330 / 326,
  31354. bottom: 12 / 342
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Speck",
  31361. height: math.unit(0.25, "mm")
  31362. },
  31363. {
  31364. name: "Micro",
  31365. height: math.unit(5, "mm")
  31366. },
  31367. {
  31368. name: "Tiny",
  31369. height: math.unit(0.5, "inches"),
  31370. default: true
  31371. },
  31372. {
  31373. name: "Human",
  31374. height: math.unit(5 + 7.5 / 12, "feet")
  31375. },
  31376. {
  31377. name: "Minigiant",
  31378. height: math.unit(8 + 5.25, "feet")
  31379. },
  31380. {
  31381. name: "Giant",
  31382. height: math.unit(2000, "feet")
  31383. },
  31384. {
  31385. name: "Mega",
  31386. height: math.unit(371.1, "miles")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(2, "meters"),
  31395. weight: math.unit(350, "kg"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31399. extra: 898 / 838,
  31400. bottom: 9 / 907
  31401. }
  31402. },
  31403. },
  31404. [
  31405. {
  31406. name: "Micro",
  31407. height: math.unit(8, "meters")
  31408. },
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(50, "meters"),
  31412. default: true
  31413. },
  31414. {
  31415. name: "Macro",
  31416. height: math.unit(500, "meters")
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(6 + 6 / 12, "feet"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/khardesh/front.svg",
  31428. extra: 1788/1596,
  31429. bottom: 66/1854
  31430. }
  31431. },
  31432. back: {
  31433. height: math.unit(6 + 6 / 12, "feet"),
  31434. name: "Back",
  31435. image: {
  31436. source: "./media/characters/khardesh/back.svg",
  31437. extra: 1781/1584,
  31438. bottom: 68/1849
  31439. }
  31440. },
  31441. },
  31442. [
  31443. {
  31444. name: "Normal",
  31445. height: math.unit(6 + 6 / 12, "feet"),
  31446. default: true
  31447. },
  31448. {
  31449. name: "Normal+",
  31450. height: math.unit(4, "meters")
  31451. },
  31452. {
  31453. name: "Macro",
  31454. height: math.unit(50, "meters")
  31455. },
  31456. {
  31457. name: "Macro+",
  31458. height: math.unit(100, "meters")
  31459. },
  31460. {
  31461. name: "Megamacro",
  31462. height: math.unit(20, "km")
  31463. },
  31464. ]
  31465. ))
  31466. characterMakers.push(() => makeCharacter(
  31467. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31468. {
  31469. front: {
  31470. height: math.unit(6, "feet"),
  31471. weight: math.unit(150, "lb"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/kosho/front.svg",
  31475. extra: 1847 / 1847,
  31476. bottom: 86 / 1933
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Second-stage micro",
  31483. height: math.unit(0.5, "inches")
  31484. },
  31485. {
  31486. name: "First-stage micro",
  31487. height: math.unit(6, "inches")
  31488. },
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(6, "feet"),
  31492. default: true
  31493. },
  31494. {
  31495. name: "First-stage macro",
  31496. height: math.unit(72, "feet")
  31497. },
  31498. {
  31499. name: "Second-stage macro",
  31500. height: math.unit(864, "feet")
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31506. {
  31507. normal: {
  31508. height: math.unit(4 + 6 / 12, "feet"),
  31509. name: "Normal",
  31510. image: {
  31511. source: "./media/characters/hydra/normal.svg",
  31512. extra: 2833 / 2634,
  31513. bottom: 68 / 2901
  31514. }
  31515. },
  31516. smol: {
  31517. height: math.unit(0.705, "inches"),
  31518. name: "Smol",
  31519. image: {
  31520. source: "./media/characters/hydra/smol.svg",
  31521. extra: 2715 / 2540,
  31522. bottom: 0 / 2715
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(4 + 6 / 12, "feet"),
  31530. default: true
  31531. }
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(0.6, "cm"),
  31539. name: "Front",
  31540. image: {
  31541. source: "./media/characters/daz/front.svg",
  31542. extra: 1682 / 1164,
  31543. bottom: 42 / 1724
  31544. }
  31545. },
  31546. },
  31547. [
  31548. {
  31549. name: "Normal",
  31550. height: math.unit(0.6, "cm"),
  31551. default: true
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(6, "feet"),
  31560. weight: math.unit(235, "lb"),
  31561. name: "Front",
  31562. image: {
  31563. source: "./media/characters/theo-pangolin/front.svg",
  31564. extra: 1996 / 1969,
  31565. bottom: 115 / 2111
  31566. }
  31567. },
  31568. back: {
  31569. height: math.unit(6, "feet"),
  31570. weight: math.unit(235, "lb"),
  31571. name: "Back",
  31572. image: {
  31573. source: "./media/characters/theo-pangolin/back.svg",
  31574. extra: 1979 / 1979,
  31575. bottom: 40 / 2019
  31576. }
  31577. },
  31578. feral: {
  31579. height: math.unit(2, "feet"),
  31580. weight: math.unit(30, "lb"),
  31581. name: "Feral",
  31582. image: {
  31583. source: "./media/characters/theo-pangolin/feral.svg",
  31584. extra: 803 / 791,
  31585. bottom: 181 / 984
  31586. }
  31587. },
  31588. footFive: {
  31589. height: math.unit(1.43, "feet"),
  31590. name: "Foot (Five Toes)",
  31591. image: {
  31592. source: "./media/characters/theo-pangolin/foot-five.svg"
  31593. }
  31594. },
  31595. footFour: {
  31596. height: math.unit(1.43, "feet"),
  31597. name: "Foot (Four Toes)",
  31598. image: {
  31599. source: "./media/characters/theo-pangolin/foot-four.svg"
  31600. }
  31601. },
  31602. handFour: {
  31603. height: math.unit(0.81, "feet"),
  31604. name: "Hand (Four Fingers)",
  31605. image: {
  31606. source: "./media/characters/theo-pangolin/hand-four.svg"
  31607. }
  31608. },
  31609. handThree: {
  31610. height: math.unit(0.81, "feet"),
  31611. name: "Hand (Three Fingers)",
  31612. image: {
  31613. source: "./media/characters/theo-pangolin/hand-three.svg"
  31614. }
  31615. },
  31616. headFront: {
  31617. height: math.unit(1.37, "feet"),
  31618. name: "Head (Front)",
  31619. image: {
  31620. source: "./media/characters/theo-pangolin/head-front.svg"
  31621. }
  31622. },
  31623. headSide: {
  31624. height: math.unit(1.43, "feet"),
  31625. name: "Head (Side)",
  31626. image: {
  31627. source: "./media/characters/theo-pangolin/head-side.svg"
  31628. }
  31629. },
  31630. tongue: {
  31631. height: math.unit(2.29, "feet"),
  31632. name: "Tongue",
  31633. image: {
  31634. source: "./media/characters/theo-pangolin/tongue.svg"
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(6, "feet")
  31642. },
  31643. {
  31644. name: "Macro",
  31645. height: math.unit(400, "feet"),
  31646. default: true
  31647. },
  31648. ]
  31649. ))
  31650. characterMakers.push(() => makeCharacter(
  31651. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31652. {
  31653. front: {
  31654. height: math.unit(6, "inches"),
  31655. weight: math.unit(0.036, "kg"),
  31656. name: "Front",
  31657. image: {
  31658. source: "./media/characters/renée/front.svg",
  31659. extra: 900 / 886,
  31660. bottom: 8 / 908
  31661. }
  31662. },
  31663. },
  31664. [
  31665. {
  31666. name: "Nano",
  31667. height: math.unit(1, "nm")
  31668. },
  31669. {
  31670. name: "Micro",
  31671. height: math.unit(1, "mm")
  31672. },
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(6, "inches")
  31676. },
  31677. {
  31678. name: "Macro",
  31679. height: math.unit(2000, "feet"),
  31680. default: true
  31681. },
  31682. {
  31683. name: "Megamacro",
  31684. height: math.unit(2, "km")
  31685. },
  31686. {
  31687. name: "Gigamacro",
  31688. height: math.unit(2000, "km")
  31689. },
  31690. {
  31691. name: "Teramacro",
  31692. height: math.unit(250000, "km")
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31698. {
  31699. front: {
  31700. height: math.unit(4, "meters"),
  31701. weight: math.unit(150, "kg"),
  31702. name: "Front",
  31703. image: {
  31704. source: "./media/characters/caledvwlch/front.svg",
  31705. extra: 1760 / 1551,
  31706. bottom: 28 / 1788
  31707. }
  31708. },
  31709. side: {
  31710. height: math.unit(4, "meters"),
  31711. weight: math.unit(150, "kg"),
  31712. name: "Side",
  31713. image: {
  31714. source: "./media/characters/caledvwlch/side.svg",
  31715. extra: 1605 / 1536,
  31716. bottom: 31 / 1636
  31717. }
  31718. },
  31719. back: {
  31720. height: math.unit(4, "meters"),
  31721. weight: math.unit(150, "kg"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/caledvwlch/back.svg",
  31725. extra: 1635 / 1565,
  31726. bottom: 27 / 1662
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "\"Incognito\"",
  31733. height: math.unit(4, "meters")
  31734. },
  31735. {
  31736. name: "Small rampage",
  31737. height: math.unit(600, "meters")
  31738. },
  31739. {
  31740. name: "Mega",
  31741. height: math.unit(30, "km")
  31742. },
  31743. {
  31744. name: "Home-size",
  31745. height: math.unit(50, "km"),
  31746. default: true
  31747. },
  31748. {
  31749. name: "Giga",
  31750. height: math.unit(300, "km")
  31751. },
  31752. {
  31753. name: "Lounging",
  31754. height: math.unit(11000, "km")
  31755. },
  31756. {
  31757. name: "Planet snacking",
  31758. height: math.unit(2000000, "km")
  31759. },
  31760. ]
  31761. ))
  31762. characterMakers.push(() => makeCharacter(
  31763. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31764. {
  31765. front: {
  31766. height: math.unit(6, "feet"),
  31767. weight: math.unit(215, "lb"),
  31768. name: "Front",
  31769. image: {
  31770. source: "./media/characters/sapphire-svell/front.svg",
  31771. extra: 495 / 455,
  31772. bottom: 20 / 515
  31773. }
  31774. },
  31775. back: {
  31776. height: math.unit(6, "feet"),
  31777. weight: math.unit(216, "lb"),
  31778. name: "Back",
  31779. image: {
  31780. source: "./media/characters/sapphire-svell/back.svg",
  31781. extra: 497 / 477,
  31782. bottom: 7 / 504
  31783. }
  31784. },
  31785. maw: {
  31786. height: math.unit(1.57, "feet"),
  31787. name: "Maw",
  31788. image: {
  31789. source: "./media/characters/sapphire-svell/maw.svg"
  31790. }
  31791. },
  31792. foot: {
  31793. height: math.unit(1.07, "feet"),
  31794. name: "Foot",
  31795. image: {
  31796. source: "./media/characters/sapphire-svell/foot.svg"
  31797. }
  31798. },
  31799. toering: {
  31800. height: math.unit(1.7, "inch"),
  31801. name: "Toering",
  31802. image: {
  31803. source: "./media/characters/sapphire-svell/toering.svg"
  31804. }
  31805. },
  31806. },
  31807. [
  31808. {
  31809. name: "Normal",
  31810. height: math.unit(300, "feet"),
  31811. default: true
  31812. },
  31813. {
  31814. name: "Augmented",
  31815. height: math.unit(1250, "feet")
  31816. },
  31817. {
  31818. name: "Unleashed",
  31819. height: math.unit(3000, "feet")
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31825. {
  31826. side: {
  31827. height: math.unit(2 + 3 / 12, "feet"),
  31828. weight: math.unit(110, "lb"),
  31829. name: "Side",
  31830. image: {
  31831. source: "./media/characters/glitch-flux/side.svg",
  31832. extra: 997 / 805,
  31833. bottom: 20 / 1017
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Normal",
  31840. height: math.unit(2 + 3 / 12, "feet"),
  31841. default: true
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31847. {
  31848. front: {
  31849. height: math.unit(4, "meters"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/mid/front.svg",
  31853. extra: 507 / 476,
  31854. bottom: 17 / 524
  31855. }
  31856. },
  31857. back: {
  31858. height: math.unit(4, "meters"),
  31859. name: "Back",
  31860. image: {
  31861. source: "./media/characters/mid/back.svg",
  31862. extra: 519 / 487,
  31863. bottom: 7 / 526
  31864. }
  31865. },
  31866. stuck: {
  31867. height: math.unit(2.2, "meters"),
  31868. name: "Stuck",
  31869. image: {
  31870. source: "./media/characters/mid/stuck.svg",
  31871. extra: 1951 / 1869,
  31872. bottom: 88 / 2039
  31873. }
  31874. }
  31875. },
  31876. [
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(4, "meters"),
  31880. default: true
  31881. },
  31882. {
  31883. name: "Big",
  31884. height: math.unit(10, "meters")
  31885. },
  31886. {
  31887. name: "Macro",
  31888. height: math.unit(800, "meters")
  31889. },
  31890. {
  31891. name: "Megamacro",
  31892. height: math.unit(100, "km")
  31893. },
  31894. {
  31895. name: "Overgrown",
  31896. height: math.unit(1, "parsec")
  31897. },
  31898. ]
  31899. ))
  31900. characterMakers.push(() => makeCharacter(
  31901. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31902. {
  31903. front: {
  31904. height: math.unit(2.5, "meters"),
  31905. weight: math.unit(225, "kg"),
  31906. name: "Front",
  31907. image: {
  31908. source: "./media/characters/iris/front.svg",
  31909. extra: 3348 / 3251,
  31910. bottom: 205 / 3553
  31911. }
  31912. },
  31913. maw: {
  31914. height: math.unit(0.56, "meter"),
  31915. name: "Maw",
  31916. image: {
  31917. source: "./media/characters/iris/maw.svg"
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Mewter cat",
  31924. height: math.unit(1.2, "meters")
  31925. },
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(2.5, "meters"),
  31929. default: true
  31930. },
  31931. {
  31932. name: "Minimacro",
  31933. height: math.unit(18, "feet")
  31934. },
  31935. {
  31936. name: "Macro",
  31937. height: math.unit(140, "feet")
  31938. },
  31939. {
  31940. name: "Macro+",
  31941. height: math.unit(180, "meters")
  31942. },
  31943. {
  31944. name: "Megamacro",
  31945. height: math.unit(2746, "meters")
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6, "feet"),
  31954. weight: math.unit(135, "lb"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/axel/front.svg",
  31958. extra: 908 / 908,
  31959. bottom: 58 / 966
  31960. }
  31961. },
  31962. side: {
  31963. height: math.unit(6, "feet"),
  31964. weight: math.unit(135, "lb"),
  31965. name: "Side",
  31966. image: {
  31967. source: "./media/characters/axel/side.svg",
  31968. extra: 958 / 958,
  31969. bottom: 11 / 969
  31970. }
  31971. },
  31972. back: {
  31973. height: math.unit(6, "feet"),
  31974. weight: math.unit(135, "lb"),
  31975. name: "Back",
  31976. image: {
  31977. source: "./media/characters/axel/back.svg",
  31978. extra: 887 / 887,
  31979. bottom: 34 / 921
  31980. }
  31981. },
  31982. head: {
  31983. height: math.unit(1.07, "feet"),
  31984. name: "Head",
  31985. image: {
  31986. source: "./media/characters/axel/head.svg"
  31987. }
  31988. },
  31989. beak: {
  31990. height: math.unit(1.4, "feet"),
  31991. name: "Beak",
  31992. image: {
  31993. source: "./media/characters/axel/beak.svg"
  31994. }
  31995. },
  31996. beakSide: {
  31997. height: math.unit(1.4, "feet"),
  31998. name: "Beak Side",
  31999. image: {
  32000. source: "./media/characters/axel/beak-side.svg"
  32001. }
  32002. },
  32003. sheath: {
  32004. height: math.unit(0.5, "feet"),
  32005. name: "Sheath",
  32006. image: {
  32007. source: "./media/characters/axel/sheath.svg"
  32008. }
  32009. },
  32010. dick: {
  32011. height: math.unit(0.98, "feet"),
  32012. name: "Dick",
  32013. image: {
  32014. source: "./media/characters/axel/dick.svg"
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Macro",
  32021. height: math.unit(68, "meters"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(3.5, "meters"),
  32031. weight: math.unit(1200, "kg"),
  32032. name: "Front",
  32033. image: {
  32034. source: "./media/characters/joanna/front.svg",
  32035. extra: 1596 / 1488,
  32036. bottom: 29 / 1625
  32037. }
  32038. },
  32039. back: {
  32040. height: math.unit(3.5, "meters"),
  32041. weight: math.unit(1200, "kg"),
  32042. name: "Back",
  32043. image: {
  32044. source: "./media/characters/joanna/back.svg",
  32045. extra: 1594 / 1495,
  32046. bottom: 26 / 1620
  32047. }
  32048. },
  32049. frontShorts: {
  32050. height: math.unit(3.5, "meters"),
  32051. weight: math.unit(1200, "kg"),
  32052. name: "Front (Shorts)",
  32053. image: {
  32054. source: "./media/characters/joanna/front-shorts.svg",
  32055. extra: 1596 / 1488,
  32056. bottom: 29 / 1625
  32057. }
  32058. },
  32059. frontBiker: {
  32060. height: math.unit(3.5, "meters"),
  32061. weight: math.unit(1200, "kg"),
  32062. name: "Front (Biker)",
  32063. image: {
  32064. source: "./media/characters/joanna/front-biker.svg",
  32065. extra: 1596 / 1488,
  32066. bottom: 29 / 1625
  32067. }
  32068. },
  32069. backBiker: {
  32070. height: math.unit(3.5, "meters"),
  32071. weight: math.unit(1200, "kg"),
  32072. name: "Back (Biker)",
  32073. image: {
  32074. source: "./media/characters/joanna/back-biker.svg",
  32075. extra: 1594 / 1495,
  32076. bottom: 88 / 1682
  32077. }
  32078. },
  32079. bikeLeft: {
  32080. height: math.unit(2.4, "meters"),
  32081. weight: math.unit(1600, "kg"),
  32082. name: "Bike (Left)",
  32083. image: {
  32084. source: "./media/characters/joanna/bike-left.svg",
  32085. extra: 720 / 720,
  32086. bottom: 8 / 728
  32087. }
  32088. },
  32089. bikeRight: {
  32090. height: math.unit(2.4, "meters"),
  32091. weight: math.unit(1600, "kg"),
  32092. name: "Bike (Right)",
  32093. image: {
  32094. source: "./media/characters/joanna/bike-right.svg",
  32095. extra: 720 / 720,
  32096. bottom: 8 / 728
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Incognito",
  32103. height: math.unit(3.5, "meters")
  32104. },
  32105. {
  32106. name: "Casual Big",
  32107. height: math.unit(200, "meters")
  32108. },
  32109. {
  32110. name: "Macro",
  32111. height: math.unit(600, "meters")
  32112. },
  32113. {
  32114. name: "Original",
  32115. height: math.unit(20, "km"),
  32116. default: true
  32117. },
  32118. {
  32119. name: "Giga",
  32120. height: math.unit(400, "km")
  32121. },
  32122. {
  32123. name: "Lounging",
  32124. height: math.unit(1500, "km")
  32125. },
  32126. {
  32127. name: "Planetary",
  32128. height: math.unit(200000, "km")
  32129. },
  32130. ]
  32131. ))
  32132. characterMakers.push(() => makeCharacter(
  32133. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32134. {
  32135. front: {
  32136. height: math.unit(6, "feet"),
  32137. weight: math.unit(150, "lb"),
  32138. name: "Front",
  32139. image: {
  32140. source: "./media/characters/hugo-sigil/front.svg",
  32141. extra: 522 / 500,
  32142. bottom: 2 / 524
  32143. }
  32144. },
  32145. back: {
  32146. height: math.unit(6, "feet"),
  32147. weight: math.unit(150, "lb"),
  32148. name: "Back",
  32149. image: {
  32150. source: "./media/characters/hugo-sigil/back.svg",
  32151. extra: 519 / 495,
  32152. bottom: 5 / 524
  32153. }
  32154. },
  32155. maw: {
  32156. height: math.unit(1.4, "feet"),
  32157. weight: math.unit(150, "lb"),
  32158. name: "Maw",
  32159. image: {
  32160. source: "./media/characters/hugo-sigil/maw.svg"
  32161. }
  32162. },
  32163. feet: {
  32164. height: math.unit(1.56, "feet"),
  32165. weight: math.unit(150, "lb"),
  32166. name: "Feet",
  32167. image: {
  32168. source: "./media/characters/hugo-sigil/feet.svg",
  32169. extra: 177 / 177,
  32170. bottom: 12 / 189
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(6, "feet")
  32178. },
  32179. {
  32180. name: "Macro",
  32181. height: math.unit(200, "feet"),
  32182. default: true
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(6, "feet"),
  32191. weight: math.unit(150, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/peri/front.svg",
  32195. extra: 2354 / 2233,
  32196. bottom: 49 / 2403
  32197. }
  32198. },
  32199. },
  32200. [
  32201. {
  32202. name: "Really Small",
  32203. height: math.unit(1, "nm")
  32204. },
  32205. {
  32206. name: "Micro",
  32207. height: math.unit(4, "inches")
  32208. },
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(7, "inches"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(400, "feet")
  32217. },
  32218. {
  32219. name: "Megamacro",
  32220. height: math.unit(100, "miles")
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32226. {
  32227. frontSlim: {
  32228. height: math.unit(7, "feet"),
  32229. name: "Front (Slim)",
  32230. image: {
  32231. source: "./media/characters/issilora/front-slim.svg",
  32232. extra: 529 / 449,
  32233. bottom: 53 / 582
  32234. }
  32235. },
  32236. sideSlim: {
  32237. height: math.unit(7, "feet"),
  32238. name: "Side (Slim)",
  32239. image: {
  32240. source: "./media/characters/issilora/side-slim.svg",
  32241. extra: 570 / 480,
  32242. bottom: 30 / 600
  32243. }
  32244. },
  32245. backSlim: {
  32246. height: math.unit(7, "feet"),
  32247. name: "Back (Slim)",
  32248. image: {
  32249. source: "./media/characters/issilora/back-slim.svg",
  32250. extra: 537 / 455,
  32251. bottom: 46 / 583
  32252. }
  32253. },
  32254. frontBuff: {
  32255. height: math.unit(7, "feet"),
  32256. name: "Front (Buff)",
  32257. image: {
  32258. source: "./media/characters/issilora/front-buff.svg",
  32259. extra: 2310 / 2035,
  32260. bottom: 335 / 2645
  32261. }
  32262. },
  32263. head: {
  32264. height: math.unit(1.94, "feet"),
  32265. name: "Head",
  32266. image: {
  32267. source: "./media/characters/issilora/head.svg"
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Minimum",
  32274. height: math.unit(7, "feet")
  32275. },
  32276. {
  32277. name: "Comfortable",
  32278. height: math.unit(17, "feet")
  32279. },
  32280. {
  32281. name: "Fun Size",
  32282. height: math.unit(47, "feet")
  32283. },
  32284. {
  32285. name: "Natural Macro",
  32286. height: math.unit(137, "feet"),
  32287. default: true
  32288. },
  32289. {
  32290. name: "Maximum Kaiju",
  32291. height: math.unit(397, "feet")
  32292. },
  32293. ]
  32294. ))
  32295. characterMakers.push(() => makeCharacter(
  32296. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32297. {
  32298. front: {
  32299. height: math.unit(50 + 9/12, "feet"),
  32300. weight: math.unit(32.8, "tons"),
  32301. name: "Front",
  32302. image: {
  32303. source: "./media/characters/irb'iiritaahn/front.svg",
  32304. extra: 1878/1826,
  32305. bottom: 326/2204
  32306. }
  32307. },
  32308. back: {
  32309. height: math.unit(50 + 9/12, "feet"),
  32310. weight: math.unit(32.8, "tons"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/irb'iiritaahn/back.svg",
  32314. extra: 2052/2018,
  32315. bottom: 152/2204
  32316. }
  32317. },
  32318. head: {
  32319. height: math.unit(12.86, "feet"),
  32320. name: "Head",
  32321. image: {
  32322. source: "./media/characters/irb'iiritaahn/head.svg"
  32323. }
  32324. },
  32325. maw: {
  32326. height: math.unit(9.66, "feet"),
  32327. name: "Maw",
  32328. image: {
  32329. source: "./media/characters/irb'iiritaahn/maw.svg"
  32330. }
  32331. },
  32332. frontDick: {
  32333. height: math.unit(8.78461, "feet"),
  32334. name: "Front Dick",
  32335. image: {
  32336. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32337. }
  32338. },
  32339. rearDick: {
  32340. height: math.unit(8.78461, "feet"),
  32341. name: "Rear Dick",
  32342. image: {
  32343. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32344. }
  32345. },
  32346. rearDickUnfolded: {
  32347. height: math.unit(8.78, "feet"),
  32348. name: "Rear Dick (Unfolded)",
  32349. image: {
  32350. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32351. }
  32352. },
  32353. wings: {
  32354. height: math.unit(43, "feet"),
  32355. name: "Wings",
  32356. image: {
  32357. source: "./media/characters/irb'iiritaahn/wings.svg"
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Macro",
  32364. height: math.unit(50 + 9/12, "feet"),
  32365. default: true
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32371. {
  32372. front: {
  32373. height: math.unit(205, "cm"),
  32374. weight: math.unit(102, "kg"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/irbisgreif/front.svg",
  32378. extra: 785/706,
  32379. bottom: 13/798
  32380. }
  32381. },
  32382. back: {
  32383. height: math.unit(205, "cm"),
  32384. weight: math.unit(102, "kg"),
  32385. name: "Back",
  32386. image: {
  32387. source: "./media/characters/irbisgreif/back.svg",
  32388. extra: 713/701,
  32389. bottom: 26/739
  32390. }
  32391. },
  32392. frontDressed: {
  32393. height: math.unit(216, "cm"),
  32394. weight: math.unit(102, "kg"),
  32395. name: "Front-dressed",
  32396. image: {
  32397. source: "./media/characters/irbisgreif/front-dressed.svg",
  32398. extra: 902/776,
  32399. bottom: 14/916
  32400. }
  32401. },
  32402. sideDressed: {
  32403. height: math.unit(195, "cm"),
  32404. weight: math.unit(102, "kg"),
  32405. name: "Side-dressed",
  32406. image: {
  32407. source: "./media/characters/irbisgreif/side-dressed.svg",
  32408. extra: 788/688,
  32409. bottom: 21/809
  32410. }
  32411. },
  32412. backDressed: {
  32413. height: math.unit(216, "cm"),
  32414. weight: math.unit(102, "kg"),
  32415. name: "Back-dressed",
  32416. image: {
  32417. source: "./media/characters/irbisgreif/back-dressed.svg",
  32418. extra: 901/783,
  32419. bottom: 10/911
  32420. }
  32421. },
  32422. dick: {
  32423. height: math.unit(0.49, "feet"),
  32424. name: "Dick",
  32425. image: {
  32426. source: "./media/characters/irbisgreif/dick.svg"
  32427. }
  32428. },
  32429. wingTop: {
  32430. height: math.unit(1.93 , "feet"),
  32431. name: "Wing-top",
  32432. image: {
  32433. source: "./media/characters/irbisgreif/wing-top.svg"
  32434. }
  32435. },
  32436. wingBottom: {
  32437. height: math.unit(1.93 , "feet"),
  32438. name: "Wing-bottom",
  32439. image: {
  32440. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32441. }
  32442. },
  32443. },
  32444. [
  32445. {
  32446. name: "Normal",
  32447. height: math.unit(216, "cm"),
  32448. default: true
  32449. },
  32450. ]
  32451. ))
  32452. characterMakers.push(() => makeCharacter(
  32453. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32454. {
  32455. front: {
  32456. height: math.unit(6, "feet"),
  32457. weight: math.unit(150, "lb"),
  32458. name: "Front",
  32459. image: {
  32460. source: "./media/characters/pride/front.svg",
  32461. extra: 1299/1230,
  32462. bottom: 18/1317
  32463. }
  32464. },
  32465. },
  32466. [
  32467. {
  32468. name: "Normal",
  32469. height: math.unit(7, "feet")
  32470. },
  32471. {
  32472. name: "Mini-macro",
  32473. height: math.unit(11, "feet")
  32474. },
  32475. {
  32476. name: "Macro",
  32477. height: math.unit(15, "meters"),
  32478. default: true
  32479. },
  32480. {
  32481. name: "Macro+",
  32482. height: math.unit(40, "meters")
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32488. {
  32489. front: {
  32490. height: math.unit(4 + 2 / 12, "feet"),
  32491. weight: math.unit(95, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/vaelophis-nyx/front.svg",
  32495. extra: 2532/2330,
  32496. bottom: 0/2532
  32497. }
  32498. },
  32499. back: {
  32500. height: math.unit(4 + 2 / 12, "feet"),
  32501. weight: math.unit(95, "lb"),
  32502. name: "Back",
  32503. image: {
  32504. source: "./media/characters/vaelophis-nyx/back.svg",
  32505. extra: 2484/2361,
  32506. bottom: 0/2484
  32507. }
  32508. },
  32509. feralSide: {
  32510. height: math.unit(2 + 1/12, "feet"),
  32511. weight: math.unit(20, "lb"),
  32512. name: "Feral (Side)",
  32513. image: {
  32514. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32515. extra: 1721/1581,
  32516. bottom: 70/1791
  32517. }
  32518. },
  32519. feralLazing: {
  32520. height: math.unit(1.08, "feet"),
  32521. weight: math.unit(20, "lb"),
  32522. name: "Feral (Lazing)",
  32523. image: {
  32524. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32525. extra: 822/822,
  32526. bottom: 248/1070
  32527. }
  32528. },
  32529. ear: {
  32530. height: math.unit(0.416, "feet"),
  32531. name: "Ear",
  32532. image: {
  32533. source: "./media/characters/vaelophis-nyx/ear.svg"
  32534. }
  32535. },
  32536. eye: {
  32537. height: math.unit(0.0748, "feet"),
  32538. name: "Eye",
  32539. image: {
  32540. source: "./media/characters/vaelophis-nyx/eye.svg"
  32541. }
  32542. },
  32543. mouth: {
  32544. height: math.unit(0.378, "feet"),
  32545. name: "Mouth",
  32546. image: {
  32547. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32548. }
  32549. },
  32550. spade: {
  32551. height: math.unit(0.55, "feet"),
  32552. name: "Spade",
  32553. image: {
  32554. source: "./media/characters/vaelophis-nyx/spade.svg"
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(4 + 2/12, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32568. {
  32569. front: {
  32570. height: math.unit(7, "feet"),
  32571. weight: math.unit(231, "lb"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/flux/front.svg",
  32575. extra: 919/871,
  32576. bottom: 0/919
  32577. }
  32578. },
  32579. back: {
  32580. height: math.unit(7, "feet"),
  32581. weight: math.unit(231, "lb"),
  32582. name: "Back",
  32583. image: {
  32584. source: "./media/characters/flux/back.svg",
  32585. extra: 1040/992,
  32586. bottom: 0/1040
  32587. }
  32588. },
  32589. frontDressed: {
  32590. height: math.unit(7, "feet"),
  32591. weight: math.unit(231, "lb"),
  32592. name: "Front (Dressed)",
  32593. image: {
  32594. source: "./media/characters/flux/front-dressed.svg",
  32595. extra: 919/871,
  32596. bottom: 0/919
  32597. }
  32598. },
  32599. feralSide: {
  32600. height: math.unit(5, "feet"),
  32601. weight: math.unit(150, "lb"),
  32602. name: "Feral (Side)",
  32603. image: {
  32604. source: "./media/characters/flux/feral-side.svg",
  32605. extra: 598/528,
  32606. bottom: 28/626
  32607. }
  32608. },
  32609. head: {
  32610. height: math.unit(1.585, "feet"),
  32611. name: "Head",
  32612. image: {
  32613. source: "./media/characters/flux/head.svg"
  32614. }
  32615. },
  32616. headSide: {
  32617. height: math.unit(1.74, "feet"),
  32618. name: "Head (Side)",
  32619. image: {
  32620. source: "./media/characters/flux/head-side.svg"
  32621. }
  32622. },
  32623. headSideFire: {
  32624. height: math.unit(1.76, "feet"),
  32625. name: "Head (Side, Fire)",
  32626. image: {
  32627. source: "./media/characters/flux/head-side-fire.svg"
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(7, "feet"),
  32635. default: true
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32641. {
  32642. front: {
  32643. height: math.unit(9, "feet"),
  32644. weight: math.unit(1012, "lb"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/ulfra-lupae/front.svg",
  32648. extra: 1083/1011,
  32649. bottom: 67/1150
  32650. }
  32651. },
  32652. },
  32653. [
  32654. {
  32655. name: "Micro",
  32656. height: math.unit(6, "inches")
  32657. },
  32658. {
  32659. name: "Socializing",
  32660. height: math.unit(6 + 5/12, "feet")
  32661. },
  32662. {
  32663. name: "Normal",
  32664. height: math.unit(9, "feet"),
  32665. default: true
  32666. },
  32667. {
  32668. name: "Macro",
  32669. height: math.unit(150, "feet")
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32675. {
  32676. front: {
  32677. height: math.unit(5 + 2/12, "feet"),
  32678. weight: math.unit(120, "lb"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/timber/front.svg",
  32682. extra: 2814/2705,
  32683. bottom: 181/2995
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(5 + 2/12, "feet"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(9, "feet"),
  32700. name: "Front",
  32701. image: {
  32702. source: "./media/characters/nicki/front.svg",
  32703. extra: 1240/990,
  32704. bottom: 45/1285
  32705. },
  32706. form: "anthro",
  32707. default: true
  32708. },
  32709. side: {
  32710. height: math.unit(9, "feet"),
  32711. name: "Side",
  32712. image: {
  32713. source: "./media/characters/nicki/side.svg",
  32714. extra: 1047/973,
  32715. bottom: 61/1108
  32716. },
  32717. form: "anthro"
  32718. },
  32719. back: {
  32720. height: math.unit(9, "feet"),
  32721. name: "Back",
  32722. image: {
  32723. source: "./media/characters/nicki/back.svg",
  32724. extra: 1006/965,
  32725. bottom: 39/1045
  32726. },
  32727. form: "anthro"
  32728. },
  32729. taur: {
  32730. height: math.unit(15, "feet"),
  32731. name: "Taur",
  32732. image: {
  32733. source: "./media/characters/nicki/taur.svg",
  32734. extra: 1592/1347,
  32735. bottom: 0/1592
  32736. },
  32737. form: "taur",
  32738. default: true
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(9, "feet"),
  32745. form: "anthro",
  32746. default: true
  32747. },
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(15, "feet"),
  32751. form: "taur",
  32752. default: true
  32753. }
  32754. ],
  32755. {
  32756. "anthro": {
  32757. name: "Anthro",
  32758. default: true
  32759. },
  32760. "taur": {
  32761. name: "Taur"
  32762. }
  32763. }
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32767. {
  32768. front: {
  32769. height: math.unit(7 + 10/12, "feet"),
  32770. weight: math.unit(3.5, "tons"),
  32771. name: "Front",
  32772. image: {
  32773. source: "./media/characters/lee/front.svg",
  32774. extra: 1773/1615,
  32775. bottom: 86/1859
  32776. }
  32777. },
  32778. hand: {
  32779. height: math.unit(1.78, "feet"),
  32780. name: "Hand",
  32781. image: {
  32782. source: "./media/characters/lee/hand.svg"
  32783. }
  32784. },
  32785. maw: {
  32786. height: math.unit(1.18, "feet"),
  32787. name: "Maw",
  32788. image: {
  32789. source: "./media/characters/lee/maw.svg"
  32790. }
  32791. },
  32792. },
  32793. [
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(7 + 10/12, "feet"),
  32797. default: true
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32803. {
  32804. front: {
  32805. height: math.unit(9, "feet"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/guti/front.svg",
  32809. extra: 4551/4355,
  32810. bottom: 123/4674
  32811. }
  32812. },
  32813. tongue: {
  32814. height: math.unit(1, "feet"),
  32815. name: "Tongue",
  32816. image: {
  32817. source: "./media/characters/guti/tongue.svg"
  32818. }
  32819. },
  32820. paw: {
  32821. height: math.unit(1.18, "feet"),
  32822. name: "Paw",
  32823. image: {
  32824. source: "./media/characters/guti/paw.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(9, "feet"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32838. {
  32839. side: {
  32840. height: math.unit(5, "meters"),
  32841. name: "Side",
  32842. image: {
  32843. source: "./media/characters/vesper/side.svg",
  32844. extra: 1605/1518,
  32845. bottom: 0/1605
  32846. }
  32847. },
  32848. },
  32849. [
  32850. {
  32851. name: "Small",
  32852. height: math.unit(5, "meters")
  32853. },
  32854. {
  32855. name: "Sage",
  32856. height: math.unit(100, "meters"),
  32857. default: true
  32858. },
  32859. {
  32860. name: "Fun Size",
  32861. height: math.unit(600, "meters")
  32862. },
  32863. {
  32864. name: "Goddess",
  32865. height: math.unit(20000, "km")
  32866. },
  32867. {
  32868. name: "Maximum",
  32869. height: math.unit(5, "galaxies")
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32875. {
  32876. front: {
  32877. height: math.unit(6 + 3/12, "feet"),
  32878. weight: math.unit(190, "lb"),
  32879. name: "Front",
  32880. image: {
  32881. source: "./media/characters/gawain/front.svg",
  32882. extra: 2222/2139,
  32883. bottom: 90/2312
  32884. }
  32885. },
  32886. back: {
  32887. height: math.unit(6 + 3/12, "feet"),
  32888. weight: math.unit(190, "lb"),
  32889. name: "Back",
  32890. image: {
  32891. source: "./media/characters/gawain/back.svg",
  32892. extra: 2199/2111,
  32893. bottom: 73/2272
  32894. }
  32895. },
  32896. },
  32897. [
  32898. {
  32899. name: "Normal",
  32900. height: math.unit(6 + 3/12, "feet"),
  32901. default: true
  32902. },
  32903. ]
  32904. ))
  32905. characterMakers.push(() => makeCharacter(
  32906. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32907. {
  32908. side: {
  32909. height: math.unit(3.5, "meters"),
  32910. weight: math.unit(16000, "lb"),
  32911. name: "Side",
  32912. image: {
  32913. source: "./media/characters/dascalti/side.svg",
  32914. extra: 392/273,
  32915. bottom: 47/439
  32916. }
  32917. },
  32918. breath: {
  32919. height: math.unit(7.4, "feet"),
  32920. name: "Breath",
  32921. image: {
  32922. source: "./media/characters/dascalti/breath.svg"
  32923. }
  32924. },
  32925. fed: {
  32926. height: math.unit(3.6, "meters"),
  32927. weight: math.unit(16000, "lb"),
  32928. name: "Fed",
  32929. image: {
  32930. source: "./media/characters/dascalti/fed.svg",
  32931. extra: 1419/820,
  32932. bottom: 95/1514
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Normal",
  32939. height: math.unit(3.5, "meters"),
  32940. default: true
  32941. },
  32942. ]
  32943. ))
  32944. characterMakers.push(() => makeCharacter(
  32945. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32946. {
  32947. front: {
  32948. height: math.unit(3 + 5/12, "feet"),
  32949. name: "Front",
  32950. image: {
  32951. source: "./media/characters/mauve/front.svg",
  32952. extra: 1126/1033,
  32953. bottom: 65/1191
  32954. }
  32955. },
  32956. side: {
  32957. height: math.unit(3 + 5/12, "feet"),
  32958. name: "Side",
  32959. image: {
  32960. source: "./media/characters/mauve/side.svg",
  32961. extra: 1089/1001,
  32962. bottom: 29/1118
  32963. }
  32964. },
  32965. back: {
  32966. height: math.unit(3 + 5/12, "feet"),
  32967. name: "Back",
  32968. image: {
  32969. source: "./media/characters/mauve/back.svg",
  32970. extra: 1173/1053,
  32971. bottom: 109/1282
  32972. }
  32973. },
  32974. },
  32975. [
  32976. {
  32977. name: "Normal",
  32978. height: math.unit(3 + 5/12, "feet"),
  32979. default: true
  32980. },
  32981. ]
  32982. ))
  32983. characterMakers.push(() => makeCharacter(
  32984. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32985. {
  32986. front: {
  32987. height: math.unit(6 + 3/12, "feet"),
  32988. weight: math.unit(430, "lb"),
  32989. name: "Front",
  32990. image: {
  32991. source: "./media/characters/carlos/front.svg",
  32992. extra: 1964/1913,
  32993. bottom: 70/2034
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(6 + 3/12, "feet"),
  33001. default: true
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33007. {
  33008. back: {
  33009. height: math.unit(5 + 10/12, "feet"),
  33010. weight: math.unit(200, "lb"),
  33011. name: "Back",
  33012. image: {
  33013. source: "./media/characters/jax/back.svg",
  33014. extra: 764/739,
  33015. bottom: 25/789
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Normal",
  33022. height: math.unit(5 + 10/12, "feet"),
  33023. default: true
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33029. {
  33030. front: {
  33031. height: math.unit(8, "feet"),
  33032. weight: math.unit(250, "lb"),
  33033. name: "Front",
  33034. image: {
  33035. source: "./media/characters/eikthynir/front.svg",
  33036. extra: 1332/1166,
  33037. bottom: 82/1414
  33038. }
  33039. },
  33040. back: {
  33041. height: math.unit(8, "feet"),
  33042. weight: math.unit(250, "lb"),
  33043. name: "Back",
  33044. image: {
  33045. source: "./media/characters/eikthynir/back.svg",
  33046. extra: 1342/1190,
  33047. bottom: 19/1361
  33048. }
  33049. },
  33050. dick: {
  33051. height: math.unit(2.35, "feet"),
  33052. name: "Dick",
  33053. image: {
  33054. source: "./media/characters/eikthynir/dick.svg"
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Normal",
  33061. height: math.unit(8, "feet"),
  33062. default: true
  33063. },
  33064. ]
  33065. ))
  33066. characterMakers.push(() => makeCharacter(
  33067. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33068. {
  33069. front: {
  33070. height: math.unit(99, "meters"),
  33071. weight: math.unit(13000, "tons"),
  33072. name: "Front",
  33073. image: {
  33074. source: "./media/characters/zlmos/front.svg",
  33075. extra: 2202/1992,
  33076. bottom: 315/2517
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Macro",
  33083. height: math.unit(99, "meters"),
  33084. default: true
  33085. },
  33086. ]
  33087. ))
  33088. characterMakers.push(() => makeCharacter(
  33089. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33090. {
  33091. front: {
  33092. height: math.unit(6 + 5/12, "feet"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/purri/front.svg",
  33096. extra: 1698/1610,
  33097. bottom: 32/1730
  33098. }
  33099. },
  33100. frontAlt: {
  33101. height: math.unit(6 + 5/12, "feet"),
  33102. name: "Front (Alt)",
  33103. image: {
  33104. source: "./media/characters/purri/front-alt.svg",
  33105. extra: 450/420,
  33106. bottom: 26/476
  33107. }
  33108. },
  33109. boots: {
  33110. height: math.unit(5.5, "feet"),
  33111. name: "Boots",
  33112. image: {
  33113. source: "./media/characters/purri/boots.svg",
  33114. extra: 905/853,
  33115. bottom: 18/923
  33116. }
  33117. },
  33118. lying: {
  33119. height: math.unit(2, "feet"),
  33120. name: "Lying",
  33121. image: {
  33122. source: "./media/characters/purri/lying.svg",
  33123. extra: 940/843,
  33124. bottom: 146/1086
  33125. }
  33126. },
  33127. devious: {
  33128. height: math.unit(1.77, "feet"),
  33129. name: "Devious",
  33130. image: {
  33131. source: "./media/characters/purri/devious.svg",
  33132. extra: 1440/1155,
  33133. bottom: 147/1587
  33134. }
  33135. },
  33136. bean: {
  33137. height: math.unit(1.94, "feet"),
  33138. name: "Bean",
  33139. image: {
  33140. source: "./media/characters/purri/bean.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Micro",
  33147. height: math.unit(1, "mm")
  33148. },
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(6 + 5/12, "feet"),
  33152. default: true
  33153. },
  33154. {
  33155. name: "Macro :3c",
  33156. height: math.unit(2, "miles")
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(6 + 2/12, "feet"),
  33165. weight: math.unit(250, "lb"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/moonlight/front.svg",
  33169. extra: 1044/908,
  33170. bottom: 56/1100
  33171. }
  33172. },
  33173. feral: {
  33174. height: math.unit(3 + 1/12, "feet"),
  33175. weight: math.unit(50, "kg"),
  33176. name: "Feral",
  33177. image: {
  33178. source: "./media/characters/moonlight/feral.svg",
  33179. extra: 3705/2791,
  33180. bottom: 145/3850
  33181. }
  33182. },
  33183. paw: {
  33184. height: math.unit(1, "feet"),
  33185. name: "Paw",
  33186. image: {
  33187. source: "./media/characters/moonlight/paw.svg"
  33188. }
  33189. },
  33190. paws: {
  33191. height: math.unit(0.98, "feet"),
  33192. name: "Paws",
  33193. image: {
  33194. source: "./media/characters/moonlight/paws.svg",
  33195. extra: 939/939,
  33196. bottom: 50/989
  33197. }
  33198. },
  33199. mouth: {
  33200. height: math.unit(0.48, "feet"),
  33201. name: "Mouth",
  33202. image: {
  33203. source: "./media/characters/moonlight/mouth.svg"
  33204. }
  33205. },
  33206. dick: {
  33207. height: math.unit(1.46, "feet"),
  33208. name: "Dick",
  33209. image: {
  33210. source: "./media/characters/moonlight/dick.svg"
  33211. }
  33212. },
  33213. },
  33214. [
  33215. {
  33216. name: "Normal",
  33217. height: math.unit(6 + 2/12, "feet"),
  33218. default: true
  33219. },
  33220. {
  33221. name: "Macro",
  33222. height: math.unit(300, "feet")
  33223. },
  33224. {
  33225. name: "Macro+",
  33226. height: math.unit(1, "mile")
  33227. },
  33228. {
  33229. name: "Mt. Moon",
  33230. height: math.unit(5, "miles")
  33231. },
  33232. {
  33233. name: "Megamacro",
  33234. height: math.unit(15, "miles")
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33240. {
  33241. back: {
  33242. height: math.unit(6, "feet"),
  33243. weight: math.unit(150, "lb"),
  33244. name: "Back",
  33245. image: {
  33246. source: "./media/characters/sylen/back.svg",
  33247. extra: 1335/1273,
  33248. bottom: 107/1442
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(5 + 5/12, "feet")
  33256. },
  33257. {
  33258. name: "Megamacro",
  33259. height: math.unit(3, "miles"),
  33260. default: true
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33266. {
  33267. front: {
  33268. height: math.unit(6, "feet"),
  33269. weight: math.unit(190, "lb"),
  33270. name: "Front",
  33271. image: {
  33272. source: "./media/characters/huttser/front.svg",
  33273. extra: 1152/1058,
  33274. bottom: 23/1175
  33275. }
  33276. },
  33277. side: {
  33278. height: math.unit(6, "feet"),
  33279. weight: math.unit(190, "lb"),
  33280. name: "Side",
  33281. image: {
  33282. source: "./media/characters/huttser/side.svg",
  33283. extra: 1174/1065,
  33284. bottom: 18/1192
  33285. }
  33286. },
  33287. back: {
  33288. height: math.unit(6, "feet"),
  33289. weight: math.unit(190, "lb"),
  33290. name: "Back",
  33291. image: {
  33292. source: "./media/characters/huttser/back.svg",
  33293. extra: 1158/1056,
  33294. bottom: 12/1170
  33295. }
  33296. },
  33297. },
  33298. [
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33303. {
  33304. side: {
  33305. height: math.unit(12 + 9/12, "feet"),
  33306. weight: math.unit(15000, "lb"),
  33307. name: "Side",
  33308. image: {
  33309. source: "./media/characters/faan/side.svg",
  33310. extra: 2747/2697,
  33311. bottom: 0/2747
  33312. }
  33313. },
  33314. front: {
  33315. height: math.unit(12 + 9/12, "feet"),
  33316. weight: math.unit(15000, "lb"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/faan/front.svg",
  33320. extra: 607/571,
  33321. bottom: 24/631
  33322. }
  33323. },
  33324. head: {
  33325. height: math.unit(2.85, "feet"),
  33326. name: "Head",
  33327. image: {
  33328. source: "./media/characters/faan/head.svg"
  33329. }
  33330. },
  33331. headAlt: {
  33332. height: math.unit(3.13, "feet"),
  33333. name: "Head-alt",
  33334. image: {
  33335. source: "./media/characters/faan/head-alt.svg"
  33336. }
  33337. },
  33338. },
  33339. [
  33340. {
  33341. name: "Normal",
  33342. height: math.unit(12 + 9/12, "feet"),
  33343. default: true
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(6, "feet"),
  33352. weight: math.unit(300, "lb"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/tanio/front.svg",
  33356. extra: 711/673,
  33357. bottom: 25/736
  33358. }
  33359. },
  33360. },
  33361. [
  33362. {
  33363. name: "Normal",
  33364. height: math.unit(6, "feet"),
  33365. default: true
  33366. },
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33371. {
  33372. front: {
  33373. height: math.unit(3, "inches"),
  33374. name: "Front",
  33375. image: {
  33376. source: "./media/characters/noboru/front.svg",
  33377. extra: 1039/932,
  33378. bottom: 18/1057
  33379. }
  33380. },
  33381. },
  33382. [
  33383. {
  33384. name: "Micro",
  33385. height: math.unit(3, "inches"),
  33386. default: true
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(1.85, "meters"),
  33395. weight: math.unit(80, "kg"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/daniel-barrett/front.svg",
  33399. extra: 355/337,
  33400. bottom: 9/364
  33401. }
  33402. },
  33403. },
  33404. [
  33405. {
  33406. name: "Pico",
  33407. height: math.unit(0.0433, "mm")
  33408. },
  33409. {
  33410. name: "Nano",
  33411. height: math.unit(1.5, "mm")
  33412. },
  33413. {
  33414. name: "Micro",
  33415. height: math.unit(5.3, "cm"),
  33416. default: true
  33417. },
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(1.85, "meters")
  33421. },
  33422. {
  33423. name: "Macro",
  33424. height: math.unit(64.7, "meters")
  33425. },
  33426. {
  33427. name: "Megamacro",
  33428. height: math.unit(2.26, "km")
  33429. },
  33430. {
  33431. name: "Gigamacro",
  33432. height: math.unit(79, "km")
  33433. },
  33434. {
  33435. name: "Teramacro",
  33436. height: math.unit(2765, "km")
  33437. },
  33438. {
  33439. name: "Petamacro",
  33440. height: math.unit(96678, "km")
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(30, "meters"),
  33449. weight: math.unit(400, "tons"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/zeel/front.svg",
  33453. extra: 2599/2599,
  33454. bottom: 226/2825
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Macro",
  33461. height: math.unit(30, "meters"),
  33462. default: true
  33463. },
  33464. ]
  33465. ))
  33466. characterMakers.push(() => makeCharacter(
  33467. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33468. {
  33469. front: {
  33470. height: math.unit(6 + 7/12, "feet"),
  33471. weight: math.unit(210, "lb"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/tarn/front.svg",
  33475. extra: 3517/3220,
  33476. bottom: 91/3608
  33477. }
  33478. },
  33479. back: {
  33480. height: math.unit(6 + 7/12, "feet"),
  33481. weight: math.unit(210, "lb"),
  33482. name: "Back",
  33483. image: {
  33484. source: "./media/characters/tarn/back.svg",
  33485. extra: 3566/3241,
  33486. bottom: 34/3600
  33487. }
  33488. },
  33489. dick: {
  33490. height: math.unit(1.65, "feet"),
  33491. name: "Dick",
  33492. image: {
  33493. source: "./media/characters/tarn/dick.svg"
  33494. }
  33495. },
  33496. paw: {
  33497. height: math.unit(1.80, "feet"),
  33498. name: "Paw",
  33499. image: {
  33500. source: "./media/characters/tarn/paw.svg"
  33501. }
  33502. },
  33503. tongue: {
  33504. height: math.unit(0.97, "feet"),
  33505. name: "Tongue",
  33506. image: {
  33507. source: "./media/characters/tarn/tongue.svg"
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Micro",
  33514. height: math.unit(4, "inches")
  33515. },
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(6 + 7/12, "feet"),
  33519. default: true
  33520. },
  33521. {
  33522. name: "Macro",
  33523. height: math.unit(300, "feet")
  33524. },
  33525. ]
  33526. ))
  33527. characterMakers.push(() => makeCharacter(
  33528. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33529. {
  33530. front: {
  33531. height: math.unit(5 + 7/12, "feet"),
  33532. weight: math.unit(80, "kg"),
  33533. name: "Front",
  33534. image: {
  33535. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33536. extra: 3023/2865,
  33537. bottom: 33/3056
  33538. }
  33539. },
  33540. back: {
  33541. height: math.unit(5 + 7/12, "feet"),
  33542. weight: math.unit(80, "kg"),
  33543. name: "Back",
  33544. image: {
  33545. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33546. extra: 3020/2886,
  33547. bottom: 30/3050
  33548. }
  33549. },
  33550. dick: {
  33551. height: math.unit(0.98, "feet"),
  33552. name: "Dick",
  33553. image: {
  33554. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33555. }
  33556. },
  33557. anatomy: {
  33558. height: math.unit(2.86, "feet"),
  33559. name: "Anatomy",
  33560. image: {
  33561. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Really Small",
  33568. height: math.unit(2, "inches")
  33569. },
  33570. {
  33571. name: "Micro",
  33572. height: math.unit(5.583, "inches")
  33573. },
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(5 + 7/12, "feet"),
  33577. default: true
  33578. },
  33579. {
  33580. name: "Macro",
  33581. height: math.unit(67, "feet")
  33582. },
  33583. {
  33584. name: "Megamacro",
  33585. height: math.unit(134, "feet")
  33586. },
  33587. ]
  33588. ))
  33589. characterMakers.push(() => makeCharacter(
  33590. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33591. {
  33592. front: {
  33593. height: math.unit(9, "feet"),
  33594. weight: math.unit(120, "lb"),
  33595. name: "Front",
  33596. image: {
  33597. source: "./media/characters/sally/front.svg",
  33598. extra: 1506/1349,
  33599. bottom: 66/1572
  33600. }
  33601. },
  33602. },
  33603. [
  33604. {
  33605. name: "Normal",
  33606. height: math.unit(9, "feet"),
  33607. default: true
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33613. {
  33614. front: {
  33615. height: math.unit(8, "feet"),
  33616. weight: math.unit(900, "lb"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/owen/front.svg",
  33620. extra: 1761/1657,
  33621. bottom: 74/1835
  33622. }
  33623. },
  33624. side: {
  33625. height: math.unit(8, "feet"),
  33626. weight: math.unit(900, "lb"),
  33627. name: "Side",
  33628. image: {
  33629. source: "./media/characters/owen/side.svg",
  33630. extra: 1797/1734,
  33631. bottom: 30/1827
  33632. }
  33633. },
  33634. back: {
  33635. height: math.unit(8, "feet"),
  33636. weight: math.unit(900, "lb"),
  33637. name: "Back",
  33638. image: {
  33639. source: "./media/characters/owen/back.svg",
  33640. extra: 1796/1706,
  33641. bottom: 59/1855
  33642. }
  33643. },
  33644. maw: {
  33645. height: math.unit(1.76, "feet"),
  33646. name: "Maw",
  33647. image: {
  33648. source: "./media/characters/owen/maw.svg"
  33649. }
  33650. },
  33651. },
  33652. [
  33653. {
  33654. name: "Normal",
  33655. height: math.unit(8, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33662. {
  33663. front: {
  33664. height: math.unit(4, "feet"),
  33665. weight: math.unit(400, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/ryth/front.svg",
  33669. extra: 1920/1748,
  33670. bottom: 42/1962
  33671. }
  33672. },
  33673. back: {
  33674. height: math.unit(4, "feet"),
  33675. weight: math.unit(400, "lb"),
  33676. name: "Back",
  33677. image: {
  33678. source: "./media/characters/ryth/back.svg",
  33679. extra: 1897/1690,
  33680. bottom: 89/1986
  33681. }
  33682. },
  33683. mouth: {
  33684. height: math.unit(1.39, "feet"),
  33685. name: "Mouth",
  33686. image: {
  33687. source: "./media/characters/ryth/mouth.svg"
  33688. }
  33689. },
  33690. tailmaw: {
  33691. height: math.unit(1.23, "feet"),
  33692. name: "Tailmaw",
  33693. image: {
  33694. source: "./media/characters/ryth/tailmaw.svg"
  33695. }
  33696. },
  33697. goia: {
  33698. height: math.unit(4, "meters"),
  33699. weight: math.unit(10800, "lb"),
  33700. name: "Goia",
  33701. image: {
  33702. source: "./media/characters/ryth/goia.svg",
  33703. extra: 745/640,
  33704. bottom: 107/852
  33705. }
  33706. },
  33707. goiaFront: {
  33708. height: math.unit(4, "meters"),
  33709. weight: math.unit(10800, "lb"),
  33710. name: "Goia (Front)",
  33711. image: {
  33712. source: "./media/characters/ryth/goia-front.svg",
  33713. extra: 750/586,
  33714. bottom: 114/864
  33715. }
  33716. },
  33717. goiaMaw: {
  33718. height: math.unit(5.55, "feet"),
  33719. name: "Goia Maw",
  33720. image: {
  33721. source: "./media/characters/ryth/goia-maw.svg"
  33722. }
  33723. },
  33724. goiaForepaw: {
  33725. height: math.unit(3.5, "feet"),
  33726. name: "Goia Forepaw",
  33727. image: {
  33728. source: "./media/characters/ryth/goia-forepaw.svg"
  33729. }
  33730. },
  33731. goiaHindpaw: {
  33732. height: math.unit(5.55, "feet"),
  33733. name: "Goia Hindpaw",
  33734. image: {
  33735. source: "./media/characters/ryth/goia-hindpaw.svg"
  33736. }
  33737. },
  33738. },
  33739. [
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(4, "feet"),
  33743. default: true
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(7, "feet"),
  33752. weight: math.unit(180, "lb"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/necrolance/front.svg",
  33756. extra: 1062/947,
  33757. bottom: 41/1103
  33758. }
  33759. },
  33760. back: {
  33761. height: math.unit(7, "feet"),
  33762. weight: math.unit(180, "lb"),
  33763. name: "Back",
  33764. image: {
  33765. source: "./media/characters/necrolance/back.svg",
  33766. extra: 1045/984,
  33767. bottom: 14/1059
  33768. }
  33769. },
  33770. wing: {
  33771. height: math.unit(2.67, "feet"),
  33772. name: "Wing",
  33773. image: {
  33774. source: "./media/characters/necrolance/wing.svg"
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(7, "feet"),
  33782. default: true
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33788. {
  33789. front: {
  33790. height: math.unit(76, "meters"),
  33791. weight: math.unit(30000, "tons"),
  33792. name: "Front",
  33793. image: {
  33794. source: "./media/characters/tyler/front.svg",
  33795. extra: 1640/1640,
  33796. bottom: 114/1754
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Macro",
  33803. height: math.unit(76, "meters"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(4 + 11/12, "feet"),
  33813. weight: math.unit(132, "lb"),
  33814. name: "Front",
  33815. image: {
  33816. source: "./media/characters/icey/front.svg",
  33817. extra: 2750/2550,
  33818. bottom: 33/2783
  33819. }
  33820. },
  33821. back: {
  33822. height: math.unit(4 + 11/12, "feet"),
  33823. weight: math.unit(132, "lb"),
  33824. name: "Back",
  33825. image: {
  33826. source: "./media/characters/icey/back.svg",
  33827. extra: 2624/2481,
  33828. bottom: 35/2659
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(4 + 11/12, "feet"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(100, "feet"),
  33845. weight: math.unit(0, "lb"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/smile/front.svg",
  33849. extra: 2983/2912,
  33850. bottom: 162/3145
  33851. }
  33852. },
  33853. back: {
  33854. height: math.unit(100, "feet"),
  33855. weight: math.unit(0, "lb"),
  33856. name: "Back",
  33857. image: {
  33858. source: "./media/characters/smile/back.svg",
  33859. extra: 3143/3031,
  33860. bottom: 91/3234
  33861. }
  33862. },
  33863. head: {
  33864. height: math.unit(26.3, "feet"),
  33865. weight: math.unit(0, "lb"),
  33866. name: "Head",
  33867. image: {
  33868. source: "./media/characters/smile/head.svg"
  33869. }
  33870. },
  33871. collar: {
  33872. height: math.unit(5.3, "feet"),
  33873. weight: math.unit(0, "lb"),
  33874. name: "Collar",
  33875. image: {
  33876. source: "./media/characters/smile/collar.svg"
  33877. }
  33878. },
  33879. },
  33880. [
  33881. {
  33882. name: "Macro",
  33883. height: math.unit(100, "feet"),
  33884. default: true
  33885. },
  33886. ]
  33887. ))
  33888. characterMakers.push(() => makeCharacter(
  33889. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33890. {
  33891. dragon: {
  33892. height: math.unit(26, "feet"),
  33893. weight: math.unit(36, "tons"),
  33894. name: "Dragon",
  33895. image: {
  33896. source: "./media/characters/arimphae/dragon.svg",
  33897. extra: 1574/983,
  33898. bottom: 357/1931
  33899. }
  33900. },
  33901. drake: {
  33902. height: math.unit(9, "feet"),
  33903. weight: math.unit(1.5, "tons"),
  33904. name: "Drake",
  33905. image: {
  33906. source: "./media/characters/arimphae/drake.svg",
  33907. extra: 1120/925,
  33908. bottom: 435/1555
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Small",
  33915. height: math.unit(26*5/9, "feet")
  33916. },
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(26, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33926. {
  33927. front: {
  33928. height: math.unit(8 + 9/12, "feet"),
  33929. name: "Front",
  33930. image: {
  33931. source: "./media/characters/xander/front.svg",
  33932. extra: 1237/974,
  33933. bottom: 94/1331
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Normal",
  33940. height: math.unit(8 + 9/12, "feet"),
  33941. default: true
  33942. },
  33943. {
  33944. name: "Gaze Grabber",
  33945. height: math.unit(13 + 8/12, "feet")
  33946. },
  33947. {
  33948. name: "Jaw Dropper",
  33949. height: math.unit(27, "feet")
  33950. },
  33951. {
  33952. name: "Show Stopper",
  33953. height: math.unit(136, "feet")
  33954. },
  33955. {
  33956. name: "Superstar",
  33957. height: math.unit(1.9e6, "miles")
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33963. {
  33964. side: {
  33965. height: math.unit(2100, "feet"),
  33966. name: "Side",
  33967. image: {
  33968. source: "./media/characters/osiris/side.svg",
  33969. extra: 1105/939,
  33970. bottom: 167/1272
  33971. }
  33972. },
  33973. },
  33974. [
  33975. {
  33976. name: "Macro",
  33977. height: math.unit(2100, "feet"),
  33978. default: true
  33979. },
  33980. ]
  33981. ))
  33982. characterMakers.push(() => makeCharacter(
  33983. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33984. {
  33985. front: {
  33986. height: math.unit(6 + 8/12, "feet"),
  33987. weight: math.unit(225, "lb"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/rhys-londe/front.svg",
  33991. extra: 2258/2141,
  33992. bottom: 188/2446
  33993. }
  33994. },
  33995. back: {
  33996. height: math.unit(6 + 8/12, "feet"),
  33997. weight: math.unit(225, "lb"),
  33998. name: "Back",
  33999. image: {
  34000. source: "./media/characters/rhys-londe/back.svg",
  34001. extra: 2237/2137,
  34002. bottom: 63/2300
  34003. }
  34004. },
  34005. frontNsfw: {
  34006. height: math.unit(6 + 8/12, "feet"),
  34007. weight: math.unit(225, "lb"),
  34008. name: "Front (NSFW)",
  34009. image: {
  34010. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34011. extra: 2258/2141,
  34012. bottom: 188/2446
  34013. }
  34014. },
  34015. backNsfw: {
  34016. height: math.unit(6 + 8/12, "feet"),
  34017. weight: math.unit(225, "lb"),
  34018. name: "Back (NSFW)",
  34019. image: {
  34020. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34021. extra: 2237/2137,
  34022. bottom: 63/2300
  34023. }
  34024. },
  34025. dick: {
  34026. height: math.unit(30, "inches"),
  34027. name: "Dick",
  34028. image: {
  34029. source: "./media/characters/rhys-londe/dick.svg"
  34030. }
  34031. },
  34032. maw: {
  34033. height: math.unit(1.6, "feet"),
  34034. name: "Maw",
  34035. image: {
  34036. source: "./media/characters/rhys-londe/maw.svg"
  34037. }
  34038. },
  34039. },
  34040. [
  34041. {
  34042. name: "Normal",
  34043. height: math.unit(6 + 8/12, "feet"),
  34044. default: true
  34045. },
  34046. ]
  34047. ))
  34048. characterMakers.push(() => makeCharacter(
  34049. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34050. {
  34051. front: {
  34052. height: math.unit(3 + 10/12, "feet"),
  34053. weight: math.unit(90, "lb"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/taivas-ensim/front.svg",
  34057. extra: 1327/1216,
  34058. bottom: 96/1423
  34059. }
  34060. },
  34061. back: {
  34062. height: math.unit(3 + 10/12, "feet"),
  34063. weight: math.unit(90, "lb"),
  34064. name: "Back",
  34065. image: {
  34066. source: "./media/characters/taivas-ensim/back.svg",
  34067. extra: 1355/1247,
  34068. bottom: 11/1366
  34069. }
  34070. },
  34071. frontNsfw: {
  34072. height: math.unit(3 + 10/12, "feet"),
  34073. weight: math.unit(90, "lb"),
  34074. name: "Front (NSFW)",
  34075. image: {
  34076. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34077. extra: 1327/1216,
  34078. bottom: 96/1423
  34079. }
  34080. },
  34081. backNsfw: {
  34082. height: math.unit(3 + 10/12, "feet"),
  34083. weight: math.unit(90, "lb"),
  34084. name: "Back (NSFW)",
  34085. image: {
  34086. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34087. extra: 1355/1247,
  34088. bottom: 11/1366
  34089. }
  34090. },
  34091. },
  34092. [
  34093. {
  34094. name: "Normal",
  34095. height: math.unit(3 + 10/12, "feet"),
  34096. default: true
  34097. },
  34098. ]
  34099. ))
  34100. characterMakers.push(() => makeCharacter(
  34101. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34102. {
  34103. front: {
  34104. height: math.unit(9 + 6/12, "feet"),
  34105. weight: math.unit(940, "lb"),
  34106. name: "Front",
  34107. image: {
  34108. source: "./media/characters/byliss/front.svg",
  34109. extra: 1327/1290,
  34110. bottom: 82/1409
  34111. }
  34112. },
  34113. back: {
  34114. height: math.unit(9 + 6/12, "feet"),
  34115. weight: math.unit(940, "lb"),
  34116. name: "Back",
  34117. image: {
  34118. source: "./media/characters/byliss/back.svg",
  34119. extra: 1376/1349,
  34120. bottom: 9/1385
  34121. }
  34122. },
  34123. frontNsfw: {
  34124. height: math.unit(9 + 6/12, "feet"),
  34125. weight: math.unit(940, "lb"),
  34126. name: "Front (NSFW)",
  34127. image: {
  34128. source: "./media/characters/byliss/front-nsfw.svg",
  34129. extra: 1327/1290,
  34130. bottom: 82/1409
  34131. }
  34132. },
  34133. backNsfw: {
  34134. height: math.unit(9 + 6/12, "feet"),
  34135. weight: math.unit(940, "lb"),
  34136. name: "Back (NSFW)",
  34137. image: {
  34138. source: "./media/characters/byliss/back-nsfw.svg",
  34139. extra: 1376/1349,
  34140. bottom: 9/1385
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Normal",
  34147. height: math.unit(9 + 6/12, "feet"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34154. {
  34155. front: {
  34156. height: math.unit(5 + 2/12, "feet"),
  34157. weight: math.unit(200, "lb"),
  34158. name: "Front",
  34159. image: {
  34160. source: "./media/characters/noraly/front.svg",
  34161. extra: 4985/4773,
  34162. bottom: 150/5135
  34163. }
  34164. },
  34165. full: {
  34166. height: math.unit(5 + 2/12, "feet"),
  34167. weight: math.unit(164, "lb"),
  34168. name: "Full",
  34169. image: {
  34170. source: "./media/characters/noraly/full.svg",
  34171. extra: 1114/1059,
  34172. bottom: 35/1149
  34173. }
  34174. },
  34175. fuller: {
  34176. height: math.unit(5 + 2/12, "feet"),
  34177. weight: math.unit(230, "lb"),
  34178. name: "Fuller",
  34179. image: {
  34180. source: "./media/characters/noraly/fuller.svg",
  34181. extra: 1114/1059,
  34182. bottom: 35/1149
  34183. }
  34184. },
  34185. fullest: {
  34186. height: math.unit(5 + 2/12, "feet"),
  34187. weight: math.unit(300, "lb"),
  34188. name: "Fullest",
  34189. image: {
  34190. source: "./media/characters/noraly/fullest.svg",
  34191. extra: 1114/1059,
  34192. bottom: 35/1149
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Normal",
  34199. height: math.unit(5 + 2/12, "feet"),
  34200. default: true
  34201. },
  34202. ]
  34203. ))
  34204. characterMakers.push(() => makeCharacter(
  34205. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34206. {
  34207. front: {
  34208. height: math.unit(5 + 2/12, "feet"),
  34209. weight: math.unit(210, "lb"),
  34210. name: "Front",
  34211. image: {
  34212. source: "./media/characters/pera/front.svg",
  34213. extra: 1560/1531,
  34214. bottom: 165/1725
  34215. }
  34216. },
  34217. back: {
  34218. height: math.unit(5 + 2/12, "feet"),
  34219. weight: math.unit(210, "lb"),
  34220. name: "Back",
  34221. image: {
  34222. source: "./media/characters/pera/back.svg",
  34223. extra: 1523/1493,
  34224. bottom: 152/1675
  34225. }
  34226. },
  34227. dick: {
  34228. height: math.unit(2.4, "feet"),
  34229. name: "Dick",
  34230. image: {
  34231. source: "./media/characters/pera/dick.svg"
  34232. }
  34233. },
  34234. },
  34235. [
  34236. {
  34237. name: "Normal",
  34238. height: math.unit(5 + 2/12, "feet"),
  34239. default: true
  34240. },
  34241. ]
  34242. ))
  34243. characterMakers.push(() => makeCharacter(
  34244. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34245. {
  34246. front: {
  34247. height: math.unit(12, "feet"),
  34248. weight: math.unit(3200, "lb"),
  34249. name: "Front",
  34250. image: {
  34251. source: "./media/characters/julian/front.svg",
  34252. extra: 2962/2701,
  34253. bottom: 184/3146
  34254. }
  34255. },
  34256. maw: {
  34257. height: math.unit(5.35, "feet"),
  34258. name: "Maw",
  34259. image: {
  34260. source: "./media/characters/julian/maw.svg"
  34261. }
  34262. },
  34263. paw: {
  34264. height: math.unit(3.07, "feet"),
  34265. name: "Paw",
  34266. image: {
  34267. source: "./media/characters/julian/paw.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Default",
  34274. height: math.unit(12, "feet"),
  34275. default: true
  34276. },
  34277. {
  34278. name: "Big",
  34279. height: math.unit(50, "feet")
  34280. },
  34281. {
  34282. name: "Really Big",
  34283. height: math.unit(1, "mile")
  34284. },
  34285. {
  34286. name: "Extremely Big",
  34287. height: math.unit(100, "miles")
  34288. },
  34289. {
  34290. name: "Planet Hugger",
  34291. height: math.unit(200, "megameters")
  34292. },
  34293. {
  34294. name: "Unreasonably Big",
  34295. height: math.unit(1e300, "meters")
  34296. },
  34297. ]
  34298. ))
  34299. characterMakers.push(() => makeCharacter(
  34300. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34301. {
  34302. solgooleo: {
  34303. height: math.unit(4, "meters"),
  34304. weight: math.unit(6000*1.5, "kg"),
  34305. volume: math.unit(6000, "liters"),
  34306. name: "Solgooleo",
  34307. image: {
  34308. source: "./media/characters/pi/solgooleo.svg",
  34309. extra: 388/331,
  34310. bottom: 29/417
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal",
  34317. height: math.unit(4, "meters"),
  34318. default: true
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34324. {
  34325. front: {
  34326. height: math.unit(8, "feet"),
  34327. weight: math.unit(4, "tons"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/shaun/front.svg",
  34331. extra: 503/495,
  34332. bottom: 20/523
  34333. }
  34334. },
  34335. back: {
  34336. height: math.unit(8, "feet"),
  34337. weight: math.unit(4, "tons"),
  34338. name: "Back",
  34339. image: {
  34340. source: "./media/characters/shaun/back.svg",
  34341. extra: 487/480,
  34342. bottom: 20/507
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Lorg",
  34349. height: math.unit(8, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34356. {
  34357. frontAnthro: {
  34358. height: math.unit(7, "feet"),
  34359. name: "Front",
  34360. image: {
  34361. source: "./media/characters/sini/front-anthro.svg",
  34362. extra: 726/678,
  34363. bottom: 35/761
  34364. },
  34365. form: "anthro",
  34366. default: true
  34367. },
  34368. backAnthro: {
  34369. height: math.unit(7, "feet"),
  34370. name: "Back",
  34371. image: {
  34372. source: "./media/characters/sini/back-anthro.svg",
  34373. extra: 743/701,
  34374. bottom: 12/755
  34375. },
  34376. form: "anthro",
  34377. },
  34378. frontAnthroNsfw: {
  34379. height: math.unit(7, "feet"),
  34380. name: "Front (NSFW)",
  34381. image: {
  34382. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34383. extra: 726/678,
  34384. bottom: 35/761
  34385. },
  34386. form: "anthro"
  34387. },
  34388. backAnthroNsfw: {
  34389. height: math.unit(7, "feet"),
  34390. name: "Back (NSFW)",
  34391. image: {
  34392. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34393. extra: 743/701,
  34394. bottom: 12/755
  34395. },
  34396. form: "anthro",
  34397. },
  34398. mawAnthro: {
  34399. height: math.unit(2.14, "feet"),
  34400. name: "Maw",
  34401. image: {
  34402. source: "./media/characters/sini/maw-anthro.svg"
  34403. },
  34404. form: "anthro"
  34405. },
  34406. dick: {
  34407. height: math.unit(1.45, "feet"),
  34408. name: "Dick",
  34409. image: {
  34410. source: "./media/characters/sini/dick-anthro.svg"
  34411. },
  34412. form: "anthro"
  34413. },
  34414. feral: {
  34415. height: math.unit(16, "feet"),
  34416. name: "Feral",
  34417. image: {
  34418. source: "./media/characters/sini/feral.svg",
  34419. extra: 814/605,
  34420. bottom: 11/825
  34421. },
  34422. form: "feral",
  34423. default: true
  34424. },
  34425. feralNsfw: {
  34426. height: math.unit(16, "feet"),
  34427. name: "Feral (NSFW)",
  34428. image: {
  34429. source: "./media/characters/sini/feral-nsfw.svg",
  34430. extra: 814/605,
  34431. bottom: 11/825
  34432. },
  34433. form: "feral"
  34434. },
  34435. mawFeral: {
  34436. height: math.unit(5.66, "feet"),
  34437. name: "Maw",
  34438. image: {
  34439. source: "./media/characters/sini/maw-feral.svg"
  34440. },
  34441. form: "feral",
  34442. },
  34443. pawFeral: {
  34444. height: math.unit(5.17, "feet"),
  34445. name: "Paw",
  34446. image: {
  34447. source: "./media/characters/sini/paw-feral.svg"
  34448. },
  34449. form: "feral",
  34450. },
  34451. rumpFeral: {
  34452. height: math.unit(13.11, "feet"),
  34453. name: "Rump",
  34454. image: {
  34455. source: "./media/characters/sini/rump-feral.svg"
  34456. },
  34457. form: "feral",
  34458. },
  34459. dickFeral: {
  34460. height: math.unit(1, "feet"),
  34461. name: "Dick",
  34462. image: {
  34463. source: "./media/characters/sini/dick-feral.svg"
  34464. },
  34465. form: "feral",
  34466. },
  34467. eyeFeral: {
  34468. height: math.unit(1.23, "feet"),
  34469. name: "Eye",
  34470. image: {
  34471. source: "./media/characters/sini/eye-feral.svg"
  34472. },
  34473. form: "feral",
  34474. },
  34475. },
  34476. [
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(7, "feet"),
  34480. default: true,
  34481. form: "anthro"
  34482. },
  34483. {
  34484. name: "Normal",
  34485. height: math.unit(16, "feet"),
  34486. default: true,
  34487. form: "feral"
  34488. },
  34489. ],
  34490. {
  34491. "anthro": {
  34492. name: "Anthro",
  34493. default: true
  34494. },
  34495. "feral": {
  34496. name: "Feral",
  34497. }
  34498. }
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34502. {
  34503. side: {
  34504. height: math.unit(47.2, "meters"),
  34505. weight: math.unit(10000, "tons"),
  34506. name: "Side",
  34507. image: {
  34508. source: "./media/characters/raylldo/side.svg",
  34509. extra: 2363/642,
  34510. bottom: 221/2584
  34511. }
  34512. },
  34513. top: {
  34514. height: math.unit(240, "meters"),
  34515. weight: math.unit(10000, "tons"),
  34516. name: "Top",
  34517. image: {
  34518. source: "./media/characters/raylldo/top.svg"
  34519. }
  34520. },
  34521. bottom: {
  34522. height: math.unit(240, "meters"),
  34523. weight: math.unit(10000, "tons"),
  34524. name: "Bottom",
  34525. image: {
  34526. source: "./media/characters/raylldo/bottom.svg"
  34527. }
  34528. },
  34529. head: {
  34530. height: math.unit(38.6, "meters"),
  34531. name: "Head",
  34532. image: {
  34533. source: "./media/characters/raylldo/head.svg",
  34534. extra: 1335/1112,
  34535. bottom: 0/1335
  34536. }
  34537. },
  34538. maw: {
  34539. height: math.unit(16.37, "meters"),
  34540. name: "Maw",
  34541. image: {
  34542. source: "./media/characters/raylldo/maw.svg",
  34543. extra: 883/660,
  34544. bottom: 0/883
  34545. },
  34546. extraAttributes: {
  34547. preyCapacity: {
  34548. name: "Capacity",
  34549. power: 3,
  34550. type: "volume",
  34551. base: math.unit(1000, "people")
  34552. },
  34553. tongueSize: {
  34554. name: "Tongue Size",
  34555. power: 2,
  34556. type: "area",
  34557. base: math.unit(21, "m^2")
  34558. }
  34559. }
  34560. },
  34561. forepaw: {
  34562. height: math.unit(18, "meters"),
  34563. name: "Forepaw",
  34564. image: {
  34565. source: "./media/characters/raylldo/forepaw.svg"
  34566. }
  34567. },
  34568. hindpaw: {
  34569. height: math.unit(23, "meters"),
  34570. name: "Hindpaw",
  34571. image: {
  34572. source: "./media/characters/raylldo/hindpaw.svg"
  34573. }
  34574. },
  34575. genitals: {
  34576. height: math.unit(42, "meters"),
  34577. name: "Genitals",
  34578. image: {
  34579. source: "./media/characters/raylldo/genitals.svg"
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(47.2, "meters"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34593. {
  34594. anthroFront: {
  34595. height: math.unit(9, "feet"),
  34596. weight: math.unit(600, "lb"),
  34597. name: "Anthro (Front)",
  34598. image: {
  34599. source: "./media/characters/glint/anthro-front.svg",
  34600. extra: 1097/1018,
  34601. bottom: 28/1125
  34602. }
  34603. },
  34604. anthroBack: {
  34605. height: math.unit(9, "feet"),
  34606. weight: math.unit(600, "lb"),
  34607. name: "Anthro (Back)",
  34608. image: {
  34609. source: "./media/characters/glint/anthro-back.svg",
  34610. extra: 1154/997,
  34611. bottom: 36/1190
  34612. }
  34613. },
  34614. feral: {
  34615. height: math.unit(11, "feet"),
  34616. weight: math.unit(50000, "lb"),
  34617. name: "Feral",
  34618. image: {
  34619. source: "./media/characters/glint/feral.svg",
  34620. extra: 3035/1585,
  34621. bottom: 1169/4204
  34622. }
  34623. },
  34624. dickAnthro: {
  34625. height: math.unit(0.7, "meters"),
  34626. name: "Dick (Anthro)",
  34627. image: {
  34628. source: "./media/characters/glint/dick-anthro.svg"
  34629. }
  34630. },
  34631. dickFeral: {
  34632. height: math.unit(2.65, "meters"),
  34633. name: "Dick (Feral)",
  34634. image: {
  34635. source: "./media/characters/glint/dick-feral.svg"
  34636. }
  34637. },
  34638. slitHidden: {
  34639. height: math.unit(5.85, "meters"),
  34640. name: "Slit (Hidden)",
  34641. image: {
  34642. source: "./media/characters/glint/slit-hidden.svg"
  34643. }
  34644. },
  34645. slitErect: {
  34646. height: math.unit(5.85, "meters"),
  34647. name: "Slit (Erect)",
  34648. image: {
  34649. source: "./media/characters/glint/slit-erect.svg"
  34650. }
  34651. },
  34652. mawAnthro: {
  34653. height: math.unit(0.63, "meters"),
  34654. name: "Maw (Anthro)",
  34655. image: {
  34656. source: "./media/characters/glint/maw.svg"
  34657. }
  34658. },
  34659. mawFeral: {
  34660. height: math.unit(2.89, "meters"),
  34661. name: "Maw (Feral)",
  34662. image: {
  34663. source: "./media/characters/glint/maw.svg"
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(9, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34677. {
  34678. side: {
  34679. height: math.unit(15, "feet"),
  34680. weight: math.unit(5000, "kg"),
  34681. name: "Side",
  34682. image: {
  34683. source: "./media/characters/kairne/side.svg",
  34684. extra: 979/811,
  34685. bottom: 13/992
  34686. }
  34687. },
  34688. front: {
  34689. height: math.unit(15, "feet"),
  34690. weight: math.unit(5000, "kg"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/kairne/front.svg",
  34694. extra: 908/814,
  34695. bottom: 26/934
  34696. }
  34697. },
  34698. sideNsfw: {
  34699. height: math.unit(15, "feet"),
  34700. weight: math.unit(5000, "kg"),
  34701. name: "Side (NSFW)",
  34702. image: {
  34703. source: "./media/characters/kairne/side-nsfw.svg",
  34704. extra: 979/811,
  34705. bottom: 13/992
  34706. }
  34707. },
  34708. frontNsfw: {
  34709. height: math.unit(15, "feet"),
  34710. weight: math.unit(5000, "kg"),
  34711. name: "Front (NSFW)",
  34712. image: {
  34713. source: "./media/characters/kairne/front-nsfw.svg",
  34714. extra: 908/814,
  34715. bottom: 26/934
  34716. }
  34717. },
  34718. dickCaged: {
  34719. height: math.unit(0.65, "meters"),
  34720. name: "Dick-caged",
  34721. image: {
  34722. source: "./media/characters/kairne/dick-caged.svg"
  34723. }
  34724. },
  34725. dick: {
  34726. height: math.unit(0.79, "meters"),
  34727. name: "Dick",
  34728. image: {
  34729. source: "./media/characters/kairne/dick.svg"
  34730. }
  34731. },
  34732. genitals: {
  34733. height: math.unit(1.29, "meters"),
  34734. name: "Genitals",
  34735. image: {
  34736. source: "./media/characters/kairne/genitals.svg"
  34737. }
  34738. },
  34739. maw: {
  34740. height: math.unit(1.73, "meters"),
  34741. name: "Maw",
  34742. image: {
  34743. source: "./media/characters/kairne/maw.svg"
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(15, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(5 + 8/12, "feet"),
  34760. weight: math.unit(139, "lb"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/biscuit-jackal/front.svg",
  34764. extra: 2106/1961,
  34765. bottom: 58/2164
  34766. }
  34767. },
  34768. back: {
  34769. height: math.unit(5 + 8/12, "feet"),
  34770. weight: math.unit(139, "lb"),
  34771. name: "Back",
  34772. image: {
  34773. source: "./media/characters/biscuit-jackal/back.svg",
  34774. extra: 2132/1976,
  34775. bottom: 57/2189
  34776. }
  34777. },
  34778. werejackal: {
  34779. height: math.unit(6 + 3/12, "feet"),
  34780. weight: math.unit(188, "lb"),
  34781. name: "Werejackal",
  34782. image: {
  34783. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34784. extra: 2373/2178,
  34785. bottom: 53/2426
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(5 + 8/12, "feet"),
  34793. default: true
  34794. },
  34795. ]
  34796. ))
  34797. characterMakers.push(() => makeCharacter(
  34798. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34799. {
  34800. front: {
  34801. height: math.unit(140, "cm"),
  34802. weight: math.unit(45, "kg"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/tayra-white/front.svg",
  34806. extra: 2229/2192,
  34807. bottom: 75/2304
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(140, "cm"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(4 + 5/12, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/scoop/front.svg",
  34827. extra: 1257/1136,
  34828. bottom: 69/1326
  34829. }
  34830. },
  34831. back: {
  34832. height: math.unit(4 + 5/12, "feet"),
  34833. name: "Back",
  34834. image: {
  34835. source: "./media/characters/scoop/back.svg",
  34836. extra: 1321/1152,
  34837. bottom: 32/1353
  34838. }
  34839. },
  34840. maw: {
  34841. height: math.unit(0.68, "feet"),
  34842. name: "Maw",
  34843. image: {
  34844. source: "./media/characters/scoop/maw.svg"
  34845. }
  34846. },
  34847. },
  34848. [
  34849. {
  34850. name: "Really Small",
  34851. height: math.unit(1, "mm")
  34852. },
  34853. {
  34854. name: "Micro",
  34855. height: math.unit(1, "inch")
  34856. },
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(4 + 5/12, "feet"),
  34860. default: true
  34861. },
  34862. {
  34863. name: "Macro",
  34864. height: math.unit(200, "feet")
  34865. },
  34866. {
  34867. name: "Megamacro",
  34868. height: math.unit(3240, "feet")
  34869. },
  34870. {
  34871. name: "Teramacro",
  34872. height: math.unit(2500, "miles")
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34878. {
  34879. front: {
  34880. height: math.unit(15 + 7/12, "feet"),
  34881. weight: math.unit(1150, "tons"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/saphinara/front.svg",
  34885. extra: 1837/1643,
  34886. bottom: 84/1921
  34887. },
  34888. form: "normal",
  34889. default: true
  34890. },
  34891. side: {
  34892. height: math.unit(15 + 7/12, "feet"),
  34893. weight: math.unit(1150, "tons"),
  34894. name: "Side",
  34895. image: {
  34896. source: "./media/characters/saphinara/side.svg",
  34897. extra: 605/547,
  34898. bottom: 6/611
  34899. },
  34900. form: "normal"
  34901. },
  34902. back: {
  34903. height: math.unit(15 + 7/12, "feet"),
  34904. weight: math.unit(1150, "tons"),
  34905. name: "Back",
  34906. image: {
  34907. source: "./media/characters/saphinara/back.svg",
  34908. extra: 591/531,
  34909. bottom: 13/604
  34910. },
  34911. form: "normal"
  34912. },
  34913. frontTail: {
  34914. height: math.unit(15 + 7/12, "feet"),
  34915. weight: math.unit(1150, "tons"),
  34916. name: "Front (Full Tail)",
  34917. image: {
  34918. source: "./media/characters/saphinara/front-tail.svg",
  34919. extra: 2256/1630,
  34920. bottom: 261/2517
  34921. },
  34922. form: "normal"
  34923. },
  34924. insides: {
  34925. height: math.unit(11.92, "feet"),
  34926. name: "Insides",
  34927. image: {
  34928. source: "./media/characters/saphinara/insides.svg"
  34929. },
  34930. form: "normal"
  34931. },
  34932. head: {
  34933. height: math.unit(4.17, "feet"),
  34934. name: "Head",
  34935. image: {
  34936. source: "./media/characters/saphinara/head.svg"
  34937. },
  34938. form: "normal"
  34939. },
  34940. tongue: {
  34941. height: math.unit(4.60, "feet"),
  34942. name: "Tongue",
  34943. image: {
  34944. source: "./media/characters/saphinara/tongue.svg"
  34945. },
  34946. form: "normal"
  34947. },
  34948. headEnraged: {
  34949. height: math.unit(5.55, "feet"),
  34950. name: "Head (Enraged)",
  34951. image: {
  34952. source: "./media/characters/saphinara/head-enraged.svg"
  34953. },
  34954. form: "normal"
  34955. },
  34956. wings: {
  34957. height: math.unit(11.95, "feet"),
  34958. name: "Wings",
  34959. image: {
  34960. source: "./media/characters/saphinara/wings.svg"
  34961. },
  34962. form: "normal"
  34963. },
  34964. feathers: {
  34965. height: math.unit(8.92, "feet"),
  34966. name: "Feathers",
  34967. image: {
  34968. source: "./media/characters/saphinara/feathers.svg"
  34969. },
  34970. form: "normal"
  34971. },
  34972. shackles: {
  34973. height: math.unit(2, "feet"),
  34974. name: "Shackles",
  34975. image: {
  34976. source: "./media/characters/saphinara/shackles.svg"
  34977. },
  34978. form: "normal"
  34979. },
  34980. eyes: {
  34981. height: math.unit(1.331, "feet"),
  34982. name: "Eyes",
  34983. image: {
  34984. source: "./media/characters/saphinara/eyes.svg"
  34985. },
  34986. form: "normal"
  34987. },
  34988. eyesEnraged: {
  34989. height: math.unit(1.331, "feet"),
  34990. name: "Eyes (Enraged)",
  34991. image: {
  34992. source: "./media/characters/saphinara/eyes-enraged.svg"
  34993. },
  34994. form: "normal"
  34995. },
  34996. trueFormSide: {
  34997. height: math.unit(200, "feet"),
  34998. weight: math.unit(1e7, "tons"),
  34999. name: "Side",
  35000. image: {
  35001. source: "./media/characters/saphinara/true-form-side.svg",
  35002. extra: 1399/770,
  35003. bottom: 97/1496
  35004. },
  35005. form: "true-form",
  35006. default: true
  35007. },
  35008. trueFormMaw: {
  35009. height: math.unit(71.5, "feet"),
  35010. name: "Maw",
  35011. image: {
  35012. source: "./media/characters/saphinara/true-form-maw.svg",
  35013. extra: 2302/1453,
  35014. bottom: 0/2302
  35015. },
  35016. form: "true-form"
  35017. },
  35018. meowberusSide: {
  35019. height: math.unit(75, "feet"),
  35020. weight: math.unit(180000, "kg"),
  35021. preyCapacity: math.unit(50000, "people"),
  35022. name: "Side",
  35023. image: {
  35024. source: "./media/characters/saphinara/meowberus-side.svg",
  35025. extra: 1400/711,
  35026. bottom: 126/1526
  35027. },
  35028. form: "meowberus",
  35029. extraAttributes: {
  35030. "pawArea": {
  35031. name: "Paw Size",
  35032. power: 2,
  35033. type: "area",
  35034. base: math.unit(35, "m^2")
  35035. }
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(15 + 7/12, "feet"),
  35043. default: true,
  35044. form: "normal"
  35045. },
  35046. {
  35047. name: "Angry",
  35048. height: math.unit(30 + 6/12, "feet"),
  35049. form: "normal"
  35050. },
  35051. {
  35052. name: "Enraged",
  35053. height: math.unit(102 + 1/12, "feet"),
  35054. form: "normal"
  35055. },
  35056. {
  35057. name: "True",
  35058. height: math.unit(200, "feet"),
  35059. default: true,
  35060. form: "true-form"
  35061. },
  35062. {
  35063. name: "Normal",
  35064. height: math.unit(75, "feet"),
  35065. default: true,
  35066. form: "meowberus"
  35067. },
  35068. ],
  35069. {
  35070. "normal": {
  35071. name: "Normal",
  35072. default: true
  35073. },
  35074. "true-form": {
  35075. name: "True Form"
  35076. },
  35077. "meowberus": {
  35078. name: "Meowberus",
  35079. },
  35080. }
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(6 + 8/12, "feet"),
  35087. weight: math.unit(300, "lb"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/jrain/front.svg",
  35091. extra: 3039/2865,
  35092. bottom: 399/3438
  35093. }
  35094. },
  35095. back: {
  35096. height: math.unit(6 + 8/12, "feet"),
  35097. weight: math.unit(300, "lb"),
  35098. name: "Back",
  35099. image: {
  35100. source: "./media/characters/jrain/back.svg",
  35101. extra: 3089/2938,
  35102. bottom: 172/3261
  35103. }
  35104. },
  35105. head: {
  35106. height: math.unit(2.14, "feet"),
  35107. name: "Head",
  35108. image: {
  35109. source: "./media/characters/jrain/head.svg"
  35110. }
  35111. },
  35112. maw: {
  35113. height: math.unit(1.77, "feet"),
  35114. name: "Maw",
  35115. image: {
  35116. source: "./media/characters/jrain/maw.svg"
  35117. }
  35118. },
  35119. leftHand: {
  35120. height: math.unit(1.1, "feet"),
  35121. name: "Left Hand",
  35122. image: {
  35123. source: "./media/characters/jrain/left-hand.svg"
  35124. }
  35125. },
  35126. rightHand: {
  35127. height: math.unit(1.1, "feet"),
  35128. name: "Right Hand",
  35129. image: {
  35130. source: "./media/characters/jrain/right-hand.svg"
  35131. }
  35132. },
  35133. eye: {
  35134. height: math.unit(0.35, "feet"),
  35135. name: "Eye",
  35136. image: {
  35137. source: "./media/characters/jrain/eye.svg"
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Normal",
  35144. height: math.unit(6 + 8/12, "feet"),
  35145. default: true
  35146. },
  35147. {
  35148. name: "Casually Large",
  35149. height: math.unit(25, "feet")
  35150. },
  35151. {
  35152. name: "Giant",
  35153. height: math.unit(100, "feet")
  35154. },
  35155. {
  35156. name: "Kaiju",
  35157. height: math.unit(300, "feet")
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35163. {
  35164. dragon: {
  35165. height: math.unit(5, "meters"),
  35166. name: "Dragon",
  35167. image: {
  35168. source: "./media/characters/sabrina/dragon.svg",
  35169. extra: 3670 / 2365,
  35170. bottom: 333 / 4003
  35171. }
  35172. },
  35173. gryphon: {
  35174. height: math.unit(3, "meters"),
  35175. name: "Gryphon",
  35176. image: {
  35177. source: "./media/characters/sabrina/gryphon.svg",
  35178. extra: 1576 / 945,
  35179. bottom: 71 / 1647
  35180. }
  35181. },
  35182. snake: {
  35183. height: math.unit(12, "meters"),
  35184. name: "Snake",
  35185. image: {
  35186. source: "./media/characters/sabrina/snake.svg",
  35187. extra: 1758 / 1320,
  35188. bottom: 186 / 1944
  35189. }
  35190. },
  35191. collar: {
  35192. height: math.unit(1.86, "meters"),
  35193. name: "Collar",
  35194. image: {
  35195. source: "./media/characters/sabrina/collar.svg"
  35196. }
  35197. },
  35198. eye: {
  35199. height: math.unit(0.53, "meters"),
  35200. name: "Eye",
  35201. image: {
  35202. source: "./media/characters/sabrina/eye.svg"
  35203. }
  35204. },
  35205. foot: {
  35206. height: math.unit(1.86, "meters"),
  35207. name: "Foot",
  35208. image: {
  35209. source: "./media/characters/sabrina/foot.svg"
  35210. }
  35211. },
  35212. hand: {
  35213. height: math.unit(1.32, "meters"),
  35214. name: "Hand",
  35215. image: {
  35216. source: "./media/characters/sabrina/hand.svg"
  35217. }
  35218. },
  35219. head: {
  35220. height: math.unit(2.44, "meters"),
  35221. name: "Head",
  35222. image: {
  35223. source: "./media/characters/sabrina/head.svg"
  35224. }
  35225. },
  35226. headAngry: {
  35227. height: math.unit(2.44, "meters"),
  35228. name: "Head (Angry))",
  35229. image: {
  35230. source: "./media/characters/sabrina/head-angry.svg"
  35231. }
  35232. },
  35233. maw: {
  35234. height: math.unit(1.65, "meters"),
  35235. name: "Maw",
  35236. image: {
  35237. source: "./media/characters/sabrina/maw.svg"
  35238. }
  35239. },
  35240. spikes: {
  35241. height: math.unit(1.69, "meters"),
  35242. name: "Spikes",
  35243. image: {
  35244. source: "./media/characters/sabrina/spikes.svg"
  35245. }
  35246. },
  35247. stomach: {
  35248. height: math.unit(1.15, "meters"),
  35249. name: "Stomach",
  35250. image: {
  35251. source: "./media/characters/sabrina/stomach.svg"
  35252. }
  35253. },
  35254. tongue: {
  35255. height: math.unit(1.27, "meters"),
  35256. name: "Tongue",
  35257. image: {
  35258. source: "./media/characters/sabrina/tongue.svg"
  35259. }
  35260. },
  35261. wingDorsal: {
  35262. height: math.unit(4.85, "meters"),
  35263. name: "Wing (Dorsal)",
  35264. image: {
  35265. source: "./media/characters/sabrina/wing-dorsal.svg"
  35266. }
  35267. },
  35268. wingVentral: {
  35269. height: math.unit(4.85, "meters"),
  35270. name: "Wing (Ventral)",
  35271. image: {
  35272. source: "./media/characters/sabrina/wing-ventral.svg"
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5, "meters"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35286. {
  35287. frontMaid: {
  35288. height: math.unit(5 + 5/12, "feet"),
  35289. weight: math.unit(130, "lb"),
  35290. name: "Front (Maid)",
  35291. image: {
  35292. source: "./media/characters/midnight-tales/front-maid.svg",
  35293. extra: 489/454,
  35294. bottom: 61/550
  35295. }
  35296. },
  35297. frontFormal: {
  35298. height: math.unit(5 + 5/12, "feet"),
  35299. weight: math.unit(130, "lb"),
  35300. name: "Front (Formal)",
  35301. image: {
  35302. source: "./media/characters/midnight-tales/front-formal.svg",
  35303. extra: 489/454,
  35304. bottom: 61/550
  35305. }
  35306. },
  35307. back: {
  35308. height: math.unit(5 + 5/12, "feet"),
  35309. weight: math.unit(130, "lb"),
  35310. name: "Back",
  35311. image: {
  35312. source: "./media/characters/midnight-tales/back.svg",
  35313. extra: 498/456,
  35314. bottom: 33/531
  35315. }
  35316. },
  35317. frontBeast: {
  35318. height: math.unit(40, "feet"),
  35319. weight: math.unit(64000, "lb"),
  35320. name: "Front (Beast)",
  35321. image: {
  35322. source: "./media/characters/midnight-tales/front-beast.svg",
  35323. extra: 927/860,
  35324. bottom: 53/980
  35325. }
  35326. },
  35327. backBeast: {
  35328. height: math.unit(40, "feet"),
  35329. weight: math.unit(64000, "lb"),
  35330. name: "Back (Beast)",
  35331. image: {
  35332. source: "./media/characters/midnight-tales/back-beast.svg",
  35333. extra: 929/855,
  35334. bottom: 16/945
  35335. }
  35336. },
  35337. footBeast: {
  35338. height: math.unit(6.7, "feet"),
  35339. name: "Foot (Beast)",
  35340. image: {
  35341. source: "./media/characters/midnight-tales/foot-beast.svg"
  35342. }
  35343. },
  35344. headBeast: {
  35345. height: math.unit(8, "feet"),
  35346. name: "Head (Beast)",
  35347. image: {
  35348. source: "./media/characters/midnight-tales/head-beast.svg"
  35349. }
  35350. },
  35351. },
  35352. [
  35353. {
  35354. name: "Normal",
  35355. height: math.unit(5 + 5 / 12, "feet"),
  35356. default: true
  35357. },
  35358. {
  35359. name: "Macro",
  35360. height: math.unit(25, "feet")
  35361. },
  35362. ]
  35363. ))
  35364. characterMakers.push(() => makeCharacter(
  35365. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35366. {
  35367. front: {
  35368. height: math.unit(5 + 10/12, "feet"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/argon/front.svg",
  35372. extra: 2009/1935,
  35373. bottom: 118/2127
  35374. }
  35375. },
  35376. back: {
  35377. height: math.unit(5 + 10/12, "feet"),
  35378. name: "Back",
  35379. image: {
  35380. source: "./media/characters/argon/back.svg",
  35381. extra: 2047/1992,
  35382. bottom: 20/2067
  35383. }
  35384. },
  35385. frontDressed: {
  35386. height: math.unit(5 + 10/12, "feet"),
  35387. name: "Front (Dressed)",
  35388. image: {
  35389. source: "./media/characters/argon/front-dressed.svg",
  35390. extra: 2009/1935,
  35391. bottom: 118/2127
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(5 + 10/12, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(8 + 6/12, "feet"),
  35408. weight: math.unit(1150, "lb"),
  35409. name: "Front",
  35410. image: {
  35411. source: "./media/characters/kichi/front.svg",
  35412. extra: 1267/1164,
  35413. bottom: 61/1328
  35414. }
  35415. },
  35416. back: {
  35417. height: math.unit(8 + 6/12, "feet"),
  35418. weight: math.unit(1150, "lb"),
  35419. name: "Back",
  35420. image: {
  35421. source: "./media/characters/kichi/back.svg",
  35422. extra: 1273/1166,
  35423. bottom: 33/1306
  35424. }
  35425. },
  35426. },
  35427. [
  35428. {
  35429. name: "Normal",
  35430. height: math.unit(8 + 6/12, "feet"),
  35431. default: true
  35432. },
  35433. ]
  35434. ))
  35435. characterMakers.push(() => makeCharacter(
  35436. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35437. {
  35438. front: {
  35439. height: math.unit(6, "feet"),
  35440. weight: math.unit(210, "lb"),
  35441. name: "Front",
  35442. image: {
  35443. source: "./media/characters/manetel-greyscale/front.svg",
  35444. extra: 350/312,
  35445. bottom: 8/358
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Micro",
  35452. height: math.unit(2, "inches")
  35453. },
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(6, "feet"),
  35457. default: true
  35458. },
  35459. {
  35460. name: "Minimacro",
  35461. height: math.unit(17, "feet")
  35462. },
  35463. {
  35464. name: "Macro",
  35465. height: math.unit(117, "feet")
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35471. {
  35472. side: {
  35473. height: math.unit(5 + 1/12, "feet"),
  35474. weight: math.unit(418, "lb"),
  35475. name: "Side",
  35476. image: {
  35477. source: "./media/characters/softpurr/side.svg",
  35478. extra: 1993/1945,
  35479. bottom: 134/2127
  35480. }
  35481. },
  35482. front: {
  35483. height: math.unit(5 + 1/12, "feet"),
  35484. weight: math.unit(418, "lb"),
  35485. name: "Front",
  35486. image: {
  35487. source: "./media/characters/softpurr/front.svg",
  35488. extra: 1950/1856,
  35489. bottom: 174/2124
  35490. }
  35491. },
  35492. paw: {
  35493. height: math.unit(1, "feet"),
  35494. name: "Paw",
  35495. image: {
  35496. source: "./media/characters/softpurr/paw.svg"
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Normal",
  35503. height: math.unit(5 + 1/12, "feet"),
  35504. default: true
  35505. },
  35506. ]
  35507. ))
  35508. characterMakers.push(() => makeCharacter(
  35509. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35510. {
  35511. front: {
  35512. height: math.unit(260, "meters"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/anahita/front.svg",
  35516. extra: 665/635,
  35517. bottom: 89/754
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Macro",
  35524. height: math.unit(260, "meters"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(4 + 10/12, "feet"),
  35534. weight: math.unit(160, "lb"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/chip-mouse/front.svg",
  35538. extra: 3528/3408,
  35539. bottom: 0/3528
  35540. }
  35541. },
  35542. frontNsfw: {
  35543. height: math.unit(4 + 10/12, "feet"),
  35544. weight: math.unit(160, "lb"),
  35545. name: "Front (NSFW)",
  35546. image: {
  35547. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35548. extra: 3528/3408,
  35549. bottom: 0/3528
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(4 + 10/12, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35563. {
  35564. side: {
  35565. height: math.unit(10, "feet"),
  35566. weight: math.unit(14000, "lb"),
  35567. name: "Side",
  35568. image: {
  35569. source: "./media/characters/kremm/side.svg",
  35570. extra: 1390/1053,
  35571. bottom: 90/1480
  35572. }
  35573. },
  35574. gut: {
  35575. height: math.unit(5.8, "feet"),
  35576. name: "Gut",
  35577. image: {
  35578. source: "./media/characters/kremm/gut.svg"
  35579. }
  35580. },
  35581. ass: {
  35582. height: math.unit(6.1, "feet"),
  35583. name: "Ass",
  35584. image: {
  35585. source: "./media/characters/kremm/ass.svg"
  35586. }
  35587. },
  35588. jaws: {
  35589. height: math.unit(2.2, "feet"),
  35590. name: "Jaws",
  35591. image: {
  35592. source: "./media/characters/kremm/jaws.svg"
  35593. }
  35594. },
  35595. dick: {
  35596. height: math.unit(4.26, "feet"),
  35597. name: "Dick",
  35598. image: {
  35599. source: "./media/characters/kremm/dick.svg"
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Normal",
  35606. height: math.unit(10, "feet"),
  35607. default: true
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(30, "stories"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/kai/front.svg",
  35619. extra: 1892/1718,
  35620. bottom: 162/2054
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Macro",
  35627. height: math.unit(30, "stories"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(6 + 4/12, "feet"),
  35637. weight: math.unit(145, "lb"),
  35638. name: "Front",
  35639. image: {
  35640. source: "./media/characters/sykes/front.svg",
  35641. extra: 1321 / 1187,
  35642. bottom: 66 / 1387
  35643. }
  35644. },
  35645. back: {
  35646. height: math.unit(6 + 4/12, "feet"),
  35647. weight: math.unit(145, "lb"),
  35648. name: "Back",
  35649. image: {
  35650. source: "./media/characters/sykes/back.svg",
  35651. extra: 1326/1181,
  35652. bottom: 31/1357
  35653. }
  35654. },
  35655. traditionalOutfit: {
  35656. height: math.unit(6 + 4/12, "feet"),
  35657. weight: math.unit(145, "lb"),
  35658. name: "Traditional Outfit",
  35659. image: {
  35660. source: "./media/characters/sykes/traditional-outfit.svg",
  35661. extra: 1321 / 1187,
  35662. bottom: 66 / 1387
  35663. }
  35664. },
  35665. adventureOutfit: {
  35666. height: math.unit(6 + 4/12, "feet"),
  35667. weight: math.unit(145, "lb"),
  35668. name: "Adventure Outfit",
  35669. image: {
  35670. source: "./media/characters/sykes/adventure-outfit.svg",
  35671. extra: 1321 / 1187,
  35672. bottom: 66 / 1387
  35673. }
  35674. },
  35675. handLeft: {
  35676. height: math.unit(0.9, "feet"),
  35677. name: "Hand (Left)",
  35678. image: {
  35679. source: "./media/characters/sykes/hand-left.svg"
  35680. }
  35681. },
  35682. handRight: {
  35683. height: math.unit(0.839, "feet"),
  35684. name: "Hand (Right)",
  35685. image: {
  35686. source: "./media/characters/sykes/hand-right.svg"
  35687. }
  35688. },
  35689. leftFoot: {
  35690. height: math.unit(1.2, "feet"),
  35691. name: "Foot (Left)",
  35692. image: {
  35693. source: "./media/characters/sykes/foot-left.svg"
  35694. }
  35695. },
  35696. rightFoot: {
  35697. height: math.unit(1.2, "feet"),
  35698. name: "Foot (Right)",
  35699. image: {
  35700. source: "./media/characters/sykes/foot-right.svg"
  35701. }
  35702. },
  35703. maw: {
  35704. height: math.unit(1.93, "feet"),
  35705. name: "Maw",
  35706. image: {
  35707. source: "./media/characters/sykes/maw.svg"
  35708. }
  35709. },
  35710. teeth: {
  35711. height: math.unit(0.51, "feet"),
  35712. name: "Teeth",
  35713. image: {
  35714. source: "./media/characters/sykes/teeth.svg"
  35715. }
  35716. },
  35717. tongue: {
  35718. height: math.unit(2.13, "feet"),
  35719. name: "Tongue",
  35720. image: {
  35721. source: "./media/characters/sykes/tongue.svg"
  35722. }
  35723. },
  35724. uvula: {
  35725. height: math.unit(0.16, "feet"),
  35726. name: "Uvula",
  35727. image: {
  35728. source: "./media/characters/sykes/uvula.svg"
  35729. }
  35730. },
  35731. collar: {
  35732. height: math.unit(0.287, "feet"),
  35733. name: "Collar",
  35734. image: {
  35735. source: "./media/characters/sykes/collar.svg"
  35736. }
  35737. },
  35738. tail: {
  35739. height: math.unit(3.8, "feet"),
  35740. name: "Tail",
  35741. image: {
  35742. source: "./media/characters/sykes/tail.svg"
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Shrunken",
  35749. height: math.unit(5, "inches")
  35750. },
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(6 + 4 / 12, "feet"),
  35754. default: true
  35755. },
  35756. {
  35757. name: "Big",
  35758. height: math.unit(15, "feet")
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(5 + 8/12, "feet"),
  35767. weight: math.unit(190, "lb"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/oven-otter/front.svg",
  35771. extra: 1809/1740,
  35772. bottom: 181/1990
  35773. }
  35774. },
  35775. back: {
  35776. height: math.unit(5 + 8/12, "feet"),
  35777. weight: math.unit(190, "lb"),
  35778. name: "Back",
  35779. image: {
  35780. source: "./media/characters/oven-otter/back.svg",
  35781. extra: 1709/1635,
  35782. bottom: 118/1827
  35783. }
  35784. },
  35785. hand: {
  35786. height: math.unit(1.07, "feet"),
  35787. name: "Hand",
  35788. image: {
  35789. source: "./media/characters/oven-otter/hand.svg"
  35790. }
  35791. },
  35792. beans: {
  35793. height: math.unit(1.74, "feet"),
  35794. name: "Beans",
  35795. image: {
  35796. source: "./media/characters/oven-otter/beans.svg"
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Micro",
  35803. height: math.unit(0.5, "inches")
  35804. },
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(5 + 8/12, "feet"),
  35808. default: true
  35809. },
  35810. {
  35811. name: "Macro",
  35812. height: math.unit(250, "feet")
  35813. },
  35814. {
  35815. name: "Really High",
  35816. height: math.unit(420, "feet")
  35817. },
  35818. ]
  35819. ))
  35820. characterMakers.push(() => makeCharacter(
  35821. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35822. {
  35823. front: {
  35824. height: math.unit(5, "meters"),
  35825. weight: math.unit(292000000000000, "kg"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/devourer/front.svg",
  35829. extra: 1800/1733,
  35830. bottom: 211/2011
  35831. }
  35832. },
  35833. maw: {
  35834. height: math.unit(1.1, "meter"),
  35835. name: "Maw",
  35836. image: {
  35837. source: "./media/characters/devourer/maw.svg"
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Small",
  35844. height: math.unit(3, "meters")
  35845. },
  35846. {
  35847. name: "Large",
  35848. height: math.unit(5, "meters"),
  35849. default: true
  35850. },
  35851. ]
  35852. ))
  35853. characterMakers.push(() => makeCharacter(
  35854. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35855. {
  35856. front: {
  35857. height: math.unit(6, "feet"),
  35858. weight: math.unit(400, "lb"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/ellarby/front.svg",
  35862. extra: 1909/1763,
  35863. bottom: 80/1989
  35864. }
  35865. },
  35866. back: {
  35867. height: math.unit(6, "feet"),
  35868. weight: math.unit(400, "lb"),
  35869. name: "Back",
  35870. image: {
  35871. source: "./media/characters/ellarby/back.svg",
  35872. extra: 1914/1784,
  35873. bottom: 172/2086
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Mischief",
  35880. height: math.unit(18, "inches")
  35881. },
  35882. {
  35883. name: "Trouble",
  35884. height: math.unit(12, "feet")
  35885. },
  35886. {
  35887. name: "Havoc",
  35888. height: math.unit(200, "feet"),
  35889. default: true
  35890. },
  35891. {
  35892. name: "Pandemonium",
  35893. height: math.unit(1, "mile")
  35894. },
  35895. {
  35896. name: "Catastrophe",
  35897. height: math.unit(100, "miles")
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35903. {
  35904. front: {
  35905. height: math.unit(4.7, "meters"),
  35906. weight: math.unit(6500, "kg"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/vex/front.svg",
  35910. extra: 1288/1140,
  35911. bottom: 100/1388
  35912. }
  35913. },
  35914. },
  35915. [
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(4.7, "meters"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35925. {
  35926. normal: {
  35927. height: math.unit(6, "feet"),
  35928. weight: math.unit(350, "lb"),
  35929. name: "Normal",
  35930. image: {
  35931. source: "./media/characters/teshy/normal.svg",
  35932. extra: 1795/1735,
  35933. bottom: 16/1811
  35934. }
  35935. },
  35936. monsterFront: {
  35937. height: math.unit(12, "feet"),
  35938. weight: math.unit(4700, "lb"),
  35939. name: "Monster (Front)",
  35940. image: {
  35941. source: "./media/characters/teshy/monster-front.svg",
  35942. extra: 2042/2034,
  35943. bottom: 128/2170
  35944. }
  35945. },
  35946. monsterSide: {
  35947. height: math.unit(12, "feet"),
  35948. weight: math.unit(4700, "lb"),
  35949. name: "Monster (Side)",
  35950. image: {
  35951. source: "./media/characters/teshy/monster-side.svg",
  35952. extra: 2067/2056,
  35953. bottom: 70/2137
  35954. }
  35955. },
  35956. monsterBack: {
  35957. height: math.unit(12, "feet"),
  35958. weight: math.unit(4700, "lb"),
  35959. name: "Monster (Back)",
  35960. image: {
  35961. source: "./media/characters/teshy/monster-back.svg",
  35962. extra: 1921/1914,
  35963. bottom: 171/2092
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(6, "feet"),
  35971. default: true
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35977. {
  35978. front: {
  35979. height: math.unit(6, "feet"),
  35980. name: "Front",
  35981. image: {
  35982. source: "./media/characters/ramey/front.svg",
  35983. extra: 790/787,
  35984. bottom: 27/817
  35985. }
  35986. },
  35987. },
  35988. [
  35989. {
  35990. name: "Normal",
  35991. height: math.unit(6, "feet"),
  35992. default: true
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35998. {
  35999. front: {
  36000. height: math.unit(5 + 5/12, "feet"),
  36001. weight: math.unit(120, "lb"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/phirae/front.svg",
  36005. extra: 2491/2436,
  36006. bottom: 38/2529
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Normal",
  36013. height: math.unit(5 + 5/12, "feet"),
  36014. default: true
  36015. },
  36016. ]
  36017. ))
  36018. characterMakers.push(() => makeCharacter(
  36019. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36020. {
  36021. front: {
  36022. height: math.unit(5 + 3/12, "feet"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/stagglas/front.svg",
  36026. extra: 962/882,
  36027. bottom: 53/1015
  36028. }
  36029. },
  36030. feral: {
  36031. height: math.unit(335, "cm"),
  36032. name: "Feral",
  36033. image: {
  36034. source: "./media/characters/stagglas/feral.svg",
  36035. extra: 1732/1090,
  36036. bottom: 48/1780
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(5 + 3/12, "feet"),
  36044. default: true
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(5 + 4/12, "feet"),
  36053. weight: math.unit(145, "lb"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/starra/front.svg",
  36057. extra: 1790/1691,
  36058. bottom: 91/1881
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(5 + 4/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(2.2, "meters"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36078. extra: 1248/972,
  36079. bottom: 38/1286
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(2.2, "meters"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36093. {
  36094. side: {
  36095. height: math.unit(8 + 2/12, "feet"),
  36096. weight: math.unit(1240, "lb"),
  36097. name: "Side",
  36098. image: {
  36099. source: "./media/characters/mika-valentine/side.svg",
  36100. extra: 2670/2501,
  36101. bottom: 250/2920
  36102. }
  36103. },
  36104. },
  36105. [
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(8 + 2/12, "feet"),
  36109. default: true
  36110. },
  36111. ]
  36112. ))
  36113. characterMakers.push(() => makeCharacter(
  36114. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36115. {
  36116. front: {
  36117. height: math.unit(7 + 2/12, "feet"),
  36118. name: "Front",
  36119. image: {
  36120. source: "./media/characters/xoltol/front.svg",
  36121. extra: 2212/2124,
  36122. bottom: 84/2296
  36123. }
  36124. },
  36125. side: {
  36126. height: math.unit(7 + 2/12, "feet"),
  36127. name: "Side",
  36128. image: {
  36129. source: "./media/characters/xoltol/side.svg",
  36130. extra: 2273/2197,
  36131. bottom: 26/2299
  36132. }
  36133. },
  36134. hand: {
  36135. height: math.unit(2.5, "feet"),
  36136. name: "Hand",
  36137. image: {
  36138. source: "./media/characters/xoltol/hand.svg"
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Small-ish",
  36145. height: math.unit(5 + 11/12, "feet")
  36146. },
  36147. {
  36148. name: "Normal",
  36149. height: math.unit(7 + 2/12, "feet")
  36150. },
  36151. {
  36152. name: "\"Macro\"",
  36153. height: math.unit(14 + 9/12, "feet"),
  36154. default: true
  36155. },
  36156. {
  36157. name: "Alternate Height",
  36158. height: math.unit(20, "feet")
  36159. },
  36160. {
  36161. name: "Actually Macro",
  36162. height: math.unit(100, "feet")
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36168. {
  36169. front: {
  36170. height: math.unit(5 + 2/12, "feet"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/kotetsu-redwood/front.svg",
  36174. extra: 1053/942,
  36175. bottom: 60/1113
  36176. }
  36177. },
  36178. },
  36179. [
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(5 + 2/12, "feet"),
  36183. default: true
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36189. {
  36190. front: {
  36191. height: math.unit(2.4, "meters"),
  36192. weight: math.unit(125, "kg"),
  36193. name: "Front",
  36194. image: {
  36195. source: "./media/characters/lilith/front.svg",
  36196. extra: 1590/1513,
  36197. bottom: 203/1793
  36198. }
  36199. },
  36200. },
  36201. [
  36202. {
  36203. name: "Humanoid",
  36204. height: math.unit(2.4, "meters")
  36205. },
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(6, "meters"),
  36209. default: true
  36210. },
  36211. {
  36212. name: "Largest",
  36213. height: math.unit(55, "meters")
  36214. },
  36215. ]
  36216. ))
  36217. characterMakers.push(() => makeCharacter(
  36218. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36219. {
  36220. front: {
  36221. height: math.unit(8 + 4/12, "feet"),
  36222. weight: math.unit(535, "lb"),
  36223. name: "Front",
  36224. image: {
  36225. source: "./media/characters/beh'kah-bolger/front.svg",
  36226. extra: 1660/1603,
  36227. bottom: 37/1697
  36228. }
  36229. },
  36230. },
  36231. [
  36232. {
  36233. name: "Normal",
  36234. height: math.unit(8 + 4/12, "feet"),
  36235. default: true
  36236. },
  36237. {
  36238. name: "Kaiju",
  36239. height: math.unit(250, "feet")
  36240. },
  36241. {
  36242. name: "Still Growing",
  36243. height: math.unit(10, "miles")
  36244. },
  36245. {
  36246. name: "Continental",
  36247. height: math.unit(5000, "miles")
  36248. },
  36249. {
  36250. name: "Final Form",
  36251. height: math.unit(2500000, "miles")
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(7 + 2/12, "feet"),
  36260. weight: math.unit(230, "kg"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/tatyana-milewska/front.svg",
  36264. extra: 1199/1150,
  36265. bottom: 86/1285
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Normal",
  36272. height: math.unit(7 + 2/12, "feet"),
  36273. default: true
  36274. },
  36275. {
  36276. name: "Big",
  36277. height: math.unit(12, "feet")
  36278. },
  36279. {
  36280. name: "Minimacro",
  36281. height: math.unit(20, "feet")
  36282. },
  36283. {
  36284. name: "Macro",
  36285. height: math.unit(120, "feet")
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(7 + 8/12, "feet"),
  36294. weight: math.unit(152, "kg"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/helen-arri/front.svg",
  36298. extra: 440/423,
  36299. bottom: 14/454
  36300. }
  36301. },
  36302. back: {
  36303. height: math.unit(7 + 8/12, "feet"),
  36304. weight: math.unit(152, "kg"),
  36305. name: "Back",
  36306. image: {
  36307. source: "./media/characters/helen-arri/back.svg",
  36308. extra: 443/426,
  36309. bottom: 8/451
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(7 + 8/12, "feet"),
  36317. default: true
  36318. },
  36319. {
  36320. name: "Big",
  36321. height: math.unit(14, "feet")
  36322. },
  36323. {
  36324. name: "Minimacro",
  36325. height: math.unit(24, "feet")
  36326. },
  36327. {
  36328. name: "Macro",
  36329. height: math.unit(140, "feet")
  36330. },
  36331. ]
  36332. ))
  36333. characterMakers.push(() => makeCharacter(
  36334. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36335. {
  36336. front: {
  36337. height: math.unit(6, "meters"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/ehanu-rehu/front.svg",
  36341. extra: 1800/1800,
  36342. bottom: 59/1859
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(6, "meters"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(7 + 3/12, "feet"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/renholder/front.svg",
  36362. extra: 3096/2960,
  36363. bottom: 250/3346
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal Bat",
  36370. height: math.unit(7 + 3/12, "feet"),
  36371. default: true
  36372. },
  36373. {
  36374. name: "Slightly Tall Bat",
  36375. height: math.unit(100, "feet")
  36376. },
  36377. {
  36378. name: "Big Bat",
  36379. height: math.unit(1000, "feet")
  36380. },
  36381. {
  36382. name: "City-Sized Bat",
  36383. height: math.unit(200000, "feet")
  36384. },
  36385. {
  36386. name: "Bigger Bat",
  36387. height: math.unit(10000, "miles")
  36388. },
  36389. {
  36390. name: "Solar Sized Bat",
  36391. height: math.unit(100, "AU")
  36392. },
  36393. {
  36394. name: "Galactic Bat",
  36395. height: math.unit(200000, "lightyears")
  36396. },
  36397. {
  36398. name: "Universally Known Bat",
  36399. height: math.unit(1, "universe")
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(6 + 11/12, "feet"),
  36408. weight: math.unit(250, "lb"),
  36409. name: "Front",
  36410. image: {
  36411. source: "./media/characters/cookiecat/front.svg",
  36412. extra: 893/827,
  36413. bottom: 14/907
  36414. }
  36415. },
  36416. },
  36417. [
  36418. {
  36419. name: "Micro",
  36420. height: math.unit(3, "inches")
  36421. },
  36422. {
  36423. name: "Normal",
  36424. height: math.unit(6 + 11/12, "feet"),
  36425. default: true
  36426. },
  36427. {
  36428. name: "Macro",
  36429. height: math.unit(100, "feet")
  36430. },
  36431. {
  36432. name: "Macro+",
  36433. height: math.unit(404, "feet")
  36434. },
  36435. {
  36436. name: "Megamacro",
  36437. height: math.unit(165, "miles")
  36438. },
  36439. {
  36440. name: "Planetary",
  36441. height: math.unit(4600, "miles")
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36447. {
  36448. front: {
  36449. height: math.unit(10 + 3/12, "feet"),
  36450. weight: math.unit(1500, "lb"),
  36451. name: "Front",
  36452. image: {
  36453. source: "./media/characters/tux-kusanagi/front.svg",
  36454. extra: 944/840,
  36455. bottom: 39/983
  36456. }
  36457. },
  36458. back: {
  36459. height: math.unit(10 + 3/12, "feet"),
  36460. weight: math.unit(1500, "lb"),
  36461. name: "Back",
  36462. image: {
  36463. source: "./media/characters/tux-kusanagi/back.svg",
  36464. extra: 941/842,
  36465. bottom: 28/969
  36466. }
  36467. },
  36468. rump: {
  36469. height: math.unit(5.25, "feet"),
  36470. name: "Rump",
  36471. image: {
  36472. source: "./media/characters/tux-kusanagi/rump.svg"
  36473. }
  36474. },
  36475. beak: {
  36476. height: math.unit(1.54, "feet"),
  36477. name: "Beak",
  36478. image: {
  36479. source: "./media/characters/tux-kusanagi/beak.svg"
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Normal",
  36486. height: math.unit(10 + 3/12, "feet"),
  36487. default: true
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36493. {
  36494. front: {
  36495. height: math.unit(58, "feet"),
  36496. weight: math.unit(200, "tons"),
  36497. name: "Front",
  36498. image: {
  36499. source: "./media/characters/uzarmazari/front.svg",
  36500. extra: 1575/1455,
  36501. bottom: 152/1727
  36502. }
  36503. },
  36504. back: {
  36505. height: math.unit(58, "feet"),
  36506. weight: math.unit(200, "tons"),
  36507. name: "Back",
  36508. image: {
  36509. source: "./media/characters/uzarmazari/back.svg",
  36510. extra: 1585/1510,
  36511. bottom: 157/1742
  36512. }
  36513. },
  36514. head: {
  36515. height: math.unit(26, "feet"),
  36516. name: "Head",
  36517. image: {
  36518. source: "./media/characters/uzarmazari/head.svg"
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(58, "feet"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36532. {
  36533. side: {
  36534. height: math.unit(15, "feet"),
  36535. name: "Side",
  36536. image: {
  36537. source: "./media/characters/akitu/side.svg",
  36538. extra: 1421/1321,
  36539. bottom: 157/1578
  36540. }
  36541. },
  36542. front: {
  36543. height: math.unit(15, "feet"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/akitu/front.svg",
  36547. extra: 1435/1326,
  36548. bottom: 232/1667
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(15, "feet"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(10 + 8/12, "feet"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/azalie-croixland/front.svg",
  36568. extra: 1972/1856,
  36569. bottom: 31/2003
  36570. }
  36571. },
  36572. },
  36573. [
  36574. {
  36575. name: "Original Height",
  36576. height: math.unit(5 + 4/12, "feet")
  36577. },
  36578. {
  36579. name: "Normal Height",
  36580. height: math.unit(10 + 8/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36587. {
  36588. side: {
  36589. height: math.unit(7 + 1/12, "feet"),
  36590. weight: math.unit(245, "lb"),
  36591. name: "Side",
  36592. image: {
  36593. source: "./media/characters/kavus-kazian/side.svg",
  36594. extra: 349/342,
  36595. bottom: 15/364
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(7 + 1/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36609. {
  36610. normalFront: {
  36611. height: math.unit(5 + 11/12, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/moonlight-rose/normal-front.svg",
  36615. extra: 1980/1825,
  36616. bottom: 18/1998
  36617. },
  36618. form: "normal",
  36619. default: true
  36620. },
  36621. normalBack: {
  36622. height: math.unit(5 + 11/12, "feet"),
  36623. name: "Back",
  36624. image: {
  36625. source: "./media/characters/moonlight-rose/normal-back.svg",
  36626. extra: 2010/1839,
  36627. bottom: 10/2020
  36628. },
  36629. form: "normal"
  36630. },
  36631. demonFront: {
  36632. height: math.unit(1.5, "earths"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/moonlight-rose/demon.svg",
  36636. extra: 1400/1294,
  36637. bottom: 45/1445
  36638. },
  36639. form: "demon",
  36640. default: true
  36641. },
  36642. terraFront: {
  36643. height: math.unit(1.5, "earths"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/moonlight-rose/terra.svg"
  36647. },
  36648. form: "terra",
  36649. default: true
  36650. },
  36651. jupiterFront: {
  36652. height: math.unit(69911*2, "km"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36656. extra: 1367/1286,
  36657. bottom: 55/1422
  36658. },
  36659. form: "jupiter",
  36660. default: true
  36661. },
  36662. neptuneFront: {
  36663. height: math.unit(24622*2, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36667. extra: 1851/1712,
  36668. bottom: 0/1851
  36669. },
  36670. form: "neptune",
  36671. default: true
  36672. },
  36673. },
  36674. [
  36675. {
  36676. name: "\"Natural\" Height",
  36677. height: math.unit(5 + 11/12, "feet"),
  36678. form: "normal"
  36679. },
  36680. {
  36681. name: "Smallest comfortable size",
  36682. height: math.unit(40, "meters"),
  36683. form: "normal"
  36684. },
  36685. {
  36686. name: "Common size",
  36687. height: math.unit(50, "km"),
  36688. form: "normal",
  36689. default: true
  36690. },
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(1.5, "earths"),
  36694. form: "demon",
  36695. default: true
  36696. },
  36697. {
  36698. name: "Universal",
  36699. height: math.unit(15, "universes"),
  36700. form: "demon"
  36701. },
  36702. {
  36703. name: "Earth",
  36704. height: math.unit(1.5, "earths"),
  36705. form: "terra",
  36706. default: true
  36707. },
  36708. {
  36709. name: "Super Earth",
  36710. height: math.unit(67.5, "earths"),
  36711. form: "terra"
  36712. },
  36713. {
  36714. name: "Doesn't fit in a solar system...",
  36715. height: math.unit(1, "galaxy"),
  36716. form: "terra"
  36717. },
  36718. {
  36719. name: "Saturn",
  36720. height: math.unit(58232*2, "km"),
  36721. form: "jupiter"
  36722. },
  36723. {
  36724. name: "Jupiter",
  36725. height: math.unit(69911*2, "km"),
  36726. form: "jupiter",
  36727. default: true
  36728. },
  36729. {
  36730. name: "HD 100546 b",
  36731. height: math.unit(482938, "km"),
  36732. form: "jupiter"
  36733. },
  36734. {
  36735. name: "Enceladus",
  36736. height: math.unit(513*2, "km"),
  36737. form: "neptune"
  36738. },
  36739. {
  36740. name: "Europe",
  36741. height: math.unit(1560*2, "km"),
  36742. form: "neptune"
  36743. },
  36744. {
  36745. name: "Neptune",
  36746. height: math.unit(24622*2, "km"),
  36747. form: "neptune",
  36748. default: true
  36749. },
  36750. {
  36751. name: "CoRoT-9b",
  36752. height: math.unit(75067*2, "km"),
  36753. form: "neptune"
  36754. },
  36755. ],
  36756. {
  36757. "normal": {
  36758. name: "Normal",
  36759. default: true
  36760. },
  36761. "demon": {
  36762. name: "Demon"
  36763. },
  36764. "terra": {
  36765. name: "Terra"
  36766. },
  36767. "jupiter": {
  36768. name: "Jupiter"
  36769. },
  36770. "neptune": {
  36771. name: "Neptune"
  36772. }
  36773. }
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(16, "feet"),
  36780. weight: math.unit(610, "kg"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/huckle/front.svg",
  36784. extra: 1731/1625,
  36785. bottom: 33/1764
  36786. }
  36787. },
  36788. back: {
  36789. height: math.unit(16, "feet"),
  36790. weight: math.unit(610, "kg"),
  36791. name: "Back",
  36792. image: {
  36793. source: "./media/characters/huckle/back.svg",
  36794. extra: 1738/1651,
  36795. bottom: 37/1775
  36796. }
  36797. },
  36798. laughing: {
  36799. height: math.unit(3.75, "feet"),
  36800. name: "Laughing",
  36801. image: {
  36802. source: "./media/characters/huckle/laughing.svg"
  36803. }
  36804. },
  36805. angry: {
  36806. height: math.unit(4.15, "feet"),
  36807. name: "Angry",
  36808. image: {
  36809. source: "./media/characters/huckle/angry.svg"
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(16, "feet"),
  36817. default: true
  36818. },
  36819. {
  36820. name: "Mini Macro",
  36821. height: math.unit(463, "feet")
  36822. },
  36823. {
  36824. name: "Macro",
  36825. height: math.unit(1680, "meters")
  36826. },
  36827. {
  36828. name: "Mega Macro",
  36829. height: math.unit(175, "km")
  36830. },
  36831. {
  36832. name: "Terra Macro",
  36833. height: math.unit(32, "gigameters")
  36834. },
  36835. {
  36836. name: "Multiverse+",
  36837. height: math.unit(2.56e23, "yottameters")
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(6 + 9/12, "feet"),
  36846. weight: math.unit(280, "lb"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/candy/front.svg",
  36850. extra: 234/217,
  36851. bottom: 11/245
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Really Small",
  36858. height: math.unit(0.1, "nm")
  36859. },
  36860. {
  36861. name: "Micro",
  36862. height: math.unit(2, "inches")
  36863. },
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(6 + 9/12, "feet"),
  36867. default: true
  36868. },
  36869. {
  36870. name: "Small Macro",
  36871. height: math.unit(69, "feet")
  36872. },
  36873. {
  36874. name: "Macro",
  36875. height: math.unit(160, "feet")
  36876. },
  36877. {
  36878. name: "Megamacro",
  36879. height: math.unit(22000, "miles")
  36880. },
  36881. {
  36882. name: "Gigamacro",
  36883. height: math.unit(50000, "miles")
  36884. },
  36885. ]
  36886. ))
  36887. characterMakers.push(() => makeCharacter(
  36888. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36889. {
  36890. front: {
  36891. height: math.unit(4, "feet"),
  36892. weight: math.unit(90, "lb"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/joey-mcdonald/front.svg",
  36896. extra: 1059/852,
  36897. bottom: 33/1092
  36898. }
  36899. },
  36900. back: {
  36901. height: math.unit(4, "feet"),
  36902. weight: math.unit(90, "lb"),
  36903. name: "Back",
  36904. image: {
  36905. source: "./media/characters/joey-mcdonald/back.svg",
  36906. extra: 1077/879,
  36907. bottom: 5/1082
  36908. }
  36909. },
  36910. frontKobold: {
  36911. height: math.unit(4, "feet"),
  36912. weight: math.unit(100, "lb"),
  36913. name: "Front-kobold",
  36914. image: {
  36915. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36916. extra: 1480/1367,
  36917. bottom: 0/1480
  36918. }
  36919. },
  36920. backKobold: {
  36921. height: math.unit(4, "feet"),
  36922. weight: math.unit(100, "lb"),
  36923. name: "Back-kobold",
  36924. image: {
  36925. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36926. extra: 1449/1361,
  36927. bottom: 0/1449
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(4, "feet"),
  36935. default: true
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(12 + 6/12, "feet"),
  36944. name: "Front",
  36945. image: {
  36946. source: "./media/characters/kass-lockheed/front.svg",
  36947. extra: 354/343,
  36948. bottom: 9/363
  36949. }
  36950. },
  36951. back: {
  36952. height: math.unit(12 + 6/12, "feet"),
  36953. name: "Back",
  36954. image: {
  36955. source: "./media/characters/kass-lockheed/back.svg",
  36956. extra: 364/352,
  36957. bottom: 3/367
  36958. }
  36959. },
  36960. dick: {
  36961. height: math.unit(3.12, "feet"),
  36962. name: "Dick",
  36963. image: {
  36964. source: "./media/characters/kass-lockheed/dick.svg"
  36965. }
  36966. },
  36967. head: {
  36968. height: math.unit(2.6, "feet"),
  36969. name: "Head",
  36970. image: {
  36971. source: "./media/characters/kass-lockheed/head.svg"
  36972. }
  36973. },
  36974. bleh: {
  36975. height: math.unit(2.85, "feet"),
  36976. name: "Bleh",
  36977. image: {
  36978. source: "./media/characters/kass-lockheed/bleh.svg"
  36979. }
  36980. },
  36981. smug: {
  36982. height: math.unit(2.85, "feet"),
  36983. name: "Smug",
  36984. image: {
  36985. source: "./media/characters/kass-lockheed/smug.svg"
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(12 + 6/12, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(6 + 2/12, "feet"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/taylor/front.svg",
  37005. extra: 639/495,
  37006. bottom: 12/651
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(6 + 2/12, "feet"),
  37014. default: true
  37015. },
  37016. {
  37017. name: "Big",
  37018. height: math.unit(15, "feet")
  37019. },
  37020. {
  37021. name: "Lorg",
  37022. height: math.unit(80, "feet")
  37023. },
  37024. {
  37025. name: "Too Lorg",
  37026. height: math.unit(120, "feet")
  37027. },
  37028. ]
  37029. ))
  37030. characterMakers.push(() => makeCharacter(
  37031. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37032. {
  37033. front: {
  37034. height: math.unit(15, "feet"),
  37035. name: "Front",
  37036. image: {
  37037. source: "./media/characters/kaizer/front.svg",
  37038. extra: 1612/1436,
  37039. bottom: 43/1655
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(15, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(2, "feet"),
  37056. weight: math.unit(30, "lb"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/sandy/front.svg",
  37060. extra: 1439/1307,
  37061. bottom: 194/1633
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(2, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(3, "feet"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/mellvi/front.svg",
  37081. extra: 1831/1630,
  37082. bottom: 58/1889
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(3, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(5 + 11/12, "feet"),
  37099. weight: math.unit(200, "lb"),
  37100. name: "Front",
  37101. image: {
  37102. source: "./media/characters/shirou/front.svg",
  37103. extra: 2491/2383,
  37104. bottom: 189/2680
  37105. }
  37106. },
  37107. back: {
  37108. height: math.unit(5 + 11/12, "feet"),
  37109. weight: math.unit(200, "lb"),
  37110. name: "Back",
  37111. image: {
  37112. source: "./media/characters/shirou/back.svg",
  37113. extra: 2554/2450,
  37114. bottom: 76/2630
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(5 + 11/12, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(6 + 3/12, "feet"),
  37131. weight: math.unit(177, "lb"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/noryu/front.svg",
  37135. extra: 973/885,
  37136. bottom: 10/983
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Normal",
  37143. height: math.unit(6 + 3/12, "feet"),
  37144. default: true
  37145. },
  37146. ]
  37147. ))
  37148. characterMakers.push(() => makeCharacter(
  37149. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37150. {
  37151. front: {
  37152. height: math.unit(5 + 6/12, "feet"),
  37153. weight: math.unit(170, "lb"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/mevolas-rubenido/front.svg",
  37157. extra: 2109/1901,
  37158. bottom: 96/2205
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(5 + 6/12, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(100, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/dee/front.svg",
  37178. extra: 2153/2036,
  37179. bottom: 59/2212
  37180. }
  37181. },
  37182. back: {
  37183. height: math.unit(100, "feet"),
  37184. name: "Back",
  37185. image: {
  37186. source: "./media/characters/dee/back.svg",
  37187. extra: 2183/2058,
  37188. bottom: 75/2258
  37189. }
  37190. },
  37191. foot: {
  37192. height: math.unit(19.43, "feet"),
  37193. name: "Foot",
  37194. image: {
  37195. source: "./media/characters/dee/foot.svg"
  37196. }
  37197. },
  37198. hoof: {
  37199. height: math.unit(20.6, "feet"),
  37200. name: "Hoof",
  37201. image: {
  37202. source: "./media/characters/dee/hoof.svg"
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Macro",
  37209. height: math.unit(100, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(5 + 6/12, "feet"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/teh/front.svg",
  37222. extra: 1002/847,
  37223. bottom: 62/1064
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(5 + 6/12, "feet"),
  37231. default: true
  37232. },
  37233. ]
  37234. ))
  37235. characterMakers.push(() => makeCharacter(
  37236. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37237. {
  37238. side: {
  37239. height: math.unit(6 + 1/12, "feet"),
  37240. weight: math.unit(204, "lb"),
  37241. name: "Side",
  37242. image: {
  37243. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37244. extra: 974/775,
  37245. bottom: 169/1143
  37246. }
  37247. },
  37248. sitting: {
  37249. height: math.unit(6 + 2/12, "feet"),
  37250. weight: math.unit(204, "lb"),
  37251. name: "Sitting",
  37252. image: {
  37253. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37254. extra: 1175/964,
  37255. bottom: 378/1553
  37256. }
  37257. },
  37258. },
  37259. [
  37260. {
  37261. name: "Normal",
  37262. height: math.unit(6 + 1/12, "feet"),
  37263. default: true
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(6, "inches"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/tululi/front.svg",
  37275. extra: 1997/1876,
  37276. bottom: 20/2017
  37277. }
  37278. },
  37279. },
  37280. [
  37281. {
  37282. name: "Normal",
  37283. height: math.unit(6, "inches"),
  37284. default: true
  37285. },
  37286. ]
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(4 + 1/12, "feet"),
  37293. name: "Front",
  37294. image: {
  37295. source: "./media/characters/star/front.svg",
  37296. extra: 1493/1189,
  37297. bottom: 48/1541
  37298. }
  37299. },
  37300. },
  37301. [
  37302. {
  37303. name: "Normal",
  37304. height: math.unit(4 + 1/12, "feet"),
  37305. default: true
  37306. },
  37307. ]
  37308. ))
  37309. characterMakers.push(() => makeCharacter(
  37310. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37311. {
  37312. front: {
  37313. height: math.unit(6 + 3/12, "feet"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/comet/front.svg",
  37317. extra: 1681/1462,
  37318. bottom: 26/1707
  37319. }
  37320. },
  37321. },
  37322. [
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(6 + 3/12, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(950, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/vortex/front.svg",
  37338. extra: 1497/1434,
  37339. bottom: 56/1553
  37340. }
  37341. },
  37342. maw: {
  37343. height: math.unit(285, "feet"),
  37344. name: "Maw",
  37345. image: {
  37346. source: "./media/characters/vortex/maw.svg"
  37347. }
  37348. },
  37349. },
  37350. [
  37351. {
  37352. name: "Macro",
  37353. height: math.unit(950, "feet"),
  37354. default: true
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(600, "feet"),
  37363. weight: math.unit(0.02, "grams"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/doodle/front.svg",
  37367. extra: 1578/1413,
  37368. bottom: 37/1615
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Macro",
  37375. height: math.unit(600, "feet"),
  37376. default: true
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(6 + 6/12, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/jai/front.svg",
  37388. extra: 1645/1534,
  37389. bottom: 115/1760
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(6 + 6/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(6 + 8/12, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/pixel/front.svg",
  37409. extra: 1900/1735,
  37410. bottom: 63/1963
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(6 + 8/12, "feet"),
  37418. default: true
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37424. {
  37425. back: {
  37426. height: math.unit(4 + 1/12, "feet"),
  37427. weight: math.unit(75, "lb"),
  37428. name: "Back",
  37429. image: {
  37430. source: "./media/characters/rhett/back.svg",
  37431. extra: 930/878,
  37432. bottom: 25/955
  37433. }
  37434. },
  37435. front: {
  37436. height: math.unit(4 + 1/12, "feet"),
  37437. weight: math.unit(75, "lb"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/rhett/front.svg",
  37441. extra: 1682/1586,
  37442. bottom: 92/1774
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Micro",
  37449. height: math.unit(8, "inches")
  37450. },
  37451. {
  37452. name: "Tiny",
  37453. height: math.unit(2, "feet")
  37454. },
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(4 + 1/12, "feet"),
  37458. default: true
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(3 + 3/12, "feet"),
  37467. name: "Front",
  37468. image: {
  37469. source: "./media/characters/penny/front.svg",
  37470. extra: 1406/1311,
  37471. bottom: 26/1432
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(3 + 3/12, "feet"),
  37479. default: true
  37480. },
  37481. ]
  37482. ))
  37483. characterMakers.push(() => makeCharacter(
  37484. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37485. {
  37486. front: {
  37487. height: math.unit(4 + 11/12, "feet"),
  37488. name: "Front",
  37489. image: {
  37490. source: "./media/characters/monty/front.svg",
  37491. extra: 1479/1209,
  37492. bottom: 0/1479
  37493. }
  37494. },
  37495. },
  37496. [
  37497. {
  37498. name: "Normal",
  37499. height: math.unit(4 + 11/12, "feet"),
  37500. default: true
  37501. },
  37502. ]
  37503. ))
  37504. characterMakers.push(() => makeCharacter(
  37505. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37506. {
  37507. front: {
  37508. height: math.unit(8 + 4/12, "feet"),
  37509. name: "Front",
  37510. image: {
  37511. source: "./media/characters/sterling/front.svg",
  37512. extra: 1420/1236,
  37513. bottom: 27/1447
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(8 + 4/12, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(15, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/marble/front.svg",
  37533. extra: 973/937,
  37534. bottom: 32/1005
  37535. }
  37536. },
  37537. },
  37538. [
  37539. {
  37540. name: "Normal",
  37541. height: math.unit(15, "feet"),
  37542. default: true
  37543. },
  37544. ]
  37545. ))
  37546. characterMakers.push(() => makeCharacter(
  37547. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37548. {
  37549. front: {
  37550. height: math.unit(3, "inches"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/powder/front.svg",
  37554. extra: 1504/1334,
  37555. bottom: 518/2022
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(3, "inches"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(4 + 5/12, "feet"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/joey-raccoon/front.svg",
  37575. extra: 1273/1197,
  37576. bottom: 0/1273
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(4 + 5/12, "feet"),
  37584. default: true
  37585. },
  37586. ]
  37587. ))
  37588. characterMakers.push(() => makeCharacter(
  37589. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37590. {
  37591. front: {
  37592. height: math.unit(8 + 4/12, "feet"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/vick/front.svg",
  37596. extra: 2187/2118,
  37597. bottom: 47/2234
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(8 + 4/12, "feet"),
  37605. default: true
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37611. {
  37612. front: {
  37613. height: math.unit(5 + 5/12, "feet"),
  37614. name: "Front",
  37615. image: {
  37616. source: "./media/characters/mitsy/front.svg",
  37617. extra: 1842/1695,
  37618. bottom: 0/1842
  37619. }
  37620. },
  37621. },
  37622. [
  37623. {
  37624. name: "Normal",
  37625. height: math.unit(5 + 5/12, "feet"),
  37626. default: true
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37632. {
  37633. front: {
  37634. height: math.unit(6 + 3/12, "feet"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/silvy/front.svg",
  37638. extra: 1995/1836,
  37639. bottom: 225/2220
  37640. }
  37641. },
  37642. },
  37643. [
  37644. {
  37645. name: "Normal",
  37646. height: math.unit(6 + 3/12, "feet"),
  37647. default: true
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(3 + 8/12, "feet"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/rodney/front.svg",
  37659. extra: 1956/1747,
  37660. bottom: 31/1987
  37661. }
  37662. },
  37663. frontDressed: {
  37664. height: math.unit(2.9, "feet"),
  37665. name: "Front (Dressed)",
  37666. image: {
  37667. source: "./media/characters/rodney/front-dressed.svg",
  37668. extra: 1382/1241,
  37669. bottom: 385/1767
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(3 + 8/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(5 + 9/12, "feet"),
  37686. weight: math.unit(194, "lbs"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/zakail-sudekai/front.svg",
  37690. extra: 2696/2533,
  37691. bottom: 248/2944
  37692. }
  37693. },
  37694. maw: {
  37695. height: math.unit(1.35, "feet"),
  37696. name: "Maw",
  37697. image: {
  37698. source: "./media/characters/zakail-sudekai/maw.svg"
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(5 + 9/12, "feet"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(8 + 4/12, "feet"),
  37715. weight: math.unit(1200, "lb"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/eleanor/front.svg",
  37719. extra: 1226/1192,
  37720. bottom: 52/1278
  37721. }
  37722. },
  37723. back: {
  37724. height: math.unit(8 + 4/12, "feet"),
  37725. weight: math.unit(1200, "lb"),
  37726. name: "Back",
  37727. image: {
  37728. source: "./media/characters/eleanor/back.svg",
  37729. extra: 1242/1184,
  37730. bottom: 60/1302
  37731. }
  37732. },
  37733. head: {
  37734. height: math.unit(2.62, "feet"),
  37735. name: "Head",
  37736. image: {
  37737. source: "./media/characters/eleanor/head.svg"
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(8 + 4/12, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(8 + 4/12, "feet"),
  37754. weight: math.unit(750, "lb"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/tanya/front.svg",
  37758. extra: 1749/1615,
  37759. bottom: 33/1782
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(8 + 4/12, "feet"),
  37767. default: true
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37773. {
  37774. front: {
  37775. height: math.unit(5, "feet"),
  37776. weight: math.unit(225, "lb"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/cindy/front.svg",
  37780. extra: 1320/1250,
  37781. bottom: 42/1362
  37782. }
  37783. },
  37784. frontDressed: {
  37785. height: math.unit(5, "feet"),
  37786. weight: math.unit(225, "lb"),
  37787. name: "Front (Dressed)",
  37788. image: {
  37789. source: "./media/characters/cindy/front-dressed.svg",
  37790. extra: 1320/1250,
  37791. bottom: 42/1362
  37792. }
  37793. },
  37794. back: {
  37795. height: math.unit(5, "feet"),
  37796. weight: math.unit(225, "lb"),
  37797. name: "Back",
  37798. image: {
  37799. source: "./media/characters/cindy/back.svg",
  37800. extra: 1384/1346,
  37801. bottom: 14/1398
  37802. }
  37803. },
  37804. },
  37805. [
  37806. {
  37807. name: "Normal",
  37808. height: math.unit(5, "feet"),
  37809. default: true
  37810. },
  37811. ]
  37812. ))
  37813. characterMakers.push(() => makeCharacter(
  37814. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37815. {
  37816. front: {
  37817. height: math.unit(6 + 9/12, "feet"),
  37818. weight: math.unit(440, "lb"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/wilbur-owen/front.svg",
  37822. extra: 1575/1448,
  37823. bottom: 72/1647
  37824. }
  37825. },
  37826. back: {
  37827. height: math.unit(6 + 9/12, "feet"),
  37828. weight: math.unit(440, "lb"),
  37829. name: "Back",
  37830. image: {
  37831. source: "./media/characters/wilbur-owen/back.svg",
  37832. extra: 1578/1445,
  37833. bottom: 36/1614
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(6 + 9/12, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(6 + 5/12, "feet"),
  37850. weight: math.unit(650, "lb"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/keegan/front.svg",
  37854. extra: 2387/2198,
  37855. bottom: 33/2420
  37856. }
  37857. },
  37858. side: {
  37859. height: math.unit(6 + 5/12, "feet"),
  37860. weight: math.unit(650, "lb"),
  37861. name: "Side",
  37862. image: {
  37863. source: "./media/characters/keegan/side.svg",
  37864. extra: 2390/2202,
  37865. bottom: 47/2437
  37866. }
  37867. },
  37868. back: {
  37869. height: math.unit(6 + 5/12, "feet"),
  37870. weight: math.unit(650, "lb"),
  37871. name: "Back",
  37872. image: {
  37873. source: "./media/characters/keegan/back.svg",
  37874. extra: 2418/2268,
  37875. bottom: 15/2433
  37876. }
  37877. },
  37878. frontSfw: {
  37879. height: math.unit(6 + 5/12, "feet"),
  37880. weight: math.unit(650, "lb"),
  37881. name: "Front (SFW)",
  37882. image: {
  37883. source: "./media/characters/keegan/front-sfw.svg",
  37884. extra: 2387/2198,
  37885. bottom: 33/2420
  37886. }
  37887. },
  37888. beans: {
  37889. height: math.unit(1.85, "feet"),
  37890. name: "Beans",
  37891. image: {
  37892. source: "./media/characters/keegan/beans.svg"
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(6 + 5/12, "feet"),
  37900. default: true
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(9, "feet"),
  37909. name: "Front",
  37910. image: {
  37911. source: "./media/characters/colton/front.svg",
  37912. extra: 1589/1326,
  37913. bottom: 139/1728
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(9, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(2 + 9/12, "feet"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/bora/front.svg",
  37933. extra: 1265/1250,
  37934. bottom: 24/1289
  37935. }
  37936. },
  37937. },
  37938. [
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(2 + 9/12, "feet"),
  37942. default: true
  37943. },
  37944. ]
  37945. ))
  37946. characterMakers.push(() => makeCharacter(
  37947. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37948. {
  37949. front: {
  37950. height: math.unit(8, "feet"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/myu-myu/front.svg",
  37954. extra: 1949/1857,
  37955. bottom: 90/2039
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Normal",
  37962. height: math.unit(8, "feet"),
  37963. default: true
  37964. },
  37965. {
  37966. name: "Big",
  37967. height: math.unit(15, "feet")
  37968. },
  37969. {
  37970. name: "BIG",
  37971. height: math.unit(25, "feet")
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37977. {
  37978. side: {
  37979. height: math.unit(7 + 5/12, "feet"),
  37980. weight: math.unit(2800, "lb"),
  37981. name: "Side",
  37982. image: {
  37983. source: "./media/characters/haloren/side.svg",
  37984. extra: 1793/409,
  37985. bottom: 59/1852
  37986. }
  37987. },
  37988. frontPaw: {
  37989. height: math.unit(2.36, "feet"),
  37990. name: "Front paw",
  37991. image: {
  37992. source: "./media/characters/haloren/front-paw.svg"
  37993. }
  37994. },
  37995. hindPaw: {
  37996. height: math.unit(3.18, "feet"),
  37997. name: "Hind paw",
  37998. image: {
  37999. source: "./media/characters/haloren/hind-paw.svg"
  38000. }
  38001. },
  38002. maw: {
  38003. height: math.unit(5.05, "feet"),
  38004. name: "Maw",
  38005. image: {
  38006. source: "./media/characters/haloren/maw.svg"
  38007. }
  38008. },
  38009. dick: {
  38010. height: math.unit(2.90, "feet"),
  38011. name: "Dick",
  38012. image: {
  38013. source: "./media/characters/haloren/dick.svg"
  38014. }
  38015. },
  38016. },
  38017. [
  38018. {
  38019. name: "Normal",
  38020. height: math.unit(7 + 5/12, "feet"),
  38021. default: true
  38022. },
  38023. {
  38024. name: "Enhanced",
  38025. height: math.unit(14 + 3/12, "feet")
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(171, "cm"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/kimmy/front.svg",
  38037. extra: 1491/1435,
  38038. bottom: 53/1544
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Small",
  38045. height: math.unit(9, "cm")
  38046. },
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(171, "cm"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(8, "feet"),
  38059. weight: math.unit(300, "lb"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/galeboomer/front.svg",
  38063. extra: 4651/4415,
  38064. bottom: 162/4813
  38065. }
  38066. },
  38067. back: {
  38068. height: math.unit(8, "feet"),
  38069. weight: math.unit(300, "lb"),
  38070. name: "Back",
  38071. image: {
  38072. source: "./media/characters/galeboomer/back.svg",
  38073. extra: 4544/4314,
  38074. bottom: 16/4560
  38075. }
  38076. },
  38077. frontAlt: {
  38078. height: math.unit(8, "feet"),
  38079. weight: math.unit(300, "lb"),
  38080. name: "Front (Alt)",
  38081. image: {
  38082. source: "./media/characters/galeboomer/front-alt.svg",
  38083. extra: 4458/4228,
  38084. bottom: 68/4526
  38085. }
  38086. },
  38087. maw: {
  38088. height: math.unit(1.2, "feet"),
  38089. name: "Maw",
  38090. image: {
  38091. source: "./media/characters/galeboomer/maw.svg"
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(8, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38105. {
  38106. front: {
  38107. height: math.unit(5 + 9/12, "feet"),
  38108. weight: math.unit(120, "lb"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/chyr/front.svg",
  38112. extra: 1323/1254,
  38113. bottom: 63/1386
  38114. }
  38115. },
  38116. back: {
  38117. height: math.unit(5 + 9/12, "feet"),
  38118. weight: math.unit(120, "lb"),
  38119. name: "Back",
  38120. image: {
  38121. source: "./media/characters/chyr/back.svg",
  38122. extra: 1323/1252,
  38123. bottom: 48/1371
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5 + 9/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(7, "feet"),
  38140. weight: math.unit(310, "lb"),
  38141. name: "Front",
  38142. image: {
  38143. source: "./media/characters/solarus/front.svg",
  38144. extra: 2415/2021,
  38145. bottom: 103/2518
  38146. }
  38147. },
  38148. back: {
  38149. height: math.unit(7, "feet"),
  38150. weight: math.unit(310, "lb"),
  38151. name: "Back",
  38152. image: {
  38153. source: "./media/characters/solarus/back.svg",
  38154. extra: 2463/2089,
  38155. bottom: 79/2542
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(7, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(16, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38175. extra: 1844/1780,
  38176. bottom: 58/1902
  38177. }
  38178. },
  38179. winterCoat: {
  38180. height: math.unit(16, "feet"),
  38181. name: "Winter Coat",
  38182. image: {
  38183. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38184. extra: 1807/1775,
  38185. bottom: 69/1876
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(16, "feet"),
  38193. default: true
  38194. },
  38195. {
  38196. name: "Chicago Size",
  38197. height: math.unit(560, "feet")
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(11 + 6/12, "feet"),
  38206. weight: math.unit(1366, "lb"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/lexor/front.svg",
  38210. extra: 1560/1481,
  38211. bottom: 211/1771
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(11 + 6/12, "feet"),
  38216. weight: math.unit(1366, "lb"),
  38217. name: "Back",
  38218. image: {
  38219. source: "./media/characters/lexor/back.svg",
  38220. extra: 1614/1533,
  38221. bottom: 76/1690
  38222. }
  38223. },
  38224. maw: {
  38225. height: math.unit(3, "feet"),
  38226. name: "Maw",
  38227. image: {
  38228. source: "./media/characters/lexor/maw.svg"
  38229. }
  38230. },
  38231. dick: {
  38232. height: math.unit(2.59, "feet"),
  38233. name: "Dick",
  38234. image: {
  38235. source: "./media/characters/lexor/dick.svg"
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(11 + 6/12, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(5 + 8/12, "feet"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/magnum/front.svg",
  38255. extra: 942/855,
  38256. bottom: 26/968
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(5 + 8/12, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38270. {
  38271. front: {
  38272. height: math.unit(18 + 4/12, "feet"),
  38273. weight: math.unit(1500, "kg"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/solas-sharpsman/front.svg",
  38277. extra: 1698/1589,
  38278. bottom: 0/1698
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(18 + 4/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(5 + 5/12, "feet"),
  38295. weight: math.unit(180, "lb"),
  38296. name: "Front",
  38297. image: {
  38298. source: "./media/characters/october/front.svg",
  38299. extra: 1800/1650,
  38300. bottom: 0/1800
  38301. }
  38302. },
  38303. frontNsfw: {
  38304. height: math.unit(5 + 5/12, "feet"),
  38305. weight: math.unit(180, "lb"),
  38306. name: "Front (NSFW)",
  38307. image: {
  38308. source: "./media/characters/october/front-nsfw.svg",
  38309. extra: 1392/1307,
  38310. bottom: 42/1434
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(5 + 5/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(8 + 6/12, "feet"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/essynkardi/front.svg",
  38330. extra: 1914/1846,
  38331. bottom: 22/1936
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(8 + 6/12, "feet"),
  38339. default: true
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(6 + 6/12, "feet"),
  38348. weight: math.unit(7, "lb"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/icky/front.svg",
  38352. extra: 813/782,
  38353. bottom: 66/879
  38354. }
  38355. },
  38356. back: {
  38357. height: math.unit(6 + 6/12, "feet"),
  38358. weight: math.unit(7, "lb"),
  38359. name: "Back",
  38360. image: {
  38361. source: "./media/characters/icky/back.svg",
  38362. extra: 754/735,
  38363. bottom: 56/810
  38364. }
  38365. },
  38366. },
  38367. [
  38368. {
  38369. name: "Normal",
  38370. height: math.unit(6 + 6/12, "feet"),
  38371. default: true
  38372. },
  38373. ]
  38374. ))
  38375. characterMakers.push(() => makeCharacter(
  38376. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38377. {
  38378. front: {
  38379. height: math.unit(15, "feet"),
  38380. name: "Front",
  38381. image: {
  38382. source: "./media/characters/rojas/front.svg",
  38383. extra: 1462/1408,
  38384. bottom: 95/1557
  38385. }
  38386. },
  38387. back: {
  38388. height: math.unit(15, "feet"),
  38389. name: "Back",
  38390. image: {
  38391. source: "./media/characters/rojas/back.svg",
  38392. extra: 1023/954,
  38393. bottom: 28/1051
  38394. }
  38395. },
  38396. },
  38397. [
  38398. {
  38399. name: "Normal",
  38400. height: math.unit(15, "feet"),
  38401. default: true
  38402. },
  38403. ]
  38404. ))
  38405. characterMakers.push(() => makeCharacter(
  38406. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38407. {
  38408. frontHuman: {
  38409. height: math.unit(5 + 7/12, "feet"),
  38410. name: "Front (Human)",
  38411. image: {
  38412. source: "./media/characters/alek-dryagan/front-human.svg",
  38413. extra: 1687/1667,
  38414. bottom: 69/1756
  38415. }
  38416. },
  38417. backHuman: {
  38418. height: math.unit(5 + 7/12, "feet"),
  38419. name: "Back (Human)",
  38420. image: {
  38421. source: "./media/characters/alek-dryagan/back-human.svg",
  38422. extra: 1670/1649,
  38423. bottom: 65/1735
  38424. }
  38425. },
  38426. frontDemi: {
  38427. height: math.unit(65, "feet"),
  38428. name: "Front (Demi)",
  38429. image: {
  38430. source: "./media/characters/alek-dryagan/front-demi.svg",
  38431. extra: 1669/1642,
  38432. bottom: 49/1718
  38433. }
  38434. },
  38435. backDemi: {
  38436. height: math.unit(65, "feet"),
  38437. name: "Back (Demi)",
  38438. image: {
  38439. source: "./media/characters/alek-dryagan/back-demi.svg",
  38440. extra: 1658/1637,
  38441. bottom: 40/1698
  38442. }
  38443. },
  38444. mawHuman: {
  38445. height: math.unit(0.3, "feet"),
  38446. name: "Maw (Human)",
  38447. image: {
  38448. source: "./media/characters/alek-dryagan/maw-human.svg"
  38449. }
  38450. },
  38451. mawDemi: {
  38452. height: math.unit(3.8, "feet"),
  38453. name: "Maw (Demi)",
  38454. image: {
  38455. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(5 + 7/12, "feet"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38469. {
  38470. frontHuman: {
  38471. height: math.unit(5 + 2/12, "feet"),
  38472. name: "Front (Human)",
  38473. image: {
  38474. source: "./media/characters/gen/front-human.svg",
  38475. extra: 1627/1538,
  38476. bottom: 71/1698
  38477. }
  38478. },
  38479. backHuman: {
  38480. height: math.unit(5 + 2/12, "feet"),
  38481. name: "Back (Human)",
  38482. image: {
  38483. source: "./media/characters/gen/back-human.svg",
  38484. extra: 1638/1548,
  38485. bottom: 69/1707
  38486. }
  38487. },
  38488. frontDemi: {
  38489. height: math.unit(5 + 2/12, "feet"),
  38490. name: "Front (Demi)",
  38491. image: {
  38492. source: "./media/characters/gen/front-demi.svg",
  38493. extra: 1627/1538,
  38494. bottom: 71/1698
  38495. }
  38496. },
  38497. backDemi: {
  38498. height: math.unit(5 + 2/12, "feet"),
  38499. name: "Back (Demi)",
  38500. image: {
  38501. source: "./media/characters/gen/back-demi.svg",
  38502. extra: 1638/1548,
  38503. bottom: 69/1707
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(5 + 2/12, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38517. {
  38518. frontImp: {
  38519. height: math.unit(1 + 11/12, "feet"),
  38520. name: "Front (Imp)",
  38521. image: {
  38522. source: "./media/characters/max-kobold/front-imp.svg",
  38523. extra: 1238/1134,
  38524. bottom: 81/1319
  38525. }
  38526. },
  38527. backImp: {
  38528. height: math.unit(1 + 11/12, "feet"),
  38529. name: "Back (Imp)",
  38530. image: {
  38531. source: "./media/characters/max-kobold/back-imp.svg",
  38532. extra: 1334/1175,
  38533. bottom: 34/1368
  38534. }
  38535. },
  38536. frontDemi: {
  38537. height: math.unit(5 + 9/12, "feet"),
  38538. name: "Front (Demi)",
  38539. image: {
  38540. source: "./media/characters/max-kobold/front-demi.svg",
  38541. extra: 1715/1685,
  38542. bottom: 54/1769
  38543. }
  38544. },
  38545. backDemi: {
  38546. height: math.unit(5 + 9/12, "feet"),
  38547. name: "Back (Demi)",
  38548. image: {
  38549. source: "./media/characters/max-kobold/back-demi.svg",
  38550. extra: 1752/1729,
  38551. bottom: 41/1793
  38552. }
  38553. },
  38554. handImp: {
  38555. height: math.unit(0.45, "feet"),
  38556. name: "Hand (Imp)",
  38557. image: {
  38558. source: "./media/characters/max-kobold/hand.svg"
  38559. }
  38560. },
  38561. pawImp: {
  38562. height: math.unit(0.46, "feet"),
  38563. name: "Paw (Imp)",
  38564. image: {
  38565. source: "./media/characters/max-kobold/paw.svg"
  38566. }
  38567. },
  38568. handDemi: {
  38569. height: math.unit(0.80, "feet"),
  38570. name: "Hand (Demi)",
  38571. image: {
  38572. source: "./media/characters/max-kobold/hand.svg"
  38573. }
  38574. },
  38575. pawDemi: {
  38576. height: math.unit(1.1, "feet"),
  38577. name: "Paw (Demi)",
  38578. image: {
  38579. source: "./media/characters/max-kobold/paw.svg"
  38580. }
  38581. },
  38582. headImp: {
  38583. height: math.unit(1.33, "feet"),
  38584. name: "Head (Imp)",
  38585. image: {
  38586. source: "./media/characters/max-kobold/head-imp.svg"
  38587. }
  38588. },
  38589. mawImp: {
  38590. height: math.unit(0.75, "feet"),
  38591. name: "Maw (Imp)",
  38592. image: {
  38593. source: "./media/characters/max-kobold/maw-imp.svg"
  38594. }
  38595. },
  38596. mawDemi: {
  38597. height: math.unit(0.42, "feet"),
  38598. name: "Maw (Demi)",
  38599. image: {
  38600. source: "./media/characters/max-kobold/maw-demi.svg"
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(1 + 11/12, "feet"),
  38608. default: true
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(7 + 5/12, "feet"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/carbon/front.svg",
  38620. extra: 1754/1689,
  38621. bottom: 65/1819
  38622. }
  38623. },
  38624. back: {
  38625. height: math.unit(7 + 5/12, "feet"),
  38626. name: "Back",
  38627. image: {
  38628. source: "./media/characters/carbon/back.svg",
  38629. extra: 1762/1695,
  38630. bottom: 24/1786
  38631. }
  38632. },
  38633. frontGigantamax: {
  38634. height: math.unit(150, "feet"),
  38635. name: "Front (Gigantamax)",
  38636. image: {
  38637. source: "./media/characters/carbon/front-gigantamax.svg",
  38638. extra: 1826/1669,
  38639. bottom: 59/1885
  38640. }
  38641. },
  38642. backGigantamax: {
  38643. height: math.unit(150, "feet"),
  38644. name: "Back (Gigantamax)",
  38645. image: {
  38646. source: "./media/characters/carbon/back-gigantamax.svg",
  38647. extra: 1796/1653,
  38648. bottom: 53/1849
  38649. }
  38650. },
  38651. maw: {
  38652. height: math.unit(0.48, "feet"),
  38653. name: "Maw",
  38654. image: {
  38655. source: "./media/characters/carbon/maw.svg"
  38656. }
  38657. },
  38658. mawGigantamax: {
  38659. height: math.unit(7.5, "feet"),
  38660. name: "Maw (Gigantamax)",
  38661. image: {
  38662. source: "./media/characters/carbon/maw-gigantamax.svg"
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(7 + 5/12, "feet"),
  38670. default: true
  38671. },
  38672. ]
  38673. ))
  38674. characterMakers.push(() => makeCharacter(
  38675. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38676. {
  38677. front: {
  38678. height: math.unit(6, "feet"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/maverick/front.svg",
  38682. extra: 1672/1661,
  38683. bottom: 85/1757
  38684. }
  38685. },
  38686. back: {
  38687. height: math.unit(6, "feet"),
  38688. name: "Back",
  38689. image: {
  38690. source: "./media/characters/maverick/back.svg",
  38691. extra: 1642/1631,
  38692. bottom: 38/1680
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(6, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(15, "feet"),
  38709. weight: math.unit(615, "lb"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/grockle/front.svg",
  38713. extra: 1535/1427,
  38714. bottom: 56/1591
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(15, "feet"),
  38722. default: true
  38723. },
  38724. {
  38725. name: "Large",
  38726. height: math.unit(150, "feet")
  38727. },
  38728. {
  38729. name: "Macro",
  38730. height: math.unit(1876, "feet")
  38731. },
  38732. {
  38733. name: "Mega Macro",
  38734. height: math.unit(121940, "feet")
  38735. },
  38736. {
  38737. name: "Giga Macro",
  38738. height: math.unit(750, "km")
  38739. },
  38740. {
  38741. name: "Tera Macro",
  38742. height: math.unit(750000, "km")
  38743. },
  38744. {
  38745. name: "Galactic",
  38746. height: math.unit(1.4e5, "km")
  38747. },
  38748. {
  38749. name: "Godlike",
  38750. height: math.unit(9.8e280, "galaxies")
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(11, "meters"),
  38759. weight: math.unit(20, "tonnes"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/alistair/front.svg",
  38763. extra: 1265/1009,
  38764. bottom: 93/1358
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(11, "meters"),
  38772. default: true
  38773. },
  38774. ]
  38775. ))
  38776. characterMakers.push(() => makeCharacter(
  38777. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38778. {
  38779. front: {
  38780. height: math.unit(5 + 8/12, "feet"),
  38781. name: "Front",
  38782. image: {
  38783. source: "./media/characters/haruka/front.svg",
  38784. extra: 2012/1952,
  38785. bottom: 0/2012
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(5 + 8/12, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38799. {
  38800. back: {
  38801. height: math.unit(9, "feet"),
  38802. name: "Back",
  38803. image: {
  38804. source: "./media/characters/vivian-sylveon/back.svg",
  38805. extra: 1853/1714,
  38806. bottom: 0/1853
  38807. }
  38808. },
  38809. },
  38810. [
  38811. {
  38812. name: "Normal",
  38813. height: math.unit(9, "feet"),
  38814. default: true
  38815. },
  38816. {
  38817. name: "Macro",
  38818. height: math.unit(500, "feet")
  38819. },
  38820. {
  38821. name: "Megamacro",
  38822. height: math.unit(600, "miles")
  38823. },
  38824. {
  38825. name: "Gigamacro",
  38826. height: math.unit(30000, "miles")
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38832. {
  38833. anthro: {
  38834. height: math.unit(5 + 10/12, "feet"),
  38835. weight: math.unit(100, "lb"),
  38836. name: "Anthro",
  38837. image: {
  38838. source: "./media/characters/daiki/anthro.svg",
  38839. extra: 1115/1027,
  38840. bottom: 69/1184
  38841. }
  38842. },
  38843. feral: {
  38844. height: math.unit(200, "feet"),
  38845. name: "Feral",
  38846. image: {
  38847. source: "./media/characters/daiki/feral.svg",
  38848. extra: 1256/313,
  38849. bottom: 39/1295
  38850. }
  38851. },
  38852. feralHead: {
  38853. height: math.unit(171, "feet"),
  38854. name: "Feral Head",
  38855. image: {
  38856. source: "./media/characters/daiki/feral-head.svg"
  38857. }
  38858. },
  38859. manaDragon: {
  38860. height: math.unit(170, "meters"),
  38861. name: "Mana-dragon",
  38862. image: {
  38863. source: "./media/characters/daiki/mana-dragon.svg",
  38864. extra: 763/420,
  38865. bottom: 97/860
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(5 + 10/12, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38879. {
  38880. fullyEquippedFront: {
  38881. height: math.unit(3 + 1/12, "feet"),
  38882. weight: math.unit(24, "lb"),
  38883. name: "Fully Equipped (Front)",
  38884. image: {
  38885. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38886. extra: 687/605,
  38887. bottom: 18/705
  38888. }
  38889. },
  38890. fullyEquippedBack: {
  38891. height: math.unit(3 + 1/12, "feet"),
  38892. weight: math.unit(24, "lb"),
  38893. name: "Fully Equipped (Back)",
  38894. image: {
  38895. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38896. extra: 689/590,
  38897. bottom: 18/707
  38898. }
  38899. },
  38900. dailyWear: {
  38901. height: math.unit(3 + 1/12, "feet"),
  38902. weight: math.unit(24, "lb"),
  38903. name: "Daily Wear",
  38904. image: {
  38905. source: "./media/characters/tea-spot/daily-wear.svg",
  38906. extra: 701/620,
  38907. bottom: 21/722
  38908. }
  38909. },
  38910. maidWork: {
  38911. height: math.unit(3 + 1/12, "feet"),
  38912. weight: math.unit(24, "lb"),
  38913. name: "Maid Work",
  38914. image: {
  38915. source: "./media/characters/tea-spot/maid-work.svg",
  38916. extra: 693/609,
  38917. bottom: 15/708
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Normal",
  38924. height: math.unit(3 + 1/12, "feet"),
  38925. default: true
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(175, "cm"),
  38934. weight: math.unit(75, "kg"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/chee/front.svg",
  38938. extra: 1796/1740,
  38939. bottom: 40/1836
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Micro-Micro",
  38946. height: math.unit(1, "nm")
  38947. },
  38948. {
  38949. name: "Micro-erst",
  38950. height: math.unit(1, "micrometer")
  38951. },
  38952. {
  38953. name: "Micro-er",
  38954. height: math.unit(1, "cm")
  38955. },
  38956. {
  38957. name: "Normal",
  38958. height: math.unit(175, "cm"),
  38959. default: true
  38960. },
  38961. {
  38962. name: "Macro",
  38963. height: math.unit(100, "m")
  38964. },
  38965. {
  38966. name: "Macro-er",
  38967. height: math.unit(1, "km")
  38968. },
  38969. {
  38970. name: "Macro-erst",
  38971. height: math.unit(10, "km")
  38972. },
  38973. {
  38974. name: "Macro-Macro",
  38975. height: math.unit(100, "km")
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38981. {
  38982. front: {
  38983. height: math.unit(11 + 9/12, "feet"),
  38984. weight: math.unit(935, "lb"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/kingsley/front.svg",
  38988. extra: 1803/1674,
  38989. bottom: 127/1930
  38990. }
  38991. },
  38992. frontNude: {
  38993. height: math.unit(11 + 9/12, "feet"),
  38994. weight: math.unit(935, "lb"),
  38995. name: "Front (Nude)",
  38996. image: {
  38997. source: "./media/characters/kingsley/front-nude.svg",
  38998. extra: 1803/1674,
  38999. bottom: 127/1930
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(11 + 9/12, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39013. {
  39014. side: {
  39015. height: math.unit(9, "feet"),
  39016. name: "Side",
  39017. image: {
  39018. source: "./media/characters/rymel/side.svg",
  39019. extra: 792/469,
  39020. bottom: 121/913
  39021. }
  39022. },
  39023. maw: {
  39024. height: math.unit(2.4, "meters"),
  39025. name: "Maw",
  39026. image: {
  39027. source: "./media/characters/rymel/maw.svg"
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "House Drake",
  39034. height: math.unit(2, "feet")
  39035. },
  39036. {
  39037. name: "Reduced",
  39038. height: math.unit(4.5, "feet")
  39039. },
  39040. {
  39041. name: "Normal",
  39042. height: math.unit(9, "feet"),
  39043. default: true
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(1.74, "meters"),
  39052. weight: math.unit(55, "kg"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/rubus/front.svg",
  39056. extra: 1894/1742,
  39057. bottom: 44/1938
  39058. }
  39059. },
  39060. },
  39061. [
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(1.74, "meters"),
  39065. default: true
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(5 + 2/12, "feet"),
  39074. weight: math.unit(112, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/cassie-kingston/front.svg",
  39078. extra: 1438/1390,
  39079. bottom: 47/1485
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(5 + 2/12, "feet"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Macro",
  39091. height: math.unit(128, "feet")
  39092. },
  39093. {
  39094. name: "Megamacro",
  39095. height: math.unit(2.56, "miles")
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(7, "feet"),
  39104. name: "Front",
  39105. image: {
  39106. source: "./media/characters/fox/front.svg",
  39107. extra: 1798/1703,
  39108. bottom: 55/1853
  39109. }
  39110. },
  39111. back: {
  39112. height: math.unit(7, "feet"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/fox/back.svg",
  39116. extra: 1748/1649,
  39117. bottom: 32/1780
  39118. }
  39119. },
  39120. head: {
  39121. height: math.unit(1.95, "feet"),
  39122. name: "Head",
  39123. image: {
  39124. source: "./media/characters/fox/head.svg"
  39125. }
  39126. },
  39127. dick: {
  39128. height: math.unit(1.33, "feet"),
  39129. name: "Dick",
  39130. image: {
  39131. source: "./media/characters/fox/dick.svg"
  39132. }
  39133. },
  39134. foot: {
  39135. height: math.unit(1, "feet"),
  39136. name: "Foot",
  39137. image: {
  39138. source: "./media/characters/fox/foot.svg"
  39139. }
  39140. },
  39141. paw: {
  39142. height: math.unit(0.92, "feet"),
  39143. name: "Paw",
  39144. image: {
  39145. source: "./media/characters/fox/paw.svg"
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Small",
  39152. height: math.unit(3, "inches")
  39153. },
  39154. {
  39155. name: "\"Realistic\"",
  39156. height: math.unit(7, "feet")
  39157. },
  39158. {
  39159. name: "Normal",
  39160. height: math.unit(150, "feet"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "BIG",
  39165. height: math.unit(1200, "feet")
  39166. },
  39167. {
  39168. name: "👀",
  39169. height: math.unit(5, "miles")
  39170. },
  39171. {
  39172. name: "👀👀👀",
  39173. height: math.unit(64, "miles")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(625, "feet"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/asonja-rossa/front.svg",
  39185. extra: 1833/1686,
  39186. bottom: 24/1857
  39187. }
  39188. },
  39189. back: {
  39190. height: math.unit(625, "feet"),
  39191. name: "Back",
  39192. image: {
  39193. source: "./media/characters/asonja-rossa/back.svg",
  39194. extra: 1852/1753,
  39195. bottom: 26/1878
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Macro",
  39202. height: math.unit(625, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39209. {
  39210. side: {
  39211. height: math.unit(8, "feet"),
  39212. name: "Side",
  39213. image: {
  39214. source: "./media/characters/rezukii/side.svg",
  39215. extra: 979/542,
  39216. bottom: 87/1066
  39217. }
  39218. },
  39219. sitting: {
  39220. height: math.unit(14.6, "feet"),
  39221. name: "Sitting",
  39222. image: {
  39223. source: "./media/characters/rezukii/sitting.svg",
  39224. extra: 1023/813,
  39225. bottom: 45/1068
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Tiny",
  39232. height: math.unit(2, "feet")
  39233. },
  39234. {
  39235. name: "Smol",
  39236. height: math.unit(4, "feet")
  39237. },
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(8, "feet"),
  39241. default: true
  39242. },
  39243. {
  39244. name: "Big",
  39245. height: math.unit(12, "feet")
  39246. },
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(30, "feet")
  39250. },
  39251. ]
  39252. ))
  39253. characterMakers.push(() => makeCharacter(
  39254. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39255. {
  39256. front: {
  39257. height: math.unit(14, "feet"),
  39258. weight: math.unit(9.5, "tonnes"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/dawnheart/front.svg",
  39262. extra: 2792/2675,
  39263. bottom: 64/2856
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(14, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39277. {
  39278. front: {
  39279. height: math.unit(1.7, "m"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/gladi/front.svg",
  39283. extra: 1460/1362,
  39284. bottom: 19/1479
  39285. }
  39286. },
  39287. back: {
  39288. height: math.unit(1.7, "m"),
  39289. name: "Back",
  39290. image: {
  39291. source: "./media/characters/gladi/back.svg",
  39292. extra: 1459/1357,
  39293. bottom: 12/1471
  39294. }
  39295. },
  39296. feral: {
  39297. height: math.unit(2.05, "m"),
  39298. name: "Feral",
  39299. image: {
  39300. source: "./media/characters/gladi/feral.svg",
  39301. extra: 821/557,
  39302. bottom: 91/912
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Shortest",
  39309. height: math.unit(70, "cm")
  39310. },
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(1.7, "m")
  39314. },
  39315. {
  39316. name: "Macro",
  39317. height: math.unit(10, "m"),
  39318. default: true
  39319. },
  39320. {
  39321. name: "Tallest",
  39322. height: math.unit(200, "m")
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(5 + 7/12, "feet"),
  39331. weight: math.unit(2, "tons"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/erdno/front.svg",
  39335. extra: 1234/1129,
  39336. bottom: 35/1269
  39337. }
  39338. },
  39339. angled: {
  39340. height: math.unit(5 + 7/12, "feet"),
  39341. weight: math.unit(2, "tons"),
  39342. name: "Angled",
  39343. image: {
  39344. source: "./media/characters/erdno/angled.svg",
  39345. extra: 1185/1139,
  39346. bottom: 36/1221
  39347. }
  39348. },
  39349. side: {
  39350. height: math.unit(5 + 7/12, "feet"),
  39351. weight: math.unit(2, "tons"),
  39352. name: "Side",
  39353. image: {
  39354. source: "./media/characters/erdno/side.svg",
  39355. extra: 1191/1144,
  39356. bottom: 40/1231
  39357. }
  39358. },
  39359. back: {
  39360. height: math.unit(5 + 7/12, "feet"),
  39361. weight: math.unit(2, "tons"),
  39362. name: "Back",
  39363. image: {
  39364. source: "./media/characters/erdno/back.svg",
  39365. extra: 1202/1146,
  39366. bottom: 17/1219
  39367. }
  39368. },
  39369. frontNsfw: {
  39370. height: math.unit(5 + 7/12, "feet"),
  39371. weight: math.unit(2, "tons"),
  39372. name: "Front (NSFW)",
  39373. image: {
  39374. source: "./media/characters/erdno/front-nsfw.svg",
  39375. extra: 1234/1129,
  39376. bottom: 35/1269
  39377. }
  39378. },
  39379. angledNsfw: {
  39380. height: math.unit(5 + 7/12, "feet"),
  39381. weight: math.unit(2, "tons"),
  39382. name: "Angled (NSFW)",
  39383. image: {
  39384. source: "./media/characters/erdno/angled-nsfw.svg",
  39385. extra: 1185/1139,
  39386. bottom: 36/1221
  39387. }
  39388. },
  39389. sideNsfw: {
  39390. height: math.unit(5 + 7/12, "feet"),
  39391. weight: math.unit(2, "tons"),
  39392. name: "Side (NSFW)",
  39393. image: {
  39394. source: "./media/characters/erdno/side-nsfw.svg",
  39395. extra: 1191/1144,
  39396. bottom: 40/1231
  39397. }
  39398. },
  39399. backNsfw: {
  39400. height: math.unit(5 + 7/12, "feet"),
  39401. weight: math.unit(2, "tons"),
  39402. name: "Back (NSFW)",
  39403. image: {
  39404. source: "./media/characters/erdno/back-nsfw.svg",
  39405. extra: 1202/1146,
  39406. bottom: 17/1219
  39407. }
  39408. },
  39409. frontHyper: {
  39410. height: math.unit(5 + 7/12, "feet"),
  39411. weight: math.unit(2, "tons"),
  39412. name: "Front (Hyper)",
  39413. image: {
  39414. source: "./media/characters/erdno/front-hyper.svg",
  39415. extra: 1298/1136,
  39416. bottom: 35/1333
  39417. }
  39418. },
  39419. },
  39420. [
  39421. {
  39422. name: "Normal",
  39423. height: math.unit(5 + 7/12, "feet"),
  39424. default: true
  39425. },
  39426. {
  39427. name: "Big",
  39428. height: math.unit(5.7, "meters")
  39429. },
  39430. {
  39431. name: "Macro",
  39432. height: math.unit(5.7, "kilometers")
  39433. },
  39434. {
  39435. name: "Megamacro",
  39436. height: math.unit(5.7, "earths")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(5 + 10/12, "feet"),
  39445. weight: math.unit(150, "lb"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/jamie/front.svg",
  39449. extra: 1908/1768,
  39450. bottom: 19/1927
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Minimum",
  39457. height: math.unit(2, "cm")
  39458. },
  39459. {
  39460. name: "Micro",
  39461. height: math.unit(3, "inches")
  39462. },
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(5 + 10/12, "feet"),
  39466. default: true
  39467. },
  39468. {
  39469. name: "Macro",
  39470. height: math.unit(150, "feet")
  39471. },
  39472. {
  39473. name: "Megamacro",
  39474. height: math.unit(10000, "m")
  39475. },
  39476. ]
  39477. ))
  39478. characterMakers.push(() => makeCharacter(
  39479. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39480. {
  39481. front: {
  39482. height: math.unit(2, "meters"),
  39483. weight: math.unit(100, "kg"),
  39484. name: "Front",
  39485. image: {
  39486. source: "./media/characters/shiron/front.svg",
  39487. extra: 2103/1985,
  39488. bottom: 98/2201
  39489. }
  39490. },
  39491. back: {
  39492. height: math.unit(2, "meters"),
  39493. weight: math.unit(100, "kg"),
  39494. name: "Back",
  39495. image: {
  39496. source: "./media/characters/shiron/back.svg",
  39497. extra: 2110/2015,
  39498. bottom: 89/2199
  39499. }
  39500. },
  39501. hand: {
  39502. height: math.unit(0.96, "feet"),
  39503. name: "Hand",
  39504. image: {
  39505. source: "./media/characters/shiron/hand.svg"
  39506. }
  39507. },
  39508. foot: {
  39509. height: math.unit(1.464, "feet"),
  39510. name: "Foot",
  39511. image: {
  39512. source: "./media/characters/shiron/foot.svg"
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(2, "meters")
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(500, "meters"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Megamacro",
  39528. height: math.unit(20, "km")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(6, "feet"),
  39537. name: "Front",
  39538. image: {
  39539. source: "./media/characters/sam/front.svg",
  39540. extra: 849/826,
  39541. bottom: 19/868
  39542. }
  39543. },
  39544. },
  39545. [
  39546. {
  39547. name: "Normal",
  39548. height: math.unit(6, "feet"),
  39549. default: true
  39550. },
  39551. ]
  39552. ))
  39553. characterMakers.push(() => makeCharacter(
  39554. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39555. {
  39556. front: {
  39557. height: math.unit(8 + 4/12, "feet"),
  39558. weight: math.unit(122, "kg"),
  39559. name: "Front",
  39560. image: {
  39561. source: "./media/characters/namori-kurogawa/front.svg",
  39562. extra: 1894/1576,
  39563. bottom: 34/1928
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(8 + 4/12, "feet"),
  39571. default: true
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(9, "feet"),
  39580. weight: math.unit(621, "lb"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/unmru/front.svg",
  39584. extra: 1853/1747,
  39585. bottom: 73/1926
  39586. }
  39587. },
  39588. side: {
  39589. height: math.unit(9, "feet"),
  39590. weight: math.unit(621, "lb"),
  39591. name: "Side",
  39592. image: {
  39593. source: "./media/characters/unmru/side.svg",
  39594. extra: 1781/1671,
  39595. bottom: 127/1908
  39596. }
  39597. },
  39598. back: {
  39599. height: math.unit(9, "feet"),
  39600. weight: math.unit(621, "lb"),
  39601. name: "Back",
  39602. image: {
  39603. source: "./media/characters/unmru/back.svg",
  39604. extra: 1894/1765,
  39605. bottom: 75/1969
  39606. }
  39607. },
  39608. dick: {
  39609. height: math.unit(3, "feet"),
  39610. weight: math.unit(35, "lb"),
  39611. name: "Dick",
  39612. image: {
  39613. source: "./media/characters/unmru/dick.svg"
  39614. }
  39615. },
  39616. },
  39617. [
  39618. {
  39619. name: "Normal",
  39620. height: math.unit(9, "feet")
  39621. },
  39622. {
  39623. name: "Natural",
  39624. height: math.unit(27, "feet"),
  39625. default: true
  39626. },
  39627. {
  39628. name: "Giant",
  39629. height: math.unit(90, "feet")
  39630. },
  39631. {
  39632. name: "Kaiju",
  39633. height: math.unit(270, "feet")
  39634. },
  39635. {
  39636. name: "Macro",
  39637. height: math.unit(900, "feet")
  39638. },
  39639. {
  39640. name: "Macro+",
  39641. height: math.unit(2700, "feet")
  39642. },
  39643. {
  39644. name: "Megamacro",
  39645. height: math.unit(9000, "feet")
  39646. },
  39647. {
  39648. name: "City-Crushing",
  39649. height: math.unit(27000, "feet")
  39650. },
  39651. {
  39652. name: "Mountain-Mashing",
  39653. height: math.unit(90000, "feet")
  39654. },
  39655. {
  39656. name: "Earth-Eclipsing",
  39657. height: math.unit(2.7e8, "feet")
  39658. },
  39659. {
  39660. name: "Sol-Swallowing",
  39661. height: math.unit(9e10, "feet")
  39662. },
  39663. {
  39664. name: "Majoris-Munching",
  39665. height: math.unit(2.7e13, "feet")
  39666. },
  39667. ]
  39668. ))
  39669. characterMakers.push(() => makeCharacter(
  39670. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39671. {
  39672. front: {
  39673. height: math.unit(1, "inch"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/squeaks-mouse/front.svg",
  39677. extra: 352/308,
  39678. bottom: 25/377
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Micro",
  39685. height: math.unit(1, "inch"),
  39686. default: true
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39692. {
  39693. side: {
  39694. height: math.unit(35, "feet"),
  39695. name: "Side",
  39696. image: {
  39697. source: "./media/characters/sayko/side.svg",
  39698. extra: 1697/1021,
  39699. bottom: 82/1779
  39700. }
  39701. },
  39702. head: {
  39703. height: math.unit(16, "feet"),
  39704. name: "Head",
  39705. image: {
  39706. source: "./media/characters/sayko/head.svg"
  39707. }
  39708. },
  39709. forepaw: {
  39710. height: math.unit(7.85, "feet"),
  39711. name: "Forepaw",
  39712. image: {
  39713. source: "./media/characters/sayko/forepaw.svg"
  39714. }
  39715. },
  39716. hindpaw: {
  39717. height: math.unit(8.8, "feet"),
  39718. name: "Hindpaw",
  39719. image: {
  39720. source: "./media/characters/sayko/hindpaw.svg"
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(35, "feet"),
  39728. default: true
  39729. },
  39730. {
  39731. name: "Colossus",
  39732. height: math.unit(100, "meters")
  39733. },
  39734. {
  39735. name: "\"Small\" Deity",
  39736. height: math.unit(1, "km")
  39737. },
  39738. {
  39739. name: "\"Large\" Deity",
  39740. height: math.unit(15, "km")
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(6, "feet"),
  39749. weight: math.unit(250, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/mukiro/front.svg",
  39753. extra: 1368/1310,
  39754. bottom: 34/1402
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(6, "feet"),
  39762. default: true
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(12 + 4/12, "feet"),
  39771. name: "Front",
  39772. image: {
  39773. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39774. extra: 1346/1311,
  39775. bottom: 65/1411
  39776. }
  39777. },
  39778. },
  39779. [
  39780. {
  39781. name: "Base",
  39782. height: math.unit(12 + 4/12, "feet"),
  39783. default: true
  39784. },
  39785. {
  39786. name: "Macro",
  39787. height: math.unit(150, "feet")
  39788. },
  39789. {
  39790. name: "Mega",
  39791. height: math.unit(2, "miles")
  39792. },
  39793. {
  39794. name: "Demi God",
  39795. height: math.unit(4, "AU")
  39796. },
  39797. {
  39798. name: "God Size",
  39799. height: math.unit(1, "universe")
  39800. },
  39801. ]
  39802. ))
  39803. characterMakers.push(() => makeCharacter(
  39804. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39805. {
  39806. front: {
  39807. height: math.unit(3 + 3/12, "feet"),
  39808. weight: math.unit(88, "lb"),
  39809. name: "Front",
  39810. image: {
  39811. source: "./media/characters/trey/front.svg",
  39812. extra: 1815/1509,
  39813. bottom: 60/1875
  39814. }
  39815. },
  39816. },
  39817. [
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(3 + 3/12, "feet"),
  39821. default: true
  39822. },
  39823. ]
  39824. ))
  39825. characterMakers.push(() => makeCharacter(
  39826. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39827. {
  39828. front: {
  39829. height: math.unit(4, "meters"),
  39830. name: "Front",
  39831. image: {
  39832. source: "./media/characters/adelonda/front.svg",
  39833. extra: 1077/982,
  39834. bottom: 39/1116
  39835. }
  39836. },
  39837. back: {
  39838. height: math.unit(4, "meters"),
  39839. name: "Back",
  39840. image: {
  39841. source: "./media/characters/adelonda/back.svg",
  39842. extra: 1105/1003,
  39843. bottom: 25/1130
  39844. }
  39845. },
  39846. feral: {
  39847. height: math.unit(40/1.5, "meters"),
  39848. name: "Feral",
  39849. image: {
  39850. source: "./media/characters/adelonda/feral.svg",
  39851. extra: 597/271,
  39852. bottom: 387/984
  39853. }
  39854. },
  39855. },
  39856. [
  39857. {
  39858. name: "Normal",
  39859. height: math.unit(4, "meters"),
  39860. default: true
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39866. {
  39867. front: {
  39868. height: math.unit(8 + 4/12, "feet"),
  39869. weight: math.unit(670, "lb"),
  39870. name: "Front",
  39871. image: {
  39872. source: "./media/characters/acadiel/front.svg",
  39873. extra: 1901/1595,
  39874. bottom: 142/2043
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(8 + 4/12, "feet"),
  39882. default: true
  39883. },
  39884. {
  39885. name: "Macro",
  39886. height: math.unit(200, "feet")
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(6 + 2/12, "feet"),
  39895. weight: math.unit(185, "lb"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/kayne-ein/front.svg",
  39899. extra: 1780/1560,
  39900. bottom: 81/1861
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Normal",
  39907. height: math.unit(6 + 2/12, "feet"),
  39908. default: true
  39909. },
  39910. {
  39911. name: "Transformation Stage",
  39912. height: math.unit(15, "feet")
  39913. },
  39914. {
  39915. name: "Macro",
  39916. height: math.unit(150, "feet")
  39917. },
  39918. {
  39919. name: "Earth's Shadow",
  39920. height: math.unit(6200, "miles")
  39921. },
  39922. {
  39923. name: "Universal Demon",
  39924. height: math.unit(28e9, "parsecs")
  39925. },
  39926. {
  39927. name: "Multiverse God",
  39928. height: math.unit(3, "multiverses")
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(5 + 5/12, "feet"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/fawn/front.svg",
  39940. extra: 1873/1731,
  39941. bottom: 95/1968
  39942. }
  39943. },
  39944. back: {
  39945. height: math.unit(5 + 5/12, "feet"),
  39946. name: "Back",
  39947. image: {
  39948. source: "./media/characters/fawn/back.svg",
  39949. extra: 1813/1700,
  39950. bottom: 14/1827
  39951. }
  39952. },
  39953. hoof: {
  39954. height: math.unit(1.45, "feet"),
  39955. name: "Hoof",
  39956. image: {
  39957. source: "./media/characters/fawn/hoof.svg"
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(5 + 5/12, "feet"),
  39965. default: true
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(2 + 5/12, "feet"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/orion/front.svg",
  39977. extra: 1366/1304,
  39978. bottom: 43/1409
  39979. }
  39980. },
  39981. paw: {
  39982. height: math.unit(0.52, "feet"),
  39983. name: "Paw",
  39984. image: {
  39985. source: "./media/characters/orion/paw.svg"
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Normal",
  39992. height: math.unit(2 + 5/12, "feet"),
  39993. default: true
  39994. },
  39995. ]
  39996. ))
  39997. characterMakers.push(() => makeCharacter(
  39998. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39999. {
  40000. front: {
  40001. height: math.unit(5 + 10/12, "feet"),
  40002. name: "Front",
  40003. image: {
  40004. source: "./media/characters/vera/front.svg",
  40005. extra: 1680/1575,
  40006. bottom: 49/1729
  40007. }
  40008. },
  40009. back: {
  40010. height: math.unit(5 + 10/12, "feet"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/vera/back.svg",
  40014. extra: 1700/1588,
  40015. bottom: 18/1718
  40016. }
  40017. },
  40018. arcanine: {
  40019. height: math.unit(6 + 8/12, "feet"),
  40020. name: "Arcanine",
  40021. image: {
  40022. source: "./media/characters/vera/arcanine.svg",
  40023. extra: 1590/1511,
  40024. bottom: 71/1661
  40025. }
  40026. },
  40027. maw: {
  40028. height: math.unit(0.82, "feet"),
  40029. name: "Maw",
  40030. image: {
  40031. source: "./media/characters/vera/maw.svg"
  40032. }
  40033. },
  40034. mawArcanine: {
  40035. height: math.unit(0.97, "feet"),
  40036. name: "Maw (Arcanine)",
  40037. image: {
  40038. source: "./media/characters/vera/maw-arcanine.svg"
  40039. }
  40040. },
  40041. paw: {
  40042. height: math.unit(0.75, "feet"),
  40043. name: "Paw",
  40044. image: {
  40045. source: "./media/characters/vera/paw.svg"
  40046. }
  40047. },
  40048. pawprint: {
  40049. height: math.unit(0.52, "feet"),
  40050. name: "Pawprint",
  40051. image: {
  40052. source: "./media/characters/vera/pawprint.svg"
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(5 + 10/12, "feet"),
  40060. default: true
  40061. },
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(75, "feet")
  40065. },
  40066. ]
  40067. ))
  40068. characterMakers.push(() => makeCharacter(
  40069. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40070. {
  40071. front: {
  40072. height: math.unit(4, "feet"),
  40073. weight: math.unit(40, "lb"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/orvan-rabbit/front.svg",
  40077. extra: 1896/1642,
  40078. bottom: 29/1925
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(4, "feet"),
  40086. default: true
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(6, "feet"),
  40095. weight: math.unit(168, "lb"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/lisa/front.svg",
  40099. extra: 2065/1867,
  40100. bottom: 46/2111
  40101. }
  40102. },
  40103. back: {
  40104. height: math.unit(6, "feet"),
  40105. weight: math.unit(168, "lb"),
  40106. name: "Back",
  40107. image: {
  40108. source: "./media/characters/lisa/back.svg",
  40109. extra: 1982/1838,
  40110. bottom: 29/2011
  40111. }
  40112. },
  40113. maw: {
  40114. height: math.unit(0.81, "feet"),
  40115. name: "Maw",
  40116. image: {
  40117. source: "./media/characters/lisa/maw.svg"
  40118. }
  40119. },
  40120. paw: {
  40121. height: math.unit(0.9, "feet"),
  40122. name: "Paw",
  40123. image: {
  40124. source: "./media/characters/lisa/paw.svg"
  40125. }
  40126. },
  40127. caribousune: {
  40128. height: math.unit(7 + 2/12, "feet"),
  40129. weight: math.unit(268, "lb"),
  40130. name: "Caribousune",
  40131. image: {
  40132. source: "./media/characters/lisa/caribousune.svg",
  40133. extra: 1843/1633,
  40134. bottom: 29/1872
  40135. }
  40136. },
  40137. frontCaribousune: {
  40138. height: math.unit(7 + 2/12, "feet"),
  40139. weight: math.unit(268, "lb"),
  40140. name: "Front (Caribousune)",
  40141. image: {
  40142. source: "./media/characters/lisa/front-caribousune.svg",
  40143. extra: 1818/1638,
  40144. bottom: 52/1870
  40145. }
  40146. },
  40147. sideCaribousune: {
  40148. height: math.unit(7 + 2/12, "feet"),
  40149. weight: math.unit(268, "lb"),
  40150. name: "Side (Caribousune)",
  40151. image: {
  40152. source: "./media/characters/lisa/side-caribousune.svg",
  40153. extra: 1851/1635,
  40154. bottom: 16/1867
  40155. }
  40156. },
  40157. backCaribousune: {
  40158. height: math.unit(7 + 2/12, "feet"),
  40159. weight: math.unit(268, "lb"),
  40160. name: "Back (Caribousune)",
  40161. image: {
  40162. source: "./media/characters/lisa/back-caribousune.svg",
  40163. extra: 1801/1604,
  40164. bottom: 44/1845
  40165. }
  40166. },
  40167. caribou: {
  40168. height: math.unit(7 + 2/12, "feet"),
  40169. weight: math.unit(268, "lb"),
  40170. name: "Caribou",
  40171. image: {
  40172. source: "./media/characters/lisa/caribou.svg",
  40173. extra: 1843/1633,
  40174. bottom: 29/1872
  40175. }
  40176. },
  40177. frontCaribou: {
  40178. height: math.unit(7 + 2/12, "feet"),
  40179. weight: math.unit(268, "lb"),
  40180. name: "Front (Caribou)",
  40181. image: {
  40182. source: "./media/characters/lisa/front-caribou.svg",
  40183. extra: 1818/1638,
  40184. bottom: 52/1870
  40185. }
  40186. },
  40187. sideCaribou: {
  40188. height: math.unit(7 + 2/12, "feet"),
  40189. weight: math.unit(268, "lb"),
  40190. name: "Side (Caribou)",
  40191. image: {
  40192. source: "./media/characters/lisa/side-caribou.svg",
  40193. extra: 1851/1635,
  40194. bottom: 16/1867
  40195. }
  40196. },
  40197. backCaribou: {
  40198. height: math.unit(7 + 2/12, "feet"),
  40199. weight: math.unit(268, "lb"),
  40200. name: "Back (Caribou)",
  40201. image: {
  40202. source: "./media/characters/lisa/back-caribou.svg",
  40203. extra: 1801/1604,
  40204. bottom: 44/1845
  40205. }
  40206. },
  40207. mawCaribou: {
  40208. height: math.unit(1.45, "feet"),
  40209. name: "Maw (Caribou)",
  40210. image: {
  40211. source: "./media/characters/lisa/maw-caribou.svg"
  40212. }
  40213. },
  40214. mawCaribousune: {
  40215. height: math.unit(1.45, "feet"),
  40216. name: "Maw (Caribousune)",
  40217. image: {
  40218. source: "./media/characters/lisa/maw-caribousune.svg"
  40219. }
  40220. },
  40221. pawCaribousune: {
  40222. height: math.unit(1.61, "feet"),
  40223. name: "Paw (Caribou)",
  40224. image: {
  40225. source: "./media/characters/lisa/paw-caribousune.svg"
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(6, "feet")
  40233. },
  40234. {
  40235. name: "God Size",
  40236. height: math.unit(72, "feet"),
  40237. default: true
  40238. },
  40239. {
  40240. name: "Towering",
  40241. height: math.unit(288, "feet")
  40242. },
  40243. {
  40244. name: "City Size",
  40245. height: math.unit(48384, "feet")
  40246. },
  40247. {
  40248. name: "Continental",
  40249. height: math.unit(4200, "miles")
  40250. },
  40251. {
  40252. name: "Planet Eater",
  40253. height: math.unit(42, "earths")
  40254. },
  40255. {
  40256. name: "Star Swallower",
  40257. height: math.unit(42, "solarradii")
  40258. },
  40259. {
  40260. name: "System Swallower",
  40261. height: math.unit(84000, "AU")
  40262. },
  40263. {
  40264. name: "Galaxy Gobbler",
  40265. height: math.unit(42, "galaxies")
  40266. },
  40267. {
  40268. name: "Universe Devourer",
  40269. height: math.unit(42, "universes")
  40270. },
  40271. {
  40272. name: "Multiverse Muncher",
  40273. height: math.unit(42, "multiverses")
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40279. {
  40280. front: {
  40281. height: math.unit(36, "feet"),
  40282. name: "Front",
  40283. image: {
  40284. source: "./media/characters/shadow-rat/front.svg",
  40285. extra: 1845/1758,
  40286. bottom: 83/1928
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Macro",
  40293. height: math.unit(36, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40300. {
  40301. side: {
  40302. height: math.unit(8, "feet"),
  40303. weight: math.unit(2630, "lb"),
  40304. name: "Side",
  40305. image: {
  40306. source: "./media/characters/torallia/side.svg",
  40307. extra: 2164/2021,
  40308. bottom: 371/2535
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Mortal Interaction",
  40315. height: math.unit(8, "feet")
  40316. },
  40317. {
  40318. name: "Natural",
  40319. height: math.unit(24, "feet"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Giant",
  40324. height: math.unit(80, "feet")
  40325. },
  40326. {
  40327. name: "Kaiju",
  40328. height: math.unit(240, "feet")
  40329. },
  40330. {
  40331. name: "Macro",
  40332. height: math.unit(800, "feet")
  40333. },
  40334. {
  40335. name: "Macro+",
  40336. height: math.unit(2400, "feet")
  40337. },
  40338. {
  40339. name: "Macro++",
  40340. height: math.unit(8000, "feet")
  40341. },
  40342. {
  40343. name: "City-Crushing",
  40344. height: math.unit(24000, "feet")
  40345. },
  40346. {
  40347. name: "Mountain-Mashing",
  40348. height: math.unit(80000, "feet")
  40349. },
  40350. {
  40351. name: "District Demolisher",
  40352. height: math.unit(240000, "feet")
  40353. },
  40354. {
  40355. name: "Tri-County Terror",
  40356. height: math.unit(800000, "feet")
  40357. },
  40358. {
  40359. name: "State Smasher",
  40360. height: math.unit(2.4e6, "feet")
  40361. },
  40362. {
  40363. name: "Nation Nemesis",
  40364. height: math.unit(8e6, "feet")
  40365. },
  40366. {
  40367. name: "Continent Cracker",
  40368. height: math.unit(2.4e7, "feet")
  40369. },
  40370. {
  40371. name: "Planet-Pillaging",
  40372. height: math.unit(8e7, "feet")
  40373. },
  40374. {
  40375. name: "Earth-Eclipsing",
  40376. height: math.unit(2.4e8, "feet")
  40377. },
  40378. {
  40379. name: "Jovian-Jostling",
  40380. height: math.unit(8e8, "feet")
  40381. },
  40382. {
  40383. name: "Gas Giant Gulper",
  40384. height: math.unit(2.4e9, "feet")
  40385. },
  40386. {
  40387. name: "Astral Annihilator",
  40388. height: math.unit(8e9, "feet")
  40389. },
  40390. {
  40391. name: "Celestial Conqueror",
  40392. height: math.unit(2.4e10, "feet")
  40393. },
  40394. {
  40395. name: "Sol-Swallowing",
  40396. height: math.unit(8e10, "feet")
  40397. },
  40398. {
  40399. name: "Hunter of the Heavens",
  40400. height: math.unit(2.4e13, "feet")
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(6 + 8/12, "feet"),
  40409. weight: math.unit(250, "kilograms"),
  40410. volume: math.unit(28, "liters"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/rebecca-pawlson/front.svg",
  40414. extra: 1737/1596,
  40415. bottom: 107/1844
  40416. }
  40417. },
  40418. back: {
  40419. height: math.unit(6 + 8/12, "feet"),
  40420. weight: math.unit(250, "kilograms"),
  40421. volume: math.unit(28, "liters"),
  40422. name: "Back",
  40423. image: {
  40424. source: "./media/characters/rebecca-pawlson/back.svg",
  40425. extra: 1702/1523,
  40426. bottom: 86/1788
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Normal",
  40433. height: math.unit(6 + 8/12, "feet")
  40434. },
  40435. {
  40436. name: "Mini Macro",
  40437. height: math.unit(10, "feet"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Macro",
  40442. height: math.unit(100, "feet")
  40443. },
  40444. {
  40445. name: "Mega Macro",
  40446. height: math.unit(2500, "feet")
  40447. },
  40448. {
  40449. name: "Giga Macro",
  40450. height: math.unit(50, "miles")
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(7 + 6/12, "feet"),
  40459. weight: math.unit(600, "lb"),
  40460. name: "Front",
  40461. image: {
  40462. source: "./media/characters/moxie-nova/front.svg",
  40463. extra: 1734/1652,
  40464. bottom: 41/1775
  40465. }
  40466. },
  40467. },
  40468. [
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(7 + 6/12, "feet"),
  40472. default: true
  40473. },
  40474. ]
  40475. ))
  40476. characterMakers.push(() => makeCharacter(
  40477. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40478. {
  40479. goat: {
  40480. height: math.unit(4, "feet"),
  40481. weight: math.unit(180, "lb"),
  40482. name: "Goat",
  40483. image: {
  40484. source: "./media/characters/tiffany/goat.svg",
  40485. extra: 1845/1595,
  40486. bottom: 106/1951
  40487. }
  40488. },
  40489. front: {
  40490. height: math.unit(5, "feet"),
  40491. weight: math.unit(150, "lb"),
  40492. name: "Foxcoon",
  40493. image: {
  40494. source: "./media/characters/tiffany/foxcoon.svg",
  40495. extra: 1941/1845,
  40496. bottom: 58/1999
  40497. }
  40498. },
  40499. },
  40500. [
  40501. {
  40502. name: "Normal",
  40503. height: math.unit(5, "feet"),
  40504. default: true
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(8, "feet"),
  40513. weight: math.unit(300, "lb"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/raxinath/front.svg",
  40517. extra: 1407/1309,
  40518. bottom: 39/1446
  40519. }
  40520. },
  40521. back: {
  40522. height: math.unit(8, "feet"),
  40523. weight: math.unit(300, "lb"),
  40524. name: "Back",
  40525. image: {
  40526. source: "./media/characters/raxinath/back.svg",
  40527. extra: 1405/1315,
  40528. bottom: 9/1414
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Speck",
  40535. height: math.unit(0.5, "nm")
  40536. },
  40537. {
  40538. name: "Micro",
  40539. height: math.unit(3, "inches")
  40540. },
  40541. {
  40542. name: "Kobold",
  40543. height: math.unit(3, "feet")
  40544. },
  40545. {
  40546. name: "Normal",
  40547. height: math.unit(8, "feet"),
  40548. default: true
  40549. },
  40550. {
  40551. name: "Giant",
  40552. height: math.unit(50, "feet")
  40553. },
  40554. {
  40555. name: "Macro",
  40556. height: math.unit(1000, "feet")
  40557. },
  40558. {
  40559. name: "Megamacro",
  40560. height: math.unit(1, "mile")
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(10, "feet"),
  40569. weight: math.unit(1442, "lb"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/mal-dragon/front.svg",
  40573. extra: 1515/1444,
  40574. bottom: 113/1628
  40575. }
  40576. },
  40577. back: {
  40578. height: math.unit(10, "feet"),
  40579. weight: math.unit(1442, "lb"),
  40580. name: "Back",
  40581. image: {
  40582. source: "./media/characters/mal-dragon/back.svg",
  40583. extra: 1527/1434,
  40584. bottom: 25/1552
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Mortal Interaction",
  40591. height: math.unit(10, "feet"),
  40592. default: true
  40593. },
  40594. {
  40595. name: "Large",
  40596. height: math.unit(30, "feet")
  40597. },
  40598. {
  40599. name: "Kaiju",
  40600. height: math.unit(300, "feet")
  40601. },
  40602. {
  40603. name: "Megamacro",
  40604. height: math.unit(10000, "feet")
  40605. },
  40606. {
  40607. name: "Continent Cracker",
  40608. height: math.unit(30000000, "feet")
  40609. },
  40610. {
  40611. name: "Sol-Swallowing",
  40612. height: math.unit(1e11, "feet")
  40613. },
  40614. {
  40615. name: "Light Universal",
  40616. height: math.unit(5, "universes")
  40617. },
  40618. {
  40619. name: "Universe Atoms",
  40620. height: math.unit(1.829e9, "universes")
  40621. },
  40622. {
  40623. name: "Light Multiversal",
  40624. height: math.unit(5, "multiverses")
  40625. },
  40626. {
  40627. name: "Multiverse Atoms",
  40628. height: math.unit(1.829e9, "multiverses")
  40629. },
  40630. {
  40631. name: "Fabric of Time",
  40632. height: math.unit(1e262, "multiverses")
  40633. },
  40634. ]
  40635. ))
  40636. characterMakers.push(() => makeCharacter(
  40637. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40638. {
  40639. front: {
  40640. height: math.unit(9, "feet"),
  40641. weight: math.unit(1050, "lb"),
  40642. name: "Front",
  40643. image: {
  40644. source: "./media/characters/tabitha/front.svg",
  40645. extra: 2083/1994,
  40646. bottom: 68/2151
  40647. }
  40648. },
  40649. },
  40650. [
  40651. {
  40652. name: "Baseline",
  40653. height: math.unit(9, "feet"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Giant",
  40658. height: math.unit(90, "feet")
  40659. },
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(900, "feet")
  40663. },
  40664. {
  40665. name: "Megamacro",
  40666. height: math.unit(9000, "feet")
  40667. },
  40668. {
  40669. name: "City-Crushing",
  40670. height: math.unit(27000, "feet")
  40671. },
  40672. {
  40673. name: "Mountain-Mashing",
  40674. height: math.unit(90000, "feet")
  40675. },
  40676. {
  40677. name: "Nation Nemesis",
  40678. height: math.unit(9e6, "feet")
  40679. },
  40680. {
  40681. name: "Continent Cracker",
  40682. height: math.unit(27e6, "feet")
  40683. },
  40684. {
  40685. name: "Earth-Eclipsing",
  40686. height: math.unit(2.7e8, "feet")
  40687. },
  40688. {
  40689. name: "Gas Giant Gulper",
  40690. height: math.unit(2.7e9, "feet")
  40691. },
  40692. {
  40693. name: "Sol-Swallowing",
  40694. height: math.unit(9e10, "feet")
  40695. },
  40696. {
  40697. name: "Galaxy Gulper",
  40698. height: math.unit(9, "galaxies")
  40699. },
  40700. {
  40701. name: "Cosmos Churner",
  40702. height: math.unit(9, "universes")
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(160, "cm"),
  40711. weight: math.unit(55, "kg"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/tow/front.svg",
  40715. extra: 1751/1722,
  40716. bottom: 74/1825
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Norm",
  40723. height: math.unit(160, "cm")
  40724. },
  40725. {
  40726. name: "Casual",
  40727. height: math.unit(3200, "m"),
  40728. default: true
  40729. },
  40730. {
  40731. name: "Show-Off",
  40732. height: math.unit(160, "km")
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40738. {
  40739. front: {
  40740. height: math.unit(7 + 11/12, "feet"),
  40741. weight: math.unit(342.8, "lb"),
  40742. name: "Front",
  40743. image: {
  40744. source: "./media/characters/vivian-orca-dragon/front.svg",
  40745. extra: 1890/1865,
  40746. bottom: 28/1918
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Micro",
  40753. height: math.unit(5, "inches")
  40754. },
  40755. {
  40756. name: "Normal",
  40757. height: math.unit(7 + 11/12, "feet"),
  40758. default: true
  40759. },
  40760. {
  40761. name: "Macro",
  40762. height: math.unit(395 + 7/12, "feet")
  40763. },
  40764. ]
  40765. ))
  40766. characterMakers.push(() => makeCharacter(
  40767. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40768. {
  40769. side: {
  40770. height: math.unit(10, "feet"),
  40771. weight: math.unit(1442, "lb"),
  40772. name: "Side",
  40773. image: {
  40774. source: "./media/characters/lotherakon/side.svg",
  40775. extra: 1604/1497,
  40776. bottom: 89/1693
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Mortal Interaction",
  40783. height: math.unit(10, "feet")
  40784. },
  40785. {
  40786. name: "Large",
  40787. height: math.unit(30, "feet"),
  40788. default: true
  40789. },
  40790. {
  40791. name: "Giant",
  40792. height: math.unit(100, "feet")
  40793. },
  40794. {
  40795. name: "Kaiju",
  40796. height: math.unit(300, "feet")
  40797. },
  40798. {
  40799. name: "Macro",
  40800. height: math.unit(1000, "feet")
  40801. },
  40802. {
  40803. name: "Macro+",
  40804. height: math.unit(3000, "feet")
  40805. },
  40806. {
  40807. name: "Megamacro",
  40808. height: math.unit(10000, "feet")
  40809. },
  40810. {
  40811. name: "City-Crushing",
  40812. height: math.unit(30000, "feet")
  40813. },
  40814. {
  40815. name: "Continent Cracker",
  40816. height: math.unit(30e6, "feet")
  40817. },
  40818. {
  40819. name: "Earth Eclipsing",
  40820. height: math.unit(3e8, "feet")
  40821. },
  40822. {
  40823. name: "Gas Giant Gulper",
  40824. height: math.unit(3e9, "feet")
  40825. },
  40826. {
  40827. name: "Sol-Swallowing",
  40828. height: math.unit(1e11, "feet")
  40829. },
  40830. {
  40831. name: "System Swallower",
  40832. height: math.unit(3e14, "feet")
  40833. },
  40834. {
  40835. name: "Galaxy Gulper",
  40836. height: math.unit(10, "galaxies")
  40837. },
  40838. {
  40839. name: "Light Universal",
  40840. height: math.unit(5, "universes")
  40841. },
  40842. {
  40843. name: "Universe Palm",
  40844. height: math.unit(20, "universes")
  40845. },
  40846. {
  40847. name: "Light Multiversal",
  40848. height: math.unit(5, "multiverses")
  40849. },
  40850. {
  40851. name: "Multiverse Palm",
  40852. height: math.unit(20, "multiverses")
  40853. },
  40854. {
  40855. name: "Inferno Incarnate",
  40856. height: math.unit(1e7, "multiverses")
  40857. },
  40858. ]
  40859. ))
  40860. characterMakers.push(() => makeCharacter(
  40861. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40862. {
  40863. front: {
  40864. height: math.unit(8, "feet"),
  40865. weight: math.unit(1200, "lb"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/malithee/front.svg",
  40869. extra: 1675/1640,
  40870. bottom: 162/1837
  40871. }
  40872. },
  40873. },
  40874. [
  40875. {
  40876. name: "Mortal Interaction",
  40877. height: math.unit(8, "feet"),
  40878. default: true
  40879. },
  40880. {
  40881. name: "Large",
  40882. height: math.unit(24, "feet")
  40883. },
  40884. {
  40885. name: "Kaiju",
  40886. height: math.unit(240, "feet")
  40887. },
  40888. {
  40889. name: "Megamacro",
  40890. height: math.unit(8000, "feet")
  40891. },
  40892. {
  40893. name: "Continent Cracker",
  40894. height: math.unit(24e6, "feet")
  40895. },
  40896. {
  40897. name: "Earth-Eclipsing",
  40898. height: math.unit(2.4e8, "feet")
  40899. },
  40900. {
  40901. name: "Sol-Swallowing",
  40902. height: math.unit(8e10, "feet")
  40903. },
  40904. {
  40905. name: "Galaxy Gulper",
  40906. height: math.unit(8, "galaxies")
  40907. },
  40908. {
  40909. name: "Light Universal",
  40910. height: math.unit(4, "universes")
  40911. },
  40912. {
  40913. name: "Universe Atoms",
  40914. height: math.unit(1.829e9, "universes")
  40915. },
  40916. {
  40917. name: "Light Multiversal",
  40918. height: math.unit(4, "multiverses")
  40919. },
  40920. {
  40921. name: "Multiverse Atoms",
  40922. height: math.unit(1.829e9, "multiverses")
  40923. },
  40924. {
  40925. name: "Nigh-Omnipresence",
  40926. height: math.unit(8e261, "multiverses")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(10, "feet"),
  40935. weight: math.unit(1500, "lb"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/miles-thestia/front.svg",
  40939. extra: 1812/1727,
  40940. bottom: 86/1898
  40941. }
  40942. },
  40943. back: {
  40944. height: math.unit(10, "feet"),
  40945. weight: math.unit(1500, "lb"),
  40946. name: "Back",
  40947. image: {
  40948. source: "./media/characters/miles-thestia/back.svg",
  40949. extra: 1799/1690,
  40950. bottom: 47/1846
  40951. }
  40952. },
  40953. frontNsfw: {
  40954. height: math.unit(10, "feet"),
  40955. weight: math.unit(1500, "lb"),
  40956. name: "Front (NSFW)",
  40957. image: {
  40958. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40959. extra: 1812/1727,
  40960. bottom: 86/1898
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Mini-Macro",
  40967. height: math.unit(10, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(25, "feet"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/titan-s-wulf/front.svg",
  40980. extra: 1560/1484,
  40981. bottom: 76/1636
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Smallest",
  40988. height: math.unit(25, "feet"),
  40989. default: true
  40990. },
  40991. {
  40992. name: "Normal",
  40993. height: math.unit(200, "feet")
  40994. },
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(200000, "feet")
  40998. },
  40999. {
  41000. name: "Multiversal Original",
  41001. height: math.unit(10000, "multiverses")
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(8, "feet"),
  41010. weight: math.unit(553, "lb"),
  41011. name: "Front",
  41012. image: {
  41013. source: "./media/characters/tawendeh/front.svg",
  41014. extra: 2365/2268,
  41015. bottom: 83/2448
  41016. }
  41017. },
  41018. frontClothed: {
  41019. height: math.unit(8, "feet"),
  41020. weight: math.unit(553, "lb"),
  41021. name: "Front (Clothed)",
  41022. image: {
  41023. source: "./media/characters/tawendeh/front-clothed.svg",
  41024. extra: 2365/2268,
  41025. bottom: 83/2448
  41026. }
  41027. },
  41028. back: {
  41029. height: math.unit(8, "feet"),
  41030. weight: math.unit(553, "lb"),
  41031. name: "Back",
  41032. image: {
  41033. source: "./media/characters/tawendeh/back.svg",
  41034. extra: 2397/2294,
  41035. bottom: 42/2439
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Mortal Interaction",
  41042. height: math.unit(8, "feet"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Giant",
  41047. height: math.unit(80, "feet")
  41048. },
  41049. {
  41050. name: "Macro",
  41051. height: math.unit(800, "feet")
  41052. },
  41053. {
  41054. name: "Megamacro",
  41055. height: math.unit(8000, "feet")
  41056. },
  41057. {
  41058. name: "City-Crushing",
  41059. height: math.unit(24000, "feet")
  41060. },
  41061. {
  41062. name: "Mountain-Mashing",
  41063. height: math.unit(80000, "feet")
  41064. },
  41065. {
  41066. name: "Nation Nemesis",
  41067. height: math.unit(8e6, "feet")
  41068. },
  41069. {
  41070. name: "Continent Cracker",
  41071. height: math.unit(24e6, "feet")
  41072. },
  41073. {
  41074. name: "Earth-Eclipsing",
  41075. height: math.unit(2.4e8, "feet")
  41076. },
  41077. {
  41078. name: "Gas Giant Gulper",
  41079. height: math.unit(2.4e9, "feet")
  41080. },
  41081. {
  41082. name: "Sol-Swallowing",
  41083. height: math.unit(8e10, "feet")
  41084. },
  41085. {
  41086. name: "Galaxy Gulper",
  41087. height: math.unit(8, "galaxies")
  41088. },
  41089. {
  41090. name: "Cosmos Churner",
  41091. height: math.unit(8, "universes")
  41092. },
  41093. {
  41094. name: "Omnipotent Otter",
  41095. height: math.unit(80, "universes")
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(2.6, "meters"),
  41104. weight: math.unit(900, "kg"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/neesha/front.svg",
  41108. extra: 1803/1653,
  41109. bottom: 128/1931
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(2.6, "meters"),
  41117. default: true
  41118. },
  41119. {
  41120. name: "Macro",
  41121. height: math.unit(50, "meters")
  41122. },
  41123. ]
  41124. ))
  41125. characterMakers.push(() => makeCharacter(
  41126. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41127. {
  41128. front: {
  41129. height: math.unit(5, "feet"),
  41130. weight: math.unit(185, "lb"),
  41131. name: "Front",
  41132. image: {
  41133. source: "./media/characters/kyera/front.svg",
  41134. extra: 1875/1790,
  41135. bottom: 96/1971
  41136. }
  41137. },
  41138. },
  41139. [
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(5, "feet"),
  41143. default: true
  41144. },
  41145. ]
  41146. ))
  41147. characterMakers.push(() => makeCharacter(
  41148. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41149. {
  41150. front: {
  41151. height: math.unit(7 + 6/12, "feet"),
  41152. weight: math.unit(540, "lb"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/yuko/front.svg",
  41156. extra: 1282/1222,
  41157. bottom: 101/1383
  41158. }
  41159. },
  41160. frontClothed: {
  41161. height: math.unit(7 + 6/12, "feet"),
  41162. weight: math.unit(540, "lb"),
  41163. name: "Front (Clothed)",
  41164. image: {
  41165. source: "./media/characters/yuko/front-clothed.svg",
  41166. extra: 1282/1222,
  41167. bottom: 101/1383
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Normal",
  41174. height: math.unit(7 + 6/12, "feet"),
  41175. default: true
  41176. },
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(26 + 9/12, "feet")
  41180. },
  41181. {
  41182. name: "Megamacro",
  41183. height: math.unit(300, "feet")
  41184. },
  41185. {
  41186. name: "Gigamacro",
  41187. height: math.unit(5000, "feet")
  41188. },
  41189. {
  41190. name: "Planetary",
  41191. height: math.unit(10000, "miles")
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(8 + 2/12, "feet"),
  41200. weight: math.unit(600, "lb"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/deam-nitrel/front.svg",
  41204. extra: 1308/1234,
  41205. bottom: 125/1433
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(8 + 2/12, "feet"),
  41213. default: true
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(6.1, "feet"),
  41222. weight: math.unit(180, "lb"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/skyress/front.svg",
  41226. extra: 1045/915,
  41227. bottom: 28/1073
  41228. }
  41229. },
  41230. maw: {
  41231. height: math.unit(1, "feet"),
  41232. name: "Maw",
  41233. image: {
  41234. source: "./media/characters/skyress/maw.svg"
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "Normal",
  41241. height: math.unit(6.1, "feet"),
  41242. default: true
  41243. },
  41244. {
  41245. name: "Macro",
  41246. height: math.unit(200, "feet")
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41252. {
  41253. front: {
  41254. height: math.unit(4 + 2/12, "feet"),
  41255. weight: math.unit(40, "kg"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/amethyst-jones/front.svg",
  41259. extra: 1220/1150,
  41260. bottom: 101/1321
  41261. }
  41262. },
  41263. },
  41264. [
  41265. {
  41266. name: "Normal",
  41267. height: math.unit(4 + 2/12, "feet"),
  41268. default: true
  41269. },
  41270. ]
  41271. ))
  41272. characterMakers.push(() => makeCharacter(
  41273. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41274. {
  41275. front: {
  41276. height: math.unit(1.7, "m"),
  41277. weight: math.unit(135, "lb"),
  41278. name: "Front",
  41279. image: {
  41280. source: "./media/characters/jade/front.svg",
  41281. extra: 1818/1767,
  41282. bottom: 32/1850
  41283. }
  41284. },
  41285. back: {
  41286. height: math.unit(1.7, "m"),
  41287. weight: math.unit(135, "lb"),
  41288. name: "Back",
  41289. image: {
  41290. source: "./media/characters/jade/back.svg",
  41291. extra: 1869/1809,
  41292. bottom: 35/1904
  41293. }
  41294. },
  41295. hand: {
  41296. height: math.unit(0.24, "m"),
  41297. name: "Hand",
  41298. image: {
  41299. source: "./media/characters/jade/hand.svg"
  41300. }
  41301. },
  41302. foot: {
  41303. height: math.unit(0.263, "m"),
  41304. name: "Foot",
  41305. image: {
  41306. source: "./media/characters/jade/foot.svg"
  41307. }
  41308. },
  41309. dick: {
  41310. height: math.unit(0.47, "m"),
  41311. name: "Dick",
  41312. image: {
  41313. source: "./media/characters/jade/dick.svg"
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Micro",
  41320. height: math.unit(22, "cm")
  41321. },
  41322. {
  41323. name: "Normal",
  41324. height: math.unit(1.7, "m"),
  41325. default: true
  41326. },
  41327. {
  41328. name: "Macro",
  41329. height: math.unit(152, "m")
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41335. {
  41336. front: {
  41337. height: math.unit(100, "miles"),
  41338. weight: math.unit(20000, "tons"),
  41339. name: "Front",
  41340. image: {
  41341. source: "./media/characters/cookie/front.svg",
  41342. extra: 1125/1070,
  41343. bottom: 30/1155
  41344. }
  41345. },
  41346. },
  41347. [
  41348. {
  41349. name: "Big",
  41350. height: math.unit(50, "feet")
  41351. },
  41352. {
  41353. name: "Macro",
  41354. height: math.unit(100, "miles"),
  41355. default: true
  41356. },
  41357. {
  41358. name: "Megamacro",
  41359. height: math.unit(90000, "miles")
  41360. },
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(6, "feet"),
  41368. weight: math.unit(145, "lb"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/farzian/front.svg",
  41372. extra: 1902/1693,
  41373. bottom: 108/2010
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Macro",
  41380. height: math.unit(500, "feet"),
  41381. default: true
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41387. {
  41388. front: {
  41389. height: math.unit(3 + 6/12, "feet"),
  41390. weight: math.unit(50, "lb"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/kimberly-tilson/front.svg",
  41394. extra: 1400/1322,
  41395. bottom: 36/1436
  41396. }
  41397. },
  41398. back: {
  41399. height: math.unit(3 + 6/12, "feet"),
  41400. weight: math.unit(50, "lb"),
  41401. name: "Back",
  41402. image: {
  41403. source: "./media/characters/kimberly-tilson/back.svg",
  41404. extra: 1370/1307,
  41405. bottom: 20/1390
  41406. }
  41407. },
  41408. },
  41409. [
  41410. {
  41411. name: "Normal",
  41412. height: math.unit(3 + 6/12, "feet"),
  41413. default: true
  41414. },
  41415. ]
  41416. ))
  41417. characterMakers.push(() => makeCharacter(
  41418. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41419. {
  41420. front: {
  41421. height: math.unit(1148, "feet"),
  41422. weight: math.unit(34057, "lb"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/harthos/front.svg",
  41426. extra: 1391/1339,
  41427. bottom: 13/1404
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Macro",
  41434. height: math.unit(1148, "feet"),
  41435. default: true
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(15, "feet"),
  41444. name: "Front",
  41445. image: {
  41446. source: "./media/characters/hypatia/front.svg",
  41447. extra: 1653/1591,
  41448. bottom: 79/1732
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Normal",
  41455. height: math.unit(15, "feet")
  41456. },
  41457. {
  41458. name: "Small",
  41459. height: math.unit(300, "feet")
  41460. },
  41461. {
  41462. name: "Macro",
  41463. height: math.unit(2500, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Mega Macro",
  41468. height: math.unit(1500, "miles")
  41469. },
  41470. {
  41471. name: "Giga Macro",
  41472. height: math.unit(1.5e6, "miles")
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41478. {
  41479. front: {
  41480. height: math.unit(6, "feet"),
  41481. weight: math.unit(200, "lb"),
  41482. name: "Front",
  41483. image: {
  41484. source: "./media/characters/wulver/front.svg",
  41485. extra: 1724/1632,
  41486. bottom: 130/1854
  41487. }
  41488. },
  41489. frontNsfw: {
  41490. height: math.unit(6, "feet"),
  41491. weight: math.unit(200, "lb"),
  41492. name: "Front (NSFW)",
  41493. image: {
  41494. source: "./media/characters/wulver/front-nsfw.svg",
  41495. extra: 1724/1632,
  41496. bottom: 130/1854
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Human-Sized",
  41503. height: math.unit(6, "feet")
  41504. },
  41505. {
  41506. name: "Normal",
  41507. height: math.unit(4, "meters"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Large",
  41512. height: math.unit(6, "m")
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(7, "feet"),
  41521. name: "Front",
  41522. image: {
  41523. source: "./media/characters/maru/front.svg",
  41524. extra: 1595/1570,
  41525. bottom: 0/1595
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Normal",
  41532. height: math.unit(7, "feet"),
  41533. default: true
  41534. },
  41535. {
  41536. name: "Macro",
  41537. height: math.unit(700, "feet")
  41538. },
  41539. {
  41540. name: "Mega Macro",
  41541. height: math.unit(25, "miles")
  41542. },
  41543. ]
  41544. ))
  41545. characterMakers.push(() => makeCharacter(
  41546. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41547. {
  41548. front: {
  41549. height: math.unit(6, "feet"),
  41550. weight: math.unit(170, "lb"),
  41551. name: "Front",
  41552. image: {
  41553. source: "./media/characters/xenon/front.svg",
  41554. extra: 1376/1305,
  41555. bottom: 56/1432
  41556. }
  41557. },
  41558. back: {
  41559. height: math.unit(6, "feet"),
  41560. weight: math.unit(170, "lb"),
  41561. name: "Back",
  41562. image: {
  41563. source: "./media/characters/xenon/back.svg",
  41564. extra: 1328/1259,
  41565. bottom: 95/1423
  41566. }
  41567. },
  41568. maw: {
  41569. height: math.unit(0.52, "feet"),
  41570. name: "Maw",
  41571. image: {
  41572. source: "./media/characters/xenon/maw.svg"
  41573. }
  41574. },
  41575. handLeft: {
  41576. height: math.unit(0.82 * 169 / 153, "feet"),
  41577. name: "Hand (Left)",
  41578. image: {
  41579. source: "./media/characters/xenon/hand-left.svg"
  41580. }
  41581. },
  41582. handRight: {
  41583. height: math.unit(0.82, "feet"),
  41584. name: "Hand (Right)",
  41585. image: {
  41586. source: "./media/characters/xenon/hand-right.svg"
  41587. }
  41588. },
  41589. footLeft: {
  41590. height: math.unit(1.13, "feet"),
  41591. name: "Foot (Left)",
  41592. image: {
  41593. source: "./media/characters/xenon/foot-left.svg"
  41594. }
  41595. },
  41596. footRight: {
  41597. height: math.unit(1.13 * 194 / 196, "feet"),
  41598. name: "Foot (Right)",
  41599. image: {
  41600. source: "./media/characters/xenon/foot-right.svg"
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Micro",
  41607. height: math.unit(0.8, "inches")
  41608. },
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(6, "feet")
  41612. },
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(50, "feet"),
  41616. default: true
  41617. },
  41618. {
  41619. name: "Macro+",
  41620. height: math.unit(250, "feet")
  41621. },
  41622. {
  41623. name: "Megamacro",
  41624. height: math.unit(1500, "feet")
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(7 + 5/12, "feet"),
  41633. name: "Front",
  41634. image: {
  41635. source: "./media/characters/zane/front.svg",
  41636. extra: 1260/1203,
  41637. bottom: 94/1354
  41638. }
  41639. },
  41640. back: {
  41641. height: math.unit(5.05, "feet"),
  41642. name: "Back",
  41643. image: {
  41644. source: "./media/characters/zane/back.svg",
  41645. extra: 893/829,
  41646. bottom: 30/923
  41647. }
  41648. },
  41649. werewolf: {
  41650. height: math.unit(11, "feet"),
  41651. name: "Werewolf",
  41652. image: {
  41653. source: "./media/characters/zane/werewolf.svg",
  41654. extra: 1383/1323,
  41655. bottom: 89/1472
  41656. }
  41657. },
  41658. foot: {
  41659. height: math.unit(1.46, "feet"),
  41660. name: "Foot",
  41661. image: {
  41662. source: "./media/characters/zane/foot.svg"
  41663. }
  41664. },
  41665. footFront: {
  41666. height: math.unit(0.784, "feet"),
  41667. name: "Foot (Front)",
  41668. image: {
  41669. source: "./media/characters/zane/foot-front.svg"
  41670. }
  41671. },
  41672. dick: {
  41673. height: math.unit(1.95, "feet"),
  41674. name: "Dick",
  41675. image: {
  41676. source: "./media/characters/zane/dick.svg"
  41677. }
  41678. },
  41679. dickWerewolf: {
  41680. height: math.unit(3.77, "feet"),
  41681. name: "Dick (Werewolf)",
  41682. image: {
  41683. source: "./media/characters/zane/dick.svg"
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Normal",
  41690. height: math.unit(7 + 5/12, "feet"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41697. {
  41698. front: {
  41699. height: math.unit(6 + 2/12, "feet"),
  41700. weight: math.unit(284, "lb"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/benni-desparque/front.svg",
  41704. extra: 1353/1126,
  41705. bottom: 69/1422
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Civilian",
  41712. height: math.unit(6 + 2/12, "feet")
  41713. },
  41714. {
  41715. name: "Normal",
  41716. height: math.unit(98, "feet"),
  41717. default: true
  41718. },
  41719. {
  41720. name: "Kaiju Fighter",
  41721. height: math.unit(268, "feet")
  41722. },
  41723. ]
  41724. ))
  41725. characterMakers.push(() => makeCharacter(
  41726. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41727. {
  41728. front: {
  41729. height: math.unit(5, "feet"),
  41730. weight: math.unit(105, "lb"),
  41731. name: "Front",
  41732. image: {
  41733. source: "./media/characters/maxine/front.svg",
  41734. extra: 1386/1250,
  41735. bottom: 71/1457
  41736. }
  41737. },
  41738. },
  41739. [
  41740. {
  41741. name: "Normal",
  41742. height: math.unit(5, "feet"),
  41743. default: true
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(11 + 7/12, "feet"),
  41752. weight: math.unit(9576, "lb"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/scaly/front.svg",
  41756. extra: 888/867,
  41757. bottom: 36/924
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Normal",
  41764. height: math.unit(11 + 7/12, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41771. {
  41772. front: {
  41773. height: math.unit(6 + 3/12, "feet"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/saelria/front.svg",
  41777. extra: 1243/1138,
  41778. bottom: 46/1289
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Micro",
  41785. height: math.unit(6, "inches"),
  41786. },
  41787. {
  41788. name: "Normal",
  41789. height: math.unit(6 + 3/12, "feet"),
  41790. default: true
  41791. },
  41792. {
  41793. name: "Macro",
  41794. height: math.unit(25, "feet")
  41795. },
  41796. ]
  41797. ))
  41798. characterMakers.push(() => makeCharacter(
  41799. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41800. {
  41801. front: {
  41802. height: math.unit(80, "meters"),
  41803. weight: math.unit(7000, "tonnes"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/tef/front.svg",
  41807. extra: 2036/1991,
  41808. bottom: 54/2090
  41809. }
  41810. },
  41811. back: {
  41812. height: math.unit(80, "meters"),
  41813. weight: math.unit(7000, "tonnes"),
  41814. name: "Back",
  41815. image: {
  41816. source: "./media/characters/tef/back.svg",
  41817. extra: 2036/1991,
  41818. bottom: 54/2090
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(80, "meters"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41832. {
  41833. front: {
  41834. height: math.unit(13, "feet"),
  41835. weight: math.unit(6, "tons"),
  41836. name: "Front",
  41837. image: {
  41838. source: "./media/characters/rover/front.svg",
  41839. extra: 1233/1156,
  41840. bottom: 50/1283
  41841. }
  41842. },
  41843. back: {
  41844. height: math.unit(13, "feet"),
  41845. weight: math.unit(6, "tons"),
  41846. name: "Back",
  41847. image: {
  41848. source: "./media/characters/rover/back.svg",
  41849. extra: 1327/1258,
  41850. bottom: 39/1366
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(13, "feet"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Macro",
  41862. height: math.unit(1300, "feet")
  41863. },
  41864. {
  41865. name: "Megamacro",
  41866. height: math.unit(1300, "miles")
  41867. },
  41868. {
  41869. name: "Gigamacro",
  41870. height: math.unit(1300000, "miles")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41876. {
  41877. front: {
  41878. height: math.unit(6, "feet"),
  41879. weight: math.unit(150, "lb"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/ariz/front.svg",
  41883. extra: 1401/1346,
  41884. bottom: 5/1406
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Normal",
  41891. height: math.unit(10, "feet"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(6, "feet"),
  41901. weight: math.unit(140, "lb"),
  41902. name: "Front",
  41903. image: {
  41904. source: "./media/characters/sigrun/front.svg",
  41905. extra: 1418/1359,
  41906. bottom: 27/1445
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Macro",
  41913. height: math.unit(35, "feet"),
  41914. default: true
  41915. },
  41916. ]
  41917. ))
  41918. characterMakers.push(() => makeCharacter(
  41919. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41920. {
  41921. front: {
  41922. height: math.unit(6, "feet"),
  41923. weight: math.unit(150, "lb"),
  41924. name: "Front",
  41925. image: {
  41926. source: "./media/characters/numin/front.svg",
  41927. extra: 1433/1388,
  41928. bottom: 12/1445
  41929. }
  41930. },
  41931. },
  41932. [
  41933. {
  41934. name: "Macro",
  41935. height: math.unit(21.5, "km"),
  41936. default: true
  41937. },
  41938. ]
  41939. ))
  41940. characterMakers.push(() => makeCharacter(
  41941. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41942. {
  41943. front: {
  41944. height: math.unit(6, "feet"),
  41945. weight: math.unit(463, "lb"),
  41946. name: "Front",
  41947. image: {
  41948. source: "./media/characters/melwa/front.svg",
  41949. extra: 1307/1248,
  41950. bottom: 93/1400
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Macro",
  41957. height: math.unit(50, "meters"),
  41958. default: true
  41959. },
  41960. ]
  41961. ))
  41962. characterMakers.push(() => makeCharacter(
  41963. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41964. {
  41965. front: {
  41966. height: math.unit(325, "feet"),
  41967. name: "Front",
  41968. image: {
  41969. source: "./media/characters/zorkaiju/front.svg",
  41970. extra: 1955/1814,
  41971. bottom: 40/1995
  41972. }
  41973. },
  41974. frontExtended: {
  41975. height: math.unit(325, "feet"),
  41976. name: "Front (Extended)",
  41977. image: {
  41978. source: "./media/characters/zorkaiju/front-extended.svg",
  41979. extra: 1955/1814,
  41980. bottom: 40/1995
  41981. }
  41982. },
  41983. side: {
  41984. height: math.unit(325, "feet"),
  41985. name: "Side",
  41986. image: {
  41987. source: "./media/characters/zorkaiju/side.svg",
  41988. extra: 1495/1396,
  41989. bottom: 17/1512
  41990. }
  41991. },
  41992. sideExtended: {
  41993. height: math.unit(325, "feet"),
  41994. name: "Side (Extended)",
  41995. image: {
  41996. source: "./media/characters/zorkaiju/side-extended.svg",
  41997. extra: 1495/1396,
  41998. bottom: 17/1512
  41999. }
  42000. },
  42001. back: {
  42002. height: math.unit(325, "feet"),
  42003. name: "Back",
  42004. image: {
  42005. source: "./media/characters/zorkaiju/back.svg",
  42006. extra: 1959/1821,
  42007. bottom: 31/1990
  42008. }
  42009. },
  42010. backExtended: {
  42011. height: math.unit(325, "feet"),
  42012. name: "Back (Extended)",
  42013. image: {
  42014. source: "./media/characters/zorkaiju/back-extended.svg",
  42015. extra: 1959/1821,
  42016. bottom: 31/1990
  42017. }
  42018. },
  42019. hand: {
  42020. height: math.unit(58.4, "feet"),
  42021. name: "Hand",
  42022. image: {
  42023. source: "./media/characters/zorkaiju/hand.svg"
  42024. }
  42025. },
  42026. handExtended: {
  42027. height: math.unit(61.4, "feet"),
  42028. name: "Hand (Extended)",
  42029. image: {
  42030. source: "./media/characters/zorkaiju/hand-extended.svg"
  42031. }
  42032. },
  42033. foot: {
  42034. height: math.unit(95, "feet"),
  42035. name: "Foot",
  42036. image: {
  42037. source: "./media/characters/zorkaiju/foot.svg"
  42038. }
  42039. },
  42040. leftArm: {
  42041. height: math.unit(59, "feet"),
  42042. name: "Left Arm",
  42043. image: {
  42044. source: "./media/characters/zorkaiju/left-arm.svg"
  42045. }
  42046. },
  42047. rightArm: {
  42048. height: math.unit(59, "feet"),
  42049. name: "Right Arm",
  42050. image: {
  42051. source: "./media/characters/zorkaiju/right-arm.svg"
  42052. }
  42053. },
  42054. leftArmExtended: {
  42055. height: math.unit(59 * 1.033546, "feet"),
  42056. name: "Left Arm (Extended)",
  42057. image: {
  42058. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42059. }
  42060. },
  42061. rightArmExtended: {
  42062. height: math.unit(59 * 1.0496, "feet"),
  42063. name: "Right Arm (Extended)",
  42064. image: {
  42065. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42066. }
  42067. },
  42068. tail: {
  42069. height: math.unit(104, "feet"),
  42070. name: "Tail",
  42071. image: {
  42072. source: "./media/characters/zorkaiju/tail.svg"
  42073. }
  42074. },
  42075. tailExtended: {
  42076. height: math.unit(104, "feet"),
  42077. name: "Tail (Extended)",
  42078. image: {
  42079. source: "./media/characters/zorkaiju/tail-extended.svg"
  42080. }
  42081. },
  42082. tailBottom: {
  42083. height: math.unit(104, "feet"),
  42084. name: "Tail Bottom",
  42085. image: {
  42086. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42087. }
  42088. },
  42089. crystal: {
  42090. height: math.unit(27.54, "feet"),
  42091. name: "Crystal",
  42092. image: {
  42093. source: "./media/characters/zorkaiju/crystal.svg"
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Kaiju",
  42100. height: math.unit(325, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42107. {
  42108. front: {
  42109. height: math.unit(6 + 1/12, "feet"),
  42110. weight: math.unit(115, "lb"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/bailey-belfry/front.svg",
  42114. extra: 1240/1121,
  42115. bottom: 101/1341
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Normal",
  42122. height: math.unit(6 + 1/12, "feet"),
  42123. default: true
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42129. {
  42130. side: {
  42131. height: math.unit(4, "meters"),
  42132. weight: math.unit(250, "kg"),
  42133. name: "Side",
  42134. image: {
  42135. source: "./media/characters/blacky/side.svg",
  42136. extra: 1027/919,
  42137. bottom: 43/1070
  42138. }
  42139. },
  42140. maw: {
  42141. height: math.unit(1, "meters"),
  42142. name: "Maw",
  42143. image: {
  42144. source: "./media/characters/blacky/maw.svg"
  42145. }
  42146. },
  42147. paw: {
  42148. height: math.unit(1, "meters"),
  42149. name: "Paw",
  42150. image: {
  42151. source: "./media/characters/blacky/paw.svg"
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(4, "meters"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(170, "cm"),
  42168. weight: math.unit(66, "kg"),
  42169. name: "Front",
  42170. image: {
  42171. source: "./media/characters/thux-ei/front.svg",
  42172. extra: 1109/1011,
  42173. bottom: 8/1117
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(170, "cm"),
  42181. default: true
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42187. {
  42188. front: {
  42189. height: math.unit(5, "feet"),
  42190. weight: math.unit(120, "lb"),
  42191. name: "Front",
  42192. image: {
  42193. source: "./media/characters/roxanne-voltaire/front.svg",
  42194. extra: 1901/1779,
  42195. bottom: 53/1954
  42196. }
  42197. },
  42198. },
  42199. [
  42200. {
  42201. name: "Normal",
  42202. height: math.unit(5, "feet"),
  42203. default: true
  42204. },
  42205. {
  42206. name: "Giant",
  42207. height: math.unit(50, "feet")
  42208. },
  42209. {
  42210. name: "Titan",
  42211. height: math.unit(500, "feet")
  42212. },
  42213. {
  42214. name: "Macro",
  42215. height: math.unit(5000, "feet")
  42216. },
  42217. {
  42218. name: "Megamacro",
  42219. height: math.unit(50000, "feet")
  42220. },
  42221. {
  42222. name: "Gigamacro",
  42223. height: math.unit(500000, "feet")
  42224. },
  42225. {
  42226. name: "Teramacro",
  42227. height: math.unit(5e6, "feet")
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(6 + 2/12, "feet"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/squeaks/front.svg",
  42239. extra: 1823/1768,
  42240. bottom: 138/1961
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Micro",
  42247. height: math.unit(0.5, "inches")
  42248. },
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(6 + 2/12, "feet"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Macro",
  42256. height: math.unit(600, "feet")
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(1.72, "meters"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/archinger/front.svg",
  42268. extra: 1861/1675,
  42269. bottom: 125/1986
  42270. }
  42271. },
  42272. back: {
  42273. height: math.unit(1.72, "meters"),
  42274. name: "Back",
  42275. image: {
  42276. source: "./media/characters/archinger/back.svg",
  42277. extra: 1844/1701,
  42278. bottom: 104/1948
  42279. }
  42280. },
  42281. cock: {
  42282. height: math.unit(0.59, "feet"),
  42283. name: "Cock",
  42284. image: {
  42285. source: "./media/characters/archinger/cock.svg"
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Normal",
  42292. height: math.unit(1.72, "meters"),
  42293. default: true
  42294. },
  42295. {
  42296. name: "Macro",
  42297. height: math.unit(84, "meters")
  42298. },
  42299. {
  42300. name: "Macro+",
  42301. height: math.unit(112, "meters")
  42302. },
  42303. {
  42304. name: "Macro++",
  42305. height: math.unit(960, "meters")
  42306. },
  42307. {
  42308. name: "Macro+++",
  42309. height: math.unit(4, "km")
  42310. },
  42311. {
  42312. name: "Macro++++",
  42313. height: math.unit(48, "km")
  42314. },
  42315. {
  42316. name: "Macro+++++",
  42317. height: math.unit(4500, "km")
  42318. },
  42319. ]
  42320. ))
  42321. characterMakers.push(() => makeCharacter(
  42322. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42323. {
  42324. front: {
  42325. height: math.unit(5 + 5/12, "feet"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/alsnapz/front.svg",
  42329. extra: 1157/1065,
  42330. bottom: 42/1199
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Normal",
  42337. height: math.unit(5 + 5/12, "feet"),
  42338. default: true
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42344. {
  42345. side: {
  42346. height: math.unit(3.2, "earths"),
  42347. name: "Side",
  42348. image: {
  42349. source: "./media/characters/mag/side.svg",
  42350. extra: 1331/1008,
  42351. bottom: 52/1383
  42352. }
  42353. },
  42354. wing: {
  42355. height: math.unit(1.94, "earths"),
  42356. name: "Wing",
  42357. image: {
  42358. source: "./media/characters/mag/wing.svg"
  42359. }
  42360. },
  42361. dick: {
  42362. height: math.unit(1.8, "earths"),
  42363. name: "Dick",
  42364. image: {
  42365. source: "./media/characters/mag/dick.svg"
  42366. }
  42367. },
  42368. ass: {
  42369. height: math.unit(1.33, "earths"),
  42370. name: "Ass",
  42371. image: {
  42372. source: "./media/characters/mag/ass.svg"
  42373. }
  42374. },
  42375. head: {
  42376. height: math.unit(1.1, "earths"),
  42377. name: "Head",
  42378. image: {
  42379. source: "./media/characters/mag/head.svg"
  42380. }
  42381. },
  42382. maw: {
  42383. height: math.unit(1.62, "earths"),
  42384. name: "Maw",
  42385. image: {
  42386. source: "./media/characters/mag/maw.svg"
  42387. }
  42388. },
  42389. },
  42390. [
  42391. {
  42392. name: "Small",
  42393. height: math.unit(162, "feet")
  42394. },
  42395. {
  42396. name: "Normal",
  42397. height: math.unit(3.2, "earths"),
  42398. default: true
  42399. },
  42400. ]
  42401. ))
  42402. characterMakers.push(() => makeCharacter(
  42403. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42404. {
  42405. front: {
  42406. height: math.unit(512, "feet"),
  42407. weight: math.unit(63509, "tonnes"),
  42408. name: "Front",
  42409. image: {
  42410. source: "./media/characters/vorrel-harroc/front.svg",
  42411. extra: 1075/1063,
  42412. bottom: 62/1137
  42413. }
  42414. },
  42415. },
  42416. [
  42417. {
  42418. name: "Normal",
  42419. height: math.unit(10, "feet")
  42420. },
  42421. {
  42422. name: "Macro",
  42423. height: math.unit(512, "feet"),
  42424. default: true
  42425. },
  42426. {
  42427. name: "Megamacro",
  42428. height: math.unit(256, "miles")
  42429. },
  42430. {
  42431. name: "Gigamacro",
  42432. height: math.unit(4096, "miles")
  42433. },
  42434. ]
  42435. ))
  42436. characterMakers.push(() => makeCharacter(
  42437. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42438. {
  42439. side: {
  42440. height: math.unit(50, "feet"),
  42441. name: "Side",
  42442. image: {
  42443. source: "./media/characters/froimar/side.svg",
  42444. extra: 855/638,
  42445. bottom: 99/954
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Macro",
  42452. height: math.unit(50, "feet"),
  42453. default: true
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(210, "miles"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/timothy/front.svg",
  42465. extra: 1007/943,
  42466. bottom: 62/1069
  42467. }
  42468. },
  42469. frontSkirt: {
  42470. height: math.unit(210, "miles"),
  42471. name: "Front (Skirt)",
  42472. image: {
  42473. source: "./media/characters/timothy/front-skirt.svg",
  42474. extra: 1007/943,
  42475. bottom: 62/1069
  42476. }
  42477. },
  42478. frontCoat: {
  42479. height: math.unit(210, "miles"),
  42480. name: "Front (Coat)",
  42481. image: {
  42482. source: "./media/characters/timothy/front-coat.svg",
  42483. extra: 1007/943,
  42484. bottom: 62/1069
  42485. }
  42486. },
  42487. },
  42488. [
  42489. {
  42490. name: "Macro",
  42491. height: math.unit(210, "miles"),
  42492. default: true
  42493. },
  42494. {
  42495. name: "Megamacro",
  42496. height: math.unit(210000, "miles")
  42497. },
  42498. ]
  42499. ))
  42500. characterMakers.push(() => makeCharacter(
  42501. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42502. {
  42503. front: {
  42504. height: math.unit(188, "feet"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/pyotr/front.svg",
  42508. extra: 1912/1826,
  42509. bottom: 18/1930
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Macro",
  42516. height: math.unit(188, "feet"),
  42517. default: true
  42518. },
  42519. {
  42520. name: "Megamacro",
  42521. height: math.unit(8, "miles")
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42527. {
  42528. side: {
  42529. height: math.unit(10, "feet"),
  42530. weight: math.unit(4500, "lb"),
  42531. name: "Side",
  42532. image: {
  42533. source: "./media/characters/ackart/side.svg",
  42534. extra: 1776/1668,
  42535. bottom: 116/1892
  42536. }
  42537. },
  42538. },
  42539. [
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(10, "feet"),
  42543. default: true
  42544. },
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42549. {
  42550. side: {
  42551. height: math.unit(21, "feet"),
  42552. name: "Side",
  42553. image: {
  42554. source: "./media/characters/nolow/side.svg",
  42555. extra: 1484/1434,
  42556. bottom: 85/1569
  42557. }
  42558. },
  42559. sideErect: {
  42560. height: math.unit(21, "feet"),
  42561. name: "Side-erect",
  42562. image: {
  42563. source: "./media/characters/nolow/side-erect.svg",
  42564. extra: 1484/1434,
  42565. bottom: 85/1569
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Regular",
  42572. height: math.unit(12, "feet")
  42573. },
  42574. {
  42575. name: "Big Chee",
  42576. height: math.unit(21, "feet"),
  42577. default: true
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(7, "feet"),
  42586. weight: math.unit(250, "lb"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/nines/front.svg",
  42590. extra: 1741/1607,
  42591. bottom: 41/1782
  42592. }
  42593. },
  42594. side: {
  42595. height: math.unit(7, "feet"),
  42596. weight: math.unit(250, "lb"),
  42597. name: "Side",
  42598. image: {
  42599. source: "./media/characters/nines/side.svg",
  42600. extra: 1854/1735,
  42601. bottom: 93/1947
  42602. }
  42603. },
  42604. back: {
  42605. height: math.unit(7, "feet"),
  42606. weight: math.unit(250, "lb"),
  42607. name: "Back",
  42608. image: {
  42609. source: "./media/characters/nines/back.svg",
  42610. extra: 1748/1615,
  42611. bottom: 20/1768
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Megamacro",
  42618. height: math.unit(99, "km"),
  42619. default: true
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42625. {
  42626. front: {
  42627. height: math.unit(5 + 10/12, "feet"),
  42628. weight: math.unit(210, "lb"),
  42629. name: "Front",
  42630. image: {
  42631. source: "./media/characters/zenith/front.svg",
  42632. extra: 1531/1452,
  42633. bottom: 198/1729
  42634. }
  42635. },
  42636. back: {
  42637. height: math.unit(5 + 10/12, "feet"),
  42638. weight: math.unit(210, "lb"),
  42639. name: "Back",
  42640. image: {
  42641. source: "./media/characters/zenith/back.svg",
  42642. extra: 1571/1487,
  42643. bottom: 75/1646
  42644. }
  42645. },
  42646. },
  42647. [
  42648. {
  42649. name: "Normal",
  42650. height: math.unit(5 + 10/12, "feet"),
  42651. default: true
  42652. }
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(4, "feet"),
  42660. weight: math.unit(60, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/jasper/front.svg",
  42664. extra: 1450/1379,
  42665. bottom: 19/1469
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(4, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(6 + 5/12, "feet"),
  42682. weight: math.unit(290, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/tiberius-thyben/front.svg",
  42686. extra: 757/739,
  42687. bottom: 39/796
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Micro",
  42694. height: math.unit(1.5, "inches")
  42695. },
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(6 + 5/12, "feet"),
  42699. default: true
  42700. },
  42701. {
  42702. name: "Macro",
  42703. height: math.unit(300, "feet")
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42709. {
  42710. front: {
  42711. height: math.unit(5 + 6/12, "feet"),
  42712. weight: math.unit(60, "kg"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/sabre/front.svg",
  42716. extra: 738/671,
  42717. bottom: 27/765
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Teeny",
  42724. height: math.unit(2, "inches")
  42725. },
  42726. {
  42727. name: "Smol",
  42728. height: math.unit(8, "inches")
  42729. },
  42730. {
  42731. name: "Normal",
  42732. height: math.unit(5 + 6/12, "feet"),
  42733. default: true
  42734. },
  42735. {
  42736. name: "Mini-Macro",
  42737. height: math.unit(15, "feet")
  42738. },
  42739. {
  42740. name: "Macro",
  42741. height: math.unit(50, "feet")
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42747. {
  42748. front: {
  42749. height: math.unit(6 + 4/12, "feet"),
  42750. weight: math.unit(170, "lb"),
  42751. name: "Front",
  42752. image: {
  42753. source: "./media/characters/charlie/front.svg",
  42754. extra: 1348/1228,
  42755. bottom: 15/1363
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Macro",
  42762. height: math.unit(1700, "meters"),
  42763. default: true
  42764. },
  42765. {
  42766. name: "MegaMacro",
  42767. height: math.unit(20400, "meters")
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(6 + 3/12, "feet"),
  42776. weight: math.unit(185, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/susan-grant/front.svg",
  42780. extra: 1351/1327,
  42781. bottom: 26/1377
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(6 + 3/12, "feet"),
  42789. default: true
  42790. },
  42791. {
  42792. name: "Macro",
  42793. height: math.unit(225, "feet")
  42794. },
  42795. {
  42796. name: "Macro+",
  42797. height: math.unit(900, "feet")
  42798. },
  42799. {
  42800. name: "MegaMacro",
  42801. height: math.unit(14400, "feet")
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42807. {
  42808. front: {
  42809. height: math.unit(5 + 4/12, "feet"),
  42810. weight: math.unit(110, "lb"),
  42811. name: "Front",
  42812. image: {
  42813. source: "./media/characters/axel-isanov/front.svg",
  42814. extra: 1096/1065,
  42815. bottom: 13/1109
  42816. }
  42817. },
  42818. },
  42819. [
  42820. {
  42821. name: "Normal",
  42822. height: math.unit(5 + 4/12, "feet"),
  42823. default: true
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42829. {
  42830. front: {
  42831. height: math.unit(9, "feet"),
  42832. weight: math.unit(467, "lb"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/necahual/front.svg",
  42836. extra: 920/873,
  42837. bottom: 26/946
  42838. }
  42839. },
  42840. back: {
  42841. height: math.unit(9, "feet"),
  42842. weight: math.unit(467, "lb"),
  42843. name: "Back",
  42844. image: {
  42845. source: "./media/characters/necahual/back.svg",
  42846. extra: 930/884,
  42847. bottom: 16/946
  42848. }
  42849. },
  42850. frontUnderwear: {
  42851. height: math.unit(9, "feet"),
  42852. weight: math.unit(467, "lb"),
  42853. name: "Front (Underwear)",
  42854. image: {
  42855. source: "./media/characters/necahual/front-underwear.svg",
  42856. extra: 920/873,
  42857. bottom: 26/946
  42858. }
  42859. },
  42860. frontDressed: {
  42861. height: math.unit(9, "feet"),
  42862. weight: math.unit(467, "lb"),
  42863. name: "Front (Dressed)",
  42864. image: {
  42865. source: "./media/characters/necahual/front-dressed.svg",
  42866. extra: 920/873,
  42867. bottom: 26/946
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Comprsesed",
  42874. height: math.unit(9, "feet")
  42875. },
  42876. {
  42877. name: "Natural",
  42878. height: math.unit(15, "feet"),
  42879. default: true
  42880. },
  42881. {
  42882. name: "Boosted",
  42883. height: math.unit(50, "feet")
  42884. },
  42885. {
  42886. name: "Boosted+",
  42887. height: math.unit(150, "feet")
  42888. },
  42889. {
  42890. name: "Max",
  42891. height: math.unit(500, "feet")
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(22 + 1/12, "feet"),
  42900. weight: math.unit(3200, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/theo-acacia/front.svg",
  42904. extra: 1796/1741,
  42905. bottom: 83/1879
  42906. }
  42907. },
  42908. frontUnderwear: {
  42909. height: math.unit(22 + 1/12, "feet"),
  42910. weight: math.unit(3200, "lb"),
  42911. name: "Front (Underwear)",
  42912. image: {
  42913. source: "./media/characters/theo-acacia/front-underwear.svg",
  42914. extra: 1796/1741,
  42915. bottom: 83/1879
  42916. }
  42917. },
  42918. frontNude: {
  42919. height: math.unit(22 + 1/12, "feet"),
  42920. weight: math.unit(3200, "lb"),
  42921. name: "Front (Nude)",
  42922. image: {
  42923. source: "./media/characters/theo-acacia/front-nude.svg",
  42924. extra: 1796/1741,
  42925. bottom: 83/1879
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Normal",
  42932. height: math.unit(22 + 1/12, "feet"),
  42933. default: true
  42934. },
  42935. ]
  42936. ))
  42937. characterMakers.push(() => makeCharacter(
  42938. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42939. {
  42940. front: {
  42941. height: math.unit(20, "feet"),
  42942. name: "Front",
  42943. image: {
  42944. source: "./media/characters/astra/front.svg",
  42945. extra: 1850/1714,
  42946. bottom: 106/1956
  42947. }
  42948. },
  42949. frontUndressed: {
  42950. height: math.unit(20, "feet"),
  42951. name: "Front (Undressed)",
  42952. image: {
  42953. source: "./media/characters/astra/front-undressed.svg",
  42954. extra: 1926/1749,
  42955. bottom: 0/1926
  42956. }
  42957. },
  42958. hand: {
  42959. height: math.unit(1.53, "feet"),
  42960. name: "Hand",
  42961. image: {
  42962. source: "./media/characters/astra/hand.svg"
  42963. }
  42964. },
  42965. paw: {
  42966. height: math.unit(1.53, "feet"),
  42967. name: "Paw",
  42968. image: {
  42969. source: "./media/characters/astra/paw.svg"
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Smallest",
  42976. height: math.unit(20, "feet")
  42977. },
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(1e9, "miles"),
  42981. default: true
  42982. },
  42983. {
  42984. name: "Larger",
  42985. height: math.unit(5, "multiverses")
  42986. },
  42987. {
  42988. name: "Largest",
  42989. height: math.unit(1e9, "multiverses")
  42990. },
  42991. ]
  42992. ))
  42993. characterMakers.push(() => makeCharacter(
  42994. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42995. {
  42996. front: {
  42997. height: math.unit(8, "feet"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/breanna/front.svg",
  43001. extra: 1912/1632,
  43002. bottom: 33/1945
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Smallest",
  43009. height: math.unit(8, "feet")
  43010. },
  43011. {
  43012. name: "Normal",
  43013. height: math.unit(1, "mile"),
  43014. default: true
  43015. },
  43016. {
  43017. name: "Maximum",
  43018. height: math.unit(1500000000000, "lightyears")
  43019. },
  43020. ]
  43021. ))
  43022. characterMakers.push(() => makeCharacter(
  43023. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43024. {
  43025. front: {
  43026. height: math.unit(5 + 11/12, "feet"),
  43027. weight: math.unit(155, "lb"),
  43028. name: "Front",
  43029. image: {
  43030. source: "./media/characters/cai/front.svg",
  43031. extra: 1823/1702,
  43032. bottom: 32/1855
  43033. }
  43034. },
  43035. back: {
  43036. height: math.unit(5 + 11/12, "feet"),
  43037. weight: math.unit(155, "lb"),
  43038. name: "Back",
  43039. image: {
  43040. source: "./media/characters/cai/back.svg",
  43041. extra: 1809/1708,
  43042. bottom: 31/1840
  43043. }
  43044. },
  43045. },
  43046. [
  43047. {
  43048. name: "Normal",
  43049. height: math.unit(5 + 11/12, "feet"),
  43050. default: true
  43051. },
  43052. {
  43053. name: "Big",
  43054. height: math.unit(15, "feet")
  43055. },
  43056. {
  43057. name: "Macro",
  43058. height: math.unit(200, "feet")
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43064. {
  43065. front: {
  43066. height: math.unit(5 + 6/12, "feet"),
  43067. weight: math.unit(160, "lb"),
  43068. name: "Front",
  43069. image: {
  43070. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43071. extra: 1227/1174,
  43072. bottom: 37/1264
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Macro",
  43079. height: math.unit(444, "meters"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(18 + 7/12, "feet"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/rex/front.svg",
  43092. extra: 1941/1807,
  43093. bottom: 66/2007
  43094. }
  43095. },
  43096. back: {
  43097. height: math.unit(18 + 7/12, "feet"),
  43098. name: "Back",
  43099. image: {
  43100. source: "./media/characters/rex/back.svg",
  43101. extra: 1937/1822,
  43102. bottom: 42/1979
  43103. }
  43104. },
  43105. boot: {
  43106. height: math.unit(3.45, "feet"),
  43107. name: "Boot",
  43108. image: {
  43109. source: "./media/characters/rex/boot.svg"
  43110. }
  43111. },
  43112. paw: {
  43113. height: math.unit(4.17, "feet"),
  43114. name: "Paw",
  43115. image: {
  43116. source: "./media/characters/rex/paw.svg"
  43117. }
  43118. },
  43119. head: {
  43120. height: math.unit(6.728, "feet"),
  43121. name: "Head",
  43122. image: {
  43123. source: "./media/characters/rex/head.svg"
  43124. }
  43125. },
  43126. },
  43127. [
  43128. {
  43129. name: "Nano",
  43130. height: math.unit(18 + 7/12, "feet")
  43131. },
  43132. {
  43133. name: "Micro",
  43134. height: math.unit(1.5, "megameters")
  43135. },
  43136. {
  43137. name: "Normal",
  43138. height: math.unit(440, "megameters"),
  43139. default: true
  43140. },
  43141. {
  43142. name: "Macro",
  43143. height: math.unit(2.5, "gigameters")
  43144. },
  43145. {
  43146. name: "Gigamacro",
  43147. height: math.unit(2, "galaxies")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43153. {
  43154. side: {
  43155. height: math.unit(32, "feet"),
  43156. weight: math.unit(250000, "lb"),
  43157. name: "Side",
  43158. image: {
  43159. source: "./media/characters/silverwing/side.svg",
  43160. extra: 1100/1019,
  43161. bottom: 204/1304
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Normal",
  43168. height: math.unit(32, "feet"),
  43169. default: true
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(6 + 6/12, "feet"),
  43178. weight: math.unit(350, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/tristan-hawthorne/front.svg",
  43182. extra: 1159/1124,
  43183. bottom: 37/1196
  43184. },
  43185. form: "labrador",
  43186. default: true
  43187. },
  43188. skunkFront: {
  43189. height: math.unit(4 + 6/12, "feet"),
  43190. weight: math.unit(120, "lb"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43194. extra: 1609/1551,
  43195. bottom: 169/1778
  43196. },
  43197. form: "skunk",
  43198. default: true
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Normal",
  43204. height: math.unit(6 + 6/12, "feet"),
  43205. form: "labrador",
  43206. default: true
  43207. },
  43208. {
  43209. name: "Normal",
  43210. height: math.unit(4 + 6/12, "feet"),
  43211. form: "skunk",
  43212. default: true
  43213. },
  43214. ],
  43215. {
  43216. "labrador": {
  43217. name: "Labrador",
  43218. default: true
  43219. },
  43220. "skunk": {
  43221. name: "Skunk"
  43222. }
  43223. }
  43224. ))
  43225. characterMakers.push(() => makeCharacter(
  43226. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43227. {
  43228. front: {
  43229. height: math.unit(5 + 11/12, "feet"),
  43230. weight: math.unit(190, "lb"),
  43231. name: "Front",
  43232. image: {
  43233. source: "./media/characters/mizu/front.svg",
  43234. extra: 1988/1788,
  43235. bottom: 14/2002
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Normal",
  43242. height: math.unit(5 + 11/12, "feet"),
  43243. default: true
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(1.7, "feet"),
  43252. weight: math.unit(50, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/dechroma/front.svg",
  43256. extra: 1095/859,
  43257. bottom: 64/1159
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(1.7, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43271. {
  43272. side: {
  43273. height: math.unit(30, "feet"),
  43274. name: "Side",
  43275. image: {
  43276. source: "./media/characters/veluren-thanazel/side.svg",
  43277. extra: 1611/633,
  43278. bottom: 118/1729
  43279. }
  43280. },
  43281. front: {
  43282. height: math.unit(30, "feet"),
  43283. name: "Front",
  43284. image: {
  43285. source: "./media/characters/veluren-thanazel/front.svg",
  43286. extra: 1486/636,
  43287. bottom: 238/1724
  43288. }
  43289. },
  43290. head: {
  43291. height: math.unit(21.4, "feet"),
  43292. name: "Head",
  43293. image: {
  43294. source: "./media/characters/veluren-thanazel/head.svg"
  43295. }
  43296. },
  43297. genitals: {
  43298. height: math.unit(19.4, "feet"),
  43299. name: "Genitals",
  43300. image: {
  43301. source: "./media/characters/veluren-thanazel/genitals.svg"
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Social",
  43308. height: math.unit(6, "feet")
  43309. },
  43310. {
  43311. name: "Play",
  43312. height: math.unit(12, "feet")
  43313. },
  43314. {
  43315. name: "True",
  43316. height: math.unit(30, "feet"),
  43317. default: true
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43323. {
  43324. front: {
  43325. height: math.unit(7 + 6/12, "feet"),
  43326. weight: math.unit(500, "kg"),
  43327. name: "Front",
  43328. image: {
  43329. source: "./media/characters/arcturas/front.svg",
  43330. extra: 1700/1500,
  43331. bottom: 145/1845
  43332. }
  43333. },
  43334. },
  43335. [
  43336. {
  43337. name: "Normal",
  43338. height: math.unit(7 + 6/12, "feet"),
  43339. default: true
  43340. },
  43341. ]
  43342. ))
  43343. characterMakers.push(() => makeCharacter(
  43344. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43345. {
  43346. side: {
  43347. height: math.unit(6, "feet"),
  43348. weight: math.unit(2, "tons"),
  43349. name: "Side",
  43350. image: {
  43351. source: "./media/characters/vitaen/side.svg",
  43352. extra: 1157/617,
  43353. bottom: 122/1279
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(6, "feet"),
  43361. default: true
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(19, "feet"),
  43370. name: "Front",
  43371. image: {
  43372. source: "./media/characters/fia-dreamweaver/front.svg",
  43373. extra: 1630/1504,
  43374. bottom: 25/1655
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(19, "feet"),
  43382. default: true
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(5 + 4/12, "feet"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/artan/front.svg",
  43394. extra: 1618/1535,
  43395. bottom: 46/1664
  43396. }
  43397. },
  43398. back: {
  43399. height: math.unit(5 + 4/12, "feet"),
  43400. name: "Back",
  43401. image: {
  43402. source: "./media/characters/artan/back.svg",
  43403. extra: 1618/1543,
  43404. bottom: 31/1649
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(5 + 4/12, "feet"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43418. {
  43419. side: {
  43420. height: math.unit(182, "cm"),
  43421. weight: math.unit(1000, "lb"),
  43422. name: "Side",
  43423. image: {
  43424. source: "./media/characters/silver-dragon/side.svg",
  43425. extra: 710/287,
  43426. bottom: 88/798
  43427. }
  43428. },
  43429. },
  43430. [
  43431. {
  43432. name: "Normal",
  43433. height: math.unit(182, "cm"),
  43434. default: true
  43435. },
  43436. ]
  43437. ))
  43438. characterMakers.push(() => makeCharacter(
  43439. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43440. {
  43441. side: {
  43442. height: math.unit(6 + 6/12, "feet"),
  43443. weight: math.unit(1.5, "tons"),
  43444. name: "Side",
  43445. image: {
  43446. source: "./media/characters/zephyr/side.svg",
  43447. extra: 1433/586,
  43448. bottom: 109/1542
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(6 + 6/12, "feet"),
  43456. default: true
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43462. {
  43463. side: {
  43464. height: math.unit(1, "feet"),
  43465. name: "Side",
  43466. image: {
  43467. source: "./media/characters/vixye/side.svg",
  43468. extra: 632/541,
  43469. bottom: 0/632
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(1, "feet"),
  43477. default: true
  43478. },
  43479. {
  43480. name: "True",
  43481. height: math.unit(1e15, "multiverses")
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(8 + 2/12, "feet"),
  43490. weight: math.unit(650, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43494. extra: 1174/1137,
  43495. bottom: 82/1256
  43496. }
  43497. },
  43498. back: {
  43499. height: math.unit(8 + 2/12, "feet"),
  43500. weight: math.unit(650, "lb"),
  43501. name: "Back",
  43502. image: {
  43503. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43504. extra: 1204/1157,
  43505. bottom: 46/1250
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Wildform",
  43512. height: math.unit(8 + 2/12, "feet"),
  43513. default: true
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(18, "feet"),
  43522. name: "Front",
  43523. image: {
  43524. source: "./media/characters/cyphin/front.svg",
  43525. extra: 970/886,
  43526. bottom: 42/1012
  43527. }
  43528. },
  43529. back: {
  43530. height: math.unit(18, "feet"),
  43531. name: "Back",
  43532. image: {
  43533. source: "./media/characters/cyphin/back.svg",
  43534. extra: 1009/894,
  43535. bottom: 24/1033
  43536. }
  43537. },
  43538. head: {
  43539. height: math.unit(5.05, "feet"),
  43540. name: "Head",
  43541. image: {
  43542. source: "./media/characters/cyphin/head.svg"
  43543. }
  43544. },
  43545. tailbud: {
  43546. height: math.unit(5, "feet"),
  43547. name: "Tailbud",
  43548. image: {
  43549. source: "./media/characters/cyphin/tailbud.svg"
  43550. }
  43551. },
  43552. },
  43553. [
  43554. ]
  43555. ))
  43556. characterMakers.push(() => makeCharacter(
  43557. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43558. {
  43559. side: {
  43560. height: math.unit(10, "feet"),
  43561. weight: math.unit(6, "tons"),
  43562. name: "Side",
  43563. image: {
  43564. source: "./media/characters/raijin/side.svg",
  43565. extra: 1529/613,
  43566. bottom: 337/1866
  43567. }
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(10, "feet"),
  43574. default: true
  43575. },
  43576. ]
  43577. ))
  43578. characterMakers.push(() => makeCharacter(
  43579. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43580. {
  43581. side: {
  43582. height: math.unit(9, "feet"),
  43583. name: "Side",
  43584. image: {
  43585. source: "./media/characters/nilghais/side.svg",
  43586. extra: 1047/744,
  43587. bottom: 91/1138
  43588. }
  43589. },
  43590. head: {
  43591. height: math.unit(3.14, "feet"),
  43592. name: "Head",
  43593. image: {
  43594. source: "./media/characters/nilghais/head.svg"
  43595. }
  43596. },
  43597. mouth: {
  43598. height: math.unit(4.6, "feet"),
  43599. name: "Mouth",
  43600. image: {
  43601. source: "./media/characters/nilghais/mouth.svg"
  43602. }
  43603. },
  43604. wings: {
  43605. height: math.unit(24, "feet"),
  43606. name: "Wings",
  43607. image: {
  43608. source: "./media/characters/nilghais/wings.svg"
  43609. }
  43610. },
  43611. ass: {
  43612. height: math.unit(6.12, "feet"),
  43613. name: "Ass",
  43614. image: {
  43615. source: "./media/characters/nilghais/ass.svg"
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(9, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43629. {
  43630. regular: {
  43631. height: math.unit(16 + 2/12, "feet"),
  43632. weight: math.unit(2300, "lb"),
  43633. name: "Regular",
  43634. image: {
  43635. source: "./media/characters/zolgar/regular.svg",
  43636. extra: 1246/1004,
  43637. bottom: 124/1370
  43638. }
  43639. },
  43640. boxers: {
  43641. height: math.unit(16 + 2/12, "feet"),
  43642. weight: math.unit(2300, "lb"),
  43643. name: "Boxers",
  43644. image: {
  43645. source: "./media/characters/zolgar/boxers.svg",
  43646. extra: 1246/1004,
  43647. bottom: 124/1370
  43648. }
  43649. },
  43650. armored: {
  43651. height: math.unit(16 + 2/12, "feet"),
  43652. weight: math.unit(2300, "lb"),
  43653. name: "Armored",
  43654. image: {
  43655. source: "./media/characters/zolgar/armored.svg",
  43656. extra: 1246/1004,
  43657. bottom: 124/1370
  43658. }
  43659. },
  43660. goth: {
  43661. height: math.unit(16 + 2/12, "feet"),
  43662. weight: math.unit(2300, "lb"),
  43663. name: "Goth",
  43664. image: {
  43665. source: "./media/characters/zolgar/goth.svg",
  43666. extra: 1246/1004,
  43667. bottom: 124/1370
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Shrunken Down",
  43674. height: math.unit(9 + 2/12, "feet")
  43675. },
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(16 + 2/12, "feet"),
  43679. default: true
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43685. {
  43686. front: {
  43687. height: math.unit(6, "feet"),
  43688. weight: math.unit(168, "lb"),
  43689. name: "Front",
  43690. image: {
  43691. source: "./media/characters/luca/front.svg",
  43692. extra: 841/667,
  43693. bottom: 102/943
  43694. }
  43695. },
  43696. },
  43697. [
  43698. {
  43699. name: "Normal",
  43700. height: math.unit(6, "feet"),
  43701. default: true
  43702. },
  43703. ]
  43704. ))
  43705. characterMakers.push(() => makeCharacter(
  43706. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43707. {
  43708. side: {
  43709. height: math.unit(7 + 3/12, "feet"),
  43710. weight: math.unit(312, "lb"),
  43711. name: "Side",
  43712. image: {
  43713. source: "./media/characters/zezo/side.svg",
  43714. extra: 1192/1067,
  43715. bottom: 63/1255
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(7 + 3/12, "feet"),
  43723. default: true
  43724. },
  43725. ]
  43726. ))
  43727. characterMakers.push(() => makeCharacter(
  43728. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43729. {
  43730. front: {
  43731. height: math.unit(5 + 5/12, "feet"),
  43732. weight: math.unit(170, "lb"),
  43733. name: "Front",
  43734. image: {
  43735. source: "./media/characters/mayso/front.svg",
  43736. extra: 1215/1108,
  43737. bottom: 16/1231
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Normal",
  43744. height: math.unit(5 + 5/12, "feet"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(4 + 3/12, "feet"),
  43754. weight: math.unit(80, "lb"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/hess/front.svg",
  43758. extra: 1200/1123,
  43759. bottom: 16/1216
  43760. }
  43761. },
  43762. },
  43763. [
  43764. {
  43765. name: "Normal",
  43766. height: math.unit(4 + 3/12, "feet"),
  43767. default: true
  43768. },
  43769. ]
  43770. ))
  43771. characterMakers.push(() => makeCharacter(
  43772. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43773. {
  43774. front: {
  43775. height: math.unit(1.9, "meters"),
  43776. name: "Front",
  43777. image: {
  43778. source: "./media/characters/ashgar/front.svg",
  43779. extra: 1177/1146,
  43780. bottom: 99/1276
  43781. }
  43782. },
  43783. back: {
  43784. height: math.unit(1.9, "meters"),
  43785. name: "Back",
  43786. image: {
  43787. source: "./media/characters/ashgar/back.svg",
  43788. extra: 1201/1183,
  43789. bottom: 53/1254
  43790. }
  43791. },
  43792. feral: {
  43793. height: math.unit(1.4, "meters"),
  43794. name: "Feral",
  43795. image: {
  43796. source: "./media/characters/ashgar/feral.svg",
  43797. extra: 370/345,
  43798. bottom: 45/415
  43799. }
  43800. },
  43801. },
  43802. [
  43803. {
  43804. name: "Normal",
  43805. height: math.unit(1.9, "meters"),
  43806. default: true
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43812. {
  43813. regular: {
  43814. height: math.unit(6, "feet"),
  43815. weight: math.unit(220, "lb"),
  43816. name: "Regular",
  43817. image: {
  43818. source: "./media/characters/phillip/regular.svg",
  43819. extra: 1373/1277,
  43820. bottom: 75/1448
  43821. }
  43822. },
  43823. dressed: {
  43824. height: math.unit(6, "feet"),
  43825. weight: math.unit(220, "lb"),
  43826. name: "Dressed",
  43827. image: {
  43828. source: "./media/characters/phillip/dressed.svg",
  43829. extra: 1373/1277,
  43830. bottom: 75/1448
  43831. }
  43832. },
  43833. paw: {
  43834. height: math.unit(1.44, "feet"),
  43835. name: "Paw",
  43836. image: {
  43837. source: "./media/characters/phillip/paw.svg"
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal",
  43844. height: math.unit(6, "feet"),
  43845. default: true
  43846. },
  43847. ]
  43848. ))
  43849. characterMakers.push(() => makeCharacter(
  43850. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43851. {
  43852. side: {
  43853. height: math.unit(42, "feet"),
  43854. name: "Side",
  43855. image: {
  43856. source: "./media/characters/uvula/side.svg",
  43857. extra: 683/586,
  43858. bottom: 60/743
  43859. }
  43860. },
  43861. front: {
  43862. height: math.unit(42, "feet"),
  43863. name: "Front",
  43864. image: {
  43865. source: "./media/characters/uvula/front.svg",
  43866. extra: 705/613,
  43867. bottom: 54/759
  43868. }
  43869. },
  43870. maw: {
  43871. height: math.unit(23.5, "feet"),
  43872. name: "Maw",
  43873. image: {
  43874. source: "./media/characters/uvula/maw.svg"
  43875. }
  43876. },
  43877. },
  43878. [
  43879. {
  43880. name: "Original Size",
  43881. height: math.unit(14, "inches")
  43882. },
  43883. {
  43884. name: "Human Size",
  43885. height: math.unit(6, "feet")
  43886. },
  43887. {
  43888. name: "Big",
  43889. height: math.unit(42, "feet"),
  43890. default: true
  43891. },
  43892. {
  43893. name: "Bigger",
  43894. height: math.unit(100, "feet")
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(5 + 11/12, "feet"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/lannah/front.svg",
  43906. extra: 1208/1113,
  43907. bottom: 97/1305
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(5 + 11/12, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43921. {
  43922. front: {
  43923. height: math.unit(6 + 3/12, "feet"),
  43924. weight: math.unit(3.5, "tons"),
  43925. name: "Front",
  43926. image: {
  43927. source: "./media/characters/emberflame/front.svg",
  43928. extra: 1198/672,
  43929. bottom: 82/1280
  43930. }
  43931. },
  43932. side: {
  43933. height: math.unit(6 + 3/12, "feet"),
  43934. weight: math.unit(3.5, "tons"),
  43935. name: "Side",
  43936. image: {
  43937. source: "./media/characters/emberflame/side.svg",
  43938. extra: 938/527,
  43939. bottom: 56/994
  43940. }
  43941. },
  43942. },
  43943. [
  43944. {
  43945. name: "Normal",
  43946. height: math.unit(6 + 3/12, "feet"),
  43947. default: true
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43953. {
  43954. side: {
  43955. height: math.unit(17.5, "feet"),
  43956. weight: math.unit(35, "tons"),
  43957. name: "Side",
  43958. image: {
  43959. source: "./media/characters/sophie-ambrose/side.svg",
  43960. extra: 1573/1242,
  43961. bottom: 71/1644
  43962. }
  43963. },
  43964. maw: {
  43965. height: math.unit(7.4, "feet"),
  43966. name: "Maw",
  43967. image: {
  43968. source: "./media/characters/sophie-ambrose/maw.svg"
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(17.5, "feet"),
  43976. default: true
  43977. },
  43978. ]
  43979. ))
  43980. characterMakers.push(() => makeCharacter(
  43981. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43982. {
  43983. front: {
  43984. height: math.unit(280, "feet"),
  43985. weight: math.unit(550, "tons"),
  43986. name: "Front",
  43987. image: {
  43988. source: "./media/characters/king-mugi/front.svg",
  43989. extra: 1102/947,
  43990. bottom: 104/1206
  43991. }
  43992. },
  43993. },
  43994. [
  43995. {
  43996. name: "King Mugi",
  43997. height: math.unit(280, "feet"),
  43998. default: true
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44004. {
  44005. front: {
  44006. height: math.unit(64, "meters"),
  44007. name: "Front",
  44008. image: {
  44009. source: "./media/characters/nova-fox/front.svg",
  44010. extra: 1310/1246,
  44011. bottom: 65/1375
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Macro",
  44018. height: math.unit(64, "meters"),
  44019. default: true
  44020. },
  44021. ]
  44022. ))
  44023. characterMakers.push(() => makeCharacter(
  44024. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44025. {
  44026. front: {
  44027. height: math.unit(6 + 3/12, "feet"),
  44028. weight: math.unit(170, "lb"),
  44029. name: "Front",
  44030. image: {
  44031. source: "./media/characters/sam-bat/front.svg",
  44032. extra: 1601/1411,
  44033. bottom: 125/1726
  44034. }
  44035. },
  44036. back: {
  44037. height: math.unit(6 + 3/12, "feet"),
  44038. weight: math.unit(170, "lb"),
  44039. name: "Back",
  44040. image: {
  44041. source: "./media/characters/sam-bat/back.svg",
  44042. extra: 1577/1405,
  44043. bottom: 58/1635
  44044. }
  44045. },
  44046. },
  44047. [
  44048. {
  44049. name: "Normal",
  44050. height: math.unit(6 + 3/12, "feet"),
  44051. default: true
  44052. },
  44053. ]
  44054. ))
  44055. characterMakers.push(() => makeCharacter(
  44056. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44057. {
  44058. front: {
  44059. height: math.unit(59, "feet"),
  44060. weight: math.unit(40000, "lb"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/inari/front.svg",
  44064. extra: 1884/1350,
  44065. bottom: 95/1979
  44066. }
  44067. },
  44068. },
  44069. [
  44070. {
  44071. name: "Gigantamax",
  44072. height: math.unit(59, "feet"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44079. {
  44080. front: {
  44081. height: math.unit(5 + 8/12, "feet"),
  44082. name: "Front",
  44083. image: {
  44084. source: "./media/characters/elizabeth/front.svg",
  44085. extra: 1395/1298,
  44086. bottom: 54/1449
  44087. }
  44088. },
  44089. mouth: {
  44090. height: math.unit(1.97, "feet"),
  44091. name: "Mouth",
  44092. image: {
  44093. source: "./media/characters/elizabeth/mouth.svg"
  44094. }
  44095. },
  44096. foot: {
  44097. height: math.unit(1.17, "feet"),
  44098. name: "Foot",
  44099. image: {
  44100. source: "./media/characters/elizabeth/foot.svg"
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(5 + 8/12, "feet"),
  44108. default: true
  44109. },
  44110. {
  44111. name: "Minimacro",
  44112. height: math.unit(18, "feet")
  44113. },
  44114. {
  44115. name: "Macro",
  44116. height: math.unit(180, "feet")
  44117. },
  44118. ]
  44119. ))
  44120. characterMakers.push(() => makeCharacter(
  44121. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44122. {
  44123. front: {
  44124. height: math.unit(5 + 2/12, "feet"),
  44125. name: "Front",
  44126. image: {
  44127. source: "./media/characters/october-gossamer/front.svg",
  44128. extra: 505/454,
  44129. bottom: 7/512
  44130. }
  44131. },
  44132. back: {
  44133. height: math.unit(5 + 2/12, "feet"),
  44134. name: "Back",
  44135. image: {
  44136. source: "./media/characters/october-gossamer/back.svg",
  44137. extra: 501/454,
  44138. bottom: 11/512
  44139. }
  44140. },
  44141. },
  44142. [
  44143. {
  44144. name: "Normal",
  44145. height: math.unit(5 + 2/12, "feet"),
  44146. default: true
  44147. },
  44148. ]
  44149. ))
  44150. characterMakers.push(() => makeCharacter(
  44151. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44152. {
  44153. front: {
  44154. height: math.unit(5, "feet"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/epiglottis/front.svg",
  44158. extra: 923/849,
  44159. bottom: 17/940
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Original Size",
  44166. height: math.unit(10, "inches")
  44167. },
  44168. {
  44169. name: "Human Size",
  44170. height: math.unit(5, "feet"),
  44171. default: true
  44172. },
  44173. {
  44174. name: "Big",
  44175. height: math.unit(25, "feet")
  44176. },
  44177. {
  44178. name: "Bigger",
  44179. height: math.unit(50, "feet")
  44180. },
  44181. {
  44182. name: "oh lawd",
  44183. height: math.unit(75, "feet")
  44184. },
  44185. ]
  44186. ))
  44187. characterMakers.push(() => makeCharacter(
  44188. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44189. {
  44190. front: {
  44191. height: math.unit(2 + 4/12, "feet"),
  44192. weight: math.unit(60, "lb"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/lerm/front.svg",
  44196. extra: 796/790,
  44197. bottom: 79/875
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(2 + 4/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44211. {
  44212. front: {
  44213. height: math.unit(5.5, "feet"),
  44214. weight: math.unit(130, "lb"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/xena-nebadon/front.svg",
  44218. extra: 1828/1730,
  44219. bottom: 79/1907
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Tiny Puppy",
  44226. height: math.unit(3, "inches")
  44227. },
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(5.5, "feet"),
  44231. default: true
  44232. },
  44233. {
  44234. name: "Lotta Lady",
  44235. height: math.unit(12, "feet")
  44236. },
  44237. {
  44238. name: "Pretty Big",
  44239. height: math.unit(100, "feet")
  44240. },
  44241. {
  44242. name: "Big",
  44243. height: math.unit(500, "feet")
  44244. },
  44245. {
  44246. name: "Skyscraper Toys",
  44247. height: math.unit(2500, "feet")
  44248. },
  44249. {
  44250. name: "Plane Catcher",
  44251. height: math.unit(8, "miles")
  44252. },
  44253. {
  44254. name: "Planet Toys",
  44255. height: math.unit(15, "earths")
  44256. },
  44257. {
  44258. name: "Stardust",
  44259. height: math.unit(0.25, "galaxies")
  44260. },
  44261. {
  44262. name: "Snacks",
  44263. height: math.unit(70, "universes")
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44269. {
  44270. front: {
  44271. height: math.unit(1.6, "meters"),
  44272. weight: math.unit(60, "kg"),
  44273. name: "Front",
  44274. image: {
  44275. source: "./media/characters/bounty/front.svg",
  44276. extra: 1426/1308,
  44277. bottom: 15/1441
  44278. }
  44279. },
  44280. back: {
  44281. height: math.unit(1.6, "meters"),
  44282. weight: math.unit(60, "kg"),
  44283. name: "Back",
  44284. image: {
  44285. source: "./media/characters/bounty/back.svg",
  44286. extra: 1417/1307,
  44287. bottom: 8/1425
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(1.6, "meters"),
  44295. default: true
  44296. },
  44297. {
  44298. name: "Macro",
  44299. height: math.unit(300, "meters")
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44305. {
  44306. front: {
  44307. height: math.unit(2 + 8/12, "feet"),
  44308. weight: math.unit(15, "lb"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/mochi/front.svg",
  44312. extra: 1022/852,
  44313. bottom: 435/1457
  44314. }
  44315. },
  44316. back: {
  44317. height: math.unit(2 + 8/12, "feet"),
  44318. weight: math.unit(15, "lb"),
  44319. name: "Back",
  44320. image: {
  44321. source: "./media/characters/mochi/back.svg",
  44322. extra: 1335/1119,
  44323. bottom: 39/1374
  44324. }
  44325. },
  44326. bird: {
  44327. height: math.unit(2 + 8/12, "feet"),
  44328. weight: math.unit(15, "lb"),
  44329. name: "Bird",
  44330. image: {
  44331. source: "./media/characters/mochi/bird.svg",
  44332. extra: 1251/1113,
  44333. bottom: 178/1429
  44334. }
  44335. },
  44336. kaiju: {
  44337. height: math.unit(154, "feet"),
  44338. weight: math.unit(1e7, "lb"),
  44339. name: "Kaiju",
  44340. image: {
  44341. source: "./media/characters/mochi/kaiju.svg",
  44342. extra: 460/324,
  44343. bottom: 40/500
  44344. }
  44345. },
  44346. head: {
  44347. height: math.unit(1.21, "feet"),
  44348. name: "Head",
  44349. image: {
  44350. source: "./media/characters/mochi/head.svg"
  44351. }
  44352. },
  44353. alternateTail: {
  44354. height: math.unit(2 + 8/12, "feet"),
  44355. weight: math.unit(45, "lb"),
  44356. name: "Alternate Tail",
  44357. image: {
  44358. source: "./media/characters/mochi/alternate-tail.svg",
  44359. extra: 139/76,
  44360. bottom: 45/184
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Micro",
  44367. height: math.unit(2, "inches")
  44368. },
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(2 + 8/12, "feet"),
  44372. default: true
  44373. },
  44374. {
  44375. name: "Macro",
  44376. height: math.unit(106, "feet")
  44377. },
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(5.67, "feet"),
  44385. weight: math.unit(135, "lb"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/sarel/front.svg",
  44389. extra: 865/788,
  44390. bottom: 97/962
  44391. }
  44392. },
  44393. back: {
  44394. height: math.unit(5.67, "feet"),
  44395. weight: math.unit(135, "lb"),
  44396. name: "Back",
  44397. image: {
  44398. source: "./media/characters/sarel/back.svg",
  44399. extra: 857/777,
  44400. bottom: 32/889
  44401. }
  44402. },
  44403. chozoan: {
  44404. height: math.unit(5.67, "feet"),
  44405. weight: math.unit(135, "lb"),
  44406. name: "Chozoan",
  44407. image: {
  44408. source: "./media/characters/sarel/chozoan.svg",
  44409. extra: 865/788,
  44410. bottom: 97/962
  44411. }
  44412. },
  44413. current: {
  44414. height: math.unit(5.67, "feet"),
  44415. weight: math.unit(135, "lb"),
  44416. name: "Current",
  44417. image: {
  44418. source: "./media/characters/sarel/current.svg",
  44419. extra: 865/788,
  44420. bottom: 97/962
  44421. }
  44422. },
  44423. head: {
  44424. height: math.unit(1.77, "feet"),
  44425. name: "Head",
  44426. image: {
  44427. source: "./media/characters/sarel/head.svg"
  44428. }
  44429. },
  44430. claws: {
  44431. height: math.unit(1.8, "feet"),
  44432. name: "Claws",
  44433. image: {
  44434. source: "./media/characters/sarel/claws.svg"
  44435. }
  44436. },
  44437. clawsAlt: {
  44438. height: math.unit(1.8, "feet"),
  44439. name: "Claws-alt",
  44440. image: {
  44441. source: "./media/characters/sarel/claws-alt.svg"
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Normal",
  44448. height: math.unit(5.67, "feet"),
  44449. default: true
  44450. },
  44451. ]
  44452. ))
  44453. characterMakers.push(() => makeCharacter(
  44454. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44455. {
  44456. front: {
  44457. height: math.unit(5500, "feet"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/alyonia/front.svg",
  44461. extra: 1200/1135,
  44462. bottom: 29/1229
  44463. }
  44464. },
  44465. back: {
  44466. height: math.unit(5500, "feet"),
  44467. name: "Back",
  44468. image: {
  44469. source: "./media/characters/alyonia/back.svg",
  44470. extra: 1205/1138,
  44471. bottom: 10/1215
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Small",
  44478. height: math.unit(10, "feet")
  44479. },
  44480. {
  44481. name: "Macro",
  44482. height: math.unit(500, "feet")
  44483. },
  44484. {
  44485. name: "Mega Macro",
  44486. height: math.unit(5500, "feet"),
  44487. default: true
  44488. },
  44489. {
  44490. name: "Mega Macro+",
  44491. height: math.unit(500000, "feet")
  44492. },
  44493. {
  44494. name: "Giga Macro",
  44495. height: math.unit(3000, "miles")
  44496. },
  44497. {
  44498. name: "Tera Macro",
  44499. height: math.unit(2.8e6, "miles")
  44500. },
  44501. {
  44502. name: "Galactic",
  44503. height: math.unit(120000, "lightyears")
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44509. {
  44510. werewolf: {
  44511. height: math.unit(8, "feet"),
  44512. weight: math.unit(425, "lb"),
  44513. name: "Werewolf",
  44514. image: {
  44515. source: "./media/characters/autumn/werewolf.svg",
  44516. extra: 2154/2031,
  44517. bottom: 160/2314
  44518. }
  44519. },
  44520. human: {
  44521. height: math.unit(5 + 8/12, "feet"),
  44522. weight: math.unit(150, "lb"),
  44523. name: "Human",
  44524. image: {
  44525. source: "./media/characters/autumn/human.svg",
  44526. extra: 1200/1149,
  44527. bottom: 30/1230
  44528. }
  44529. },
  44530. },
  44531. [
  44532. {
  44533. name: "Normal",
  44534. height: math.unit(8, "feet"),
  44535. default: true
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(8 + 5/12, "feet"),
  44544. weight: math.unit(825, "lb"),
  44545. name: "Front",
  44546. image: {
  44547. source: "./media/characters/cobalt-charizard/front.svg",
  44548. extra: 1268/1155,
  44549. bottom: 122/1390
  44550. }
  44551. },
  44552. side: {
  44553. height: math.unit(8 + 5/12, "feet"),
  44554. weight: math.unit(825, "lb"),
  44555. name: "Side",
  44556. image: {
  44557. source: "./media/characters/cobalt-charizard/side.svg",
  44558. extra: 1348/1257,
  44559. bottom: 58/1406
  44560. }
  44561. },
  44562. gMax: {
  44563. height: math.unit(134 + 11/12, "feet"),
  44564. name: "G-Max",
  44565. image: {
  44566. source: "./media/characters/cobalt-charizard/g-max.svg",
  44567. extra: 1835/1541,
  44568. bottom: 151/1986
  44569. }
  44570. },
  44571. },
  44572. [
  44573. {
  44574. name: "Normal",
  44575. height: math.unit(8 + 5/12, "feet"),
  44576. default: true
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44582. {
  44583. front: {
  44584. height: math.unit(6 + 3/12, "feet"),
  44585. weight: math.unit(210, "lb"),
  44586. name: "Front",
  44587. image: {
  44588. source: "./media/characters/stella/front.svg",
  44589. extra: 3549/3335,
  44590. bottom: 51/3600
  44591. }
  44592. },
  44593. },
  44594. [
  44595. {
  44596. name: "Normal",
  44597. height: math.unit(6 + 3/12, "feet"),
  44598. default: true
  44599. },
  44600. ]
  44601. ))
  44602. characterMakers.push(() => makeCharacter(
  44603. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44604. {
  44605. front: {
  44606. height: math.unit(5, "feet"),
  44607. weight: math.unit(90, "lb"),
  44608. name: "Front",
  44609. image: {
  44610. source: "./media/characters/riley-bishop/front.svg",
  44611. extra: 1450/1428,
  44612. bottom: 152/1602
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(5, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44626. {
  44627. side: {
  44628. height: math.unit(8 + 2/12, "feet"),
  44629. weight: math.unit(500, "kg"),
  44630. name: "Side",
  44631. image: {
  44632. source: "./media/characters/theo-arcanine/side.svg",
  44633. extra: 1342/1074,
  44634. bottom: 111/1453
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(8 + 2/12, "feet"),
  44642. default: true
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(4, "feet"),
  44651. name: "Front",
  44652. image: {
  44653. source: "./media/characters/kali/front.svg",
  44654. extra: 1921/1357,
  44655. bottom: 70/1991
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(4, "feet"),
  44663. default: true
  44664. },
  44665. {
  44666. name: "Macro",
  44667. height: math.unit(32, "meters")
  44668. },
  44669. {
  44670. name: "Macro+",
  44671. height: math.unit(150, "meters")
  44672. },
  44673. {
  44674. name: "Megamacro",
  44675. height: math.unit(7500, "meters")
  44676. },
  44677. {
  44678. name: "Megamacro+",
  44679. height: math.unit(80, "kilometers")
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44685. {
  44686. side: {
  44687. height: math.unit(5 + 11/12, "feet"),
  44688. weight: math.unit(236, "lb"),
  44689. name: "Side",
  44690. image: {
  44691. source: "./media/characters/gapp/side.svg",
  44692. extra: 775/340,
  44693. bottom: 58/833
  44694. }
  44695. },
  44696. mouth: {
  44697. height: math.unit(2.98, "feet"),
  44698. name: "Mouth",
  44699. image: {
  44700. source: "./media/characters/gapp/mouth.svg"
  44701. }
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(5 + 1/12, "feet"),
  44708. default: true
  44709. },
  44710. ]
  44711. ))
  44712. characterMakers.push(() => makeCharacter(
  44713. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44714. {
  44715. front: {
  44716. height: math.unit(6, "feet"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/persephone/front.svg",
  44720. extra: 1895/1717,
  44721. bottom: 96/1991
  44722. }
  44723. },
  44724. back: {
  44725. height: math.unit(6, "feet"),
  44726. name: "Back",
  44727. image: {
  44728. source: "./media/characters/persephone/back.svg",
  44729. extra: 1868/1679,
  44730. bottom: 26/1894
  44731. }
  44732. },
  44733. casual: {
  44734. height: math.unit(6, "feet"),
  44735. name: "Casual",
  44736. image: {
  44737. source: "./media/characters/persephone/casual.svg",
  44738. extra: 1713/1541,
  44739. bottom: 76/1789
  44740. }
  44741. },
  44742. },
  44743. [
  44744. {
  44745. name: "Human Size",
  44746. height: math.unit(6, "feet")
  44747. },
  44748. {
  44749. name: "Big Steppy",
  44750. height: math.unit(600, "meters"),
  44751. default: true
  44752. },
  44753. {
  44754. name: "Galaxy Brain",
  44755. height: math.unit(1, "zettameter")
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(1.85, "meters"),
  44764. name: "Front",
  44765. image: {
  44766. source: "./media/characters/riley-foxthing/front.svg",
  44767. extra: 1495/1354,
  44768. bottom: 122/1617
  44769. }
  44770. },
  44771. frontAlt: {
  44772. height: math.unit(1.85, "meters"),
  44773. name: "Front (Alt)",
  44774. image: {
  44775. source: "./media/characters/riley-foxthing/front-alt.svg",
  44776. extra: 1572/1389,
  44777. bottom: 116/1688
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal Sized",
  44784. height: math.unit(1.85, "meters"),
  44785. default: true
  44786. },
  44787. {
  44788. name: "Quite Sizable",
  44789. height: math.unit(5, "meters")
  44790. },
  44791. {
  44792. name: "Rather Large",
  44793. height: math.unit(20, "meters")
  44794. },
  44795. {
  44796. name: "Macro",
  44797. height: math.unit(450, "meters")
  44798. },
  44799. {
  44800. name: "Giga",
  44801. height: math.unit(5, "km")
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(6, "feet"),
  44810. weight: math.unit(200, "lb"),
  44811. name: "Front",
  44812. image: {
  44813. source: "./media/characters/blizzard/front.svg",
  44814. extra: 1136/990,
  44815. bottom: 136/1272
  44816. }
  44817. },
  44818. back: {
  44819. height: math.unit(6, "feet"),
  44820. weight: math.unit(200, "lb"),
  44821. name: "Back",
  44822. image: {
  44823. source: "./media/characters/blizzard/back.svg",
  44824. extra: 1175/1034,
  44825. bottom: 97/1272
  44826. }
  44827. },
  44828. sitting: {
  44829. height: math.unit(3.725, "feet"),
  44830. weight: math.unit(200, "lb"),
  44831. name: "Sitting",
  44832. image: {
  44833. source: "./media/characters/blizzard/sitting.svg",
  44834. extra: 581/485,
  44835. bottom: 90/671
  44836. }
  44837. },
  44838. frontWizard: {
  44839. height: math.unit(7.9, "feet"),
  44840. weight: math.unit(200, "lb"),
  44841. name: "Front (Wizard)",
  44842. image: {
  44843. source: "./media/characters/blizzard/front-wizard.svg"
  44844. }
  44845. },
  44846. backWizard: {
  44847. height: math.unit(7.9, "feet"),
  44848. weight: math.unit(200, "lb"),
  44849. name: "Back (Wizard)",
  44850. image: {
  44851. source: "./media/characters/blizzard/back-wizard.svg"
  44852. }
  44853. },
  44854. frontNsfw: {
  44855. height: math.unit(6, "feet"),
  44856. weight: math.unit(200, "lb"),
  44857. name: "Front (NSFW)",
  44858. image: {
  44859. source: "./media/characters/blizzard/front-nsfw.svg",
  44860. extra: 1136/990,
  44861. bottom: 136/1272
  44862. }
  44863. },
  44864. backNsfw: {
  44865. height: math.unit(6, "feet"),
  44866. weight: math.unit(200, "lb"),
  44867. name: "Back (NSFW)",
  44868. image: {
  44869. source: "./media/characters/blizzard/back-nsfw.svg",
  44870. extra: 1175/1034,
  44871. bottom: 97/1272
  44872. }
  44873. },
  44874. sittingNsfw: {
  44875. height: math.unit(3.725, "feet"),
  44876. weight: math.unit(200, "lb"),
  44877. name: "Sitting (NSFW)",
  44878. image: {
  44879. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44880. extra: 581/485,
  44881. bottom: 90/671
  44882. }
  44883. },
  44884. wizardFrontNsfw: {
  44885. height: math.unit(7.9, "feet"),
  44886. weight: math.unit(200, "lb"),
  44887. name: "Wizard (Front, NSFW)",
  44888. image: {
  44889. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Normal",
  44896. height: math.unit(6, "feet"),
  44897. default: true
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44903. {
  44904. front: {
  44905. height: math.unit(5 + 2/12, "feet"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/lumi/front.svg",
  44909. extra: 1328/1268,
  44910. bottom: 103/1431
  44911. }
  44912. },
  44913. back: {
  44914. height: math.unit(5 + 2/12, "feet"),
  44915. name: "Back",
  44916. image: {
  44917. source: "./media/characters/lumi/back.svg",
  44918. extra: 1381/1327,
  44919. bottom: 43/1424
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(5 + 2/12, "feet"),
  44927. default: true
  44928. },
  44929. ]
  44930. ))
  44931. characterMakers.push(() => makeCharacter(
  44932. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44933. {
  44934. front: {
  44935. height: math.unit(5 + 9/12, "feet"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/aliya-cotton/front.svg",
  44939. extra: 577/564,
  44940. bottom: 29/606
  44941. }
  44942. },
  44943. },
  44944. [
  44945. {
  44946. name: "Normal",
  44947. height: math.unit(5 + 9/12, "feet"),
  44948. default: true
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(2.7, "meters"),
  44957. weight: math.unit(25000, "lb"),
  44958. name: "Front",
  44959. image: {
  44960. source: "./media/characters/noah-luxray/front.svg",
  44961. extra: 1644/825,
  44962. bottom: 339/1983
  44963. }
  44964. },
  44965. side: {
  44966. height: math.unit(2.97, "meters"),
  44967. weight: math.unit(25000, "lb"),
  44968. name: "Side",
  44969. image: {
  44970. source: "./media/characters/noah-luxray/side.svg",
  44971. extra: 1319/650,
  44972. bottom: 163/1482
  44973. }
  44974. },
  44975. dick: {
  44976. height: math.unit(7.4, "feet"),
  44977. weight: math.unit(2500, "lb"),
  44978. name: "Dick",
  44979. image: {
  44980. source: "./media/characters/noah-luxray/dick.svg"
  44981. }
  44982. },
  44983. dickAlt: {
  44984. height: math.unit(10.83, "feet"),
  44985. weight: math.unit(2500, "lb"),
  44986. name: "Dick-alt",
  44987. image: {
  44988. source: "./media/characters/noah-luxray/dick-alt.svg"
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "BIG",
  44995. height: math.unit(2.7, "meters"),
  44996. default: true
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45002. {
  45003. standing: {
  45004. height: math.unit(183, "cm"),
  45005. weight: math.unit(68, "kg"),
  45006. name: "Standing",
  45007. image: {
  45008. source: "./media/characters/arion/standing.svg",
  45009. extra: 1869/1807,
  45010. bottom: 93/1962
  45011. }
  45012. },
  45013. reclining: {
  45014. height: math.unit(70.5, "cm"),
  45015. weight: math.unit(68, "lb"),
  45016. name: "Reclining",
  45017. image: {
  45018. source: "./media/characters/arion/reclining.svg",
  45019. extra: 937/870,
  45020. bottom: 63/1000
  45021. }
  45022. },
  45023. },
  45024. [
  45025. {
  45026. name: "Colossus Size, Low",
  45027. height: math.unit(33, "meters"),
  45028. default: true
  45029. },
  45030. {
  45031. name: "Colossus Size, Mid",
  45032. height: math.unit(52, "meters")
  45033. },
  45034. {
  45035. name: "Colossus Size, High",
  45036. height: math.unit(60, "meters")
  45037. },
  45038. {
  45039. name: "Titan Size, Low",
  45040. height: math.unit(91, "meters"),
  45041. },
  45042. {
  45043. name: "Titan Size, Mid",
  45044. height: math.unit(122, "meters")
  45045. },
  45046. {
  45047. name: "Titan Size, High",
  45048. height: math.unit(162, "meters")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45054. {
  45055. front: {
  45056. height: math.unit(53, "meters"),
  45057. name: "Front",
  45058. image: {
  45059. source: "./media/characters/stellar-marbey/front.svg",
  45060. extra: 1913/1805,
  45061. bottom: 92/2005
  45062. }
  45063. },
  45064. back: {
  45065. height: math.unit(53, "meters"),
  45066. name: "Back",
  45067. image: {
  45068. source: "./media/characters/stellar-marbey/back.svg",
  45069. extra: 1960/1851,
  45070. bottom: 28/1988
  45071. }
  45072. },
  45073. mouth: {
  45074. height: math.unit(3.5, "meters"),
  45075. name: "Mouth",
  45076. image: {
  45077. source: "./media/characters/stellar-marbey/mouth.svg"
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Macro",
  45084. height: math.unit(53, "meters"),
  45085. default: true
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45091. {
  45092. front: {
  45093. height: math.unit(8 + 1/12, "feet"),
  45094. weight: math.unit(233, "lb"),
  45095. name: "Front",
  45096. image: {
  45097. source: "./media/characters/matsu/front.svg",
  45098. extra: 832/772,
  45099. bottom: 40/872
  45100. }
  45101. },
  45102. back: {
  45103. height: math.unit(8 + 1/12, "feet"),
  45104. weight: math.unit(233, "lb"),
  45105. name: "Back",
  45106. image: {
  45107. source: "./media/characters/matsu/back.svg",
  45108. extra: 839/780,
  45109. bottom: 47/886
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Normal",
  45116. height: math.unit(8 + 1/12, "feet"),
  45117. default: true
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45123. {
  45124. front: {
  45125. height: math.unit(4, "feet"),
  45126. weight: math.unit(148, "lb"),
  45127. name: "Front",
  45128. image: {
  45129. source: "./media/characters/thiz/front.svg",
  45130. extra: 1913/1748,
  45131. bottom: 62/1975
  45132. }
  45133. },
  45134. },
  45135. [
  45136. {
  45137. name: "Normal",
  45138. height: math.unit(4, "feet"),
  45139. default: true
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(7 + 6/12, "feet"),
  45148. weight: math.unit(267, "lb"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/marcel/front.svg",
  45152. extra: 1221/1096,
  45153. bottom: 76/1297
  45154. }
  45155. },
  45156. },
  45157. [
  45158. {
  45159. name: "Normal",
  45160. height: math.unit(7 + 6/12, "feet"),
  45161. default: true
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45167. {
  45168. side: {
  45169. height: math.unit(42, "meters"),
  45170. name: "Side",
  45171. image: {
  45172. source: "./media/characters/flake/side.svg",
  45173. extra: 1525/1306,
  45174. bottom: 209/1734
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(42, "meters"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45188. {
  45189. dressed: {
  45190. height: math.unit(6 + 4/12, "feet"),
  45191. weight: math.unit(520, "lb"),
  45192. name: "Dressed",
  45193. image: {
  45194. source: "./media/characters/someonne/dressed.svg",
  45195. extra: 1020/1010,
  45196. bottom: 178/1198
  45197. }
  45198. },
  45199. undressed: {
  45200. height: math.unit(6 + 4/12, "feet"),
  45201. weight: math.unit(520, "lb"),
  45202. name: "Undressed",
  45203. image: {
  45204. source: "./media/characters/someonne/undressed.svg",
  45205. extra: 1019/1014,
  45206. bottom: 169/1188
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(6 + 4/12, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45220. {
  45221. front: {
  45222. height: math.unit(3, "feet"),
  45223. weight: math.unit(30, "lb"),
  45224. name: "Front",
  45225. image: {
  45226. source: "./media/characters/till/front.svg",
  45227. extra: 892/823,
  45228. bottom: 55/947
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(3, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(9 + 8/12, "feet"),
  45245. weight: math.unit(800, "lb"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/sydney-heki/front.svg",
  45249. extra: 1360/1300,
  45250. bottom: 22/1382
  45251. }
  45252. },
  45253. back: {
  45254. height: math.unit(9 + 8/12, "feet"),
  45255. weight: math.unit(800, "lb"),
  45256. name: "Back",
  45257. image: {
  45258. source: "./media/characters/sydney-heki/back.svg",
  45259. extra: 1356/1293,
  45260. bottom: 12/1368
  45261. }
  45262. },
  45263. frontDressed: {
  45264. height: math.unit(9 + 8/12, "feet"),
  45265. weight: math.unit(800, "lb"),
  45266. name: "Front-dressed",
  45267. image: {
  45268. source: "./media/characters/sydney-heki/front-dressed.svg",
  45269. extra: 1360/1300,
  45270. bottom: 22/1382
  45271. }
  45272. },
  45273. },
  45274. [
  45275. {
  45276. name: "Normal",
  45277. height: math.unit(9 + 8/12, "feet"),
  45278. default: true
  45279. },
  45280. {
  45281. name: "Macro",
  45282. height: math.unit(500, "feet")
  45283. },
  45284. {
  45285. name: "Megamacro",
  45286. height: math.unit(3.6, "miles")
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45292. {
  45293. front: {
  45294. height: math.unit(200, "cm"),
  45295. weight: math.unit(250, "lb"),
  45296. name: "Front",
  45297. image: {
  45298. source: "./media/characters/fowler-karlsson/front.svg",
  45299. extra: 897/845,
  45300. bottom: 123/1020
  45301. }
  45302. },
  45303. back: {
  45304. height: math.unit(200, "cm"),
  45305. weight: math.unit(250, "lb"),
  45306. name: "Back",
  45307. image: {
  45308. source: "./media/characters/fowler-karlsson/back.svg",
  45309. extra: 999/944,
  45310. bottom: 26/1025
  45311. }
  45312. },
  45313. dick: {
  45314. height: math.unit(1.92, "feet"),
  45315. weight: math.unit(150, "lb"),
  45316. name: "Dick",
  45317. image: {
  45318. source: "./media/characters/fowler-karlsson/dick.svg"
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(200, "cm"),
  45326. default: true
  45327. },
  45328. {
  45329. name: "Smaller Macro",
  45330. height: math.unit(90, "m")
  45331. },
  45332. {
  45333. name: "Macro",
  45334. height: math.unit(150, "m")
  45335. },
  45336. {
  45337. name: "Bigger Macro",
  45338. height: math.unit(300, "m")
  45339. },
  45340. ]
  45341. ))
  45342. characterMakers.push(() => makeCharacter(
  45343. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45344. {
  45345. side: {
  45346. height: math.unit(8 + 2/12, "feet"),
  45347. weight: math.unit(1, "tonne"),
  45348. name: "Side",
  45349. image: {
  45350. source: "./media/characters/rylide/side.svg",
  45351. extra: 1318/1034,
  45352. bottom: 106/1424
  45353. }
  45354. },
  45355. sitting: {
  45356. height: math.unit(303, "cm"),
  45357. weight: math.unit(1, "tonne"),
  45358. name: "Sitting",
  45359. image: {
  45360. source: "./media/characters/rylide/sitting.svg",
  45361. extra: 1303/1103,
  45362. bottom: 36/1339
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Normal",
  45369. height: math.unit(8 + 2/12, "feet"),
  45370. default: true
  45371. },
  45372. ]
  45373. ))
  45374. characterMakers.push(() => makeCharacter(
  45375. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45376. {
  45377. front: {
  45378. height: math.unit(5 + 10/12, "feet"),
  45379. weight: math.unit(160, "lb"),
  45380. name: "Front",
  45381. image: {
  45382. source: "./media/characters/pudask/front.svg",
  45383. extra: 1616/1590,
  45384. bottom: 161/1777
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Ferret Height",
  45391. height: math.unit(2 + 5/12, "feet")
  45392. },
  45393. {
  45394. name: "Canon Height",
  45395. height: math.unit(5 + 10/12, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(3 + 6/12, "feet"),
  45405. weight: math.unit(60, "lb"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/ramita/front.svg",
  45409. extra: 1402/1232,
  45410. bottom: 62/1464
  45411. }
  45412. },
  45413. dressed: {
  45414. height: math.unit(3 + 6/12, "feet"),
  45415. weight: math.unit(60, "lb"),
  45416. name: "Dressed",
  45417. image: {
  45418. source: "./media/characters/ramita/dressed.svg",
  45419. extra: 1534/1249,
  45420. bottom: 50/1584
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(3 + 6/12, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45434. {
  45435. front: {
  45436. height: math.unit(8, "feet"),
  45437. name: "Front",
  45438. image: {
  45439. source: "./media/characters/ark/front.svg",
  45440. extra: 772/693,
  45441. bottom: 45/817
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Normal",
  45448. height: math.unit(8, "feet"),
  45449. default: true
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(6, "feet"),
  45458. weight: math.unit(250, "lb"),
  45459. volume: math.unit(5/8, "gallons"),
  45460. name: "Front",
  45461. image: {
  45462. source: "./media/characters/ludwig-horn/front.svg",
  45463. extra: 1782/1635,
  45464. bottom: 96/1878
  45465. }
  45466. },
  45467. back: {
  45468. height: math.unit(6, "feet"),
  45469. weight: math.unit(250, "lb"),
  45470. volume: math.unit(5/8, "gallons"),
  45471. name: "Back",
  45472. image: {
  45473. source: "./media/characters/ludwig-horn/back.svg",
  45474. extra: 1874/1729,
  45475. bottom: 27/1901
  45476. }
  45477. },
  45478. dick: {
  45479. height: math.unit(1.05, "feet"),
  45480. weight: math.unit(15, "lb"),
  45481. volume: math.unit(5/8, "gallons"),
  45482. name: "Dick",
  45483. image: {
  45484. source: "./media/characters/ludwig-horn/dick.svg"
  45485. }
  45486. },
  45487. },
  45488. [
  45489. {
  45490. name: "Small",
  45491. height: math.unit(6, "feet")
  45492. },
  45493. {
  45494. name: "Typical",
  45495. height: math.unit(12, "feet"),
  45496. default: true
  45497. },
  45498. {
  45499. name: "Building",
  45500. height: math.unit(80, "feet")
  45501. },
  45502. {
  45503. name: "Town",
  45504. height: math.unit(800, "feet")
  45505. },
  45506. {
  45507. name: "Kingdom",
  45508. height: math.unit(80000, "feet")
  45509. },
  45510. {
  45511. name: "Planet",
  45512. height: math.unit(8000000, "feet")
  45513. },
  45514. {
  45515. name: "Universe",
  45516. height: math.unit(8000000000, "feet")
  45517. },
  45518. {
  45519. name: "Transcended",
  45520. height: math.unit(8e27, "feet")
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45526. {
  45527. front: {
  45528. height: math.unit(5, "feet"),
  45529. weight: math.unit(50, "kg"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/biot-avery/front.svg",
  45533. extra: 1295/1232,
  45534. bottom: 86/1381
  45535. }
  45536. },
  45537. },
  45538. [
  45539. {
  45540. name: "Normal",
  45541. height: math.unit(5, "feet"),
  45542. default: true
  45543. },
  45544. ]
  45545. ))
  45546. characterMakers.push(() => makeCharacter(
  45547. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45548. {
  45549. front: {
  45550. height: math.unit(6, "feet"),
  45551. name: "Front",
  45552. image: {
  45553. source: "./media/characters/kitsune-kiro/front.svg",
  45554. extra: 1270/1158,
  45555. bottom: 42/1312
  45556. }
  45557. },
  45558. frontAlt: {
  45559. height: math.unit(6, "feet"),
  45560. name: "Front-alt",
  45561. image: {
  45562. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45563. extra: 1130/1081,
  45564. bottom: 36/1166
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Smol",
  45571. height: math.unit(3, "feet")
  45572. },
  45573. {
  45574. name: "Normal",
  45575. height: math.unit(6, "feet"),
  45576. default: true
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45582. {
  45583. front: {
  45584. height: math.unit(6, "feet"),
  45585. weight: math.unit(125, "lb"),
  45586. name: "Front",
  45587. image: {
  45588. source: "./media/characters/jack-thatcher/front.svg",
  45589. extra: 1474/1370,
  45590. bottom: 26/1500
  45591. }
  45592. },
  45593. back: {
  45594. height: math.unit(6, "feet"),
  45595. weight: math.unit(125, "lb"),
  45596. name: "Back",
  45597. image: {
  45598. source: "./media/characters/jack-thatcher/back.svg",
  45599. extra: 1489/1384,
  45600. bottom: 18/1507
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Normal",
  45607. height: math.unit(6, "feet"),
  45608. default: true
  45609. },
  45610. {
  45611. name: "Macro",
  45612. height: math.unit(75, "feet")
  45613. },
  45614. {
  45615. name: "Macro-er",
  45616. height: math.unit(250, "feet")
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(7, "feet"),
  45625. weight: math.unit(110, "kg"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/max-hyper/front.svg",
  45629. extra: 1969/1881,
  45630. bottom: 49/2018
  45631. }
  45632. },
  45633. },
  45634. [
  45635. {
  45636. name: "Normal",
  45637. height: math.unit(7, "feet"),
  45638. default: true
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45644. {
  45645. front: {
  45646. height: math.unit(5 + 5/12, "feet"),
  45647. weight: math.unit(160, "lb"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/spook/front.svg",
  45651. extra: 794/791,
  45652. bottom: 54/848
  45653. }
  45654. },
  45655. back: {
  45656. height: math.unit(5 + 5/12, "feet"),
  45657. weight: math.unit(160, "lb"),
  45658. name: "Back",
  45659. image: {
  45660. source: "./media/characters/spook/back.svg",
  45661. extra: 812/798,
  45662. bottom: 32/844
  45663. }
  45664. },
  45665. },
  45666. [
  45667. {
  45668. name: "Normal",
  45669. height: math.unit(5 + 5/12, "feet"),
  45670. default: true
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(18, "feet"),
  45679. name: "Front",
  45680. image: {
  45681. source: "./media/characters/xeaduulix/front.svg",
  45682. extra: 1380/1166,
  45683. bottom: 110/1490
  45684. }
  45685. },
  45686. back: {
  45687. height: math.unit(18, "feet"),
  45688. name: "Back",
  45689. image: {
  45690. source: "./media/characters/xeaduulix/back.svg",
  45691. extra: 1592/1170,
  45692. bottom: 128/1720
  45693. }
  45694. },
  45695. frontNsfw: {
  45696. height: math.unit(18, "feet"),
  45697. name: "Front (NSFW)",
  45698. image: {
  45699. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45700. extra: 1380/1166,
  45701. bottom: 110/1490
  45702. }
  45703. },
  45704. backNsfw: {
  45705. height: math.unit(18, "feet"),
  45706. name: "Back (NSFW)",
  45707. image: {
  45708. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45709. extra: 1592/1170,
  45710. bottom: 128/1720
  45711. }
  45712. },
  45713. },
  45714. [
  45715. {
  45716. name: "Normal",
  45717. height: math.unit(18, "feet"),
  45718. default: true
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45724. {
  45725. spreadWings: {
  45726. height: math.unit(20, "feet"),
  45727. name: "Spread Wings",
  45728. image: {
  45729. source: "./media/characters/fledge/spread-wings.svg",
  45730. extra: 693/635,
  45731. bottom: 26/719
  45732. }
  45733. },
  45734. front: {
  45735. height: math.unit(20, "feet"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/fledge/front.svg",
  45739. extra: 684/637,
  45740. bottom: 18/702
  45741. }
  45742. },
  45743. frontAlt: {
  45744. height: math.unit(20, "feet"),
  45745. name: "Front (Alt)",
  45746. image: {
  45747. source: "./media/characters/fledge/front-alt.svg",
  45748. extra: 708/664,
  45749. bottom: 13/721
  45750. }
  45751. },
  45752. back: {
  45753. height: math.unit(20, "feet"),
  45754. name: "Back",
  45755. image: {
  45756. source: "./media/characters/fledge/back.svg",
  45757. extra: 718/634,
  45758. bottom: 22/740
  45759. }
  45760. },
  45761. head: {
  45762. height: math.unit(5.55, "feet"),
  45763. name: "Head",
  45764. image: {
  45765. source: "./media/characters/fledge/head.svg"
  45766. }
  45767. },
  45768. headAlt: {
  45769. height: math.unit(5.1, "feet"),
  45770. name: "Head (Alt)",
  45771. image: {
  45772. source: "./media/characters/fledge/head-alt.svg"
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Small",
  45779. height: math.unit(6 + 2/12, "feet")
  45780. },
  45781. {
  45782. name: "Big",
  45783. height: math.unit(20, "feet"),
  45784. default: true
  45785. },
  45786. {
  45787. name: "Giant",
  45788. height: math.unit(100, "feet")
  45789. },
  45790. {
  45791. name: "Macro",
  45792. height: math.unit(200, "feet")
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45798. {
  45799. front: {
  45800. height: math.unit(1, "meter"),
  45801. name: "Front",
  45802. image: {
  45803. source: "./media/characters/atlas-morenai/front.svg",
  45804. extra: 1275/1043,
  45805. bottom: 19/1294
  45806. }
  45807. },
  45808. back: {
  45809. height: math.unit(1, "meter"),
  45810. name: "Back",
  45811. image: {
  45812. source: "./media/characters/atlas-morenai/back.svg",
  45813. extra: 1141/1001,
  45814. bottom: 25/1166
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "Normal",
  45821. height: math.unit(1, "meter"),
  45822. default: true
  45823. },
  45824. {
  45825. name: "Magic-Infused",
  45826. height: math.unit(5, "meters")
  45827. },
  45828. ]
  45829. ))
  45830. characterMakers.push(() => makeCharacter(
  45831. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45832. {
  45833. front: {
  45834. height: math.unit(5, "meters"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/cintia/front.svg",
  45838. extra: 1312/1228,
  45839. bottom: 38/1350
  45840. }
  45841. },
  45842. back: {
  45843. height: math.unit(5, "meters"),
  45844. name: "Back",
  45845. image: {
  45846. source: "./media/characters/cintia/back.svg",
  45847. extra: 1260/1166,
  45848. bottom: 98/1358
  45849. }
  45850. },
  45851. frontDick: {
  45852. height: math.unit(5, "meters"),
  45853. name: "Front (Dick)",
  45854. image: {
  45855. source: "./media/characters/cintia/front-dick.svg",
  45856. extra: 1312/1228,
  45857. bottom: 38/1350
  45858. }
  45859. },
  45860. backDick: {
  45861. height: math.unit(5, "meters"),
  45862. name: "Back (Dick)",
  45863. image: {
  45864. source: "./media/characters/cintia/back-dick.svg",
  45865. extra: 1260/1166,
  45866. bottom: 98/1358
  45867. }
  45868. },
  45869. bust: {
  45870. height: math.unit(1.97, "meters"),
  45871. name: "Bust",
  45872. image: {
  45873. source: "./media/characters/cintia/bust.svg",
  45874. extra: 617/565,
  45875. bottom: 0/617
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Normal",
  45882. height: math.unit(5, "meters"),
  45883. default: true
  45884. },
  45885. ]
  45886. ))
  45887. characterMakers.push(() => makeCharacter(
  45888. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45889. {
  45890. side: {
  45891. height: math.unit(100, "feet"),
  45892. name: "Side",
  45893. image: {
  45894. source: "./media/characters/denora/side.svg",
  45895. extra: 875/803,
  45896. bottom: 9/884
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Standard",
  45903. height: math.unit(100, "feet"),
  45904. default: true
  45905. },
  45906. {
  45907. name: "Grand",
  45908. height: math.unit(1000, "feet")
  45909. },
  45910. {
  45911. name: "Conquering",
  45912. height: math.unit(10000, "feet")
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45918. {
  45919. dressed: {
  45920. height: math.unit(8 + 5/12, "feet"),
  45921. weight: math.unit(700, "lb"),
  45922. name: "Dressed",
  45923. image: {
  45924. source: "./media/characters/kiva/dressed.svg",
  45925. extra: 1102/1055,
  45926. bottom: 60/1162
  45927. }
  45928. },
  45929. nude: {
  45930. height: math.unit(8 + 5/12, "feet"),
  45931. weight: math.unit(700, "lb"),
  45932. name: "Nude",
  45933. image: {
  45934. source: "./media/characters/kiva/nude.svg",
  45935. extra: 1102/1055,
  45936. bottom: 60/1162
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Base Height",
  45943. height: math.unit(8 + 5/12, "feet"),
  45944. default: true
  45945. },
  45946. {
  45947. name: "Macro",
  45948. height: math.unit(100, "feet")
  45949. },
  45950. {
  45951. name: "Max",
  45952. height: math.unit(3280, "feet")
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(6 + 8/12, "feet"),
  45961. weight: math.unit(250, "lb"),
  45962. name: "Front",
  45963. image: {
  45964. source: "./media/characters/ztragon/front.svg",
  45965. extra: 1825/1684,
  45966. bottom: 98/1923
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(6 + 8/12, "feet"),
  45974. default: true
  45975. },
  45976. {
  45977. name: "Macro",
  45978. height: math.unit(80, "feet")
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45984. {
  45985. front: {
  45986. height: math.unit(10.4, "feet"),
  45987. weight: math.unit(2, "tons"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/yesenia/front.svg",
  45991. extra: 1479/1474,
  45992. bottom: 233/1712
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(10.4, "feet"),
  46000. default: true
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46006. {
  46007. normal: {
  46008. height: math.unit(6 + 1/12, "feet"),
  46009. weight: math.unit(180, "lb"),
  46010. name: "Normal",
  46011. image: {
  46012. source: "./media/characters/leanne-lycheborne/normal.svg",
  46013. extra: 1748/1660,
  46014. bottom: 98/1846
  46015. }
  46016. },
  46017. were: {
  46018. height: math.unit(12, "feet"),
  46019. weight: math.unit(1600, "lb"),
  46020. name: "Were",
  46021. image: {
  46022. source: "./media/characters/leanne-lycheborne/were.svg",
  46023. extra: 1485/1432,
  46024. bottom: 66/1551
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(6 + 1/12, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46038. {
  46039. side: {
  46040. height: math.unit(13, "feet"),
  46041. name: "Side",
  46042. image: {
  46043. source: "./media/characters/kira-tyler/side.svg",
  46044. extra: 693/393,
  46045. bottom: 58/751
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(13, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(10.3, "feet"),
  46062. weight: math.unit(150, "lb"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/blaze/front.svg",
  46066. extra: 1378/1286,
  46067. bottom: 172/1550
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(10.3, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46081. {
  46082. side: {
  46083. height: math.unit(2, "meters"),
  46084. weight: math.unit(400, "kg"),
  46085. name: "Side",
  46086. image: {
  46087. source: "./media/characters/anu/side.svg",
  46088. extra: 506/394,
  46089. bottom: 18/524
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Humanoid",
  46096. height: math.unit(2, "meters")
  46097. },
  46098. {
  46099. name: "Normal",
  46100. height: math.unit(5, "meters"),
  46101. default: true
  46102. },
  46103. ]
  46104. ))
  46105. characterMakers.push(() => makeCharacter(
  46106. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46107. {
  46108. front: {
  46109. height: math.unit(5 + 5/12, "feet"),
  46110. weight: math.unit(170, "lb"),
  46111. name: "Front",
  46112. image: {
  46113. source: "./media/characters/synx-the-lynx/front.svg",
  46114. extra: 1893/1745,
  46115. bottom: 17/1910
  46116. }
  46117. },
  46118. side: {
  46119. height: math.unit(5 + 5/12, "feet"),
  46120. weight: math.unit(170, "lb"),
  46121. name: "Side",
  46122. image: {
  46123. source: "./media/characters/synx-the-lynx/side.svg",
  46124. extra: 1884/1740,
  46125. bottom: 39/1923
  46126. }
  46127. },
  46128. back: {
  46129. height: math.unit(5 + 5/12, "feet"),
  46130. weight: math.unit(170, "lb"),
  46131. name: "Back",
  46132. image: {
  46133. source: "./media/characters/synx-the-lynx/back.svg",
  46134. extra: 1903/1755,
  46135. bottom: 14/1917
  46136. }
  46137. },
  46138. },
  46139. [
  46140. {
  46141. name: "Normal",
  46142. height: math.unit(5 + 5/12, "feet"),
  46143. default: true
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46149. {
  46150. back: {
  46151. height: math.unit(15, "feet"),
  46152. name: "Back",
  46153. image: {
  46154. source: "./media/characters/nadezda-fex/back.svg",
  46155. extra: 1695/1481,
  46156. bottom: 25/1720
  46157. }
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Normal",
  46163. height: math.unit(15, "feet"),
  46164. default: true
  46165. },
  46166. {
  46167. name: "Macro",
  46168. height: math.unit(2.5, "miles")
  46169. },
  46170. {
  46171. name: "Goddess",
  46172. height: math.unit(2, "multiverses")
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46178. {
  46179. front: {
  46180. height: math.unit(216, "cm"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/lev/front.svg",
  46184. extra: 1728/1670,
  46185. bottom: 82/1810
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(216, "cm"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/lev/back.svg",
  46193. extra: 1738/1675,
  46194. bottom: 24/1762
  46195. }
  46196. },
  46197. dressed: {
  46198. height: math.unit(216, "cm"),
  46199. name: "Dressed",
  46200. image: {
  46201. source: "./media/characters/lev/dressed.svg",
  46202. extra: 1397/1351,
  46203. bottom: 73/1470
  46204. }
  46205. },
  46206. head: {
  46207. height: math.unit(0.51, "meter"),
  46208. name: "Head",
  46209. image: {
  46210. source: "./media/characters/lev/head.svg"
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal",
  46217. height: math.unit(216, "cm"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Relatively Macro",
  46222. height: math.unit(80, "meters")
  46223. },
  46224. {
  46225. name: "Megamacro",
  46226. height: math.unit(21600, "meters")
  46227. },
  46228. {
  46229. name: "Megamacro+",
  46230. height: math.unit(64800, "meters")
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46236. {
  46237. front: {
  46238. height: math.unit(2, "meters"),
  46239. weight: math.unit(80, "kg"),
  46240. name: "Front",
  46241. image: {
  46242. source: "./media/characters/moka/front.svg",
  46243. extra: 1337/1255,
  46244. bottom: 58/1395
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Micro",
  46251. height: math.unit(15, "cm")
  46252. },
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(2, "meters"),
  46256. default: true
  46257. },
  46258. {
  46259. name: "Macro",
  46260. height: math.unit(20, "meters"),
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(9, "feet"),
  46269. weight: math.unit(240, "lb"),
  46270. name: "Front",
  46271. image: {
  46272. source: "./media/characters/kuzco/front.svg",
  46273. extra: 1593/1487,
  46274. bottom: 32/1625
  46275. }
  46276. },
  46277. side: {
  46278. height: math.unit(9, "feet"),
  46279. weight: math.unit(240, "lb"),
  46280. name: "Side",
  46281. image: {
  46282. source: "./media/characters/kuzco/side.svg",
  46283. extra: 1575/1485,
  46284. bottom: 30/1605
  46285. }
  46286. },
  46287. back: {
  46288. height: math.unit(9, "feet"),
  46289. weight: math.unit(240, "lb"),
  46290. name: "Back",
  46291. image: {
  46292. source: "./media/characters/kuzco/back.svg",
  46293. extra: 1603/1514,
  46294. bottom: 14/1617
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(9, "feet"),
  46302. default: true
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46308. {
  46309. side: {
  46310. height: math.unit(2, "meters"),
  46311. weight: math.unit(300, "kg"),
  46312. name: "Side",
  46313. image: {
  46314. source: "./media/characters/ceruleus/side.svg",
  46315. extra: 1068/974,
  46316. bottom: 126/1194
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Normal",
  46323. height: math.unit(16, "meters"),
  46324. default: true
  46325. },
  46326. ]
  46327. ))
  46328. characterMakers.push(() => makeCharacter(
  46329. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46330. {
  46331. front: {
  46332. height: math.unit(9, "feet"),
  46333. weight: math.unit(500, "kg"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/acouya/front.svg",
  46337. extra: 1660/1473,
  46338. bottom: 28/1688
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(9, "feet"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(5 + 6/12, "feet"),
  46355. weight: math.unit(195, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/vant/front.svg",
  46359. extra: 1396/1320,
  46360. bottom: 20/1416
  46361. }
  46362. },
  46363. back: {
  46364. height: math.unit(5 + 6/12, "feet"),
  46365. weight: math.unit(195, "lb"),
  46366. name: "Back",
  46367. image: {
  46368. source: "./media/characters/vant/back.svg",
  46369. extra: 1396/1320,
  46370. bottom: 20/1416
  46371. }
  46372. },
  46373. maw: {
  46374. height: math.unit(0.75, "feet"),
  46375. name: "Maw",
  46376. image: {
  46377. source: "./media/characters/vant/maw.svg"
  46378. }
  46379. },
  46380. paw: {
  46381. height: math.unit(1.07, "feet"),
  46382. name: "Paw",
  46383. image: {
  46384. source: "./media/characters/vant/paw.svg"
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Micro",
  46391. height: math.unit(0.25, "inches")
  46392. },
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(5 + 6/12, "feet"),
  46396. default: true
  46397. },
  46398. {
  46399. name: "Macro",
  46400. height: math.unit(75, "feet")
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46406. {
  46407. front: {
  46408. height: math.unit(30, "meters"),
  46409. weight: math.unit(363, "tons"),
  46410. name: "Front",
  46411. image: {
  46412. source: "./media/characters/ahra/front.svg",
  46413. extra: 1914/1814,
  46414. bottom: 46/1960
  46415. }
  46416. },
  46417. },
  46418. [
  46419. {
  46420. name: "Macro",
  46421. height: math.unit(30, "meters"),
  46422. default: true
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46428. {
  46429. undressed: {
  46430. height: math.unit(2, "m"),
  46431. weight: math.unit(250, "kg"),
  46432. name: "Undressed",
  46433. image: {
  46434. source: "./media/characters/coriander/undressed.svg",
  46435. extra: 1757/1606,
  46436. bottom: 107/1864
  46437. }
  46438. },
  46439. dressed: {
  46440. height: math.unit(2, "m"),
  46441. weight: math.unit(250, "kg"),
  46442. name: "Dressed",
  46443. image: {
  46444. source: "./media/characters/coriander/dressed.svg",
  46445. extra: 1757/1606,
  46446. bottom: 107/1864
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(4, "meters"),
  46454. default: true
  46455. },
  46456. {
  46457. name: "XL",
  46458. height: math.unit(6, "meters")
  46459. },
  46460. {
  46461. name: "XXL",
  46462. height: math.unit(8, "meters")
  46463. },
  46464. ]
  46465. ))
  46466. characterMakers.push(() => makeCharacter(
  46467. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46468. {
  46469. front: {
  46470. height: math.unit(6, "feet"),
  46471. name: "Front",
  46472. image: {
  46473. source: "./media/characters/syrinx/front.svg",
  46474. extra: 1557/1259,
  46475. bottom: 171/1728
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(6 + 3/12, "feet"),
  46483. default: true
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46489. {
  46490. front: {
  46491. height: math.unit(11 + 6/12, "feet"),
  46492. weight: math.unit(1.5, "tons"),
  46493. name: "Front",
  46494. image: {
  46495. source: "./media/characters/bor/front.svg",
  46496. extra: 1189/1109,
  46497. bottom: 170/1359
  46498. }
  46499. },
  46500. },
  46501. [
  46502. {
  46503. name: "Normal",
  46504. height: math.unit(11 + 6/12, "feet"),
  46505. default: true
  46506. },
  46507. {
  46508. name: "Macro",
  46509. height: math.unit(32 + 9/12, "feet")
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46515. {
  46516. anthro: {
  46517. height: math.unit(9, "feet"),
  46518. weight: math.unit(2076, "lb"),
  46519. name: "Anthro",
  46520. image: {
  46521. source: "./media/characters/abacus/anthro.svg",
  46522. extra: 1540/1494,
  46523. bottom: 233/1773
  46524. }
  46525. },
  46526. pigeon: {
  46527. height: math.unit(1, "feet"),
  46528. name: "Pigeon",
  46529. image: {
  46530. source: "./media/characters/abacus/pigeon.svg",
  46531. extra: 528/525,
  46532. bottom: 46/574
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Normal",
  46539. height: math.unit(9, "feet"),
  46540. default: true
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46546. {
  46547. side: {
  46548. height: math.unit(6, "feet"),
  46549. name: "Side",
  46550. image: {
  46551. source: "./media/characters/delkhan/side.svg",
  46552. extra: 1884/1786,
  46553. bottom: 308/2192
  46554. }
  46555. },
  46556. head: {
  46557. height: math.unit(3.38, "feet"),
  46558. name: "Head",
  46559. image: {
  46560. source: "./media/characters/delkhan/head.svg"
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(72, "feet"),
  46568. default: true
  46569. },
  46570. {
  46571. name: "Giant",
  46572. height: math.unit(172, "feet")
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46578. {
  46579. standing: {
  46580. height: math.unit(6, "feet"),
  46581. name: "Standing",
  46582. image: {
  46583. source: "./media/characters/euchidat/standing.svg",
  46584. extra: 1612/1553,
  46585. bottom: 116/1728
  46586. }
  46587. },
  46588. leaning: {
  46589. height: math.unit(6, "feet"),
  46590. name: "Leaning",
  46591. image: {
  46592. source: "./media/characters/euchidat/leaning.svg",
  46593. extra: 1719/1674,
  46594. bottom: 27/1746
  46595. }
  46596. },
  46597. },
  46598. [
  46599. {
  46600. name: "Normal",
  46601. height: math.unit(175, "feet"),
  46602. default: true
  46603. },
  46604. {
  46605. name: "Megamacro",
  46606. height: math.unit(190, "miles")
  46607. },
  46608. {
  46609. name: "Gigamacro",
  46610. height: math.unit(190000, "miles")
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46616. {
  46617. front: {
  46618. height: math.unit(6, "feet"),
  46619. weight: math.unit(150, "lb"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/rebecca-stack/front.svg",
  46623. extra: 1256/1201,
  46624. bottom: 18/1274
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(5 + 8/12, "feet"),
  46632. default: true
  46633. },
  46634. {
  46635. name: "Demolitionist",
  46636. height: math.unit(200, "feet")
  46637. },
  46638. {
  46639. name: "Out of Control",
  46640. height: math.unit(2, "miles")
  46641. },
  46642. {
  46643. name: "Giga",
  46644. height: math.unit(7200, "miles")
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46650. {
  46651. front: {
  46652. height: math.unit(6, "feet"),
  46653. weight: math.unit(150, "lb"),
  46654. name: "Front",
  46655. image: {
  46656. source: "./media/characters/jenny-cartwright/front.svg",
  46657. extra: 1384/1376,
  46658. bottom: 58/1442
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Normal",
  46665. height: math.unit(6 + 7/12, "feet"),
  46666. default: true
  46667. },
  46668. {
  46669. name: "Librarian",
  46670. height: math.unit(55, "feet")
  46671. },
  46672. {
  46673. name: "Sightseer",
  46674. height: math.unit(50, "miles")
  46675. },
  46676. {
  46677. name: "Giga",
  46678. height: math.unit(30000, "miles")
  46679. },
  46680. ]
  46681. ))
  46682. characterMakers.push(() => makeCharacter(
  46683. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46684. {
  46685. nude: {
  46686. height: math.unit(8, "feet"),
  46687. weight: math.unit(225, "lb"),
  46688. name: "Nude",
  46689. image: {
  46690. source: "./media/characters/marvy/nude.svg",
  46691. extra: 1900/1683,
  46692. bottom: 89/1989
  46693. }
  46694. },
  46695. dressed: {
  46696. height: math.unit(8, "feet"),
  46697. weight: math.unit(225, "lb"),
  46698. name: "Dressed",
  46699. image: {
  46700. source: "./media/characters/marvy/dressed.svg",
  46701. extra: 1900/1683,
  46702. bottom: 89/1989
  46703. }
  46704. },
  46705. head: {
  46706. height: math.unit(2.85, "feet"),
  46707. name: "Head",
  46708. image: {
  46709. source: "./media/characters/marvy/head.svg"
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(8, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(8, "feet"),
  46726. weight: math.unit(250, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/leah/front.svg",
  46730. extra: 1257/1149,
  46731. bottom: 109/1366
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(8, "feet"),
  46739. default: true
  46740. },
  46741. {
  46742. name: "Minimacro",
  46743. height: math.unit(40, "feet")
  46744. },
  46745. {
  46746. name: "Macro",
  46747. height: math.unit(124, "feet")
  46748. },
  46749. {
  46750. name: "Megamacro",
  46751. height: math.unit(850, "feet")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46757. {
  46758. side: {
  46759. height: math.unit(13 + 6/12, "feet"),
  46760. weight: math.unit(3200, "lb"),
  46761. name: "Side",
  46762. image: {
  46763. source: "./media/characters/alvir/side.svg",
  46764. extra: 896/589,
  46765. bottom: 26/922
  46766. }
  46767. },
  46768. },
  46769. [
  46770. {
  46771. name: "Normal",
  46772. height: math.unit(13 + 6/12, "feet"),
  46773. default: true
  46774. },
  46775. ]
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46779. {
  46780. front: {
  46781. height: math.unit(5 + 4/12, "feet"),
  46782. weight: math.unit(236, "lb"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/zaina-khalil/front.svg",
  46786. extra: 1533/1485,
  46787. bottom: 94/1627
  46788. }
  46789. },
  46790. side: {
  46791. height: math.unit(5 + 4/12, "feet"),
  46792. weight: math.unit(236, "lb"),
  46793. name: "Side",
  46794. image: {
  46795. source: "./media/characters/zaina-khalil/side.svg",
  46796. extra: 1537/1498,
  46797. bottom: 66/1603
  46798. }
  46799. },
  46800. back: {
  46801. height: math.unit(5 + 4/12, "feet"),
  46802. weight: math.unit(236, "lb"),
  46803. name: "Back",
  46804. image: {
  46805. source: "./media/characters/zaina-khalil/back.svg",
  46806. extra: 1546/1494,
  46807. bottom: 89/1635
  46808. }
  46809. },
  46810. },
  46811. [
  46812. {
  46813. name: "Normal",
  46814. height: math.unit(5 + 4/12, "feet"),
  46815. default: true
  46816. },
  46817. ]
  46818. ))
  46819. characterMakers.push(() => makeCharacter(
  46820. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46821. {
  46822. side: {
  46823. height: math.unit(12, "feet"),
  46824. weight: math.unit(4000, "lb"),
  46825. name: "Side",
  46826. image: {
  46827. source: "./media/characters/terry/side.svg",
  46828. extra: 1518/1439,
  46829. bottom: 149/1667
  46830. }
  46831. },
  46832. },
  46833. [
  46834. {
  46835. name: "Normal",
  46836. height: math.unit(12, "feet"),
  46837. default: true
  46838. },
  46839. ]
  46840. ))
  46841. characterMakers.push(() => makeCharacter(
  46842. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46843. {
  46844. front: {
  46845. height: math.unit(12, "feet"),
  46846. weight: math.unit(1500, "lb"),
  46847. name: "Front",
  46848. image: {
  46849. source: "./media/characters/kahea/front.svg",
  46850. extra: 1722/1617,
  46851. bottom: 179/1901
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Normal",
  46858. height: math.unit(12, "feet"),
  46859. default: true
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46865. {
  46866. demonFront: {
  46867. height: math.unit(36, "feet"),
  46868. name: "Front",
  46869. image: {
  46870. source: "./media/characters/alex-xuria/demon-front.svg",
  46871. extra: 1705/1673,
  46872. bottom: 198/1903
  46873. },
  46874. form: "demon",
  46875. default: true
  46876. },
  46877. demonBack: {
  46878. height: math.unit(36, "feet"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/alex-xuria/demon-back.svg",
  46882. extra: 1725/1693,
  46883. bottom: 70/1795
  46884. },
  46885. form: "demon"
  46886. },
  46887. demonHead: {
  46888. height: math.unit(2.14, "meters"),
  46889. name: "Head",
  46890. image: {
  46891. source: "./media/characters/alex-xuria/demon-head.svg"
  46892. },
  46893. form: "demon"
  46894. },
  46895. demonHand: {
  46896. height: math.unit(1.61, "meters"),
  46897. name: "Hand",
  46898. image: {
  46899. source: "./media/characters/alex-xuria/demon-hand.svg"
  46900. },
  46901. form: "demon"
  46902. },
  46903. demonPaw: {
  46904. height: math.unit(1.35, "meters"),
  46905. name: "Paw",
  46906. image: {
  46907. source: "./media/characters/alex-xuria/demon-paw.svg"
  46908. },
  46909. form: "demon"
  46910. },
  46911. demonFoot: {
  46912. height: math.unit(2.2, "meters"),
  46913. name: "Foot",
  46914. image: {
  46915. source: "./media/characters/alex-xuria/demon-foot.svg"
  46916. },
  46917. form: "demon"
  46918. },
  46919. demonCock: {
  46920. height: math.unit(1.74, "meters"),
  46921. name: "Cock",
  46922. image: {
  46923. source: "./media/characters/alex-xuria/demon-cock.svg"
  46924. },
  46925. form: "demon"
  46926. },
  46927. demonTailClosed: {
  46928. height: math.unit(1.47, "meters"),
  46929. name: "Tail (Closed)",
  46930. image: {
  46931. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46932. },
  46933. form: "demon"
  46934. },
  46935. demonTailOpen: {
  46936. height: math.unit(2.85, "meters"),
  46937. name: "Tail (Open)",
  46938. image: {
  46939. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46940. },
  46941. form: "demon"
  46942. },
  46943. incubusFront: {
  46944. height: math.unit(12, "feet"),
  46945. name: "Front",
  46946. image: {
  46947. source: "./media/characters/alex-xuria/incubus-front.svg",
  46948. extra: 1754/1677,
  46949. bottom: 125/1879
  46950. },
  46951. form: "incubus",
  46952. default: true
  46953. },
  46954. incubusBack: {
  46955. height: math.unit(12, "feet"),
  46956. name: "Back",
  46957. image: {
  46958. source: "./media/characters/alex-xuria/incubus-back.svg",
  46959. extra: 1702/1647,
  46960. bottom: 30/1732
  46961. },
  46962. form: "incubus"
  46963. },
  46964. incubusHead: {
  46965. height: math.unit(3.45, "feet"),
  46966. name: "Head",
  46967. image: {
  46968. source: "./media/characters/alex-xuria/incubus-head.svg"
  46969. },
  46970. form: "incubus"
  46971. },
  46972. rabbitFront: {
  46973. height: math.unit(6, "feet"),
  46974. name: "Front",
  46975. image: {
  46976. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46977. extra: 1369/1349,
  46978. bottom: 45/1414
  46979. },
  46980. form: "rabbit",
  46981. default: true
  46982. },
  46983. rabbitSide: {
  46984. height: math.unit(6, "feet"),
  46985. name: "Side",
  46986. image: {
  46987. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46988. extra: 1370/1356,
  46989. bottom: 37/1407
  46990. },
  46991. form: "rabbit"
  46992. },
  46993. rabbitBack: {
  46994. height: math.unit(6, "feet"),
  46995. name: "Back",
  46996. image: {
  46997. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46998. extra: 1375/1358,
  46999. bottom: 43/1418
  47000. },
  47001. form: "rabbit"
  47002. },
  47003. },
  47004. [
  47005. {
  47006. name: "Normal",
  47007. height: math.unit(6, "feet"),
  47008. default: true,
  47009. form: "rabbit"
  47010. },
  47011. {
  47012. name: "Incubus",
  47013. height: math.unit(12, "feet"),
  47014. default: true,
  47015. form: "incubus"
  47016. },
  47017. {
  47018. name: "Demon",
  47019. height: math.unit(36, "feet"),
  47020. default: true,
  47021. form: "demon"
  47022. }
  47023. ],
  47024. {
  47025. "demon": {
  47026. name: "Demon",
  47027. default: true
  47028. },
  47029. "incubus": {
  47030. name: "Incubus",
  47031. },
  47032. "rabbit": {
  47033. name: "Rabbit"
  47034. }
  47035. }
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47039. {
  47040. front: {
  47041. height: math.unit(7 + 5/12, "feet"),
  47042. weight: math.unit(510, "lb"),
  47043. name: "Front",
  47044. image: {
  47045. source: "./media/characters/syrup/front.svg",
  47046. extra: 932/916,
  47047. bottom: 26/958
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Normal",
  47054. height: math.unit(7 + 5/12, "feet"),
  47055. default: true
  47056. },
  47057. {
  47058. name: "Big",
  47059. height: math.unit(50, "feet")
  47060. },
  47061. {
  47062. name: "Macro",
  47063. height: math.unit(300, "feet")
  47064. },
  47065. {
  47066. name: "Megamacro",
  47067. height: math.unit(1, "mile")
  47068. },
  47069. ]
  47070. ))
  47071. characterMakers.push(() => makeCharacter(
  47072. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47073. {
  47074. front: {
  47075. height: math.unit(6 + 9/12, "feet"),
  47076. name: "Front",
  47077. image: {
  47078. source: "./media/characters/zeimne/front.svg",
  47079. extra: 1969/1806,
  47080. bottom: 53/2022
  47081. }
  47082. },
  47083. },
  47084. [
  47085. {
  47086. name: "Normal",
  47087. height: math.unit(6 + 9/12, "feet"),
  47088. default: true
  47089. },
  47090. {
  47091. name: "Giant",
  47092. height: math.unit(550, "feet")
  47093. },
  47094. {
  47095. name: "Mega",
  47096. height: math.unit(3, "miles")
  47097. },
  47098. {
  47099. name: "Giga",
  47100. height: math.unit(250, "miles")
  47101. },
  47102. {
  47103. name: "Tera",
  47104. height: math.unit(1, "AU")
  47105. },
  47106. ]
  47107. ))
  47108. characterMakers.push(() => makeCharacter(
  47109. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47110. {
  47111. front: {
  47112. height: math.unit(5 + 2/12, "feet"),
  47113. name: "Front",
  47114. image: {
  47115. source: "./media/characters/grar/front.svg",
  47116. extra: 1331/1119,
  47117. bottom: 60/1391
  47118. }
  47119. },
  47120. back: {
  47121. height: math.unit(5 + 2/12, "feet"),
  47122. name: "Back",
  47123. image: {
  47124. source: "./media/characters/grar/back.svg",
  47125. extra: 1385/1169,
  47126. bottom: 23/1408
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Normal",
  47133. height: math.unit(5 + 2/12, "feet"),
  47134. default: true
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(13 + 7/12, "feet"),
  47143. weight: math.unit(2200, "lb"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/endraya/front.svg",
  47147. extra: 1289/1215,
  47148. bottom: 50/1339
  47149. }
  47150. },
  47151. nude: {
  47152. height: math.unit(13 + 7/12, "feet"),
  47153. weight: math.unit(2200, "lb"),
  47154. name: "Nude",
  47155. image: {
  47156. source: "./media/characters/endraya/nude.svg",
  47157. extra: 1247/1171,
  47158. bottom: 40/1287
  47159. }
  47160. },
  47161. head: {
  47162. height: math.unit(2.6, "feet"),
  47163. name: "Head",
  47164. image: {
  47165. source: "./media/characters/endraya/head.svg"
  47166. }
  47167. },
  47168. slit: {
  47169. height: math.unit(3.4, "feet"),
  47170. name: "Slit",
  47171. image: {
  47172. source: "./media/characters/endraya/slit.svg"
  47173. }
  47174. },
  47175. },
  47176. [
  47177. {
  47178. name: "Normal",
  47179. height: math.unit(13 + 7/12, "feet"),
  47180. default: true
  47181. },
  47182. {
  47183. name: "Macro",
  47184. height: math.unit(200, "feet")
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47190. {
  47191. front: {
  47192. height: math.unit(1.81, "meters"),
  47193. weight: math.unit(69, "kg"),
  47194. name: "Front",
  47195. image: {
  47196. source: "./media/characters/rodryana/front.svg",
  47197. extra: 2002/1921,
  47198. bottom: 53/2055
  47199. }
  47200. },
  47201. back: {
  47202. height: math.unit(1.81, "meters"),
  47203. weight: math.unit(69, "kg"),
  47204. name: "Back",
  47205. image: {
  47206. source: "./media/characters/rodryana/back.svg",
  47207. extra: 1993/1926,
  47208. bottom: 48/2041
  47209. }
  47210. },
  47211. maw: {
  47212. height: math.unit(0.19769417475, "meters"),
  47213. name: "Maw",
  47214. image: {
  47215. source: "./media/characters/rodryana/maw.svg"
  47216. }
  47217. },
  47218. slit: {
  47219. height: math.unit(0.31631067961, "meters"),
  47220. name: "Slit",
  47221. image: {
  47222. source: "./media/characters/rodryana/slit.svg"
  47223. }
  47224. },
  47225. },
  47226. [
  47227. {
  47228. name: "Normal",
  47229. height: math.unit(1.81, "meters")
  47230. },
  47231. {
  47232. name: "Mini Macro",
  47233. height: math.unit(181, "meters")
  47234. },
  47235. {
  47236. name: "Macro",
  47237. height: math.unit(452, "meters"),
  47238. default: true
  47239. },
  47240. {
  47241. name: "Mega Macro",
  47242. height: math.unit(1.375, "km")
  47243. },
  47244. {
  47245. name: "Giga Macro",
  47246. height: math.unit(13.575, "km")
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47252. {
  47253. front: {
  47254. height: math.unit(6, "feet"),
  47255. weight: math.unit(1000, "lb"),
  47256. name: "Front",
  47257. image: {
  47258. source: "./media/characters/asaya/front.svg",
  47259. extra: 1460/1200,
  47260. bottom: 71/1531
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Normal",
  47267. height: math.unit(8, "km"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47274. {
  47275. front: {
  47276. height: math.unit(3.5, "meters"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/sarzu-and-israz/front.svg",
  47280. extra: 1570/1558,
  47281. bottom: 150/1720
  47282. },
  47283. },
  47284. back: {
  47285. height: math.unit(3.5, "meters"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/sarzu-and-israz/back.svg",
  47289. extra: 1523/1509,
  47290. bottom: 132/1655
  47291. },
  47292. },
  47293. frontFemale: {
  47294. height: math.unit(3.5, "meters"),
  47295. name: "Front (Female)",
  47296. image: {
  47297. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47298. extra: 1570/1558,
  47299. bottom: 150/1720
  47300. },
  47301. },
  47302. frontHerm: {
  47303. height: math.unit(3.5, "meters"),
  47304. name: "Front (Herm)",
  47305. image: {
  47306. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47307. extra: 1570/1558,
  47308. bottom: 150/1720
  47309. },
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(3.5, "meters"),
  47316. default: true,
  47317. },
  47318. {
  47319. name: "Macro",
  47320. height: math.unit(65.5, "meters"),
  47321. },
  47322. ],
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47326. {
  47327. front: {
  47328. height: math.unit(6, "feet"),
  47329. weight: math.unit(250, "lb"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/zenimma/front.svg",
  47333. extra: 1346/1320,
  47334. bottom: 58/1404
  47335. }
  47336. },
  47337. back: {
  47338. height: math.unit(6, "feet"),
  47339. weight: math.unit(250, "lb"),
  47340. name: "Back",
  47341. image: {
  47342. source: "./media/characters/zenimma/back.svg",
  47343. extra: 1324/1308,
  47344. bottom: 44/1368
  47345. }
  47346. },
  47347. dick: {
  47348. height: math.unit(1.44, "feet"),
  47349. name: "Dick",
  47350. image: {
  47351. source: "./media/characters/zenimma/dick.svg"
  47352. }
  47353. },
  47354. },
  47355. [
  47356. {
  47357. name: "Canon Height",
  47358. height: math.unit(66, "miles"),
  47359. default: true
  47360. },
  47361. ]
  47362. ))
  47363. characterMakers.push(() => makeCharacter(
  47364. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47365. {
  47366. nude: {
  47367. height: math.unit(6, "feet"),
  47368. weight: math.unit(150, "lb"),
  47369. name: "Nude",
  47370. image: {
  47371. source: "./media/characters/shavon/nude.svg",
  47372. extra: 1242/1096,
  47373. bottom: 98/1340
  47374. }
  47375. },
  47376. dressed: {
  47377. height: math.unit(6, "feet"),
  47378. weight: math.unit(150, "lb"),
  47379. name: "Dressed",
  47380. image: {
  47381. source: "./media/characters/shavon/dressed.svg",
  47382. extra: 1242/1096,
  47383. bottom: 98/1340
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Macro",
  47390. height: math.unit(255, "feet"),
  47391. default: true
  47392. },
  47393. ]
  47394. ))
  47395. characterMakers.push(() => makeCharacter(
  47396. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47397. {
  47398. front: {
  47399. height: math.unit(6, "feet"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/steph/front.svg",
  47403. extra: 1430/1330,
  47404. bottom: 54/1484
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Normal",
  47411. height: math.unit(6, "feet"),
  47412. default: true
  47413. },
  47414. ]
  47415. ))
  47416. characterMakers.push(() => makeCharacter(
  47417. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47418. {
  47419. front: {
  47420. height: math.unit(9, "feet"),
  47421. weight: math.unit(400, "lb"),
  47422. name: "Front",
  47423. image: {
  47424. source: "./media/characters/kil'aman/front.svg",
  47425. extra: 1210/1159,
  47426. bottom: 109/1319
  47427. }
  47428. },
  47429. head: {
  47430. height: math.unit(2.14, "feet"),
  47431. name: "Head",
  47432. image: {
  47433. source: "./media/characters/kil'aman/head.svg"
  47434. }
  47435. },
  47436. maw: {
  47437. height: math.unit(1.21, "feet"),
  47438. name: "Maw",
  47439. image: {
  47440. source: "./media/characters/kil'aman/maw.svg"
  47441. }
  47442. },
  47443. foot: {
  47444. height: math.unit(1.7, "feet"),
  47445. name: "Foot",
  47446. image: {
  47447. source: "./media/characters/kil'aman/foot.svg"
  47448. }
  47449. },
  47450. dick: {
  47451. height: math.unit(2.1, "feet"),
  47452. name: "Dick",
  47453. image: {
  47454. source: "./media/characters/kil'aman/dick.svg"
  47455. }
  47456. },
  47457. },
  47458. [
  47459. {
  47460. name: "Normal",
  47461. height: math.unit(9, "feet")
  47462. },
  47463. {
  47464. name: "Canon Height",
  47465. height: math.unit(10, "miles"),
  47466. default: true
  47467. },
  47468. {
  47469. name: "Maximum",
  47470. height: math.unit(6e9, "miles")
  47471. },
  47472. ]
  47473. ))
  47474. characterMakers.push(() => makeCharacter(
  47475. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47476. {
  47477. front: {
  47478. height: math.unit(90, "feet"),
  47479. weight: math.unit(675000, "lb"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/qadan/front.svg",
  47483. extra: 1012/1004,
  47484. bottom: 78/1090
  47485. }
  47486. },
  47487. back: {
  47488. height: math.unit(90, "feet"),
  47489. weight: math.unit(675000, "lb"),
  47490. name: "Back",
  47491. image: {
  47492. source: "./media/characters/qadan/back.svg",
  47493. extra: 1042/1031,
  47494. bottom: 55/1097
  47495. }
  47496. },
  47497. armored: {
  47498. height: math.unit(90, "feet"),
  47499. weight: math.unit(675000, "lb"),
  47500. name: "Armored",
  47501. image: {
  47502. source: "./media/characters/qadan/armored.svg",
  47503. extra: 1047/1037,
  47504. bottom: 48/1095
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(90, "feet"),
  47512. default: true
  47513. },
  47514. ]
  47515. ))
  47516. characterMakers.push(() => makeCharacter(
  47517. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47518. {
  47519. front: {
  47520. height: math.unit(6, "feet"),
  47521. weight: math.unit(225, "lb"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/brooke/front.svg",
  47525. extra: 1050/1010,
  47526. bottom: 66/1116
  47527. }
  47528. },
  47529. back: {
  47530. height: math.unit(6, "feet"),
  47531. weight: math.unit(225, "lb"),
  47532. name: "Back",
  47533. image: {
  47534. source: "./media/characters/brooke/back.svg",
  47535. extra: 1053/1013,
  47536. bottom: 41/1094
  47537. }
  47538. },
  47539. dressed: {
  47540. height: math.unit(6, "feet"),
  47541. weight: math.unit(225, "lb"),
  47542. name: "Dressed",
  47543. image: {
  47544. source: "./media/characters/brooke/dressed.svg",
  47545. extra: 1050/1010,
  47546. bottom: 66/1116
  47547. }
  47548. },
  47549. },
  47550. [
  47551. {
  47552. name: "Canon Height",
  47553. height: math.unit(500, "miles"),
  47554. default: true
  47555. },
  47556. ]
  47557. ))
  47558. characterMakers.push(() => makeCharacter(
  47559. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47560. {
  47561. front: {
  47562. height: math.unit(6 + 2/12, "feet"),
  47563. weight: math.unit(210, "lb"),
  47564. name: "Front",
  47565. image: {
  47566. source: "./media/characters/wubs/front.svg",
  47567. extra: 1345/1325,
  47568. bottom: 70/1415
  47569. }
  47570. },
  47571. back: {
  47572. height: math.unit(6 + 2/12, "feet"),
  47573. weight: math.unit(210, "lb"),
  47574. name: "Back",
  47575. image: {
  47576. source: "./media/characters/wubs/back.svg",
  47577. extra: 1296/1275,
  47578. bottom: 58/1354
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(6 + 2/12, "feet"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Macro",
  47590. height: math.unit(1000, "feet")
  47591. },
  47592. {
  47593. name: "Megamacro",
  47594. height: math.unit(1, "mile")
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(4, "feet"),
  47603. weight: math.unit(120, "lb"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/blue/front.svg",
  47607. extra: 1636/1525,
  47608. bottom: 43/1679
  47609. }
  47610. },
  47611. back: {
  47612. height: math.unit(4, "feet"),
  47613. weight: math.unit(120, "lb"),
  47614. name: "Back",
  47615. image: {
  47616. source: "./media/characters/blue/back.svg",
  47617. extra: 1660/1560,
  47618. bottom: 57/1717
  47619. }
  47620. },
  47621. paws: {
  47622. height: math.unit(0.826, "feet"),
  47623. name: "Paws",
  47624. image: {
  47625. source: "./media/characters/blue/paws.svg"
  47626. }
  47627. },
  47628. },
  47629. [
  47630. {
  47631. name: "Micro",
  47632. height: math.unit(3, "inches")
  47633. },
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(4, "feet"),
  47637. default: true
  47638. },
  47639. {
  47640. name: "Femenine Form",
  47641. height: math.unit(14, "feet")
  47642. },
  47643. {
  47644. name: "Werebat Form",
  47645. height: math.unit(18, "feet")
  47646. },
  47647. ]
  47648. ))
  47649. characterMakers.push(() => makeCharacter(
  47650. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47651. {
  47652. female: {
  47653. height: math.unit(7 + 4/12, "feet"),
  47654. weight: math.unit(243, "lb"),
  47655. name: "Female",
  47656. image: {
  47657. source: "./media/characters/kaya/female.svg",
  47658. extra: 975/898,
  47659. bottom: 34/1009
  47660. }
  47661. },
  47662. herm: {
  47663. height: math.unit(7 + 4/12, "feet"),
  47664. weight: math.unit(243, "lb"),
  47665. name: "Herm",
  47666. image: {
  47667. source: "./media/characters/kaya/herm.svg",
  47668. extra: 975/898,
  47669. bottom: 34/1009
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Normal",
  47676. height: math.unit(7 + 4/12, "feet"),
  47677. default: true
  47678. },
  47679. ]
  47680. ))
  47681. characterMakers.push(() => makeCharacter(
  47682. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47683. {
  47684. female: {
  47685. height: math.unit(9 + 4/12, "feet"),
  47686. weight: math.unit(398, "lb"),
  47687. name: "Female",
  47688. image: {
  47689. source: "./media/characters/kassandra/female.svg",
  47690. extra: 908/839,
  47691. bottom: 61/969
  47692. }
  47693. },
  47694. intersex: {
  47695. height: math.unit(9 + 4/12, "feet"),
  47696. weight: math.unit(398, "lb"),
  47697. name: "Intersex",
  47698. image: {
  47699. source: "./media/characters/kassandra/intersex.svg",
  47700. extra: 908/839,
  47701. bottom: 61/969
  47702. }
  47703. },
  47704. },
  47705. [
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(9 + 4/12, "feet"),
  47709. default: true
  47710. },
  47711. ]
  47712. ))
  47713. characterMakers.push(() => makeCharacter(
  47714. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47715. {
  47716. front: {
  47717. height: math.unit(3, "meters"),
  47718. name: "Front",
  47719. image: {
  47720. source: "./media/characters/amy/front.svg",
  47721. extra: 1380/1343,
  47722. bottom: 70/1450
  47723. }
  47724. },
  47725. back: {
  47726. height: math.unit(3, "meters"),
  47727. name: "Back",
  47728. image: {
  47729. source: "./media/characters/amy/back.svg",
  47730. extra: 1380/1347,
  47731. bottom: 66/1446
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Normal",
  47738. height: math.unit(3, "meters"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47745. {
  47746. side: {
  47747. height: math.unit(47, "cm"),
  47748. weight: math.unit(10.8, "kg"),
  47749. name: "Side",
  47750. image: {
  47751. source: "./media/characters/alphaschakal/side.svg",
  47752. extra: 1058/568,
  47753. bottom: 62/1120
  47754. }
  47755. },
  47756. back: {
  47757. height: math.unit(78, "cm"),
  47758. weight: math.unit(10.8, "kg"),
  47759. name: "Back",
  47760. image: {
  47761. source: "./media/characters/alphaschakal/back.svg",
  47762. extra: 1102/942,
  47763. bottom: 185/1287
  47764. }
  47765. },
  47766. head: {
  47767. height: math.unit(28, "cm"),
  47768. name: "Head",
  47769. image: {
  47770. source: "./media/characters/alphaschakal/head.svg",
  47771. extra: 696/508,
  47772. bottom: 0/696
  47773. }
  47774. },
  47775. paw: {
  47776. height: math.unit(16, "cm"),
  47777. name: "Paw",
  47778. image: {
  47779. source: "./media/characters/alphaschakal/paw.svg"
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(47, "cm"),
  47787. default: true
  47788. },
  47789. {
  47790. name: "Macro",
  47791. height: math.unit(340, "cm")
  47792. },
  47793. ]
  47794. ))
  47795. characterMakers.push(() => makeCharacter(
  47796. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47797. {
  47798. front: {
  47799. height: math.unit(36, "earths"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/ecobyss/front.svg",
  47803. extra: 1282/1215,
  47804. bottom: 11/1293
  47805. }
  47806. },
  47807. back: {
  47808. height: math.unit(36, "earths"),
  47809. name: "Back",
  47810. image: {
  47811. source: "./media/characters/ecobyss/back.svg",
  47812. extra: 1291/1222,
  47813. bottom: 8/1299
  47814. }
  47815. },
  47816. },
  47817. [
  47818. {
  47819. name: "Normal",
  47820. height: math.unit(36, "earths"),
  47821. default: true
  47822. },
  47823. ]
  47824. ))
  47825. characterMakers.push(() => makeCharacter(
  47826. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47827. {
  47828. front: {
  47829. height: math.unit(12, "feet"),
  47830. name: "Front",
  47831. image: {
  47832. source: "./media/characters/vasuk/front.svg",
  47833. extra: 1326/1207,
  47834. bottom: 64/1390
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(12, "feet"),
  47842. default: true
  47843. },
  47844. ]
  47845. ))
  47846. characterMakers.push(() => makeCharacter(
  47847. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47848. {
  47849. side: {
  47850. height: math.unit(100, "feet"),
  47851. name: "Side",
  47852. image: {
  47853. source: "./media/characters/linneaus/side.svg",
  47854. extra: 987/807,
  47855. bottom: 47/1034
  47856. }
  47857. },
  47858. },
  47859. [
  47860. {
  47861. name: "Macro",
  47862. height: math.unit(100, "feet"),
  47863. default: true
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(8, "feet"),
  47872. weight: math.unit(1200, "lb"),
  47873. name: "Front",
  47874. image: {
  47875. source: "./media/characters/nyterious-daligdig/front.svg",
  47876. extra: 1284/1094,
  47877. bottom: 84/1368
  47878. }
  47879. },
  47880. back: {
  47881. height: math.unit(8, "feet"),
  47882. weight: math.unit(1200, "lb"),
  47883. name: "Back",
  47884. image: {
  47885. source: "./media/characters/nyterious-daligdig/back.svg",
  47886. extra: 1301/1121,
  47887. bottom: 129/1430
  47888. }
  47889. },
  47890. mouth: {
  47891. height: math.unit(1.464, "feet"),
  47892. name: "Mouth",
  47893. image: {
  47894. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47895. }
  47896. },
  47897. },
  47898. [
  47899. {
  47900. name: "Small",
  47901. height: math.unit(8, "feet"),
  47902. default: true
  47903. },
  47904. {
  47905. name: "Normal",
  47906. height: math.unit(15, "feet")
  47907. },
  47908. {
  47909. name: "Macro",
  47910. height: math.unit(90, "feet")
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47916. {
  47917. front: {
  47918. height: math.unit(7 + 4/12, "feet"),
  47919. weight: math.unit(252, "lb"),
  47920. name: "Front",
  47921. image: {
  47922. source: "./media/characters/bandel/front.svg",
  47923. extra: 1946/1775,
  47924. bottom: 26/1972
  47925. }
  47926. },
  47927. back: {
  47928. height: math.unit(7 + 4/12, "feet"),
  47929. weight: math.unit(252, "lb"),
  47930. name: "Back",
  47931. image: {
  47932. source: "./media/characters/bandel/back.svg",
  47933. extra: 1940/1770,
  47934. bottom: 25/1965
  47935. }
  47936. },
  47937. maw: {
  47938. height: math.unit(2.15, "feet"),
  47939. name: "Maw",
  47940. image: {
  47941. source: "./media/characters/bandel/maw.svg"
  47942. }
  47943. },
  47944. stomach: {
  47945. height: math.unit(1.95, "feet"),
  47946. name: "Stomach",
  47947. image: {
  47948. source: "./media/characters/bandel/stomach.svg"
  47949. }
  47950. },
  47951. },
  47952. [
  47953. {
  47954. name: "Normal",
  47955. height: math.unit(7 + 4/12, "feet"),
  47956. default: true
  47957. },
  47958. ]
  47959. ))
  47960. characterMakers.push(() => makeCharacter(
  47961. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47962. {
  47963. front: {
  47964. height: math.unit(10 + 5/12, "feet"),
  47965. weight: math.unit(773.5, "kg"),
  47966. name: "Front",
  47967. image: {
  47968. source: "./media/characters/zed/front.svg",
  47969. extra: 987/941,
  47970. bottom: 52/1039
  47971. }
  47972. },
  47973. },
  47974. [
  47975. {
  47976. name: "Short",
  47977. height: math.unit(5 + 4/12, "feet")
  47978. },
  47979. {
  47980. name: "Average",
  47981. height: math.unit(10 + 5/12, "feet"),
  47982. default: true
  47983. },
  47984. {
  47985. name: "Mini-Macro",
  47986. height: math.unit(24 + 9/12, "feet")
  47987. },
  47988. {
  47989. name: "Macro",
  47990. height: math.unit(249, "feet")
  47991. },
  47992. {
  47993. name: "Mega-Macro",
  47994. height: math.unit(12490, "feet")
  47995. },
  47996. {
  47997. name: "Giga-Macro",
  47998. height: math.unit(24.9, "miles")
  47999. },
  48000. {
  48001. name: "Tera-Macro",
  48002. height: math.unit(24900, "miles")
  48003. },
  48004. {
  48005. name: "Cosmic Scale",
  48006. height: math.unit(38.9, "lightyears")
  48007. },
  48008. {
  48009. name: "Universal Scale",
  48010. height: math.unit(138e12, "lightyears")
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(1561, "inches"),
  48019. name: "Front",
  48020. image: {
  48021. source: "./media/characters/ivan/front.svg",
  48022. extra: 1126/1071,
  48023. bottom: 26/1152
  48024. }
  48025. },
  48026. back: {
  48027. height: math.unit(1561, "inches"),
  48028. name: "Back",
  48029. image: {
  48030. source: "./media/characters/ivan/back.svg",
  48031. extra: 1134/1079,
  48032. bottom: 30/1164
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(1561, "inches"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(5 + 7/12, "feet"),
  48049. weight: math.unit(150, "lb"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/robin-arctic-hare/front.svg",
  48053. extra: 1148/974,
  48054. bottom: 20/1168
  48055. }
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Normal",
  48061. height: math.unit(5 + 7/12, "feet"),
  48062. default: true
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48068. {
  48069. side: {
  48070. height: math.unit(5, "feet"),
  48071. name: "Side",
  48072. image: {
  48073. source: "./media/characters/birch/side.svg",
  48074. extra: 985/796,
  48075. bottom: 111/1096
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(5, "feet"),
  48083. default: true
  48084. },
  48085. ]
  48086. ))
  48087. characterMakers.push(() => makeCharacter(
  48088. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48089. {
  48090. front: {
  48091. height: math.unit(4, "feet"),
  48092. name: "Front",
  48093. image: {
  48094. source: "./media/characters/rasp/front.svg",
  48095. extra: 561/478,
  48096. bottom: 74/635
  48097. }
  48098. },
  48099. },
  48100. [
  48101. {
  48102. name: "Normal",
  48103. height: math.unit(4, "feet"),
  48104. default: true
  48105. },
  48106. ]
  48107. ))
  48108. characterMakers.push(() => makeCharacter(
  48109. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48110. {
  48111. front: {
  48112. height: math.unit(4 + 6/12, "feet"),
  48113. name: "Front",
  48114. image: {
  48115. source: "./media/characters/agatha/front.svg",
  48116. extra: 947/933,
  48117. bottom: 42/989
  48118. }
  48119. },
  48120. back: {
  48121. height: math.unit(4 + 6/12, "feet"),
  48122. name: "Back",
  48123. image: {
  48124. source: "./media/characters/agatha/back.svg",
  48125. extra: 935/922,
  48126. bottom: 48/983
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(4 + 6 /12, "feet"),
  48134. default: true
  48135. },
  48136. {
  48137. name: "Max Size",
  48138. height: math.unit(500, "feet")
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48144. {
  48145. side: {
  48146. height: math.unit(30, "feet"),
  48147. name: "Side",
  48148. image: {
  48149. source: "./media/characters/roggy/side.svg",
  48150. extra: 909/643,
  48151. bottom: 63/972
  48152. }
  48153. },
  48154. lounging: {
  48155. height: math.unit(20, "feet"),
  48156. name: "Lounging",
  48157. image: {
  48158. source: "./media/characters/roggy/lounging.svg",
  48159. extra: 643/479,
  48160. bottom: 145/788
  48161. }
  48162. },
  48163. handpaw: {
  48164. height: math.unit(13.1, "feet"),
  48165. name: "Handpaw",
  48166. image: {
  48167. source: "./media/characters/roggy/handpaw.svg"
  48168. }
  48169. },
  48170. footpaw: {
  48171. height: math.unit(15.8, "feet"),
  48172. name: "Footpaw",
  48173. image: {
  48174. source: "./media/characters/roggy/footpaw.svg"
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Menacing",
  48181. height: math.unit(30, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(5 + 7/12, "feet"),
  48191. weight: math.unit(135, "lb"),
  48192. name: "Front",
  48193. image: {
  48194. source: "./media/characters/naomi/front.svg",
  48195. extra: 1209/1154,
  48196. bottom: 129/1338
  48197. }
  48198. },
  48199. back: {
  48200. height: math.unit(5 + 7/12, "feet"),
  48201. weight: math.unit(135, "lb"),
  48202. name: "Back",
  48203. image: {
  48204. source: "./media/characters/naomi/back.svg",
  48205. extra: 1252/1190,
  48206. bottom: 23/1275
  48207. }
  48208. },
  48209. },
  48210. [
  48211. {
  48212. name: "Normal",
  48213. height: math.unit(5 + 7 /12, "feet"),
  48214. default: true
  48215. },
  48216. ]
  48217. ))
  48218. characterMakers.push(() => makeCharacter(
  48219. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48220. {
  48221. side: {
  48222. height: math.unit(35, "meters"),
  48223. name: "Side",
  48224. image: {
  48225. source: "./media/characters/kimpi/side.svg",
  48226. extra: 419/382,
  48227. bottom: 63/482
  48228. }
  48229. },
  48230. hand: {
  48231. height: math.unit(8.96, "meters"),
  48232. name: "Hand",
  48233. image: {
  48234. source: "./media/characters/kimpi/hand.svg"
  48235. }
  48236. },
  48237. },
  48238. [
  48239. {
  48240. name: "Normal",
  48241. height: math.unit(35, "meters"),
  48242. default: true
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48248. {
  48249. front: {
  48250. height: math.unit(4 + 4/12, "feet"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/pepper-purrloin/front.svg",
  48254. extra: 1141/1024,
  48255. bottom: 21/1162
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(4 + 4/12, "feet"),
  48263. default: true
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48269. {
  48270. front: {
  48271. height: math.unit(6 + 2/12, "feet"),
  48272. name: "Front",
  48273. image: {
  48274. source: "./media/characters/raphael/front.svg",
  48275. extra: 1101/962,
  48276. bottom: 59/1160
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Normal",
  48283. height: math.unit(6 + 2/12, "feet"),
  48284. default: true
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48290. {
  48291. front: {
  48292. height: math.unit(6, "feet"),
  48293. weight: math.unit(150, "lb"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/victor-williams/front.svg",
  48297. extra: 1894/1825,
  48298. bottom: 67/1961
  48299. }
  48300. },
  48301. },
  48302. [
  48303. {
  48304. name: "Normal",
  48305. height: math.unit(6, "feet"),
  48306. default: true
  48307. },
  48308. ]
  48309. ))
  48310. characterMakers.push(() => makeCharacter(
  48311. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48312. {
  48313. front: {
  48314. height: math.unit(5 + 8/12, "feet"),
  48315. weight: math.unit(150, "lb"),
  48316. name: "Front",
  48317. image: {
  48318. source: "./media/characters/rachel/front.svg",
  48319. extra: 1902/1787,
  48320. bottom: 46/1948
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Base Height",
  48327. height: math.unit(5 + 8/12, "feet"),
  48328. default: true
  48329. },
  48330. {
  48331. name: "Macro",
  48332. height: math.unit(200, "feet")
  48333. },
  48334. {
  48335. name: "Mega Macro",
  48336. height: math.unit(1, "mile")
  48337. },
  48338. {
  48339. name: "Giga Macro",
  48340. height: math.unit(1500, "miles")
  48341. },
  48342. {
  48343. name: "Tera Macro",
  48344. height: math.unit(8000, "miles")
  48345. },
  48346. {
  48347. name: "Tera Macro+",
  48348. height: math.unit(2e5, "miles")
  48349. },
  48350. ]
  48351. ))
  48352. characterMakers.push(() => makeCharacter(
  48353. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48354. {
  48355. front: {
  48356. height: math.unit(6.5, "feet"),
  48357. name: "Front",
  48358. image: {
  48359. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48360. extra: 860/819,
  48361. bottom: 307/1167
  48362. }
  48363. },
  48364. back: {
  48365. height: math.unit(6.5, "feet"),
  48366. name: "Back",
  48367. image: {
  48368. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48369. extra: 880/837,
  48370. bottom: 395/1275
  48371. }
  48372. },
  48373. sleeping: {
  48374. height: math.unit(2.79, "feet"),
  48375. name: "Sleeping",
  48376. image: {
  48377. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48378. extra: 465/383,
  48379. bottom: 263/728
  48380. }
  48381. },
  48382. maw: {
  48383. height: math.unit(2.52, "feet"),
  48384. name: "Maw",
  48385. image: {
  48386. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Normal",
  48393. height: math.unit(6.5, "feet"),
  48394. default: true
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48400. {
  48401. front: {
  48402. height: math.unit(5, "feet"),
  48403. name: "Front",
  48404. image: {
  48405. source: "./media/characters/nova-nerium/front.svg",
  48406. extra: 1548/1392,
  48407. bottom: 374/1922
  48408. }
  48409. },
  48410. back: {
  48411. height: math.unit(5, "feet"),
  48412. name: "Back",
  48413. image: {
  48414. source: "./media/characters/nova-nerium/back.svg",
  48415. extra: 1658/1468,
  48416. bottom: 257/1915
  48417. }
  48418. },
  48419. },
  48420. [
  48421. {
  48422. name: "Normal",
  48423. height: math.unit(5, "feet"),
  48424. default: true
  48425. },
  48426. ]
  48427. ))
  48428. characterMakers.push(() => makeCharacter(
  48429. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48430. {
  48431. front: {
  48432. height: math.unit(5 + 4/12, "feet"),
  48433. name: "Front",
  48434. image: {
  48435. source: "./media/characters/ashe-pyriph/front.svg",
  48436. extra: 1935/1747,
  48437. bottom: 60/1995
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Normal",
  48444. height: math.unit(5 + 4/12, "feet"),
  48445. default: true
  48446. },
  48447. ]
  48448. ))
  48449. characterMakers.push(() => makeCharacter(
  48450. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48451. {
  48452. front: {
  48453. height: math.unit(8.7, "feet"),
  48454. name: "Front",
  48455. image: {
  48456. source: "./media/characters/flicker-wisp/front.svg",
  48457. extra: 1835/1613,
  48458. bottom: 449/2284
  48459. }
  48460. },
  48461. side: {
  48462. height: math.unit(8.7, "feet"),
  48463. name: "Side",
  48464. image: {
  48465. source: "./media/characters/flicker-wisp/side.svg",
  48466. extra: 1841/1642,
  48467. bottom: 336/2177
  48468. },
  48469. default: true
  48470. },
  48471. maw: {
  48472. height: math.unit(3.35, "feet"),
  48473. name: "Maw",
  48474. image: {
  48475. source: "./media/characters/flicker-wisp/maw.svg",
  48476. extra: 2338/1506,
  48477. bottom: 0/2338
  48478. }
  48479. },
  48480. ovipositor: {
  48481. height: math.unit(4.95, "feet"),
  48482. name: "Ovipositor",
  48483. image: {
  48484. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48485. }
  48486. },
  48487. egg: {
  48488. height: math.unit(0.385, "feet"),
  48489. weight: math.unit(2, "lb"),
  48490. name: "Egg",
  48491. image: {
  48492. source: "./media/characters/flicker-wisp/egg.svg"
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(8.7, "feet"),
  48500. default: true
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48506. {
  48507. side: {
  48508. height: math.unit(11, "feet"),
  48509. name: "Side",
  48510. image: {
  48511. source: "./media/characters/faefnul/side.svg",
  48512. extra: 1100/1007,
  48513. bottom: 0/1100
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(11, "feet"),
  48521. default: true
  48522. },
  48523. ]
  48524. ))
  48525. characterMakers.push(() => makeCharacter(
  48526. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48527. {
  48528. front: {
  48529. height: math.unit(6 + 2/12, "feet"),
  48530. name: "Front",
  48531. image: {
  48532. source: "./media/characters/shady/front.svg",
  48533. extra: 502/461,
  48534. bottom: 9/511
  48535. }
  48536. },
  48537. kneeling: {
  48538. height: math.unit(4.6, "feet"),
  48539. name: "Kneeling",
  48540. image: {
  48541. source: "./media/characters/shady/kneeling.svg",
  48542. extra: 1328/1219,
  48543. bottom: 117/1445
  48544. }
  48545. },
  48546. maw: {
  48547. height: math.unit(2, "feet"),
  48548. name: "Maw",
  48549. image: {
  48550. source: "./media/characters/shady/maw.svg"
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Nano",
  48557. height: math.unit(1, "mm")
  48558. },
  48559. {
  48560. name: "Micro",
  48561. height: math.unit(12, "mm")
  48562. },
  48563. {
  48564. name: "Tiny",
  48565. height: math.unit(3, "inches")
  48566. },
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(6 + 2/12, "feet"),
  48570. default: true
  48571. },
  48572. {
  48573. name: "Big",
  48574. height: math.unit(15, "feet")
  48575. },
  48576. {
  48577. name: "Macro",
  48578. height: math.unit(150, "feet")
  48579. },
  48580. {
  48581. name: "Titanic",
  48582. height: math.unit(500, "feet")
  48583. },
  48584. ]
  48585. ))
  48586. characterMakers.push(() => makeCharacter(
  48587. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48588. {
  48589. front: {
  48590. height: math.unit(12, "feet"),
  48591. name: "Front",
  48592. image: {
  48593. source: "./media/characters/fenrir/front.svg",
  48594. extra: 968/875,
  48595. bottom: 22/990
  48596. }
  48597. },
  48598. },
  48599. [
  48600. {
  48601. name: "Big",
  48602. height: math.unit(12, "feet"),
  48603. default: true
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(5 + 4/12, "feet"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/makar/front.svg",
  48615. extra: 1181/1112,
  48616. bottom: 78/1259
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(5 + 4/12, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48630. {
  48631. front: {
  48632. height: math.unit(5 + 7/12, "feet"),
  48633. name: "Front",
  48634. image: {
  48635. source: "./media/characters/callow/front.svg",
  48636. extra: 1482/1304,
  48637. bottom: 23/1505
  48638. }
  48639. },
  48640. back: {
  48641. height: math.unit(5 + 7/12, "feet"),
  48642. name: "Back",
  48643. image: {
  48644. source: "./media/characters/callow/back.svg",
  48645. extra: 1484/1296,
  48646. bottom: 25/1509
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Micro",
  48653. height: math.unit(3, "inches"),
  48654. default: true
  48655. },
  48656. {
  48657. name: "Normal",
  48658. height: math.unit(5 + 7/12, "feet")
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48664. {
  48665. front: {
  48666. height: math.unit(6 + 2/12, "feet"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/natel/front.svg",
  48670. extra: 1833/1692,
  48671. bottom: 166/1999
  48672. }
  48673. },
  48674. },
  48675. [
  48676. {
  48677. name: "Normal",
  48678. height: math.unit(6 + 2/12, "feet"),
  48679. default: true
  48680. },
  48681. ]
  48682. ))
  48683. characterMakers.push(() => makeCharacter(
  48684. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48685. {
  48686. front: {
  48687. height: math.unit(1.75, "meters"),
  48688. name: "Front",
  48689. image: {
  48690. source: "./media/characters/misu/front.svg",
  48691. extra: 1690/1558,
  48692. bottom: 234/1924
  48693. }
  48694. },
  48695. back: {
  48696. height: math.unit(1.75, "meters"),
  48697. name: "Back",
  48698. image: {
  48699. source: "./media/characters/misu/back.svg",
  48700. extra: 1762/1618,
  48701. bottom: 146/1908
  48702. }
  48703. },
  48704. frontNude: {
  48705. height: math.unit(1.75, "meters"),
  48706. name: "Front (Nude)",
  48707. image: {
  48708. source: "./media/characters/misu/front-nude.svg",
  48709. extra: 1690/1558,
  48710. bottom: 234/1924
  48711. }
  48712. },
  48713. backNude: {
  48714. height: math.unit(1.75, "meters"),
  48715. name: "Back (Nude)",
  48716. image: {
  48717. source: "./media/characters/misu/back-nude.svg",
  48718. extra: 1762/1618,
  48719. bottom: 146/1908
  48720. }
  48721. },
  48722. frontErect: {
  48723. height: math.unit(1.75, "meters"),
  48724. name: "Front (Erect)",
  48725. image: {
  48726. source: "./media/characters/misu/front-erect.svg",
  48727. extra: 1690/1558,
  48728. bottom: 234/1924
  48729. }
  48730. },
  48731. maw: {
  48732. height: math.unit(0.47, "meters"),
  48733. name: "Maw",
  48734. image: {
  48735. source: "./media/characters/misu/maw.svg"
  48736. }
  48737. },
  48738. head: {
  48739. height: math.unit(0.35, "meters"),
  48740. name: "Head",
  48741. image: {
  48742. source: "./media/characters/misu/head.svg"
  48743. }
  48744. },
  48745. rear: {
  48746. height: math.unit(0.47, "meters"),
  48747. name: "Rear",
  48748. image: {
  48749. source: "./media/characters/misu/rear.svg"
  48750. }
  48751. },
  48752. },
  48753. [
  48754. {
  48755. name: "Normal",
  48756. height: math.unit(1.75, "meters")
  48757. },
  48758. {
  48759. name: "Not good for the people",
  48760. height: math.unit(42, "meters")
  48761. },
  48762. {
  48763. name: "Not good for the neighborhood",
  48764. height: math.unit(135, "meters")
  48765. },
  48766. {
  48767. name: "Bit bigger problem",
  48768. height: math.unit(380, "meters"),
  48769. default: true
  48770. },
  48771. {
  48772. name: "Not good for the city",
  48773. height: math.unit(1.5, "km")
  48774. },
  48775. {
  48776. name: "Not good for the county",
  48777. height: math.unit(5.5, "km")
  48778. },
  48779. {
  48780. name: "Not good for the state",
  48781. height: math.unit(25, "km")
  48782. },
  48783. {
  48784. name: "Not good for the country",
  48785. height: math.unit(125, "km")
  48786. },
  48787. {
  48788. name: "Not good for the continent",
  48789. height: math.unit(2100, "km")
  48790. },
  48791. {
  48792. name: "Not good for the planet",
  48793. height: math.unit(35000, "km")
  48794. },
  48795. {
  48796. name: "Just no",
  48797. height: math.unit(8.5e18, "km")
  48798. },
  48799. ]
  48800. ))
  48801. characterMakers.push(() => makeCharacter(
  48802. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48803. {
  48804. front: {
  48805. height: math.unit(6.5, "feet"),
  48806. name: "Front",
  48807. image: {
  48808. source: "./media/characters/poppy/front.svg",
  48809. extra: 1878/1812,
  48810. bottom: 43/1921
  48811. }
  48812. },
  48813. feet: {
  48814. height: math.unit(1.06, "feet"),
  48815. name: "Feet",
  48816. image: {
  48817. source: "./media/characters/poppy/feet.svg",
  48818. extra: 1083/1083,
  48819. bottom: 87/1170
  48820. }
  48821. },
  48822. },
  48823. [
  48824. {
  48825. name: "Human",
  48826. height: math.unit(6.5, "feet")
  48827. },
  48828. {
  48829. name: "Default",
  48830. height: math.unit(300, "feet"),
  48831. default: true
  48832. },
  48833. {
  48834. name: "Huge",
  48835. height: math.unit(850, "feet")
  48836. },
  48837. {
  48838. name: "Mega",
  48839. height: math.unit(8000, "feet")
  48840. },
  48841. {
  48842. name: "Giga",
  48843. height: math.unit(300, "miles")
  48844. },
  48845. ]
  48846. ))
  48847. characterMakers.push(() => makeCharacter(
  48848. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48849. {
  48850. bipedal: {
  48851. height: math.unit(7, "feet"),
  48852. name: "Bipedal",
  48853. image: {
  48854. source: "./media/characters/zener/bipedal.svg",
  48855. extra: 874/805,
  48856. bottom: 109/983
  48857. }
  48858. },
  48859. quadrupedal: {
  48860. height: math.unit(4.64, "feet"),
  48861. name: "Quadrupedal",
  48862. image: {
  48863. source: "./media/characters/zener/quadrupedal.svg",
  48864. extra: 638/507,
  48865. bottom: 190/828
  48866. }
  48867. },
  48868. cock: {
  48869. height: math.unit(18, "inches"),
  48870. name: "Cock",
  48871. image: {
  48872. source: "./media/characters/zener/cock.svg"
  48873. }
  48874. },
  48875. },
  48876. [
  48877. {
  48878. name: "Normal",
  48879. height: math.unit(7, "feet"),
  48880. default: true
  48881. },
  48882. ]
  48883. ))
  48884. characterMakers.push(() => makeCharacter(
  48885. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48886. {
  48887. nude: {
  48888. height: math.unit(5 + 6/12, "feet"),
  48889. name: "Nude",
  48890. image: {
  48891. source: "./media/characters/charlie-dog/nude.svg",
  48892. extra: 768/734,
  48893. bottom: 26/794
  48894. }
  48895. },
  48896. dressed: {
  48897. height: math.unit(5 + 6/12, "feet"),
  48898. name: "Dressed",
  48899. image: {
  48900. source: "./media/characters/charlie-dog/dressed.svg",
  48901. extra: 768/734,
  48902. bottom: 26/794
  48903. }
  48904. },
  48905. },
  48906. [
  48907. {
  48908. name: "Normal",
  48909. height: math.unit(5 + 6/12, "feet"),
  48910. default: true
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(6 + 4/12, "feet"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/ir'istrasz/front.svg",
  48922. extra: 1014/977,
  48923. bottom: 65/1079
  48924. }
  48925. },
  48926. back: {
  48927. height: math.unit(6 + 4/12, "feet"),
  48928. name: "Back",
  48929. image: {
  48930. source: "./media/characters/ir'istrasz/back.svg",
  48931. extra: 1024/992,
  48932. bottom: 34/1058
  48933. }
  48934. },
  48935. },
  48936. [
  48937. {
  48938. name: "Normal",
  48939. height: math.unit(6 + 4/12, "feet"),
  48940. default: true
  48941. },
  48942. ]
  48943. ))
  48944. characterMakers.push(() => makeCharacter(
  48945. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48946. {
  48947. front: {
  48948. height: math.unit(5 + 8/12, "feet"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/dee-ditto/front.svg",
  48952. extra: 1874/1785,
  48953. bottom: 68/1942
  48954. }
  48955. },
  48956. back: {
  48957. height: math.unit(5 + 8/12, "feet"),
  48958. name: "Back",
  48959. image: {
  48960. source: "./media/characters/dee-ditto/back.svg",
  48961. extra: 1870/1783,
  48962. bottom: 77/1947
  48963. }
  48964. },
  48965. },
  48966. [
  48967. {
  48968. name: "Normal",
  48969. height: math.unit(5 + 8/12, "feet"),
  48970. default: true
  48971. },
  48972. ]
  48973. ))
  48974. characterMakers.push(() => makeCharacter(
  48975. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48976. {
  48977. front: {
  48978. height: math.unit(7 + 6/12, "feet"),
  48979. name: "Front",
  48980. image: {
  48981. source: "./media/characters/fey/front.svg",
  48982. extra: 995/979,
  48983. bottom: 30/1025
  48984. }
  48985. },
  48986. back: {
  48987. height: math.unit(7 + 6/12, "feet"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/fey/back.svg",
  48991. extra: 1079/1008,
  48992. bottom: 5/1084
  48993. }
  48994. },
  48995. dressed: {
  48996. height: math.unit(7 + 6/12, "feet"),
  48997. name: "Dressed",
  48998. image: {
  48999. source: "./media/characters/fey/dressed.svg",
  49000. extra: 995/979,
  49001. bottom: 30/1025
  49002. }
  49003. },
  49004. },
  49005. [
  49006. {
  49007. name: "Normal",
  49008. height: math.unit(7 + 6/12, "feet"),
  49009. default: true
  49010. },
  49011. ]
  49012. ))
  49013. characterMakers.push(() => makeCharacter(
  49014. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49015. {
  49016. standing: {
  49017. height: math.unit(17, "feet"),
  49018. name: "Standing",
  49019. image: {
  49020. source: "./media/characters/aster/standing.svg",
  49021. extra: 1798/1598,
  49022. bottom: 117/1915
  49023. }
  49024. },
  49025. },
  49026. [
  49027. {
  49028. name: "Normal",
  49029. height: math.unit(17, "feet"),
  49030. default: true
  49031. },
  49032. {
  49033. name: "Homewrecker",
  49034. height: math.unit(95, "feet")
  49035. },
  49036. {
  49037. name: "Planet Devourer",
  49038. height: math.unit(1008000, "miles")
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49044. {
  49045. front: {
  49046. height: math.unit(6 + 5/12, "feet"),
  49047. weight: math.unit(265, "lb"),
  49048. name: "Front",
  49049. image: {
  49050. source: "./media/characters/devon-childs/front.svg",
  49051. extra: 1795/1721,
  49052. bottom: 41/1836
  49053. }
  49054. },
  49055. side: {
  49056. height: math.unit(6 + 5/12, "feet"),
  49057. weight: math.unit(265, "lb"),
  49058. name: "Side",
  49059. image: {
  49060. source: "./media/characters/devon-childs/side.svg",
  49061. extra: 1812/1738,
  49062. bottom: 30/1842
  49063. }
  49064. },
  49065. back: {
  49066. height: math.unit(6 + 5/12, "feet"),
  49067. weight: math.unit(265, "lb"),
  49068. name: "Back",
  49069. image: {
  49070. source: "./media/characters/devon-childs/back.svg",
  49071. extra: 1808/1735,
  49072. bottom: 23/1831
  49073. }
  49074. },
  49075. hand: {
  49076. height: math.unit(1.464, "feet"),
  49077. name: "Hand",
  49078. image: {
  49079. source: "./media/characters/devon-childs/hand.svg"
  49080. }
  49081. },
  49082. foot: {
  49083. height: math.unit(1.6, "feet"),
  49084. name: "Foot",
  49085. image: {
  49086. source: "./media/characters/devon-childs/foot.svg"
  49087. }
  49088. },
  49089. },
  49090. [
  49091. {
  49092. name: "Micro",
  49093. height: math.unit(7, "cm")
  49094. },
  49095. {
  49096. name: "Normal",
  49097. height: math.unit(6 + 5/12, "feet"),
  49098. default: true
  49099. },
  49100. {
  49101. name: "Macro",
  49102. height: math.unit(154, "feet")
  49103. },
  49104. ]
  49105. ))
  49106. characterMakers.push(() => makeCharacter(
  49107. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49108. {
  49109. front: {
  49110. height: math.unit(6, "feet"),
  49111. weight: math.unit(180, "lb"),
  49112. name: "Front",
  49113. image: {
  49114. source: "./media/characters/lydemox-vir/front.svg",
  49115. extra: 1632/1435,
  49116. bottom: 58/1690
  49117. }
  49118. },
  49119. frontSFW: {
  49120. height: math.unit(6, "feet"),
  49121. weight: math.unit(180, "lb"),
  49122. name: "Front (SFW)",
  49123. image: {
  49124. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49125. extra: 1632/1435,
  49126. bottom: 58/1690
  49127. }
  49128. },
  49129. back: {
  49130. height: math.unit(6, "feet"),
  49131. weight: math.unit(180, "lb"),
  49132. name: "Back",
  49133. image: {
  49134. source: "./media/characters/lydemox-vir/back.svg",
  49135. extra: 1593/1408,
  49136. bottom: 31/1624
  49137. }
  49138. },
  49139. paw: {
  49140. height: math.unit(1.85, "feet"),
  49141. name: "Paw",
  49142. image: {
  49143. source: "./media/characters/lydemox-vir/paw.svg"
  49144. }
  49145. },
  49146. dick: {
  49147. height: math.unit(1.8, "feet"),
  49148. name: "Dick",
  49149. image: {
  49150. source: "./media/characters/lydemox-vir/dick.svg"
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Macro",
  49157. height: math.unit(100, "feet"),
  49158. default: true
  49159. },
  49160. {
  49161. name: "Teramacro",
  49162. height: math.unit(1, "earth")
  49163. },
  49164. {
  49165. name: "Planetary",
  49166. height: math.unit(20, "earths")
  49167. },
  49168. ]
  49169. ))
  49170. characterMakers.push(() => makeCharacter(
  49171. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49172. {
  49173. front: {
  49174. height: math.unit(15 + 8/12, "feet"),
  49175. weight: math.unit(1237, "kg"),
  49176. name: "Front",
  49177. image: {
  49178. source: "./media/characters/mia/front.svg",
  49179. extra: 1573/1446,
  49180. bottom: 58/1631
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Small",
  49187. height: math.unit(9 + 5/12, "feet")
  49188. },
  49189. {
  49190. name: "Normal",
  49191. height: math.unit(15 + 8/12, "feet"),
  49192. default: true
  49193. },
  49194. ]
  49195. ))
  49196. characterMakers.push(() => makeCharacter(
  49197. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49198. {
  49199. front: {
  49200. height: math.unit(10 + 6/12, "feet"),
  49201. weight: math.unit(1.3, "tons"),
  49202. name: "Front",
  49203. image: {
  49204. source: "./media/characters/mr-graves/front.svg",
  49205. extra: 1779/1695,
  49206. bottom: 198/1977
  49207. }
  49208. },
  49209. },
  49210. [
  49211. {
  49212. name: "Normal",
  49213. height: math.unit(10 + 6 /12, "feet"),
  49214. default: true
  49215. },
  49216. ]
  49217. ))
  49218. characterMakers.push(() => makeCharacter(
  49219. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49220. {
  49221. dressedFront: {
  49222. height: math.unit(5 + 8/12, "feet"),
  49223. weight: math.unit(125, "lb"),
  49224. name: "Dressed (Front)",
  49225. image: {
  49226. source: "./media/characters/jess/dressed-front.svg",
  49227. extra: 1176/1152,
  49228. bottom: 42/1218
  49229. }
  49230. },
  49231. dressedSide: {
  49232. height: math.unit(5 + 8/12, "feet"),
  49233. weight: math.unit(125, "lb"),
  49234. name: "Dressed (Side)",
  49235. image: {
  49236. source: "./media/characters/jess/dressed-side.svg",
  49237. extra: 1204/1190,
  49238. bottom: 6/1210
  49239. }
  49240. },
  49241. nudeFront: {
  49242. height: math.unit(5 + 8/12, "feet"),
  49243. weight: math.unit(125, "lb"),
  49244. name: "Nude (Front)",
  49245. image: {
  49246. source: "./media/characters/jess/nude-front.svg",
  49247. extra: 1176/1152,
  49248. bottom: 42/1218
  49249. }
  49250. },
  49251. nudeSide: {
  49252. height: math.unit(5 + 8/12, "feet"),
  49253. weight: math.unit(125, "lb"),
  49254. name: "Nude (Side)",
  49255. image: {
  49256. source: "./media/characters/jess/nude-side.svg",
  49257. extra: 1204/1190,
  49258. bottom: 6/1210
  49259. }
  49260. },
  49261. organsFront: {
  49262. height: math.unit(2.83799342105, "feet"),
  49263. name: "Organs (Front)",
  49264. image: {
  49265. source: "./media/characters/jess/organs-front.svg"
  49266. }
  49267. },
  49268. organsSide: {
  49269. height: math.unit(2.64225290474, "feet"),
  49270. name: "Organs (Side)",
  49271. image: {
  49272. source: "./media/characters/jess/organs-side.svg"
  49273. }
  49274. },
  49275. digestiveTractFront: {
  49276. height: math.unit(2.8106580871, "feet"),
  49277. name: "Digestive Tract (Front)",
  49278. image: {
  49279. source: "./media/characters/jess/digestive-tract-front.svg"
  49280. }
  49281. },
  49282. digestiveTractSide: {
  49283. height: math.unit(2.54365045014, "feet"),
  49284. name: "Digestive Tract (Side)",
  49285. image: {
  49286. source: "./media/characters/jess/digestive-tract-side.svg"
  49287. }
  49288. },
  49289. respiratorySystemFront: {
  49290. height: math.unit(1.11196233456, "feet"),
  49291. name: "Respiratory System (Front)",
  49292. image: {
  49293. source: "./media/characters/jess/respiratory-system-front.svg"
  49294. }
  49295. },
  49296. respiratorySystemSide: {
  49297. height: math.unit(0.89327966297, "feet"),
  49298. name: "Respiratory System (Side)",
  49299. image: {
  49300. source: "./media/characters/jess/respiratory-system-side.svg"
  49301. }
  49302. },
  49303. urinaryTractFront: {
  49304. height: math.unit(1.16126356186, "feet"),
  49305. name: "Urinary Tract (Front)",
  49306. image: {
  49307. source: "./media/characters/jess/urinary-tract-front.svg"
  49308. }
  49309. },
  49310. urinaryTractSide: {
  49311. height: math.unit(1.20910039627, "feet"),
  49312. name: "Urinary Tract (Side)",
  49313. image: {
  49314. source: "./media/characters/jess/urinary-tract-side.svg"
  49315. }
  49316. },
  49317. reproductiveOrgansFront: {
  49318. height: math.unit(0.48422591566, "feet"),
  49319. name: "Reproductive Organs (Front)",
  49320. image: {
  49321. source: "./media/characters/jess/reproductive-organs-front.svg"
  49322. }
  49323. },
  49324. reproductiveOrgansSide: {
  49325. height: math.unit(0.61553314481, "feet"),
  49326. name: "Reproductive Organs (Side)",
  49327. image: {
  49328. source: "./media/characters/jess/reproductive-organs-side.svg"
  49329. }
  49330. },
  49331. breastsFront: {
  49332. height: math.unit(0.47690395121, "feet"),
  49333. name: "Breasts (Front)",
  49334. image: {
  49335. source: "./media/characters/jess/breasts-front.svg"
  49336. }
  49337. },
  49338. breastsSide: {
  49339. height: math.unit(0.30556998307, "feet"),
  49340. name: "Breasts (Side)",
  49341. image: {
  49342. source: "./media/characters/jess/breasts-side.svg"
  49343. }
  49344. },
  49345. heartFront: {
  49346. height: math.unit(0.53011022622, "feet"),
  49347. name: "Heart (Front)",
  49348. image: {
  49349. source: "./media/characters/jess/heart-front.svg"
  49350. }
  49351. },
  49352. heartSide: {
  49353. height: math.unit(0.51790695213, "feet"),
  49354. name: "Heart (Side)",
  49355. image: {
  49356. source: "./media/characters/jess/heart-side.svg"
  49357. }
  49358. },
  49359. earsAndNoseFront: {
  49360. height: math.unit(0.29385483995, "feet"),
  49361. name: "Ears and Nose (Front)",
  49362. image: {
  49363. source: "./media/characters/jess/ears-and-nose-front.svg"
  49364. }
  49365. },
  49366. earsAndNoseSide: {
  49367. height: math.unit(0.18109658741, "feet"),
  49368. name: "Ears and Nose (Side)",
  49369. image: {
  49370. source: "./media/characters/jess/ears-and-nose-side.svg"
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(5 + 8/12, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49384. {
  49385. front: {
  49386. height: math.unit(6, "feet"),
  49387. weight: math.unit(6.64467e-7, "grams"),
  49388. name: "Front",
  49389. image: {
  49390. source: "./media/characters/wimpering/front.svg",
  49391. extra: 597/587,
  49392. bottom: 34/631
  49393. }
  49394. },
  49395. },
  49396. [
  49397. {
  49398. name: "Micro",
  49399. height: math.unit(0.4, "mm"),
  49400. default: true
  49401. },
  49402. ]
  49403. ))
  49404. characterMakers.push(() => makeCharacter(
  49405. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49406. {
  49407. front: {
  49408. height: math.unit(5 + 2/12, "feet"),
  49409. weight: math.unit(110, "lb"),
  49410. name: "Front",
  49411. image: {
  49412. source: "./media/characters/keltre/front.svg",
  49413. extra: 1099/1057,
  49414. bottom: 22/1121
  49415. }
  49416. },
  49417. back: {
  49418. height: math.unit(5 + 2/12, "feet"),
  49419. weight: math.unit(110, "lb"),
  49420. name: "Back",
  49421. image: {
  49422. source: "./media/characters/keltre/back.svg",
  49423. extra: 1095/1053,
  49424. bottom: 17/1112
  49425. }
  49426. },
  49427. dressed: {
  49428. height: math.unit(5 + 2/12, "feet"),
  49429. weight: math.unit(110, "lb"),
  49430. name: "Dressed",
  49431. image: {
  49432. source: "./media/characters/keltre/dressed.svg",
  49433. extra: 1099/1057,
  49434. bottom: 22/1121
  49435. }
  49436. },
  49437. winter: {
  49438. height: math.unit(5 + 2/12, "feet"),
  49439. weight: math.unit(110, "lb"),
  49440. name: "Winter",
  49441. image: {
  49442. source: "./media/characters/keltre/winter.svg",
  49443. extra: 1099/1057,
  49444. bottom: 22/1121
  49445. }
  49446. },
  49447. head: {
  49448. height: math.unit(1.61 * 0.86, "feet"),
  49449. name: "Head",
  49450. image: {
  49451. source: "./media/characters/keltre/head.svg",
  49452. extra: 534/421,
  49453. bottom: 0/534
  49454. }
  49455. },
  49456. hand: {
  49457. height: math.unit(1.3 * 0.86, "feet"),
  49458. name: "Hand",
  49459. image: {
  49460. source: "./media/characters/keltre/hand.svg"
  49461. }
  49462. },
  49463. foot: {
  49464. height: math.unit(1.8 * 0.86, "feet"),
  49465. name: "Foot",
  49466. image: {
  49467. source: "./media/characters/keltre/foot.svg"
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Fine",
  49474. height: math.unit(1, "inch")
  49475. },
  49476. {
  49477. name: "Dimnutive",
  49478. height: math.unit(4, "inches")
  49479. },
  49480. {
  49481. name: "Tiny",
  49482. height: math.unit(1, "foot")
  49483. },
  49484. {
  49485. name: "Small",
  49486. height: math.unit(3, "feet")
  49487. },
  49488. {
  49489. name: "Normal",
  49490. height: math.unit(5 + 2/12, "feet"),
  49491. default: true
  49492. },
  49493. ]
  49494. ))
  49495. characterMakers.push(() => makeCharacter(
  49496. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49497. {
  49498. front: {
  49499. height: math.unit(6 + 2/12, "feet"),
  49500. name: "Front",
  49501. image: {
  49502. source: "./media/characters/nox/front.svg",
  49503. extra: 1917/1830,
  49504. bottom: 74/1991
  49505. }
  49506. },
  49507. back: {
  49508. height: math.unit(6 + 2/12, "feet"),
  49509. name: "Back",
  49510. image: {
  49511. source: "./media/characters/nox/back.svg",
  49512. extra: 1896/1815,
  49513. bottom: 21/1917
  49514. }
  49515. },
  49516. head: {
  49517. height: math.unit(1.1, "feet"),
  49518. name: "Head",
  49519. image: {
  49520. source: "./media/characters/nox/head.svg",
  49521. extra: 874/704,
  49522. bottom: 0/874
  49523. }
  49524. },
  49525. tattoo: {
  49526. height: math.unit(0.729, "feet"),
  49527. name: "Tattoo",
  49528. image: {
  49529. source: "./media/characters/nox/tattoo.svg"
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(6 + 2/12, "feet")
  49537. },
  49538. {
  49539. name: "Gigamacro",
  49540. height: math.unit(2, "earths"),
  49541. default: true
  49542. },
  49543. {
  49544. name: "Cosmic",
  49545. height: math.unit(867, "yottameters")
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49551. {
  49552. front: {
  49553. height: math.unit(6, "feet"),
  49554. weight: math.unit(150, "lb"),
  49555. name: "Front",
  49556. image: {
  49557. source: "./media/characters/caspian/front.svg",
  49558. extra: 1443/1359,
  49559. bottom: 0/1443
  49560. }
  49561. },
  49562. back: {
  49563. height: math.unit(6, "feet"),
  49564. weight: math.unit(150, "lb"),
  49565. name: "Back",
  49566. image: {
  49567. source: "./media/characters/caspian/back.svg",
  49568. extra: 1379/1309,
  49569. bottom: 0/1379
  49570. }
  49571. },
  49572. head: {
  49573. height: math.unit(0.9, "feet"),
  49574. name: "Head",
  49575. image: {
  49576. source: "./media/characters/caspian/head.svg",
  49577. extra: 692/492,
  49578. bottom: 0/692
  49579. }
  49580. },
  49581. headAlt: {
  49582. height: math.unit(0.95, "feet"),
  49583. name: "Head (Alt)",
  49584. image: {
  49585. source: "./media/characters/caspian/head-alt.svg",
  49586. extra: 668/508,
  49587. bottom: 0/668
  49588. }
  49589. },
  49590. hand: {
  49591. height: math.unit(0.8, "feet"),
  49592. name: "Hand",
  49593. image: {
  49594. source: "./media/characters/caspian/hand.svg"
  49595. }
  49596. },
  49597. paw: {
  49598. height: math.unit(0.95, "feet"),
  49599. name: "Paw",
  49600. image: {
  49601. source: "./media/characters/caspian/paw.svg"
  49602. }
  49603. },
  49604. },
  49605. [
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(162, "feet"),
  49609. default: true
  49610. },
  49611. ]
  49612. ))
  49613. characterMakers.push(() => makeCharacter(
  49614. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49615. {
  49616. front: {
  49617. height: math.unit(6, "feet"),
  49618. name: "Front",
  49619. image: {
  49620. source: "./media/characters/myra-aisling/front.svg",
  49621. extra: 1268/1166,
  49622. bottom: 73/1341
  49623. }
  49624. },
  49625. back: {
  49626. height: math.unit(6, "feet"),
  49627. name: "Back",
  49628. image: {
  49629. source: "./media/characters/myra-aisling/back.svg",
  49630. extra: 1249/1149,
  49631. bottom: 79/1328
  49632. }
  49633. },
  49634. dressed: {
  49635. height: math.unit(6, "feet"),
  49636. name: "Dressed",
  49637. image: {
  49638. source: "./media/characters/myra-aisling/dressed.svg",
  49639. extra: 1290/1189,
  49640. bottom: 47/1337
  49641. }
  49642. },
  49643. hand: {
  49644. height: math.unit(1.1, "feet"),
  49645. name: "Hand",
  49646. image: {
  49647. source: "./media/characters/myra-aisling/hand.svg"
  49648. }
  49649. },
  49650. paw: {
  49651. height: math.unit(1.23, "feet"),
  49652. name: "Paw",
  49653. image: {
  49654. source: "./media/characters/myra-aisling/paw.svg"
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(160, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49668. {
  49669. front: {
  49670. height: math.unit(6, "feet"),
  49671. name: "Front",
  49672. image: {
  49673. source: "./media/characters/tenley-sidero/front.svg",
  49674. extra: 1365/1276,
  49675. bottom: 47/1412
  49676. }
  49677. },
  49678. back: {
  49679. height: math.unit(6, "feet"),
  49680. name: "Back",
  49681. image: {
  49682. source: "./media/characters/tenley-sidero/back.svg",
  49683. extra: 1383/1283,
  49684. bottom: 35/1418
  49685. }
  49686. },
  49687. dressed: {
  49688. height: math.unit(6, "feet"),
  49689. name: "Dressed",
  49690. image: {
  49691. source: "./media/characters/tenley-sidero/dressed.svg",
  49692. extra: 1364/1275,
  49693. bottom: 42/1406
  49694. }
  49695. },
  49696. head: {
  49697. height: math.unit(1.47, "feet"),
  49698. name: "Head",
  49699. image: {
  49700. source: "./media/characters/tenley-sidero/head.svg",
  49701. extra: 610/490,
  49702. bottom: 0/610
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(154, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(5, "inches"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/mallory/front.svg",
  49722. extra: 1919/1678,
  49723. bottom: 29/1948
  49724. }
  49725. },
  49726. hand: {
  49727. height: math.unit(0.73, "inches"),
  49728. name: "Hand",
  49729. image: {
  49730. source: "./media/characters/mallory/hand.svg"
  49731. }
  49732. },
  49733. paw: {
  49734. height: math.unit(0.68, "inches"),
  49735. name: "Paw",
  49736. image: {
  49737. source: "./media/characters/mallory/paw.svg"
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Small",
  49744. height: math.unit(5, "inches"),
  49745. default: true
  49746. },
  49747. ]
  49748. ))
  49749. characterMakers.push(() => makeCharacter(
  49750. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49751. {
  49752. naked: {
  49753. height: math.unit(6, "feet"),
  49754. name: "Naked",
  49755. image: {
  49756. source: "./media/characters/mab/naked.svg",
  49757. extra: 1855/1757,
  49758. bottom: 208/2063
  49759. }
  49760. },
  49761. outside: {
  49762. height: math.unit(6, "feet"),
  49763. name: "Outside",
  49764. image: {
  49765. source: "./media/characters/mab/outside.svg",
  49766. extra: 1855/1757,
  49767. bottom: 208/2063
  49768. }
  49769. },
  49770. party: {
  49771. height: math.unit(6, "feet"),
  49772. name: "Party",
  49773. image: {
  49774. source: "./media/characters/mab/party.svg",
  49775. extra: 1855/1757,
  49776. bottom: 208/2063
  49777. }
  49778. },
  49779. },
  49780. [
  49781. {
  49782. name: "Normal",
  49783. height: math.unit(165, "feet"),
  49784. default: true
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49790. {
  49791. feral: {
  49792. height: math.unit(12, "feet"),
  49793. weight: math.unit(20000, "lb"),
  49794. name: "Side",
  49795. image: {
  49796. source: "./media/characters/winter/feral.svg",
  49797. extra: 1286/943,
  49798. bottom: 112/1398
  49799. },
  49800. form: "feral",
  49801. default: true
  49802. },
  49803. feralNsfw: {
  49804. height: math.unit(12, "feet"),
  49805. weight: math.unit(20000, "lb"),
  49806. name: "Side (NSFW)",
  49807. image: {
  49808. source: "./media/characters/winter/feral-nsfw.svg",
  49809. extra: 1286/943,
  49810. bottom: 112/1398
  49811. },
  49812. form: "feral"
  49813. },
  49814. dick: {
  49815. height: math.unit(3.79, "feet"),
  49816. name: "Dick",
  49817. image: {
  49818. source: "./media/characters/winter/dick.svg"
  49819. },
  49820. form: "feral"
  49821. },
  49822. anthro: {
  49823. height: math.unit(12, "feet"),
  49824. weight: math.unit(10, "tons"),
  49825. name: "Anthro",
  49826. image: {
  49827. source: "./media/characters/winter/anthro.svg",
  49828. extra: 1701/1553,
  49829. bottom: 64/1765
  49830. },
  49831. form: "anthro",
  49832. default: true
  49833. },
  49834. },
  49835. [
  49836. {
  49837. name: "Big",
  49838. height: math.unit(12, "feet"),
  49839. default: true,
  49840. form: "feral"
  49841. },
  49842. {
  49843. name: "Big",
  49844. height: math.unit(12, "feet"),
  49845. default: true,
  49846. form: "anthro"
  49847. },
  49848. ],
  49849. {
  49850. "feral": {
  49851. name: "Feral",
  49852. default: true
  49853. },
  49854. "anthro": {
  49855. name: "Anthro"
  49856. }
  49857. }
  49858. ))
  49859. characterMakers.push(() => makeCharacter(
  49860. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49861. {
  49862. front: {
  49863. height: math.unit(4.1, "inches"),
  49864. name: "Front",
  49865. image: {
  49866. source: "./media/characters/alto/front.svg",
  49867. extra: 736/627,
  49868. bottom: 90/826
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Normal",
  49875. height: math.unit(4.1, "inches"),
  49876. default: true
  49877. },
  49878. ]
  49879. ))
  49880. characterMakers.push(() => makeCharacter(
  49881. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49882. {
  49883. sitting: {
  49884. height: math.unit(3, "feet"),
  49885. name: "Sitting",
  49886. image: {
  49887. source: "./media/characters/ratstrid-v/sitting.svg",
  49888. extra: 355/310,
  49889. bottom: 136/491
  49890. }
  49891. },
  49892. },
  49893. [
  49894. {
  49895. name: "Normal",
  49896. height: math.unit(3, "feet"),
  49897. default: true
  49898. },
  49899. ]
  49900. ))
  49901. characterMakers.push(() => makeCharacter(
  49902. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49903. {
  49904. back: {
  49905. height: math.unit(6, "feet"),
  49906. weight: math.unit(350, "lb"),
  49907. name: "Back",
  49908. image: {
  49909. source: "./media/characters/siz/back.svg",
  49910. extra: 1449/1274,
  49911. bottom: 13/1462
  49912. }
  49913. },
  49914. },
  49915. [
  49916. {
  49917. name: "Over-Overcompressed",
  49918. height: math.unit(8, "feet")
  49919. },
  49920. {
  49921. name: "Overcompressed",
  49922. height: math.unit(32, "feet")
  49923. },
  49924. {
  49925. name: "Compressed",
  49926. height: math.unit(128, "feet"),
  49927. default: true
  49928. },
  49929. {
  49930. name: "Half-Compressed",
  49931. height: math.unit(512, "feet")
  49932. },
  49933. {
  49934. name: "Quarter-Compressed",
  49935. height: math.unit(2048, "feet")
  49936. },
  49937. {
  49938. name: "Uncompressed?",
  49939. height: math.unit(8192, "feet")
  49940. },
  49941. ]
  49942. ))
  49943. characterMakers.push(() => makeCharacter(
  49944. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49945. {
  49946. front: {
  49947. height: math.unit(5 + 9/12, "feet"),
  49948. weight: math.unit(150, "lb"),
  49949. name: "Front",
  49950. image: {
  49951. source: "./media/characters/ven/front.svg",
  49952. extra: 1372/1320,
  49953. bottom: 73/1445
  49954. }
  49955. },
  49956. side: {
  49957. height: math.unit(5 + 9/12, "feet"),
  49958. weight: math.unit(1150, "lb"),
  49959. name: "Side",
  49960. image: {
  49961. source: "./media/characters/ven/side.svg",
  49962. extra: 1119/1070,
  49963. bottom: 42/1161
  49964. },
  49965. default: true
  49966. },
  49967. },
  49968. [
  49969. {
  49970. name: "Normal",
  49971. height: math.unit(5 + 9/12, "feet"),
  49972. default: true
  49973. },
  49974. ]
  49975. ))
  49976. characterMakers.push(() => makeCharacter(
  49977. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49978. {
  49979. front: {
  49980. height: math.unit(12, "feet"),
  49981. weight: math.unit(1000, "kg"),
  49982. name: "Front",
  49983. image: {
  49984. source: "./media/characters/maple/front.svg",
  49985. extra: 1193/1081,
  49986. bottom: 22/1215
  49987. }
  49988. },
  49989. },
  49990. [
  49991. {
  49992. name: "Compressed",
  49993. height: math.unit(7, "feet")
  49994. },
  49995. {
  49996. name: "Normal",
  49997. height: math.unit(12, "feet"),
  49998. default: true
  49999. },
  50000. ]
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50004. {
  50005. front: {
  50006. height: math.unit(9, "feet"),
  50007. weight: math.unit(1500, "lb"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/nora/front.svg",
  50011. extra: 1348/1286,
  50012. bottom: 218/1566
  50013. }
  50014. },
  50015. erect: {
  50016. height: math.unit(9, "feet"),
  50017. weight: math.unit(11500, "lb"),
  50018. name: "Erect",
  50019. image: {
  50020. source: "./media/characters/nora/erect.svg",
  50021. extra: 1488/1433,
  50022. bottom: 133/1621
  50023. }
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Normal",
  50029. height: math.unit(9, "feet"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50036. {
  50037. front: {
  50038. height: math.unit(25, "feet"),
  50039. weight: math.unit(27500, "lb"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/north-caudin/front.svg",
  50043. extra: 1184/1082,
  50044. bottom: 23/1207
  50045. }
  50046. },
  50047. },
  50048. [
  50049. {
  50050. name: "Compressed",
  50051. height: math.unit(10, "feet")
  50052. },
  50053. {
  50054. name: "Normal",
  50055. height: math.unit(25, "feet"),
  50056. default: true
  50057. },
  50058. ]
  50059. ))
  50060. characterMakers.push(() => makeCharacter(
  50061. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50062. {
  50063. front: {
  50064. height: math.unit(9, "feet"),
  50065. weight: math.unit(1250, "lb"),
  50066. name: "Front",
  50067. image: {
  50068. source: "./media/characters/merrian/front.svg",
  50069. extra: 2393/2304,
  50070. bottom: 40/2433
  50071. }
  50072. },
  50073. },
  50074. [
  50075. {
  50076. name: "Normal",
  50077. height: math.unit(9, "feet"),
  50078. default: true
  50079. },
  50080. ]
  50081. ))
  50082. characterMakers.push(() => makeCharacter(
  50083. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50084. {
  50085. front: {
  50086. height: math.unit(9, "feet"),
  50087. weight: math.unit(1000, "lb"),
  50088. name: "Front",
  50089. image: {
  50090. source: "./media/characters/hazel/front.svg",
  50091. extra: 2351/2298,
  50092. bottom: 38/2389
  50093. }
  50094. },
  50095. },
  50096. [
  50097. {
  50098. name: "Normal",
  50099. height: math.unit(9, "feet"),
  50100. default: true
  50101. },
  50102. ]
  50103. ))
  50104. characterMakers.push(() => makeCharacter(
  50105. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50106. {
  50107. front: {
  50108. height: math.unit(13, "feet"),
  50109. weight: math.unit(3200, "lb"),
  50110. name: "Front",
  50111. image: {
  50112. source: "./media/characters/emma/front.svg",
  50113. extra: 2263/2029,
  50114. bottom: 68/2331
  50115. }
  50116. },
  50117. },
  50118. [
  50119. {
  50120. name: "Normal",
  50121. height: math.unit(13, "feet"),
  50122. default: true
  50123. },
  50124. ]
  50125. ))
  50126. characterMakers.push(() => makeCharacter(
  50127. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50128. {
  50129. front: {
  50130. height: math.unit(11 + 9/12, "feet"),
  50131. weight: math.unit(2500, "lb"),
  50132. name: "Front",
  50133. image: {
  50134. source: "./media/characters/ilumina/front.svg",
  50135. extra: 2248/2209,
  50136. bottom: 164/2412
  50137. }
  50138. },
  50139. },
  50140. [
  50141. {
  50142. name: "Normal",
  50143. height: math.unit(11 + 9/12, "feet"),
  50144. default: true
  50145. },
  50146. ]
  50147. ))
  50148. characterMakers.push(() => makeCharacter(
  50149. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50150. {
  50151. front: {
  50152. height: math.unit(8 + 10/12, "feet"),
  50153. weight: math.unit(1350, "lb"),
  50154. name: "Front",
  50155. image: {
  50156. source: "./media/characters/moonshine/front.svg",
  50157. extra: 2395/2288,
  50158. bottom: 40/2435
  50159. }
  50160. },
  50161. },
  50162. [
  50163. {
  50164. name: "Normal",
  50165. height: math.unit(8 + 10/12, "feet"),
  50166. default: true
  50167. },
  50168. ]
  50169. ))
  50170. characterMakers.push(() => makeCharacter(
  50171. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50172. {
  50173. front: {
  50174. height: math.unit(14, "feet"),
  50175. weight: math.unit(3400, "lb"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/aletia/front.svg",
  50179. extra: 1185/1052,
  50180. bottom: 21/1206
  50181. }
  50182. },
  50183. },
  50184. [
  50185. {
  50186. name: "Compressed",
  50187. height: math.unit(8, "feet")
  50188. },
  50189. {
  50190. name: "Normal",
  50191. height: math.unit(14, "feet"),
  50192. default: true
  50193. },
  50194. ]
  50195. ))
  50196. characterMakers.push(() => makeCharacter(
  50197. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50198. {
  50199. front: {
  50200. height: math.unit(17, "feet"),
  50201. weight: math.unit(6500, "lb"),
  50202. name: "Front",
  50203. image: {
  50204. source: "./media/characters/deidra/front.svg",
  50205. extra: 1201/1081,
  50206. bottom: 16/1217
  50207. }
  50208. },
  50209. },
  50210. [
  50211. {
  50212. name: "Compressed",
  50213. height: math.unit(9 + 6/12, "feet")
  50214. },
  50215. {
  50216. name: "Normal",
  50217. height: math.unit(17, "feet"),
  50218. default: true
  50219. },
  50220. ]
  50221. ))
  50222. characterMakers.push(() => makeCharacter(
  50223. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50224. {
  50225. front: {
  50226. height: math.unit(7 + 4/12, "feet"),
  50227. weight: math.unit(280, "lb"),
  50228. name: "Front",
  50229. image: {
  50230. source: "./media/characters/freki-yrmori/front.svg",
  50231. extra: 1286/1182,
  50232. bottom: 29/1315
  50233. }
  50234. },
  50235. maw: {
  50236. height: math.unit(0.9, "feet"),
  50237. name: "Maw",
  50238. image: {
  50239. source: "./media/characters/freki-yrmori/maw.svg"
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Normal",
  50246. height: math.unit(7 + 4/12, "feet"),
  50247. default: true
  50248. },
  50249. {
  50250. name: "Macro",
  50251. height: math.unit(38.5, "meters")
  50252. },
  50253. ]
  50254. ))
  50255. characterMakers.push(() => makeCharacter(
  50256. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50257. {
  50258. side: {
  50259. height: math.unit(47.2, "meters"),
  50260. weight: math.unit(10000, "tons"),
  50261. name: "Side",
  50262. image: {
  50263. source: "./media/characters/aetherios/side.svg",
  50264. extra: 2363/642,
  50265. bottom: 221/2584
  50266. }
  50267. },
  50268. top: {
  50269. height: math.unit(240, "meters"),
  50270. weight: math.unit(10000, "tons"),
  50271. name: "Top",
  50272. image: {
  50273. source: "./media/characters/aetherios/top.svg"
  50274. }
  50275. },
  50276. bottom: {
  50277. height: math.unit(240, "meters"),
  50278. weight: math.unit(10000, "tons"),
  50279. name: "Bottom",
  50280. image: {
  50281. source: "./media/characters/aetherios/bottom.svg"
  50282. }
  50283. },
  50284. head: {
  50285. height: math.unit(38.6, "meters"),
  50286. name: "Head",
  50287. image: {
  50288. source: "./media/characters/aetherios/head.svg",
  50289. extra: 1335/1112,
  50290. bottom: 0/1335
  50291. }
  50292. },
  50293. front: {
  50294. height: math.unit(29, "meters"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/aetherios/front.svg",
  50298. extra: 1266/953,
  50299. bottom: 158/1424
  50300. }
  50301. },
  50302. maw: {
  50303. height: math.unit(16.37, "meters"),
  50304. name: "Maw",
  50305. image: {
  50306. source: "./media/characters/aetherios/maw.svg",
  50307. extra: 748/637,
  50308. bottom: 0/748
  50309. },
  50310. extraAttributes: {
  50311. preyCapacity: {
  50312. name: "Capacity",
  50313. power: 3,
  50314. type: "volume",
  50315. base: math.unit(1000, "people")
  50316. },
  50317. tongueSize: {
  50318. name: "Tongue Size",
  50319. power: 2,
  50320. type: "area",
  50321. base: math.unit(21, "m^2")
  50322. }
  50323. }
  50324. },
  50325. forepaw: {
  50326. height: math.unit(18, "meters"),
  50327. name: "Forepaw",
  50328. image: {
  50329. source: "./media/characters/aetherios/forepaw.svg"
  50330. }
  50331. },
  50332. hindpaw: {
  50333. height: math.unit(23, "meters"),
  50334. name: "Hindpaw",
  50335. image: {
  50336. source: "./media/characters/aetherios/hindpaw.svg"
  50337. }
  50338. },
  50339. genitals: {
  50340. height: math.unit(42, "meters"),
  50341. name: "Genitals",
  50342. image: {
  50343. source: "./media/characters/aetherios/genitals.svg"
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(47.2, "meters"),
  50351. default: true
  50352. },
  50353. {
  50354. name: "Macro",
  50355. height: math.unit(160, "meters")
  50356. },
  50357. {
  50358. name: "Mega",
  50359. height: math.unit(1.87, "km")
  50360. },
  50361. {
  50362. name: "Giga",
  50363. height: math.unit(40000, "km")
  50364. },
  50365. {
  50366. name: "Stellar",
  50367. height: math.unit(158000000, "km")
  50368. },
  50369. {
  50370. name: "Cosmic",
  50371. height: math.unit(9.46e12, "km")
  50372. },
  50373. ]
  50374. ))
  50375. characterMakers.push(() => makeCharacter(
  50376. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50377. {
  50378. front: {
  50379. height: math.unit(5 + 4/12, "feet"),
  50380. weight: math.unit(80, "lb"),
  50381. name: "Front",
  50382. image: {
  50383. source: "./media/characters/mizu-gieeg/front.svg",
  50384. extra: 850/709,
  50385. bottom: 52/902
  50386. }
  50387. },
  50388. back: {
  50389. height: math.unit(5 + 4/12, "feet"),
  50390. weight: math.unit(80, "lb"),
  50391. name: "Back",
  50392. image: {
  50393. source: "./media/characters/mizu-gieeg/back.svg",
  50394. extra: 882/745,
  50395. bottom: 25/907
  50396. }
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(5 + 4/12, "feet"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(6, "feet"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/roselle-st-papier/front.svg",
  50415. extra: 1430/1280,
  50416. bottom: 37/1467
  50417. }
  50418. },
  50419. back: {
  50420. height: math.unit(6, "feet"),
  50421. name: "Back",
  50422. image: {
  50423. source: "./media/characters/roselle-st-papier/back.svg",
  50424. extra: 1491/1296,
  50425. bottom: 23/1514
  50426. }
  50427. },
  50428. ear: {
  50429. height: math.unit(1.26, "feet"),
  50430. name: "Ear",
  50431. image: {
  50432. source: "./media/characters/roselle-st-papier/ear.svg"
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(150, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(1, "inches"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/valargent/front.svg",
  50452. extra: 1825/1694,
  50453. bottom: 62/1887
  50454. }
  50455. },
  50456. back: {
  50457. height: math.unit(1, "inches"),
  50458. name: "Back",
  50459. image: {
  50460. source: "./media/characters/valargent/back.svg",
  50461. extra: 1775/1682,
  50462. bottom: 88/1863
  50463. }
  50464. },
  50465. },
  50466. [
  50467. {
  50468. name: "Micro",
  50469. height: math.unit(1, "inch"),
  50470. default: true
  50471. },
  50472. ]
  50473. ))
  50474. characterMakers.push(() => makeCharacter(
  50475. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50476. {
  50477. front: {
  50478. height: math.unit(3.4, "meters"),
  50479. name: "Front",
  50480. image: {
  50481. source: "./media/characters/zarina/front.svg",
  50482. extra: 1733/1425,
  50483. bottom: 93/1826
  50484. }
  50485. },
  50486. squatting: {
  50487. height: math.unit(2.14, "meters"),
  50488. name: "Squatting",
  50489. image: {
  50490. source: "./media/characters/zarina/squatting.svg",
  50491. extra: 1073/788,
  50492. bottom: 63/1136
  50493. }
  50494. },
  50495. back: {
  50496. height: math.unit(2.14, "meters"),
  50497. name: "Back",
  50498. image: {
  50499. source: "./media/characters/zarina/back.svg",
  50500. extra: 1128/885,
  50501. bottom: 0/1128
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Normal",
  50508. height: math.unit(3.4, "meters"),
  50509. default: true
  50510. },
  50511. {
  50512. name: "Big",
  50513. height: math.unit(5, "meters")
  50514. },
  50515. {
  50516. name: "Macro",
  50517. height: math.unit(110, "meters")
  50518. },
  50519. ]
  50520. ))
  50521. characterMakers.push(() => makeCharacter(
  50522. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50523. {
  50524. front: {
  50525. height: math.unit(7, "feet"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/ventus-astro-fox/front.svg",
  50529. extra: 1792/1623,
  50530. bottom: 28/1820
  50531. }
  50532. },
  50533. back: {
  50534. height: math.unit(7, "feet"),
  50535. name: "Back",
  50536. image: {
  50537. source: "./media/characters/ventus-astro-fox/back.svg",
  50538. extra: 1789/1620,
  50539. bottom: 31/1820
  50540. }
  50541. },
  50542. outfit: {
  50543. height: math.unit(7, "feet"),
  50544. name: "Outfit",
  50545. image: {
  50546. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50547. extra: 1054/925,
  50548. bottom: 15/1069
  50549. }
  50550. },
  50551. head: {
  50552. height: math.unit(1.12, "feet"),
  50553. name: "Head",
  50554. image: {
  50555. source: "./media/characters/ventus-astro-fox/head.svg",
  50556. extra: 866/504,
  50557. bottom: 0/866
  50558. }
  50559. },
  50560. hand: {
  50561. height: math.unit(1, "feet"),
  50562. name: "Hand",
  50563. image: {
  50564. source: "./media/characters/ventus-astro-fox/hand.svg"
  50565. }
  50566. },
  50567. paw: {
  50568. height: math.unit(1.5, "feet"),
  50569. name: "Paw",
  50570. image: {
  50571. source: "./media/characters/ventus-astro-fox/paw.svg"
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(7, "feet"),
  50579. default: true
  50580. },
  50581. {
  50582. name: "Macro",
  50583. height: math.unit(200, "feet")
  50584. },
  50585. {
  50586. name: "Cosmic",
  50587. height: math.unit(3, "universes")
  50588. },
  50589. ]
  50590. ))
  50591. characterMakers.push(() => makeCharacter(
  50592. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50593. {
  50594. front: {
  50595. height: math.unit(3, "meters"),
  50596. weight: math.unit(7000, "lb"),
  50597. name: "Front",
  50598. image: {
  50599. source: "./media/characters/core-t/front.svg",
  50600. extra: 5729/4941,
  50601. bottom: 1129/6858
  50602. }
  50603. },
  50604. },
  50605. [
  50606. {
  50607. name: "Big",
  50608. height: math.unit(3, "meters"),
  50609. default: true
  50610. },
  50611. ]
  50612. ))
  50613. characterMakers.push(() => makeCharacter(
  50614. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50615. {
  50616. normal: {
  50617. height: math.unit(6 + 6/12, "feet"),
  50618. weight: math.unit(275, "lb"),
  50619. name: "Front",
  50620. image: {
  50621. source: "./media/characters/cadbunny/normal.svg",
  50622. extra: 1129/947,
  50623. bottom: 93/1222
  50624. },
  50625. default: true,
  50626. form: "normal"
  50627. },
  50628. gigantamax: {
  50629. height: math.unit(26, "feet"),
  50630. weight: math.unit(16000, "lb"),
  50631. name: "Front",
  50632. image: {
  50633. source: "./media/characters/cadbunny/gigantamax.svg",
  50634. extra: 1133/944,
  50635. bottom: 90/1223
  50636. },
  50637. default: true,
  50638. form: "gigantamax"
  50639. },
  50640. },
  50641. [
  50642. {
  50643. name: "Normal",
  50644. height: math.unit(6 + 6/12, "feet"),
  50645. default: true,
  50646. form: "normal"
  50647. },
  50648. {
  50649. name: "Small",
  50650. height: math.unit(26, "feet"),
  50651. default: true,
  50652. form: "gigantamax"
  50653. },
  50654. {
  50655. name: "Large",
  50656. height: math.unit(78, "feet"),
  50657. form: "gigantamax"
  50658. },
  50659. ],
  50660. {
  50661. "normal": {
  50662. name: "Normal",
  50663. default: true
  50664. },
  50665. "gigantamax": {
  50666. name: "Gigantamax"
  50667. }
  50668. }
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50672. {
  50673. anthroFront: {
  50674. height: math.unit(8, "feet"),
  50675. weight: math.unit(300, "lb"),
  50676. name: "Front",
  50677. image: {
  50678. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50679. extra: 1272/1176,
  50680. bottom: 53/1325
  50681. },
  50682. form: "anthro",
  50683. default: true
  50684. },
  50685. feralSide: {
  50686. height: math.unit(4, "feet"),
  50687. weight: math.unit(250, "lb"),
  50688. name: "Side",
  50689. image: {
  50690. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50691. extra: 731/621,
  50692. bottom: 0/731
  50693. },
  50694. form: "feral",
  50695. default: true
  50696. },
  50697. },
  50698. [
  50699. {
  50700. name: "Regular",
  50701. height: math.unit(8, "feet"),
  50702. form: "anthro"
  50703. },
  50704. {
  50705. name: "Macro",
  50706. height: math.unit(250, "feet"),
  50707. form: "anthro",
  50708. default: true
  50709. },
  50710. {
  50711. name: "Regular",
  50712. height: math.unit(4, "feet"),
  50713. form: "feral"
  50714. },
  50715. {
  50716. name: "Macro",
  50717. height: math.unit(125, "feet"),
  50718. form: "feral",
  50719. default: true
  50720. },
  50721. ],
  50722. {
  50723. "anthro": {
  50724. name: "Anthro",
  50725. default: true
  50726. },
  50727. "feral": {
  50728. name: "Feral",
  50729. },
  50730. }
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50734. {
  50735. front: {
  50736. height: math.unit(11 + 10/12, "feet"),
  50737. weight: math.unit(1587, "kg"),
  50738. name: "Front",
  50739. image: {
  50740. source: "./media/characters/maple-javira-dragon/front.svg",
  50741. extra: 1136/744,
  50742. bottom: 73/1209
  50743. }
  50744. },
  50745. side: {
  50746. height: math.unit(11 + 10/12, "feet"),
  50747. weight: math.unit(1587, "kg"),
  50748. name: "Side",
  50749. image: {
  50750. source: "./media/characters/maple-javira-dragon/side.svg",
  50751. extra: 712/505,
  50752. bottom: 17/729
  50753. }
  50754. },
  50755. head: {
  50756. height: math.unit(8.05, "feet"),
  50757. name: "Head",
  50758. image: {
  50759. source: "./media/characters/maple-javira-dragon/head.svg",
  50760. extra: 1420/1344,
  50761. bottom: 0/1420
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Normal",
  50768. height: math.unit(11 + 10/12, "feet"),
  50769. default: true
  50770. },
  50771. ]
  50772. ))
  50773. characterMakers.push(() => makeCharacter(
  50774. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50775. {
  50776. front: {
  50777. height: math.unit(117, "cm"),
  50778. weight: math.unit(50, "kg"),
  50779. name: "Front",
  50780. image: {
  50781. source: "./media/characters/sonia-wyverntail/front.svg",
  50782. extra: 708/592,
  50783. bottom: 25/733
  50784. }
  50785. },
  50786. },
  50787. [
  50788. {
  50789. name: "Normal",
  50790. height: math.unit(117, "cm"),
  50791. default: true
  50792. },
  50793. ]
  50794. ))
  50795. characterMakers.push(() => makeCharacter(
  50796. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50797. {
  50798. front: {
  50799. height: math.unit(6 + 5/12, "feet"),
  50800. name: "Front",
  50801. image: {
  50802. source: "./media/characters/micah/front.svg",
  50803. extra: 1758/1546,
  50804. bottom: 214/1972
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Normal",
  50811. height: math.unit(6 + 5/12, "feet"),
  50812. default: true
  50813. },
  50814. ]
  50815. ))
  50816. characterMakers.push(() => makeCharacter(
  50817. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50818. {
  50819. front: {
  50820. height: math.unit(5 + 10/12, "feet"),
  50821. weight: math.unit(220, "lb"),
  50822. name: "Front",
  50823. image: {
  50824. source: "./media/characters/zarya/front.svg",
  50825. extra: 593/572,
  50826. bottom: 50/643
  50827. }
  50828. },
  50829. back: {
  50830. height: math.unit(5 + 10/12, "feet"),
  50831. weight: math.unit(220, "lb"),
  50832. name: "Back",
  50833. image: {
  50834. source: "./media/characters/zarya/back.svg",
  50835. extra: 603/582,
  50836. bottom: 38/641
  50837. }
  50838. },
  50839. },
  50840. [
  50841. {
  50842. name: "Normal",
  50843. height: math.unit(5 + 10/12, "feet"),
  50844. default: true
  50845. },
  50846. ]
  50847. ))
  50848. characterMakers.push(() => makeCharacter(
  50849. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50850. {
  50851. front: {
  50852. height: math.unit(7.5, "feet"),
  50853. name: "Front",
  50854. image: {
  50855. source: "./media/characters/sven-hatisson/front.svg",
  50856. extra: 917/857,
  50857. bottom: 42/959
  50858. }
  50859. },
  50860. back: {
  50861. height: math.unit(7.5, "feet"),
  50862. name: "Back",
  50863. image: {
  50864. source: "./media/characters/sven-hatisson/back.svg",
  50865. extra: 903/856,
  50866. bottom: 15/918
  50867. }
  50868. },
  50869. },
  50870. [
  50871. {
  50872. name: "Base Height",
  50873. height: math.unit(7.5, "feet")
  50874. },
  50875. {
  50876. name: "Usual Height",
  50877. height: math.unit(13.5, "feet"),
  50878. default: true
  50879. },
  50880. {
  50881. name: "Smaller Macro",
  50882. height: math.unit(85, "feet")
  50883. },
  50884. {
  50885. name: "Moderate Macro",
  50886. height: math.unit(320, "feet")
  50887. },
  50888. {
  50889. name: "Large Macro",
  50890. height: math.unit(1000, "feet")
  50891. },
  50892. {
  50893. name: "Largest Size",
  50894. height: math.unit(2, "miles")
  50895. },
  50896. ]
  50897. ))
  50898. characterMakers.push(() => makeCharacter(
  50899. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50900. {
  50901. side: {
  50902. height: math.unit(1.8, "meters"),
  50903. weight: math.unit(275, "kg"),
  50904. name: "Side",
  50905. image: {
  50906. source: "./media/characters/terra/side.svg",
  50907. extra: 1273/1147,
  50908. bottom: 0/1273
  50909. }
  50910. },
  50911. },
  50912. [
  50913. {
  50914. name: "Normal",
  50915. height: math.unit(16.2, "meters"),
  50916. default: true
  50917. },
  50918. ]
  50919. ))
  50920. characterMakers.push(() => makeCharacter(
  50921. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50922. {
  50923. borzoiFront: {
  50924. height: math.unit(6 + 9/12, "feet"),
  50925. name: "Front",
  50926. image: {
  50927. source: "./media/characters/rae/borzoi-front.svg",
  50928. extra: 1161/1098,
  50929. bottom: 31/1192
  50930. },
  50931. form: "borzoi",
  50932. default: true
  50933. },
  50934. werewolfFront: {
  50935. height: math.unit(8 + 7/12, "feet"),
  50936. name: "Front",
  50937. image: {
  50938. source: "./media/characters/rae/werewolf-front.svg",
  50939. extra: 1411/1334,
  50940. bottom: 127/1538
  50941. },
  50942. form: "werewolf",
  50943. default: true
  50944. },
  50945. },
  50946. [
  50947. {
  50948. name: "Normal",
  50949. height: math.unit(6 + 9/12, "feet"),
  50950. default: true,
  50951. form: "borzoi"
  50952. },
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(8 + 7/12, "feet"),
  50956. default: true,
  50957. form: "werewolf"
  50958. },
  50959. ],
  50960. {
  50961. "borzoi": {
  50962. name: "Borzoi",
  50963. default: true
  50964. },
  50965. "werewolf": {
  50966. name: "Werewolf",
  50967. },
  50968. }
  50969. ))
  50970. characterMakers.push(() => makeCharacter(
  50971. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50972. {
  50973. front: {
  50974. height: math.unit(8 + 7/12, "feet"),
  50975. weight: math.unit(482, "lb"),
  50976. name: "Front",
  50977. image: {
  50978. source: "./media/characters/kit/front.svg",
  50979. extra: 1247/1103,
  50980. bottom: 41/1288
  50981. }
  50982. },
  50983. back: {
  50984. height: math.unit(8 + 7/12, "feet"),
  50985. weight: math.unit(482, "lb"),
  50986. name: "Back",
  50987. image: {
  50988. source: "./media/characters/kit/back.svg",
  50989. extra: 1252/1123,
  50990. bottom: 21/1273
  50991. }
  50992. },
  50993. paw: {
  50994. height: math.unit(1.46, "feet"),
  50995. name: "Paw",
  50996. image: {
  50997. source: "./media/characters/kit/paw.svg"
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Normal",
  51004. height: math.unit(2.61, "meters"),
  51005. default: true
  51006. },
  51007. {
  51008. name: "\"Tall\"",
  51009. height: math.unit(8.21, "meters")
  51010. },
  51011. {
  51012. name: "Tall",
  51013. height: math.unit(19.6, "meters")
  51014. },
  51015. {
  51016. name: "Very Tall",
  51017. height: math.unit(57.91, "meters")
  51018. },
  51019. {
  51020. name: "Semi-Macro",
  51021. height: math.unit(138.64, "meters")
  51022. },
  51023. {
  51024. name: "Macro",
  51025. height: math.unit(831.99, "meters")
  51026. },
  51027. {
  51028. name: "EX-Macro",
  51029. height: math.unit(96451121, "meters")
  51030. },
  51031. {
  51032. name: "S1-Omnipotent",
  51033. height: math.unit(4.42074e+9, "meters")
  51034. },
  51035. {
  51036. name: "S2-Omnipotent",
  51037. height: math.unit(9.42074e+17, "meters")
  51038. },
  51039. {
  51040. name: "Omnipotent",
  51041. height: math.unit(4.23112e+24, "meters")
  51042. },
  51043. {
  51044. name: "Hypergod",
  51045. height: math.unit(5.05176e+27, "meters")
  51046. },
  51047. {
  51048. name: "Hypergod-EX",
  51049. height: math.unit(9.45532e+49, "meters")
  51050. },
  51051. {
  51052. name: "Hypergod-SP",
  51053. height: math.unit(9.45532e+195, "meters")
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51059. {
  51060. side: {
  51061. height: math.unit(0.6, "meters"),
  51062. weight: math.unit(24, "kg"),
  51063. name: "Side",
  51064. image: {
  51065. source: "./media/characters/celeste/side.svg",
  51066. extra: 810/517,
  51067. bottom: 53/863
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Velociraptor",
  51074. height: math.unit(0.6, "meters"),
  51075. default: true
  51076. },
  51077. {
  51078. name: "Utahraptor",
  51079. height: math.unit(1.8, "meters")
  51080. },
  51081. {
  51082. name: "Gallimimus",
  51083. height: math.unit(4.0, "meters")
  51084. },
  51085. {
  51086. name: "Large",
  51087. height: math.unit(20, "meters")
  51088. },
  51089. {
  51090. name: "Planetary",
  51091. height: math.unit(50, "megameters")
  51092. },
  51093. {
  51094. name: "Stellar",
  51095. height: math.unit(1.5, "gigameters")
  51096. },
  51097. {
  51098. name: "Galactic",
  51099. height: math.unit(100, "exameters")
  51100. },
  51101. ]
  51102. ))
  51103. characterMakers.push(() => makeCharacter(
  51104. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51105. {
  51106. front: {
  51107. height: math.unit(6, "feet"),
  51108. weight: math.unit(210, "lb"),
  51109. name: "Front",
  51110. image: {
  51111. source: "./media/characters/glacia/front.svg",
  51112. extra: 958/901,
  51113. bottom: 45/1003
  51114. }
  51115. },
  51116. },
  51117. [
  51118. {
  51119. name: "Macro",
  51120. height: math.unit(1000, "meters"),
  51121. default: true
  51122. },
  51123. ]
  51124. ))
  51125. characterMakers.push(() => makeCharacter(
  51126. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51127. {
  51128. front: {
  51129. height: math.unit(4, "meters"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/giri/front.svg",
  51133. extra: 966/894,
  51134. bottom: 21/987
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(4, "meters"),
  51142. default: true
  51143. },
  51144. ]
  51145. ))
  51146. characterMakers.push(() => makeCharacter(
  51147. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51148. {
  51149. back: {
  51150. height: math.unit(4, "feet"),
  51151. weight: math.unit(37, "lb"),
  51152. name: "Back",
  51153. image: {
  51154. source: "./media/characters/tin/back.svg",
  51155. extra: 845/780,
  51156. bottom: 28/873
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(4, "feet"),
  51164. default: true
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51170. {
  51171. front: {
  51172. height: math.unit(25, "feet"),
  51173. name: "Front",
  51174. image: {
  51175. source: "./media/characters/cadenza-vivace/front.svg",
  51176. extra: 1842/1578,
  51177. bottom: 30/1872
  51178. }
  51179. },
  51180. },
  51181. [
  51182. {
  51183. name: "Macro",
  51184. height: math.unit(25, "feet"),
  51185. default: true
  51186. },
  51187. ]
  51188. ))
  51189. characterMakers.push(() => makeCharacter(
  51190. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51191. {
  51192. front: {
  51193. height: math.unit(10, "feet"),
  51194. weight: math.unit(625, "kg"),
  51195. name: "Front",
  51196. image: {
  51197. source: "./media/characters/zain/front.svg",
  51198. extra: 1682/1498,
  51199. bottom: 223/1905
  51200. }
  51201. },
  51202. back: {
  51203. height: math.unit(10, "feet"),
  51204. weight: math.unit(625, "kg"),
  51205. name: "Back",
  51206. image: {
  51207. source: "./media/characters/zain/back.svg",
  51208. extra: 1814/1657,
  51209. bottom: 152/1966
  51210. }
  51211. },
  51212. head: {
  51213. height: math.unit(10, "feet"),
  51214. weight: math.unit(625, "kg"),
  51215. name: "Head",
  51216. image: {
  51217. source: "./media/characters/zain/head.svg",
  51218. extra: 1059/762,
  51219. bottom: 0/1059
  51220. }
  51221. },
  51222. },
  51223. [
  51224. {
  51225. name: "Normal",
  51226. height: math.unit(10, "feet"),
  51227. default: true
  51228. },
  51229. ]
  51230. ))
  51231. characterMakers.push(() => makeCharacter(
  51232. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51233. {
  51234. front: {
  51235. height: math.unit(6 + 5/12, "feet"),
  51236. weight: math.unit(750, "lb"),
  51237. name: "Front",
  51238. image: {
  51239. source: "./media/characters/ruchex/front.svg",
  51240. extra: 877/820,
  51241. bottom: 17/894
  51242. },
  51243. extraAttributes: {
  51244. "width": {
  51245. name: "Width",
  51246. power: 1,
  51247. type: "length",
  51248. base: math.unit(4.757, "feet")
  51249. },
  51250. }
  51251. },
  51252. },
  51253. [
  51254. {
  51255. name: "Normal",
  51256. height: math.unit(6 + 5/12, "feet"),
  51257. default: true
  51258. },
  51259. ]
  51260. ))
  51261. characterMakers.push(() => makeCharacter(
  51262. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51263. {
  51264. dressedFront: {
  51265. height: math.unit(191, "cm"),
  51266. weight: math.unit(80, "kg"),
  51267. name: "Front",
  51268. image: {
  51269. source: "./media/characters/buster/dressed-front.svg",
  51270. extra: 1022/973,
  51271. bottom: 69/1091
  51272. }
  51273. },
  51274. dressedBack: {
  51275. height: math.unit(191, "cm"),
  51276. weight: math.unit(80, "kg"),
  51277. name: "Back",
  51278. image: {
  51279. source: "./media/characters/buster/dressed-back.svg",
  51280. extra: 1018/970,
  51281. bottom: 55/1073
  51282. }
  51283. },
  51284. nudeFront: {
  51285. height: math.unit(191, "cm"),
  51286. weight: math.unit(80, "kg"),
  51287. name: "Front (Nude)",
  51288. image: {
  51289. source: "./media/characters/buster/nude-front.svg",
  51290. extra: 1022/973,
  51291. bottom: 69/1091
  51292. }
  51293. },
  51294. nudeBack: {
  51295. height: math.unit(191, "cm"),
  51296. weight: math.unit(80, "kg"),
  51297. name: "Back (Nude)",
  51298. image: {
  51299. source: "./media/characters/buster/nude-back.svg",
  51300. extra: 1018/970,
  51301. bottom: 55/1073
  51302. }
  51303. },
  51304. dick: {
  51305. height: math.unit(2.59, "feet"),
  51306. name: "Dick",
  51307. image: {
  51308. source: "./media/characters/buster/dick.svg"
  51309. }
  51310. },
  51311. ass: {
  51312. height: math.unit(1.2, "feet"),
  51313. name: "Ass",
  51314. image: {
  51315. source: "./media/characters/buster/ass.svg"
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Normal",
  51322. height: math.unit(191, "cm"),
  51323. default: true
  51324. },
  51325. ]
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51329. {
  51330. side: {
  51331. height: math.unit(8.1, "feet"),
  51332. weight: math.unit(3500, "lb"),
  51333. name: "Side",
  51334. image: {
  51335. source: "./media/characters/sonya/side.svg",
  51336. extra: 1730/1317,
  51337. bottom: 86/1816
  51338. }
  51339. },
  51340. },
  51341. [
  51342. {
  51343. name: "Normal",
  51344. height: math.unit(8.1, "feet"),
  51345. default: true
  51346. },
  51347. ]
  51348. ))
  51349. characterMakers.push(() => makeCharacter(
  51350. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51351. {
  51352. front: {
  51353. height: math.unit(6, "feet"),
  51354. weight: math.unit(150, "lb"),
  51355. name: "Front",
  51356. image: {
  51357. source: "./media/characters/cadence-andrysiak/front.svg",
  51358. extra: 1164/1121,
  51359. bottom: 60/1224
  51360. }
  51361. },
  51362. back: {
  51363. height: math.unit(6, "feet"),
  51364. weight: math.unit(150, "lb"),
  51365. name: "Back",
  51366. image: {
  51367. source: "./media/characters/cadence-andrysiak/back.svg",
  51368. extra: 1200/1165,
  51369. bottom: 9/1209
  51370. }
  51371. },
  51372. dressed: {
  51373. height: math.unit(6, "feet"),
  51374. weight: math.unit(150, "lb"),
  51375. name: "Dressed",
  51376. image: {
  51377. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51378. extra: 1164/1121,
  51379. bottom: 60/1224
  51380. }
  51381. },
  51382. },
  51383. [
  51384. {
  51385. name: "Micro",
  51386. height: math.unit(1, "mm")
  51387. },
  51388. {
  51389. name: "Normal",
  51390. height: math.unit(6, "feet"),
  51391. default: true
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51397. {
  51398. front: {
  51399. height: math.unit(60, "inches"),
  51400. weight: math.unit(16, "lb"),
  51401. preyCapacity: math.unit(80, "liters"),
  51402. name: "Front",
  51403. image: {
  51404. source: "./media/characters/penny-lynx/front.svg",
  51405. extra: 1959/1769,
  51406. bottom: 49/2008
  51407. }
  51408. },
  51409. },
  51410. [
  51411. {
  51412. name: "Nokia",
  51413. height: math.unit(2, "inches")
  51414. },
  51415. {
  51416. name: "Desktop",
  51417. height: math.unit(24, "inches")
  51418. },
  51419. {
  51420. name: "TV",
  51421. height: math.unit(60, "inches")
  51422. },
  51423. {
  51424. name: "Jumbotron",
  51425. height: math.unit(12, "feet")
  51426. },
  51427. {
  51428. name: "Billboard",
  51429. height: math.unit(48, "feet"),
  51430. default: true
  51431. },
  51432. {
  51433. name: "IMAX",
  51434. height: math.unit(96, "feet")
  51435. },
  51436. {
  51437. name: "SINGULARITY",
  51438. height: math.unit(864938, "miles")
  51439. },
  51440. ]
  51441. ))
  51442. characterMakers.push(() => makeCharacter(
  51443. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51444. {
  51445. front: {
  51446. height: math.unit(5 + 4/12, "feet"),
  51447. weight: math.unit(230, "lb"),
  51448. name: "Front",
  51449. image: {
  51450. source: "./media/characters/sukebe/front.svg",
  51451. extra: 2130/2038,
  51452. bottom: 90/2220
  51453. }
  51454. },
  51455. back: {
  51456. height: math.unit(3.48, "feet"),
  51457. weight: math.unit(230, "lb"),
  51458. name: "Back",
  51459. image: {
  51460. source: "./media/characters/sukebe/back.svg",
  51461. extra: 1670/1604,
  51462. bottom: 0/1670
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Normal",
  51469. height: math.unit(5 + 4/12, "feet"),
  51470. default: true
  51471. },
  51472. ]
  51473. ))
  51474. characterMakers.push(() => makeCharacter(
  51475. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51476. {
  51477. front: {
  51478. height: math.unit(6, "feet"),
  51479. name: "Front",
  51480. image: {
  51481. source: "./media/characters/nylla/front.svg",
  51482. extra: 1868/1699,
  51483. bottom: 97/1965
  51484. }
  51485. },
  51486. back: {
  51487. height: math.unit(6, "feet"),
  51488. name: "Back",
  51489. image: {
  51490. source: "./media/characters/nylla/back.svg",
  51491. extra: 1889/1712,
  51492. bottom: 93/1982
  51493. }
  51494. },
  51495. frontNsfw: {
  51496. height: math.unit(6, "feet"),
  51497. name: "Front (NSFW)",
  51498. image: {
  51499. source: "./media/characters/nylla/front-nsfw.svg",
  51500. extra: 1868/1699,
  51501. bottom: 97/1965
  51502. },
  51503. extraAttributes: {
  51504. "dickLength": {
  51505. name: "Dick Length",
  51506. power: 1,
  51507. type: "length",
  51508. base: math.unit(1.4, "feet")
  51509. },
  51510. "cumVolume": {
  51511. name: "Cum Volume",
  51512. power: 3,
  51513. type: "volume",
  51514. base: math.unit(100, "mL")
  51515. },
  51516. }
  51517. },
  51518. backNsfw: {
  51519. height: math.unit(6, "feet"),
  51520. name: "Back (NSFW)",
  51521. image: {
  51522. source: "./media/characters/nylla/back-nsfw.svg",
  51523. extra: 1889/1712,
  51524. bottom: 93/1982
  51525. }
  51526. },
  51527. maw: {
  51528. height: math.unit(2.10, "feet"),
  51529. name: "Maw",
  51530. image: {
  51531. source: "./media/characters/nylla/maw.svg"
  51532. }
  51533. },
  51534. paws: {
  51535. height: math.unit(2.06, "feet"),
  51536. name: "Paws",
  51537. image: {
  51538. source: "./media/characters/nylla/paws.svg"
  51539. }
  51540. },
  51541. muzzle: {
  51542. height: math.unit(0.61, "feet"),
  51543. name: "Muzzle",
  51544. image: {
  51545. source: "./media/characters/nylla/muzzle.svg"
  51546. }
  51547. },
  51548. sheath: {
  51549. height: math.unit(1.305, "feet"),
  51550. name: "Sheath",
  51551. image: {
  51552. source: "./media/characters/nylla/sheath.svg"
  51553. }
  51554. },
  51555. },
  51556. [
  51557. {
  51558. name: "Micro",
  51559. height: math.unit(7.5, "inches")
  51560. },
  51561. {
  51562. name: "Normal",
  51563. height: math.unit(7, "feet"),
  51564. default: true
  51565. },
  51566. {
  51567. name: "Macro",
  51568. height: math.unit(60, "feet")
  51569. },
  51570. {
  51571. name: "Mega",
  51572. height: math.unit(200, "feet")
  51573. },
  51574. ]
  51575. ))
  51576. characterMakers.push(() => makeCharacter(
  51577. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51578. {
  51579. front: {
  51580. height: math.unit(10, "feet"),
  51581. weight: math.unit(2300, "lb"),
  51582. name: "Front",
  51583. image: {
  51584. source: "./media/characters/hunt3r/front.svg",
  51585. extra: 1909/1742,
  51586. bottom: 46/1955
  51587. }
  51588. },
  51589. },
  51590. [
  51591. {
  51592. name: "Normal",
  51593. height: math.unit(10, "feet"),
  51594. default: true
  51595. },
  51596. ]
  51597. ))
  51598. characterMakers.push(() => makeCharacter(
  51599. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51600. {
  51601. dressed: {
  51602. height: math.unit(11, "feet"),
  51603. weight: math.unit(18500, "lb"),
  51604. preyCapacity: math.unit(9, "people"),
  51605. name: "Dressed",
  51606. image: {
  51607. source: "./media/characters/cylphis/dressed.svg",
  51608. extra: 1028/1003,
  51609. bottom: 75/1103
  51610. },
  51611. },
  51612. undressed: {
  51613. height: math.unit(11, "feet"),
  51614. weight: math.unit(18500, "lb"),
  51615. preyCapacity: math.unit(9, "people"),
  51616. name: "Undressed",
  51617. image: {
  51618. source: "./media/characters/cylphis/undressed.svg",
  51619. extra: 1028/1003,
  51620. bottom: 75/1103
  51621. }
  51622. },
  51623. full: {
  51624. height: math.unit(11, "feet"),
  51625. weight: math.unit(18500 + 150*9, "lb"),
  51626. preyCapacity: math.unit(9, "people"),
  51627. name: "Full",
  51628. image: {
  51629. source: "./media/characters/cylphis/full.svg",
  51630. extra: 1028/1003,
  51631. bottom: 75/1103
  51632. }
  51633. },
  51634. },
  51635. [
  51636. {
  51637. name: "Small",
  51638. height: math.unit(8, "feet")
  51639. },
  51640. {
  51641. name: "Normal",
  51642. height: math.unit(11, "feet"),
  51643. default: true
  51644. },
  51645. ]
  51646. ))
  51647. characterMakers.push(() => makeCharacter(
  51648. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51649. {
  51650. front: {
  51651. height: math.unit(2 + 7/12, "feet"),
  51652. name: "Front",
  51653. image: {
  51654. source: "./media/characters/orishan/front.svg",
  51655. extra: 1058/1023,
  51656. bottom: 23/1081
  51657. }
  51658. },
  51659. back: {
  51660. height: math.unit(2 + 7/12, "feet"),
  51661. name: "Back",
  51662. image: {
  51663. source: "./media/characters/orishan/back.svg",
  51664. extra: 1058/1023,
  51665. bottom: 23/1081
  51666. }
  51667. },
  51668. },
  51669. [
  51670. {
  51671. name: "Micro",
  51672. height: math.unit(2, "cm")
  51673. },
  51674. {
  51675. name: "Normal",
  51676. height: math.unit(2 + 7/12, "feet"),
  51677. default: true
  51678. },
  51679. ]
  51680. ))
  51681. characterMakers.push(() => makeCharacter(
  51682. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51683. {
  51684. front: {
  51685. height: math.unit(3, "meters"),
  51686. weight: math.unit(508, "kg"),
  51687. name: "Front",
  51688. image: {
  51689. source: "./media/characters/seranis/front.svg",
  51690. extra: 1478/1454,
  51691. bottom: 41/1519
  51692. }
  51693. },
  51694. },
  51695. [
  51696. {
  51697. name: "Normal",
  51698. height: math.unit(3, "meters"),
  51699. default: true
  51700. },
  51701. {
  51702. name: "Macro",
  51703. height: math.unit(108, "meters")
  51704. },
  51705. {
  51706. name: "Megamacro",
  51707. height: math.unit(1250, "meters")
  51708. },
  51709. ]
  51710. ))
  51711. characterMakers.push(() => makeCharacter(
  51712. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51713. {
  51714. undressed: {
  51715. height: math.unit(5 + 3/12, "feet"),
  51716. name: "Undressed",
  51717. image: {
  51718. source: "./media/characters/ankou/undressed.svg",
  51719. extra: 1301/1213,
  51720. bottom: 87/1388
  51721. }
  51722. },
  51723. dressed: {
  51724. height: math.unit(5 + 3/12, "feet"),
  51725. name: "Dressed",
  51726. image: {
  51727. source: "./media/characters/ankou/dressed.svg",
  51728. extra: 1301/1213,
  51729. bottom: 87/1388
  51730. }
  51731. },
  51732. head: {
  51733. height: math.unit(1.61, "feet"),
  51734. name: "Head",
  51735. image: {
  51736. source: "./media/characters/ankou/head.svg"
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(5 + 3/12, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51750. {
  51751. side: {
  51752. height: math.unit(6 + 3/12, "feet"),
  51753. weight: math.unit(200, "kg"),
  51754. name: "Side",
  51755. image: {
  51756. source: "./media/characters/juniper-skunktaur/side.svg",
  51757. extra: 1574/1229,
  51758. bottom: 38/1612
  51759. }
  51760. },
  51761. front: {
  51762. height: math.unit(6 + 3/12, "feet"),
  51763. weight: math.unit(200, "kg"),
  51764. name: "Front",
  51765. image: {
  51766. source: "./media/characters/juniper-skunktaur/front.svg",
  51767. extra: 1337/1278,
  51768. bottom: 22/1359
  51769. }
  51770. },
  51771. back: {
  51772. height: math.unit(6 + 3/12, "feet"),
  51773. weight: math.unit(200, "kg"),
  51774. name: "Back",
  51775. image: {
  51776. source: "./media/characters/juniper-skunktaur/back.svg",
  51777. extra: 1618/1273,
  51778. bottom: 13/1631
  51779. }
  51780. },
  51781. top: {
  51782. height: math.unit(2.62, "feet"),
  51783. weight: math.unit(200, "kg"),
  51784. name: "Top",
  51785. image: {
  51786. source: "./media/characters/juniper-skunktaur/top.svg"
  51787. }
  51788. },
  51789. },
  51790. [
  51791. {
  51792. name: "Normal",
  51793. height: math.unit(6 + 3/12, "feet"),
  51794. default: true
  51795. },
  51796. ]
  51797. ))
  51798. characterMakers.push(() => makeCharacter(
  51799. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51800. {
  51801. front: {
  51802. height: math.unit(20.5, "feet"),
  51803. name: "Front",
  51804. image: {
  51805. source: "./media/characters/rei/front.svg",
  51806. extra: 1349/1195,
  51807. bottom: 31/1380
  51808. }
  51809. },
  51810. back: {
  51811. height: math.unit(20.5, "feet"),
  51812. name: "Back",
  51813. image: {
  51814. source: "./media/characters/rei/back.svg",
  51815. extra: 1358/1204,
  51816. bottom: 22/1380
  51817. }
  51818. },
  51819. pawsDigi: {
  51820. height: math.unit(3.45, "feet"),
  51821. name: "Paws (Digi)",
  51822. image: {
  51823. source: "./media/characters/rei/paws-digi.svg"
  51824. }
  51825. },
  51826. pawsPlanti: {
  51827. height: math.unit(3.45, "feet"),
  51828. name: "Paws (Planti)",
  51829. image: {
  51830. source: "./media/characters/rei/paws-planti.svg"
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Normal",
  51837. height: math.unit(20.5, "feet"),
  51838. default: true
  51839. },
  51840. ]
  51841. ))
  51842. characterMakers.push(() => makeCharacter(
  51843. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51844. {
  51845. front: {
  51846. height: math.unit(5 + 11/12, "feet"),
  51847. name: "Front",
  51848. image: {
  51849. source: "./media/characters/carina/front.svg",
  51850. extra: 1720/1449,
  51851. bottom: 14/1734
  51852. }
  51853. },
  51854. back: {
  51855. height: math.unit(5 + 11/12, "feet"),
  51856. name: "Back",
  51857. image: {
  51858. source: "./media/characters/carina/back.svg",
  51859. extra: 1493/1445,
  51860. bottom: 17/1510
  51861. }
  51862. },
  51863. paw: {
  51864. height: math.unit(0.92, "feet"),
  51865. name: "Paw",
  51866. image: {
  51867. source: "./media/characters/carina/paw.svg"
  51868. }
  51869. },
  51870. },
  51871. [
  51872. {
  51873. name: "Normal",
  51874. height: math.unit(5 + 11/12, "feet"),
  51875. default: true
  51876. },
  51877. ]
  51878. ))
  51879. characterMakers.push(() => makeCharacter(
  51880. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51881. {
  51882. front: {
  51883. height: math.unit(4.88, "meters"),
  51884. name: "Front",
  51885. image: {
  51886. source: "./media/characters/maya/front.svg",
  51887. extra: 1222/1145,
  51888. bottom: 57/1279
  51889. }
  51890. },
  51891. },
  51892. [
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(4.88, "meters"),
  51896. default: true
  51897. },
  51898. {
  51899. name: "Macro",
  51900. height: math.unit(38.1, "meters")
  51901. },
  51902. {
  51903. name: "Macro+",
  51904. height: math.unit(152.4, "meters")
  51905. },
  51906. {
  51907. name: "Macro++",
  51908. height: math.unit(16.09, "km")
  51909. },
  51910. {
  51911. name: "Mega-macro",
  51912. height: math.unit(700, "megameters")
  51913. },
  51914. ]
  51915. ))
  51916. characterMakers.push(() => makeCharacter(
  51917. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51918. {
  51919. front: {
  51920. height: math.unit(6 + 2/12, "feet"),
  51921. weight: math.unit(500, "lb"),
  51922. preyCapacity: math.unit(4, "people"),
  51923. name: "Front",
  51924. image: {
  51925. source: "./media/characters/yepir/front.svg"
  51926. }
  51927. },
  51928. side: {
  51929. height: math.unit(6 + 2/12, "feet"),
  51930. weight: math.unit(500, "lb"),
  51931. preyCapacity: math.unit(4, "people"),
  51932. name: "Side",
  51933. image: {
  51934. source: "./media/characters/yepir/side.svg"
  51935. }
  51936. },
  51937. paw: {
  51938. height: math.unit(1.05, "feet"),
  51939. name: "Paw",
  51940. image: {
  51941. source: "./media/characters/yepir/paw.svg"
  51942. }
  51943. },
  51944. },
  51945. [
  51946. {
  51947. name: "Normal",
  51948. height: math.unit(6 + 2/12, "feet"),
  51949. default: true
  51950. },
  51951. ]
  51952. ))
  51953. characterMakers.push(() => makeCharacter(
  51954. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51955. {
  51956. front: {
  51957. height: math.unit(5 + 4/12, "feet"),
  51958. name: "Front",
  51959. image: {
  51960. source: "./media/characters/russec/front.svg",
  51961. extra: 1926/1626,
  51962. bottom: 72/1998
  51963. }
  51964. },
  51965. back: {
  51966. height: math.unit(5 + 4/12, "feet"),
  51967. name: "Back",
  51968. image: {
  51969. source: "./media/characters/russec/back.svg",
  51970. extra: 1910/1591,
  51971. bottom: 48/1958
  51972. }
  51973. },
  51974. },
  51975. [
  51976. {
  51977. name: "Small",
  51978. height: math.unit(5 + 4/12, "feet")
  51979. },
  51980. {
  51981. name: "Normal",
  51982. height: math.unit(72, "feet"),
  51983. default: true
  51984. },
  51985. ]
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51989. {
  51990. side: {
  51991. height: math.unit(12, "feet"),
  51992. name: "Side",
  51993. image: {
  51994. source: "./media/characters/cianus/side.svg",
  51995. extra: 808/526,
  51996. bottom: 61/869
  51997. }
  51998. },
  51999. },
  52000. [
  52001. {
  52002. name: "Normal",
  52003. height: math.unit(12, "feet"),
  52004. default: true
  52005. },
  52006. ]
  52007. ))
  52008. characterMakers.push(() => makeCharacter(
  52009. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52010. {
  52011. front: {
  52012. height: math.unit(9 + 6/12, "feet"),
  52013. weight: math.unit(300, "lb"),
  52014. name: "Front",
  52015. image: {
  52016. source: "./media/characters/ahab/front.svg",
  52017. extra: 1897/1868,
  52018. bottom: 121/2018
  52019. }
  52020. },
  52021. frontNsfw: {
  52022. height: math.unit(9 + 6/12, "feet"),
  52023. weight: math.unit(300, "lb"),
  52024. name: "Front-nsfw",
  52025. image: {
  52026. source: "./media/characters/ahab/front-nsfw.svg",
  52027. extra: 1897/1868,
  52028. bottom: 121/2018
  52029. }
  52030. },
  52031. },
  52032. [
  52033. {
  52034. name: "Normal",
  52035. height: math.unit(9 + 6/12, "feet")
  52036. },
  52037. {
  52038. name: "Macro",
  52039. height: math.unit(657, "feet"),
  52040. default: true
  52041. },
  52042. ]
  52043. ))
  52044. characterMakers.push(() => makeCharacter(
  52045. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52046. {
  52047. front: {
  52048. height: math.unit(2.69, "meters"),
  52049. weight: math.unit(132, "kg"),
  52050. name: "Front",
  52051. image: {
  52052. source: "./media/characters/aarkus/front.svg",
  52053. extra: 1400/1231,
  52054. bottom: 34/1434
  52055. }
  52056. },
  52057. back: {
  52058. height: math.unit(2.69, "meters"),
  52059. weight: math.unit(132, "kg"),
  52060. name: "Back",
  52061. image: {
  52062. source: "./media/characters/aarkus/back.svg",
  52063. extra: 1381/1218,
  52064. bottom: 30/1411
  52065. }
  52066. },
  52067. frontNsfw: {
  52068. height: math.unit(2.69, "meters"),
  52069. weight: math.unit(132, "kg"),
  52070. name: "Front (NSFW)",
  52071. image: {
  52072. source: "./media/characters/aarkus/front-nsfw.svg",
  52073. extra: 1400/1231,
  52074. bottom: 34/1434
  52075. }
  52076. },
  52077. foot: {
  52078. height: math.unit(1.45, "feet"),
  52079. name: "Foot",
  52080. image: {
  52081. source: "./media/characters/aarkus/foot.svg"
  52082. }
  52083. },
  52084. head: {
  52085. height: math.unit(2.85, "feet"),
  52086. name: "Head",
  52087. image: {
  52088. source: "./media/characters/aarkus/head.svg"
  52089. }
  52090. },
  52091. headAlt: {
  52092. height: math.unit(3.07, "feet"),
  52093. name: "Head (Alt)",
  52094. image: {
  52095. source: "./media/characters/aarkus/head-alt.svg"
  52096. }
  52097. },
  52098. mouth: {
  52099. height: math.unit(1.25, "feet"),
  52100. name: "Mouth",
  52101. image: {
  52102. source: "./media/characters/aarkus/mouth.svg"
  52103. }
  52104. },
  52105. dick: {
  52106. height: math.unit(1.77, "feet"),
  52107. name: "Dick",
  52108. image: {
  52109. source: "./media/characters/aarkus/dick.svg"
  52110. }
  52111. },
  52112. },
  52113. [
  52114. {
  52115. name: "Normal",
  52116. height: math.unit(2.69, "meters"),
  52117. default: true
  52118. },
  52119. {
  52120. name: "Macro",
  52121. height: math.unit(269, "meters")
  52122. },
  52123. {
  52124. name: "Macro+",
  52125. height: math.unit(672.5, "meters")
  52126. },
  52127. {
  52128. name: "Megamacro",
  52129. height: math.unit(2.017, "km")
  52130. },
  52131. ]
  52132. ))
  52133. characterMakers.push(() => makeCharacter(
  52134. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52135. {
  52136. front: {
  52137. height: math.unit(23.47, "cm"),
  52138. weight: math.unit(600, "grams"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/diode/front.svg",
  52142. extra: 1778/1396,
  52143. bottom: 95/1873
  52144. }
  52145. },
  52146. side: {
  52147. height: math.unit(23.47, "cm"),
  52148. weight: math.unit(600, "grams"),
  52149. name: "Side",
  52150. image: {
  52151. source: "./media/characters/diode/side.svg",
  52152. extra: 1831/1404,
  52153. bottom: 86/1917
  52154. }
  52155. },
  52156. wings: {
  52157. height: math.unit(0.683, "feet"),
  52158. name: "Wings",
  52159. image: {
  52160. source: "./media/characters/diode/wings.svg"
  52161. }
  52162. },
  52163. },
  52164. [
  52165. {
  52166. name: "Normal",
  52167. height: math.unit(23.47, "cm"),
  52168. default: true
  52169. },
  52170. ]
  52171. ))
  52172. characterMakers.push(() => makeCharacter(
  52173. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52174. {
  52175. front: {
  52176. height: math.unit(6 + 3/12, "feet"),
  52177. weight: math.unit(250, "lb"),
  52178. name: "Front",
  52179. image: {
  52180. source: "./media/characters/reika/front.svg",
  52181. extra: 1120/1078,
  52182. bottom: 86/1206
  52183. }
  52184. },
  52185. },
  52186. [
  52187. {
  52188. name: "Normal",
  52189. height: math.unit(6 + 3/12, "feet"),
  52190. default: true
  52191. },
  52192. ]
  52193. ))
  52194. characterMakers.push(() => makeCharacter(
  52195. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52196. {
  52197. front: {
  52198. height: math.unit(16 + 8/12, "feet"),
  52199. weight: math.unit(9000, "lb"),
  52200. name: "Front",
  52201. image: {
  52202. source: "./media/characters/lokuto-takama/front.svg",
  52203. extra: 1774/1632,
  52204. bottom: 147/1921
  52205. },
  52206. extraAttributes: {
  52207. "bustWidth": {
  52208. name: "Bust Width",
  52209. power: 1,
  52210. type: "length",
  52211. base: math.unit(2.4, "meters")
  52212. },
  52213. "breastWeight": {
  52214. name: "Breast Weight",
  52215. power: 3,
  52216. type: "mass",
  52217. base: math.unit(1000, "kg")
  52218. },
  52219. }
  52220. },
  52221. },
  52222. [
  52223. {
  52224. name: "Normal",
  52225. height: math.unit(16 + 8/12, "feet"),
  52226. default: true
  52227. },
  52228. ]
  52229. ))
  52230. characterMakers.push(() => makeCharacter(
  52231. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52232. {
  52233. front: {
  52234. height: math.unit(10, "cm"),
  52235. weight: math.unit(850, "grams"),
  52236. name: "Front",
  52237. image: {
  52238. source: "./media/characters/owak-bone/front.svg",
  52239. extra: 1965/1801,
  52240. bottom: 31/1996
  52241. }
  52242. },
  52243. },
  52244. [
  52245. {
  52246. name: "Normal",
  52247. height: math.unit(10, "cm"),
  52248. default: true
  52249. },
  52250. ]
  52251. ))
  52252. characterMakers.push(() => makeCharacter(
  52253. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52254. {
  52255. front: {
  52256. height: math.unit(2 + 6/12, "feet"),
  52257. weight: math.unit(9, "lb"),
  52258. name: "Front",
  52259. image: {
  52260. source: "./media/characters/muffin/front.svg",
  52261. extra: 1220/1195,
  52262. bottom: 84/1304
  52263. }
  52264. },
  52265. },
  52266. [
  52267. {
  52268. name: "Normal",
  52269. height: math.unit(2 + 6/12, "feet"),
  52270. default: true
  52271. },
  52272. ]
  52273. ))
  52274. characterMakers.push(() => makeCharacter(
  52275. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52276. {
  52277. front: {
  52278. height: math.unit(7, "feet"),
  52279. name: "Front",
  52280. image: {
  52281. source: "./media/characters/chimera/front.svg",
  52282. extra: 1752/1614,
  52283. bottom: 68/1820
  52284. }
  52285. },
  52286. },
  52287. [
  52288. {
  52289. name: "Normal",
  52290. height: math.unit(7, "feet")
  52291. },
  52292. {
  52293. name: "Gigamacro",
  52294. height: math.unit(2.9, "gigameters"),
  52295. default: true
  52296. },
  52297. {
  52298. name: "Universal",
  52299. height: math.unit(1.56e26, "yottameters")
  52300. },
  52301. ]
  52302. ))
  52303. characterMakers.push(() => makeCharacter(
  52304. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52305. {
  52306. front: {
  52307. height: math.unit(3, "feet"),
  52308. weight: math.unit(20, "lb"),
  52309. name: "Front",
  52310. image: {
  52311. source: "./media/characters/kit-fennec-fox/front.svg",
  52312. extra: 1027/932,
  52313. bottom: 16/1043
  52314. }
  52315. },
  52316. back: {
  52317. height: math.unit(3, "feet"),
  52318. weight: math.unit(20, "lb"),
  52319. name: "Back",
  52320. image: {
  52321. source: "./media/characters/kit-fennec-fox/back.svg",
  52322. extra: 1027/932,
  52323. bottom: 16/1043
  52324. }
  52325. },
  52326. },
  52327. [
  52328. {
  52329. name: "Normal",
  52330. height: math.unit(3, "feet"),
  52331. default: true
  52332. },
  52333. ]
  52334. ))
  52335. characterMakers.push(() => makeCharacter(
  52336. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52337. {
  52338. front: {
  52339. height: math.unit(167, "cm"),
  52340. name: "Front",
  52341. image: {
  52342. source: "./media/characters/blue-otter/front.svg",
  52343. extra: 1951/1920,
  52344. bottom: 31/1982
  52345. }
  52346. },
  52347. },
  52348. [
  52349. {
  52350. name: "Otter-Sized",
  52351. height: math.unit(100, "cm")
  52352. },
  52353. {
  52354. name: "Normal",
  52355. height: math.unit(167, "cm"),
  52356. default: true
  52357. },
  52358. ]
  52359. ))
  52360. characterMakers.push(() => makeCharacter(
  52361. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52362. {
  52363. front: {
  52364. height: math.unit(4 + 4/12, "feet"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52368. extra: 1072/1067,
  52369. bottom: 117/1189
  52370. }
  52371. },
  52372. back: {
  52373. height: math.unit(4 + 4/12, "feet"),
  52374. name: "Back",
  52375. image: {
  52376. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52377. extra: 1135/1129,
  52378. bottom: 57/1192
  52379. }
  52380. },
  52381. head: {
  52382. height: math.unit(1.77, "feet"),
  52383. name: "Head",
  52384. image: {
  52385. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52386. }
  52387. },
  52388. },
  52389. [
  52390. {
  52391. name: "Normal",
  52392. height: math.unit(4 + 4/12, "feet"),
  52393. default: true
  52394. },
  52395. ]
  52396. ))
  52397. characterMakers.push(() => makeCharacter(
  52398. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52399. {
  52400. front: {
  52401. height: math.unit(2, "inches"),
  52402. name: "Front",
  52403. image: {
  52404. source: "./media/characters/carley-hartford/front.svg",
  52405. extra: 1035/988,
  52406. bottom: 23/1058
  52407. }
  52408. },
  52409. back: {
  52410. height: math.unit(2, "inches"),
  52411. name: "Back",
  52412. image: {
  52413. source: "./media/characters/carley-hartford/back.svg",
  52414. extra: 1035/988,
  52415. bottom: 23/1058
  52416. }
  52417. },
  52418. dressed: {
  52419. height: math.unit(2, "inches"),
  52420. name: "Dressed",
  52421. image: {
  52422. source: "./media/characters/carley-hartford/dressed.svg",
  52423. extra: 651/620,
  52424. bottom: 0/651
  52425. }
  52426. },
  52427. },
  52428. [
  52429. {
  52430. name: "Micro",
  52431. height: math.unit(2, "inches"),
  52432. default: true
  52433. },
  52434. {
  52435. name: "Macro",
  52436. height: math.unit(6 + 3/12, "feet")
  52437. },
  52438. ]
  52439. ))
  52440. characterMakers.push(() => makeCharacter(
  52441. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52442. {
  52443. front: {
  52444. height: math.unit(2 + 3/12, "feet"),
  52445. weight: math.unit(15 + 7/16, "lb"),
  52446. name: "Front",
  52447. image: {
  52448. source: "./media/characters/duke/front.svg",
  52449. extra: 910/815,
  52450. bottom: 30/940
  52451. }
  52452. },
  52453. },
  52454. [
  52455. {
  52456. name: "Normal",
  52457. height: math.unit(2 + 3/12, "feet"),
  52458. default: true
  52459. },
  52460. ]
  52461. ))
  52462. characterMakers.push(() => makeCharacter(
  52463. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52464. {
  52465. front: {
  52466. height: math.unit(5 + 4/12, "feet"),
  52467. weight: math.unit(156, "lb"),
  52468. name: "Front",
  52469. image: {
  52470. source: "./media/characters/dein/front.svg",
  52471. extra: 855/815,
  52472. bottom: 48/903
  52473. }
  52474. },
  52475. side: {
  52476. height: math.unit(5 + 4/12, "feet"),
  52477. weight: math.unit(156, "lb"),
  52478. name: "side",
  52479. image: {
  52480. source: "./media/characters/dein/side.svg",
  52481. extra: 846/803,
  52482. bottom: 25/871
  52483. }
  52484. },
  52485. maw: {
  52486. height: math.unit(1.45, "feet"),
  52487. name: "Maw",
  52488. image: {
  52489. source: "./media/characters/dein/maw.svg"
  52490. }
  52491. },
  52492. },
  52493. [
  52494. {
  52495. name: "Ferret Sized",
  52496. height: math.unit(2 + 5/12, "feet")
  52497. },
  52498. {
  52499. name: "Normal",
  52500. height: math.unit(5 + 4/12, "feet"),
  52501. default: true
  52502. },
  52503. ]
  52504. ))
  52505. characterMakers.push(() => makeCharacter(
  52506. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52507. {
  52508. front: {
  52509. height: math.unit(84 + 8/12, "feet"),
  52510. weight: math.unit(942180, "lb"),
  52511. name: "Front",
  52512. image: {
  52513. source: "./media/characters/daurine-arima/front.svg",
  52514. extra: 1989/1782,
  52515. bottom: 37/2026
  52516. }
  52517. },
  52518. side: {
  52519. height: math.unit(84 + 8/12, "feet"),
  52520. weight: math.unit(942180, "lb"),
  52521. name: "Side",
  52522. image: {
  52523. source: "./media/characters/daurine-arima/side.svg",
  52524. extra: 1997/1790,
  52525. bottom: 21/2018
  52526. }
  52527. },
  52528. back: {
  52529. height: math.unit(84 + 8/12, "feet"),
  52530. weight: math.unit(942180, "lb"),
  52531. name: "Back",
  52532. image: {
  52533. source: "./media/characters/daurine-arima/back.svg",
  52534. extra: 1992/1800,
  52535. bottom: 12/2004
  52536. }
  52537. },
  52538. head: {
  52539. height: math.unit(15.5, "feet"),
  52540. name: "Head",
  52541. image: {
  52542. source: "./media/characters/daurine-arima/head.svg"
  52543. }
  52544. },
  52545. headAlt: {
  52546. height: math.unit(19.19, "feet"),
  52547. name: "Head (Alt)",
  52548. image: {
  52549. source: "./media/characters/daurine-arima/head-alt.svg"
  52550. }
  52551. },
  52552. },
  52553. [
  52554. {
  52555. name: "Minimum height",
  52556. height: math.unit(8 + 10/12, "feet")
  52557. },
  52558. {
  52559. name: "Comfort height",
  52560. height: math.unit(19 + 6 /12, "feet")
  52561. },
  52562. {
  52563. name: "\"Normal\" height",
  52564. height: math.unit(28 + 10/12, "feet")
  52565. },
  52566. {
  52567. name: "Base height",
  52568. height: math.unit(84 + 8/12, "feet"),
  52569. default: true
  52570. },
  52571. {
  52572. name: "Mini-macro",
  52573. height: math.unit(2360, "feet")
  52574. },
  52575. {
  52576. name: "Macro",
  52577. height: math.unit(10, "miles")
  52578. },
  52579. {
  52580. name: "Goddess",
  52581. height: math.unit(9.99e40, "yottameters")
  52582. },
  52583. ]
  52584. ))
  52585. characterMakers.push(() => makeCharacter(
  52586. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52587. {
  52588. front: {
  52589. height: math.unit(2.3, "meters"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/cilenomon/front.svg",
  52593. extra: 1963/1778,
  52594. bottom: 54/2017
  52595. }
  52596. },
  52597. },
  52598. [
  52599. {
  52600. name: "Normal",
  52601. height: math.unit(2.3, "meters"),
  52602. default: true
  52603. },
  52604. {
  52605. name: "Big",
  52606. height: math.unit(5, "meters")
  52607. },
  52608. {
  52609. name: "Macro",
  52610. height: math.unit(30, "meters")
  52611. },
  52612. {
  52613. name: "True",
  52614. height: math.unit(1, "universe")
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52620. {
  52621. front: {
  52622. height: math.unit(5, "feet"),
  52623. name: "Front",
  52624. image: {
  52625. source: "./media/characters/sen-mink/front.svg",
  52626. extra: 1727/1675,
  52627. bottom: 35/1762
  52628. }
  52629. },
  52630. },
  52631. [
  52632. {
  52633. name: "Normal",
  52634. height: math.unit(5, "feet"),
  52635. default: true
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(5.42999, "feet"),
  52644. weight: math.unit(100, "lb"),
  52645. name: "Front",
  52646. image: {
  52647. source: "./media/characters/ophois/front.svg",
  52648. extra: 1429/1286,
  52649. bottom: 60/1489
  52650. }
  52651. },
  52652. },
  52653. [
  52654. {
  52655. name: "Normal",
  52656. height: math.unit(5.42999, "feet"),
  52657. default: true
  52658. },
  52659. ]
  52660. ))
  52661. characterMakers.push(() => makeCharacter(
  52662. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52663. {
  52664. front: {
  52665. height: math.unit(2, "meters"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/riley/front.svg",
  52669. extra: 1779/1754,
  52670. bottom: 139/1918
  52671. }
  52672. },
  52673. },
  52674. [
  52675. {
  52676. name: "Normal",
  52677. height: math.unit(2, "meters"),
  52678. default: true
  52679. },
  52680. ]
  52681. ))
  52682. characterMakers.push(() => makeCharacter(
  52683. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52684. {
  52685. front: {
  52686. height: math.unit(6 + 2/12, "feet"),
  52687. weight: math.unit(195, "lb"),
  52688. preyCapacity: math.unit(6, "people"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/shuken-flash/front.svg",
  52692. extra: 1905/1739,
  52693. bottom: 65/1970
  52694. }
  52695. },
  52696. back: {
  52697. height: math.unit(6 + 2/12, "feet"),
  52698. weight: math.unit(195, "lb"),
  52699. preyCapacity: math.unit(6, "people"),
  52700. name: "Back",
  52701. image: {
  52702. source: "./media/characters/shuken-flash/back.svg",
  52703. extra: 1912/1751,
  52704. bottom: 13/1925
  52705. }
  52706. },
  52707. },
  52708. [
  52709. {
  52710. name: "Normal",
  52711. height: math.unit(6 + 2/12, "feet"),
  52712. default: true
  52713. },
  52714. ]
  52715. ))
  52716. characterMakers.push(() => makeCharacter(
  52717. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52718. {
  52719. front: {
  52720. height: math.unit(5 + 9/12, "feet"),
  52721. weight: math.unit(150, "lb"),
  52722. name: "Front",
  52723. image: {
  52724. source: "./media/characters/plat/front.svg",
  52725. extra: 1816/1703,
  52726. bottom: 43/1859
  52727. }
  52728. },
  52729. side: {
  52730. height: math.unit(5 + 9/12, "feet"),
  52731. weight: math.unit(300, "lb"),
  52732. name: "Side",
  52733. image: {
  52734. source: "./media/characters/plat/side.svg",
  52735. extra: 1824/1699,
  52736. bottom: 18/1842
  52737. }
  52738. },
  52739. },
  52740. [
  52741. {
  52742. name: "Normal",
  52743. height: math.unit(5 + 9/12, "feet"),
  52744. default: true
  52745. },
  52746. ]
  52747. ))
  52748. characterMakers.push(() => makeCharacter(
  52749. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52750. {
  52751. front: {
  52752. height: math.unit(9, "feet"),
  52753. weight: math.unit(1800, "lb"),
  52754. name: "Front",
  52755. image: {
  52756. source: "./media/characters/elaine/front.svg",
  52757. extra: 1833/1354,
  52758. bottom: 25/1858
  52759. }
  52760. },
  52761. back: {
  52762. height: math.unit(8.8, "feet"),
  52763. weight: math.unit(1800, "lb"),
  52764. name: "Back",
  52765. image: {
  52766. source: "./media/characters/elaine/back.svg",
  52767. extra: 1641/1233,
  52768. bottom: 53/1694
  52769. }
  52770. },
  52771. },
  52772. [
  52773. {
  52774. name: "Normal",
  52775. height: math.unit(9, "feet"),
  52776. default: true
  52777. },
  52778. ]
  52779. ))
  52780. characterMakers.push(() => makeCharacter(
  52781. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52782. {
  52783. front: {
  52784. height: math.unit(17 + 9/12, "feet"),
  52785. weight: math.unit(8000, "lb"),
  52786. name: "Front",
  52787. image: {
  52788. source: "./media/characters/vera-raven/front.svg",
  52789. extra: 1457/1412,
  52790. bottom: 121/1578
  52791. }
  52792. },
  52793. side: {
  52794. height: math.unit(17 + 9/12, "feet"),
  52795. weight: math.unit(8000, "lb"),
  52796. name: "Side",
  52797. image: {
  52798. source: "./media/characters/vera-raven/side.svg",
  52799. extra: 1510/1464,
  52800. bottom: 54/1564
  52801. }
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Normal",
  52807. height: math.unit(17 + 9/12, "feet"),
  52808. default: true
  52809. },
  52810. ]
  52811. ))
  52812. characterMakers.push(() => makeCharacter(
  52813. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52814. {
  52815. dressed: {
  52816. height: math.unit(6 + 9/12, "feet"),
  52817. name: "Dressed",
  52818. image: {
  52819. source: "./media/characters/nakisha/dressed.svg",
  52820. extra: 1909/1757,
  52821. bottom: 48/1957
  52822. }
  52823. },
  52824. nude: {
  52825. height: math.unit(6 + 9/12, "feet"),
  52826. name: "Nude",
  52827. image: {
  52828. source: "./media/characters/nakisha/nude.svg",
  52829. extra: 1917/1765,
  52830. bottom: 34/1951
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Normal",
  52837. height: math.unit(6 + 9/12, "feet"),
  52838. default: true
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52844. {
  52845. front: {
  52846. height: math.unit(87, "meters"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/serafin/front.svg",
  52850. extra: 1919/1776,
  52851. bottom: 65/1984
  52852. }
  52853. },
  52854. },
  52855. [
  52856. {
  52857. name: "Normal",
  52858. height: math.unit(87, "meters"),
  52859. default: true
  52860. },
  52861. ]
  52862. ))
  52863. characterMakers.push(() => makeCharacter(
  52864. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52865. {
  52866. front: {
  52867. height: math.unit(6, "feet"),
  52868. weight: math.unit(200, "lb"),
  52869. name: "Front",
  52870. image: {
  52871. source: "./media/characters/poptart/front.svg",
  52872. extra: 615/583,
  52873. bottom: 23/638
  52874. }
  52875. },
  52876. back: {
  52877. height: math.unit(6, "feet"),
  52878. weight: math.unit(200, "lb"),
  52879. name: "Back",
  52880. image: {
  52881. source: "./media/characters/poptart/back.svg",
  52882. extra: 617/584,
  52883. bottom: 22/639
  52884. }
  52885. },
  52886. frontNsfw: {
  52887. height: math.unit(6, "feet"),
  52888. weight: math.unit(200, "lb"),
  52889. name: "Front (NSFW)",
  52890. image: {
  52891. source: "./media/characters/poptart/front-nsfw.svg",
  52892. extra: 615/583,
  52893. bottom: 23/638
  52894. }
  52895. },
  52896. backNsfw: {
  52897. height: math.unit(6, "feet"),
  52898. weight: math.unit(200, "lb"),
  52899. name: "Back (NSFW)",
  52900. image: {
  52901. source: "./media/characters/poptart/back-nsfw.svg",
  52902. extra: 617/584,
  52903. bottom: 22/639
  52904. }
  52905. },
  52906. hand: {
  52907. height: math.unit(1.14, "feet"),
  52908. name: "Hand",
  52909. image: {
  52910. source: "./media/characters/poptart/hand.svg"
  52911. }
  52912. },
  52913. foot: {
  52914. height: math.unit(1.5, "feet"),
  52915. name: "Foot",
  52916. image: {
  52917. source: "./media/characters/poptart/foot.svg"
  52918. }
  52919. },
  52920. },
  52921. [
  52922. {
  52923. name: "Normal",
  52924. height: math.unit(6, "feet"),
  52925. default: true
  52926. },
  52927. {
  52928. name: "Grande",
  52929. height: math.unit(350, "feet")
  52930. },
  52931. {
  52932. name: "Massif",
  52933. height: math.unit(967, "feet")
  52934. },
  52935. ]
  52936. ))
  52937. characterMakers.push(() => makeCharacter(
  52938. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52939. {
  52940. hyenaSide: {
  52941. height: math.unit(120, "cm"),
  52942. weight: math.unit(120, "lb"),
  52943. name: "Side",
  52944. image: {
  52945. source: "./media/characters/trance/hyena-side.svg",
  52946. extra: 998/904,
  52947. bottom: 76/1074
  52948. }
  52949. },
  52950. },
  52951. [
  52952. {
  52953. name: "Normal",
  52954. height: math.unit(120, "cm"),
  52955. default: true
  52956. },
  52957. {
  52958. name: "Dire",
  52959. height: math.unit(230, "cm")
  52960. },
  52961. {
  52962. name: "Macro",
  52963. height: math.unit(37, "feet")
  52964. },
  52965. ]
  52966. ))
  52967. characterMakers.push(() => makeCharacter(
  52968. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52969. {
  52970. front: {
  52971. height: math.unit(6 + 3/12, "feet"),
  52972. name: "Front",
  52973. image: {
  52974. source: "./media/characters/michael-berretta/front.svg",
  52975. extra: 515/494,
  52976. bottom: 20/535
  52977. }
  52978. },
  52979. back: {
  52980. height: math.unit(6 + 3/12, "feet"),
  52981. name: "Back",
  52982. image: {
  52983. source: "./media/characters/michael-berretta/back.svg",
  52984. extra: 520/497,
  52985. bottom: 21/541
  52986. }
  52987. },
  52988. frontNsfw: {
  52989. height: math.unit(6 + 3/12, "feet"),
  52990. name: "Front (NSFW)",
  52991. image: {
  52992. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52993. extra: 515/494,
  52994. bottom: 20/535
  52995. }
  52996. },
  52997. dick: {
  52998. height: math.unit(1, "feet"),
  52999. name: "Dick",
  53000. image: {
  53001. source: "./media/characters/michael-berretta/dick.svg"
  53002. }
  53003. },
  53004. },
  53005. [
  53006. {
  53007. name: "Normal",
  53008. height: math.unit(6 + 3/12, "feet"),
  53009. default: true
  53010. },
  53011. {
  53012. name: "Big",
  53013. height: math.unit(12, "feet")
  53014. },
  53015. {
  53016. name: "Macro",
  53017. height: math.unit(187.5, "feet")
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(9 + 9/12, "feet"),
  53026. weight: math.unit(1244, "lb"),
  53027. name: "Front",
  53028. image: {
  53029. source: "./media/characters/stella-edgecomb/front.svg",
  53030. extra: 1835/1706,
  53031. bottom: 49/1884
  53032. }
  53033. },
  53034. pen: {
  53035. height: math.unit(0.95, "feet"),
  53036. name: "Pen",
  53037. image: {
  53038. source: "./media/characters/stella-edgecomb/pen.svg"
  53039. }
  53040. },
  53041. },
  53042. [
  53043. {
  53044. name: "Cozy Bear",
  53045. height: math.unit(0.5, "inches")
  53046. },
  53047. {
  53048. name: "Normal",
  53049. height: math.unit(9 + 9/12, "feet"),
  53050. default: true
  53051. },
  53052. {
  53053. name: "Giga Bear",
  53054. height: math.unit(1, "mile")
  53055. },
  53056. {
  53057. name: "Great Bear",
  53058. height: math.unit(53, "miles")
  53059. },
  53060. {
  53061. name: "Goddess Bear",
  53062. height: math.unit(40000, "miles")
  53063. },
  53064. {
  53065. name: "Sun Bear",
  53066. height: math.unit(900000, "miles")
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53072. {
  53073. anthroFront: {
  53074. height: math.unit(556, "cm"),
  53075. weight: math.unit(2650, "kg"),
  53076. preyCapacity: math.unit(3, "people"),
  53077. name: "Front",
  53078. image: {
  53079. source: "./media/characters/ash´iika/front.svg",
  53080. extra: 710/673,
  53081. bottom: 15/725
  53082. },
  53083. form: "anthro",
  53084. default: true
  53085. },
  53086. anthroSide: {
  53087. height: math.unit(556, "cm"),
  53088. weight: math.unit(2650, "kg"),
  53089. preyCapacity: math.unit(3, "people"),
  53090. name: "Side",
  53091. image: {
  53092. source: "./media/characters/ash´iika/side.svg",
  53093. extra: 696/676,
  53094. bottom: 13/709
  53095. },
  53096. form: "anthro"
  53097. },
  53098. anthroDressed: {
  53099. height: math.unit(556, "cm"),
  53100. weight: math.unit(2650, "kg"),
  53101. preyCapacity: math.unit(3, "people"),
  53102. name: "Dressed",
  53103. image: {
  53104. source: "./media/characters/ash´iika/dressed.svg",
  53105. extra: 710/673,
  53106. bottom: 15/725
  53107. },
  53108. form: "anthro"
  53109. },
  53110. anthroHead: {
  53111. height: math.unit(3.5, "feet"),
  53112. name: "Head",
  53113. image: {
  53114. source: "./media/characters/ash´iika/head.svg",
  53115. extra: 348/291,
  53116. bottom: 45/393
  53117. },
  53118. form: "anthro"
  53119. },
  53120. feralSide: {
  53121. height: math.unit(870, "cm"),
  53122. weight: math.unit(17500, "kg"),
  53123. preyCapacity: math.unit(15, "people"),
  53124. name: "Side",
  53125. image: {
  53126. source: "./media/characters/ash´iika/feral.svg",
  53127. extra: 595/199,
  53128. bottom: 7/602
  53129. },
  53130. form: "feral",
  53131. default: true,
  53132. },
  53133. },
  53134. [
  53135. {
  53136. name: "Normal",
  53137. height: math.unit(556, "cm"),
  53138. default: true,
  53139. form: "anthro"
  53140. },
  53141. {
  53142. name: "Macro",
  53143. height: math.unit(88, "meters"),
  53144. form: "anthro"
  53145. },
  53146. {
  53147. name: "Normal",
  53148. height: math.unit(870, "cm"),
  53149. default: true,
  53150. form: "feral"
  53151. },
  53152. {
  53153. name: "Large",
  53154. height: math.unit(25, "meters"),
  53155. form: "feral"
  53156. },
  53157. ],
  53158. {
  53159. "anthro": {
  53160. name: "Anthro",
  53161. default: true
  53162. },
  53163. "feral": {
  53164. name: "Feral",
  53165. },
  53166. }
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53170. {
  53171. front: {
  53172. height: math.unit(10, "feet"),
  53173. weight: math.unit(800, "lb"),
  53174. name: "Front",
  53175. image: {
  53176. source: "./media/characters/yen/front.svg",
  53177. extra: 443/411,
  53178. bottom: 6/449
  53179. }
  53180. },
  53181. sleeping: {
  53182. height: math.unit(10, "feet"),
  53183. weight: math.unit(800, "lb"),
  53184. name: "Sleeping",
  53185. image: {
  53186. source: "./media/characters/yen/sleeping.svg",
  53187. extra: 470/422,
  53188. bottom: 0/470
  53189. }
  53190. },
  53191. head: {
  53192. height: math.unit(2.2, "feet"),
  53193. name: "Head",
  53194. image: {
  53195. source: "./media/characters/yen/head.svg"
  53196. }
  53197. },
  53198. headAlt: {
  53199. height: math.unit(2.1, "feet"),
  53200. name: "Head (Alt)",
  53201. image: {
  53202. source: "./media/characters/yen/head-alt.svg"
  53203. }
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Normal",
  53209. height: math.unit(10, "feet"),
  53210. default: true
  53211. },
  53212. ]
  53213. ))
  53214. characterMakers.push(() => makeCharacter(
  53215. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53216. {
  53217. front: {
  53218. height: math.unit(12, "feet"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/citra/front.svg",
  53222. extra: 1950/1710,
  53223. bottom: 47/1997
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(12, "feet"),
  53231. default: true
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53237. {
  53238. side: {
  53239. height: math.unit(7 + 10/12, "feet"),
  53240. name: "Side",
  53241. image: {
  53242. source: "./media/characters/sholstim/side.svg",
  53243. extra: 786/682,
  53244. bottom: 40/826
  53245. }
  53246. },
  53247. },
  53248. [
  53249. {
  53250. name: "Normal",
  53251. height: math.unit(7 + 10/12, "feet"),
  53252. default: true
  53253. },
  53254. ]
  53255. ))
  53256. characterMakers.push(() => makeCharacter(
  53257. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53258. {
  53259. front: {
  53260. height: math.unit(3.10, "meters"),
  53261. name: "Front",
  53262. image: {
  53263. source: "./media/characters/aggyn/front.svg",
  53264. extra: 1188/963,
  53265. bottom: 24/1212
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(3.10, "meters"),
  53273. default: true
  53274. },
  53275. ]
  53276. ))
  53277. characterMakers.push(() => makeCharacter(
  53278. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53279. {
  53280. front: {
  53281. height: math.unit(7 + 5/12, "feet"),
  53282. weight: math.unit(687, "lb"),
  53283. name: "Front",
  53284. image: {
  53285. source: "./media/characters/alsandair-hergenroether/front.svg",
  53286. extra: 1251/1186,
  53287. bottom: 75/1326
  53288. }
  53289. },
  53290. back: {
  53291. height: math.unit(7 + 5/12, "feet"),
  53292. weight: math.unit(687, "lb"),
  53293. name: "Back",
  53294. image: {
  53295. source: "./media/characters/alsandair-hergenroether/back.svg",
  53296. extra: 1290/1229,
  53297. bottom: 17/1307
  53298. }
  53299. },
  53300. },
  53301. [
  53302. {
  53303. name: "Max Compression",
  53304. height: math.unit(7 + 5/12, "feet"),
  53305. default: true
  53306. },
  53307. {
  53308. name: "\"Normal\"",
  53309. height: math.unit(2, "universes")
  53310. },
  53311. ]
  53312. ))
  53313. characterMakers.push(() => makeCharacter(
  53314. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53315. {
  53316. front: {
  53317. height: math.unit(4 + 1/12, "feet"),
  53318. weight: math.unit(92, "lb"),
  53319. name: "Front",
  53320. image: {
  53321. source: "./media/characters/ie/front.svg",
  53322. extra: 1585/1352,
  53323. bottom: 91/1676
  53324. }
  53325. },
  53326. },
  53327. [
  53328. {
  53329. name: "Normal",
  53330. height: math.unit(4 + 1/12, "feet"),
  53331. default: true
  53332. },
  53333. ]
  53334. ))
  53335. characterMakers.push(() => makeCharacter(
  53336. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53337. {
  53338. anthro: {
  53339. height: math.unit(6, "feet"),
  53340. weight: math.unit(150, "lb"),
  53341. name: "Front",
  53342. image: {
  53343. source: "./media/characters/willow/anthro.svg",
  53344. extra: 1073/986,
  53345. bottom: 34/1107
  53346. },
  53347. form: "anthro",
  53348. default: true
  53349. },
  53350. taur: {
  53351. height: math.unit(6, "feet"),
  53352. weight: math.unit(150, "lb"),
  53353. name: "Side",
  53354. image: {
  53355. source: "./media/characters/willow/taur.svg",
  53356. extra: 647/512,
  53357. bottom: 136/783
  53358. },
  53359. form: "taur",
  53360. default: true
  53361. },
  53362. },
  53363. [
  53364. {
  53365. name: "Humanoid",
  53366. height: math.unit(2.7, "meters"),
  53367. form: "anthro"
  53368. },
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(9, "meters"),
  53372. form: "anthro",
  53373. default: true
  53374. },
  53375. {
  53376. name: "Humanoid",
  53377. height: math.unit(2.1, "meters"),
  53378. form: "taur"
  53379. },
  53380. {
  53381. name: "Normal",
  53382. height: math.unit(7, "meters"),
  53383. form: "taur",
  53384. default: true
  53385. },
  53386. ],
  53387. {
  53388. "anthro": {
  53389. name: "Anthro",
  53390. default: true
  53391. },
  53392. "taur": {
  53393. name: "Taur",
  53394. },
  53395. }
  53396. ))
  53397. characterMakers.push(() => makeCharacter(
  53398. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53399. {
  53400. front: {
  53401. height: math.unit(2 + 5/12, "feet"),
  53402. name: "Front",
  53403. image: {
  53404. source: "./media/characters/kyan/front.svg",
  53405. extra: 460/334,
  53406. bottom: 23/483
  53407. },
  53408. extraAttributes: {
  53409. "toeLength": {
  53410. name: "Toe Length",
  53411. power: 1,
  53412. type: "length",
  53413. base: math.unit(7, "cm")
  53414. },
  53415. "toeclawLength": {
  53416. name: "Toeclaw Length",
  53417. power: 1,
  53418. type: "length",
  53419. base: math.unit(4.7, "cm")
  53420. },
  53421. "earHeight": {
  53422. name: "Ear Height",
  53423. power: 1,
  53424. type: "length",
  53425. base: math.unit(14.1, "cm")
  53426. },
  53427. }
  53428. },
  53429. paws: {
  53430. height: math.unit(0.45, "feet"),
  53431. name: "Paws",
  53432. image: {
  53433. source: "./media/characters/kyan/paws.svg",
  53434. extra: 581/581,
  53435. bottom: 114/695
  53436. }
  53437. },
  53438. },
  53439. [
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(2 + 5/12, "feet"),
  53443. default: true
  53444. },
  53445. ]
  53446. ))
  53447. characterMakers.push(() => makeCharacter(
  53448. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53449. {
  53450. front: {
  53451. height: math.unit(2 + 2/3, "feet"),
  53452. name: "Front",
  53453. image: {
  53454. source: "./media/characters/xazzon/front.svg",
  53455. extra: 1109/984,
  53456. bottom: 42/1151
  53457. }
  53458. },
  53459. back: {
  53460. height: math.unit(2 + 2/3, "feet"),
  53461. name: "Back",
  53462. image: {
  53463. source: "./media/characters/xazzon/back.svg",
  53464. extra: 1095/971,
  53465. bottom: 23/1118
  53466. }
  53467. },
  53468. },
  53469. [
  53470. {
  53471. name: "Normal",
  53472. height: math.unit(2 + 2/3, "feet"),
  53473. default: true
  53474. },
  53475. ]
  53476. ))
  53477. characterMakers.push(() => makeCharacter(
  53478. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53479. {
  53480. dressed: {
  53481. height: math.unit(5 + 7/12, "feet"),
  53482. weight: math.unit(173, "lb"),
  53483. name: "Dressed",
  53484. image: {
  53485. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53486. extra: 3262/2862,
  53487. bottom: 188/3450
  53488. }
  53489. },
  53490. undressed: {
  53491. height: math.unit(5 + 7/12, "feet"),
  53492. weight: math.unit(173, "lb"),
  53493. name: "Undressed",
  53494. image: {
  53495. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53496. extra: 3262/2862,
  53497. bottom: 188/3450
  53498. }
  53499. },
  53500. },
  53501. [
  53502. {
  53503. name: "The void",
  53504. height: math.unit(7.29193e-34, "angstroms")
  53505. },
  53506. {
  53507. name: "Uh-Oh.",
  53508. height: math.unit(5.734e-7, "angstroms")
  53509. },
  53510. {
  53511. name: "Pico",
  53512. height: math.unit(0.876, "angstroms")
  53513. },
  53514. {
  53515. name: "Nano",
  53516. height: math.unit(0.000134200, "mm")
  53517. },
  53518. {
  53519. name: "Micro",
  53520. height: math.unit(0.0673020, "mm")
  53521. },
  53522. {
  53523. name: "Tiny",
  53524. height: math.unit(2.4, "mm")
  53525. },
  53526. {
  53527. name: "Actual Normal",
  53528. height: math.unit(3, "inches"),
  53529. default: true
  53530. },
  53531. {
  53532. name: "Normal",
  53533. height: math.unit(5 + 8/12, "feet")
  53534. },
  53535. {
  53536. name: "Giant",
  53537. height: math.unit(12, "feet")
  53538. },
  53539. {
  53540. name: "City Ruler",
  53541. height: math.unit(270, "meters")
  53542. },
  53543. {
  53544. name: "Giga",
  53545. height: math.unit(1117.6, "km")
  53546. },
  53547. {
  53548. name: "All-Powerful Queen",
  53549. height: math.unit(70.8, "gigameters")
  53550. },
  53551. {
  53552. name: "'Goddess'",
  53553. height: math.unit(600, "yottameters")
  53554. },
  53555. {
  53556. name: "Biggest!",
  53557. height: math.unit(4.23e5, "yottameters")
  53558. },
  53559. ]
  53560. ))
  53561. characterMakers.push(() => makeCharacter(
  53562. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53563. {
  53564. front: {
  53565. height: math.unit(8, "feet"),
  53566. weight: math.unit(300, "lb"),
  53567. name: "Front",
  53568. image: {
  53569. source: "./media/characters/khyla-shadowsong/front.svg",
  53570. extra: 861/798,
  53571. bottom: 32/893
  53572. }
  53573. },
  53574. side: {
  53575. height: math.unit(8, "feet"),
  53576. weight: math.unit(300, "lb"),
  53577. name: "Side",
  53578. image: {
  53579. source: "./media/characters/khyla-shadowsong/side.svg",
  53580. extra: 790/750,
  53581. bottom: 87/877
  53582. }
  53583. },
  53584. back: {
  53585. height: math.unit(8, "feet"),
  53586. weight: math.unit(300, "lb"),
  53587. name: "Back",
  53588. image: {
  53589. source: "./media/characters/khyla-shadowsong/back.svg",
  53590. extra: 855/808,
  53591. bottom: 14/869
  53592. }
  53593. },
  53594. head: {
  53595. height: math.unit(2.7, "feet"),
  53596. name: "Head",
  53597. image: {
  53598. source: "./media/characters/khyla-shadowsong/head.svg"
  53599. }
  53600. },
  53601. },
  53602. [
  53603. {
  53604. name: "Micro",
  53605. height: math.unit(6, "inches")
  53606. },
  53607. {
  53608. name: "Normal",
  53609. height: math.unit(8, "feet"),
  53610. default: true
  53611. },
  53612. ]
  53613. ))
  53614. characterMakers.push(() => makeCharacter(
  53615. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53616. {
  53617. hyperFront: {
  53618. height: math.unit(9 + 4/12, "feet"),
  53619. weight: math.unit(2000, "lb"),
  53620. name: "Front",
  53621. image: {
  53622. source: "./media/characters/tiden/hyper-front.svg",
  53623. extra: 400/382,
  53624. bottom: 6/406
  53625. },
  53626. form: "hyper",
  53627. },
  53628. regularFront: {
  53629. height: math.unit(7 + 10/12, "feet"),
  53630. weight: math.unit(470, "lb"),
  53631. name: "Front",
  53632. image: {
  53633. source: "./media/characters/tiden/regular-front.svg",
  53634. extra: 468/442,
  53635. bottom: 6/474
  53636. },
  53637. form: "regular",
  53638. },
  53639. },
  53640. [
  53641. {
  53642. name: "Normal",
  53643. height: math.unit(9 + 4/12, "feet"),
  53644. default: true,
  53645. form: "hyper"
  53646. },
  53647. {
  53648. name: "Normal",
  53649. height: math.unit(7 + 10/12, "feet"),
  53650. default: true,
  53651. form: "regular"
  53652. },
  53653. ],
  53654. {
  53655. "hyper": {
  53656. name: "Hyper",
  53657. default: true
  53658. },
  53659. "regular": {
  53660. name: "Regular",
  53661. },
  53662. }
  53663. ))
  53664. characterMakers.push(() => makeCharacter(
  53665. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53666. {
  53667. side: {
  53668. height: math.unit(6, "feet"),
  53669. weight: math.unit(150, "lb"),
  53670. name: "Side",
  53671. image: {
  53672. source: "./media/characters/jason-crowe/side.svg",
  53673. extra: 1771/766,
  53674. bottom: 219/1990
  53675. }
  53676. },
  53677. },
  53678. [
  53679. {
  53680. name: "Pocket Gryphon",
  53681. height: math.unit(6, "cm")
  53682. },
  53683. {
  53684. name: "Raven",
  53685. height: math.unit(60, "cm")
  53686. },
  53687. {
  53688. name: "Normal",
  53689. height: math.unit(1, "meter"),
  53690. default: true
  53691. },
  53692. ]
  53693. ))
  53694. characterMakers.push(() => makeCharacter(
  53695. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53696. {
  53697. front: {
  53698. height: math.unit(9 + 6/12, "feet"),
  53699. weight: math.unit(1100, "lb"),
  53700. name: "Front",
  53701. image: {
  53702. source: "./media/characters/django/front.svg",
  53703. extra: 1231/1136,
  53704. bottom: 34/1265
  53705. }
  53706. },
  53707. side: {
  53708. height: math.unit(9 + 6/12, "feet"),
  53709. weight: math.unit(1100, "lb"),
  53710. name: "Side",
  53711. image: {
  53712. source: "./media/characters/django/side.svg",
  53713. extra: 1267/1174,
  53714. bottom: 9/1276
  53715. }
  53716. },
  53717. },
  53718. [
  53719. {
  53720. name: "Normal",
  53721. height: math.unit(9 + 6/12, "feet"),
  53722. default: true
  53723. },
  53724. {
  53725. name: "Macro 1",
  53726. height: math.unit(50, "feet")
  53727. },
  53728. {
  53729. name: "Macro 2",
  53730. height: math.unit(500, "feet")
  53731. },
  53732. {
  53733. name: "Mega Macro",
  53734. height: math.unit(5300, "feet")
  53735. },
  53736. ]
  53737. ))
  53738. //characters
  53739. function makeCharacters() {
  53740. const results = [];
  53741. characterMakers.forEach(character => {
  53742. results.push(character());
  53743. });
  53744. return results;
  53745. }